├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── console ├── composer.json ├── lib └── PHPExiftool │ ├── ClassUtils │ ├── Builder.php │ └── TagProviderBuilder.php │ ├── Driver │ ├── AbstractTag.php │ ├── AbstractType.php │ ├── Metadata │ │ ├── Metadata.php │ │ └── MetadataBag.php │ ├── Tag │ │ ├── AC3 │ │ │ ├── AudioBitrate.php │ │ │ ├── AudioChannels.php │ │ │ ├── AudioSampleRate.php │ │ │ └── SurroundMode.php │ │ ├── AFCP │ │ │ ├── PreviewImage.php │ │ │ ├── Text.php │ │ │ └── ThumbnailImage.php │ │ ├── AIFF │ │ │ ├── Annotation.php │ │ │ ├── Author.php │ │ │ ├── Comment.php │ │ │ ├── CommentTime.php │ │ │ ├── CompressionType.php │ │ │ ├── CompressorName.php │ │ │ ├── Copyright.php │ │ │ ├── FormatVersionTime.php │ │ │ ├── MarkerID.php │ │ │ ├── Name.php │ │ │ ├── NumChannels.php │ │ │ ├── NumSampleFrames.php │ │ │ ├── SampleRate.php │ │ │ └── SampleSize.php │ │ ├── APE │ │ │ ├── Album.php │ │ │ ├── Artist.php │ │ │ ├── Genre.php │ │ │ ├── Title.php │ │ │ ├── ToolName.php │ │ │ ├── ToolVersion.php │ │ │ ├── Track.php │ │ │ └── Year.php │ │ ├── ASF │ │ │ ├── ASFLeakyBucketPairs.php │ │ │ ├── ASFPacketCount.php │ │ │ ├── ASFSecurityObjectsSize.php │ │ │ ├── AdvancedContentEncryption.php │ │ │ ├── AdvancedMutualExcl.php │ │ │ ├── AlbumArtist.php │ │ │ ├── AlbumCoverURL.php │ │ │ ├── AlbumTitle.php │ │ │ ├── AspectRatioX.php │ │ │ ├── AspectRatioY.php │ │ │ ├── AudioChannels.php │ │ │ ├── AudioCodecDescription.php │ │ │ ├── AudioCodecID.php │ │ │ ├── AudioCodecName.php │ │ │ ├── AudioFileURL.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── AudioSourceURL.php │ │ │ ├── Author.php │ │ │ ├── AuthorURL.php │ │ │ ├── AverageLevel.php │ │ │ ├── BandwidthSharing.php │ │ │ ├── BannerImage.php │ │ │ ├── BannerImageData.php │ │ │ ├── BannerImageType.php │ │ │ ├── BannerImageURL.php │ │ │ ├── BeatsPerMinute.php │ │ │ ├── Bitrate.php │ │ │ ├── BitrateMutualExclusion.php │ │ │ ├── Broadcast.php │ │ │ ├── BufferAverage.php │ │ │ ├── CanSkipBackward.php │ │ │ ├── CanSkipForward.php │ │ │ ├── Category.php │ │ │ ├── Codec.php │ │ │ ├── Compatibility.php │ │ │ ├── Composer.php │ │ │ ├── Conductor.php │ │ │ ├── ContainerFormat.php │ │ │ ├── ContentDistributor.php │ │ │ ├── ContentEncryption.php │ │ │ ├── ContentGroupDescription.php │ │ │ ├── Copyright.php │ │ │ ├── CopyrightURL.php │ │ │ ├── CreationDate.php │ │ │ ├── CurrentBitrate.php │ │ │ ├── DRM.php │ │ │ ├── DRMContentID.php │ │ │ ├── DRMDRMHeader.php │ │ │ ├── DRMDRMHeaderContentDistributor.php │ │ │ ├── DRMDRMHeaderContentID.php │ │ │ ├── DRMDRMHeaderIndividualizedVersion.php │ │ │ ├── DRMDRMHeaderKeyID.php │ │ │ ├── DRMDRMHeaderLicenseAcqURL.php │ │ │ ├── DRMDRMHeaderSubscriptionContentID.php │ │ │ ├── DRMIndividualizedVersion.php │ │ │ ├── DRMKeyID.php │ │ │ ├── DRMLASignatureCert.php │ │ │ ├── DRMLASignatureLicSrvCert.php │ │ │ ├── DRMLASignaturePrivKey.php │ │ │ ├── DRMLASignatureRootCert.php │ │ │ ├── DRMLicenseAcqURL.php │ │ │ ├── DRMV1LicenseAcqURL.php │ │ │ ├── DVDID.php │ │ │ ├── Data.php │ │ │ ├── DataPackets.php │ │ │ ├── Description.php │ │ │ ├── DigitalSignature.php │ │ │ ├── Director.php │ │ │ ├── Duration.php │ │ │ ├── EncodedBy.php │ │ │ ├── EncodingSettings.php │ │ │ ├── EncodingTime.php │ │ │ ├── ErrorCorrection.php │ │ │ ├── ErrorCorrectionType.php │ │ │ ├── ExtendedContentEncryption.php │ │ │ ├── ExtendedStreamProps.php │ │ │ ├── FileID.php │ │ │ ├── FileLength.php │ │ │ ├── FileSize.php │ │ │ ├── Flags.php │ │ │ ├── Genre.php │ │ │ ├── GenreID.php │ │ │ ├── GroupMutualExclusion.php │ │ │ ├── HasArbitraryDataStream.php │ │ │ ├── HasAttachedImages.php │ │ │ ├── HasAudio.php │ │ │ ├── HasFileTransferStream.php │ │ │ ├── HasImage.php │ │ │ ├── HasScript.php │ │ │ ├── HasVideo.php │ │ │ ├── ISRC.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── Index.php │ │ │ ├── IndexParameters.php │ │ │ ├── InitialKey.php │ │ │ ├── IsProtected.php │ │ │ ├── IsTrusted.php │ │ │ ├── IsVBR.php │ │ │ ├── Language.php │ │ │ ├── LanguageList.php │ │ │ ├── Lyrics.php │ │ │ ├── LyricsSynchronised.php │ │ │ ├── MCDI.php │ │ │ ├── Marker.php │ │ │ ├── MaxBitrate.php │ │ │ ├── MaxPacketSize.php │ │ │ ├── MediaClassPrimaryID.php │ │ │ ├── MediaClassSecondaryID.php │ │ │ ├── MediaCredits.php │ │ │ ├── MediaIndex.php │ │ │ ├── MediaIsDelay.php │ │ │ ├── MediaIsFinale.php │ │ │ ├── MediaIsLive.php │ │ │ ├── MediaIsPremiere.php │ │ │ ├── MediaIsRepeat.php │ │ │ ├── MediaIsSAP.php │ │ │ ├── MediaIsStereo.php │ │ │ ├── MediaIsSubtitled.php │ │ │ ├── MediaIsTape.php │ │ │ ├── MediaNetworkAffiliation.php │ │ │ ├── MediaOriginalBroadcastDateTime.php │ │ │ ├── MediaOriginalChannel.php │ │ │ ├── MediaStationCallSign.php │ │ │ ├── MediaStationName.php │ │ │ ├── MinPacketSize.php │ │ │ ├── ModifiedBy.php │ │ │ ├── Mood.php │ │ │ ├── NSCAddress.php │ │ │ ├── NSCDescription.php │ │ │ ├── NSCEmail.php │ │ │ ├── NSCName.php │ │ │ ├── NSCPhone.php │ │ │ ├── NumberOfFrames.php │ │ │ ├── OptimalBitrate.php │ │ │ ├── OriginalAlbumTitle.php │ │ │ ├── OriginalArtist.php │ │ │ ├── OriginalFilename.php │ │ │ ├── OriginalLyricist.php │ │ │ ├── OriginalReleaseTime.php │ │ │ ├── OriginalReleaseYear.php │ │ │ ├── OtherCodecDescription.php │ │ │ ├── OtherCodecName.php │ │ │ ├── Padding.php │ │ │ ├── ParentalRating.php │ │ │ ├── ParentalRatingReason.php │ │ │ ├── PartOfSet.php │ │ │ ├── PeakBitrate.php │ │ │ ├── PeakValue.php │ │ │ ├── Period.php │ │ │ ├── Picture.php │ │ │ ├── PictureDescription.php │ │ │ ├── PictureMimeType.php │ │ │ ├── PictureType.php │ │ │ ├── PlayDuration.php │ │ │ ├── PlaylistDelay.php │ │ │ ├── Preroll.php │ │ │ ├── Producer.php │ │ │ ├── PromotionURL.php │ │ │ ├── ProtectionType.php │ │ │ ├── Provider.php │ │ │ ├── ProviderCopyright.php │ │ │ ├── ProviderRating.php │ │ │ ├── ProviderStyle.php │ │ │ ├── Publisher.php │ │ │ ├── RadioStationName.php │ │ │ ├── RadioStationOwner.php │ │ │ ├── Rating.php │ │ │ ├── Reserved1.php │ │ │ ├── ScriptCommand.php │ │ │ ├── Seekable.php │ │ │ ├── SendDuration.php │ │ │ ├── SharedUserRating.php │ │ │ ├── SignatureName.php │ │ │ ├── SimpleIndex.php │ │ │ ├── StreamBitrateProps.php │ │ │ ├── StreamNumber.php │ │ │ ├── StreamPrioritization.php │ │ │ ├── StreamType.php │ │ │ ├── StreamTypeInfo.php │ │ │ ├── Stridable.php │ │ │ ├── SubTitle.php │ │ │ ├── SubTitleDescription.php │ │ │ ├── SubscriptionContentID.php │ │ │ ├── Text.php │ │ │ ├── TimeOffset.php │ │ │ ├── TimecodeIndex.php │ │ │ ├── TimecodeIndexParms.php │ │ │ ├── Title.php │ │ │ ├── ToolName.php │ │ │ ├── ToolVersion.php │ │ │ ├── Track.php │ │ │ ├── TrackNumber.php │ │ │ ├── UniqueFileIdentifier.php │ │ │ ├── UserWebURL.php │ │ │ ├── VBRPeak.php │ │ │ ├── VideoClosedCaptioning.php │ │ │ ├── VideoCodecDescription.php │ │ │ ├── VideoCodecName.php │ │ │ ├── VideoFrameRate.php │ │ │ ├── VideoHeight.php │ │ │ ├── VideoWidth.php │ │ │ ├── WMADRCAverageReference.php │ │ │ ├── WMADRCAverageTarget.php │ │ │ ├── WMADRCPeakReference.php │ │ │ ├── WMADRCPeakTarget.php │ │ │ ├── WMCollectionGroupID.php │ │ │ ├── WMCollectionID.php │ │ │ ├── WMContentID.php │ │ │ ├── Writer.php │ │ │ └── Year.php │ │ ├── AVI1 │ │ │ └── InterleavedField.php │ │ ├── Adobe │ │ │ ├── APP14Flags0.php │ │ │ ├── APP14Flags1.php │ │ │ ├── Adobe.php │ │ │ ├── ColorTransform.php │ │ │ └── DCTEncodeVersion.php │ │ ├── AdobeCM │ │ │ └── AdobeCMType.php │ │ ├── Apple │ │ │ ├── BurstUUID.php │ │ │ ├── HDRImageType.php │ │ │ ├── RunTimeEpoch.php │ │ │ ├── RunTimeFlags.php │ │ │ ├── RunTimeScale.php │ │ │ └── RunTimeValue.php │ │ ├── Audible │ │ │ ├── Album.php │ │ │ ├── AlbumArtist.php │ │ │ ├── Artist.php │ │ │ ├── Author.php │ │ │ ├── ChapterCount.php │ │ │ ├── ChapterName.php │ │ │ ├── ChapterNumber.php │ │ │ ├── Comment.php │ │ │ ├── Copyright.php │ │ │ ├── CoverArt.php │ │ │ ├── CoverArtType.php │ │ │ ├── CreatorTool.php │ │ │ ├── Genre.php │ │ │ ├── ITunesMediaType.php │ │ │ ├── PublishDate.php │ │ │ ├── PublishDateStart.php │ │ │ ├── Subtitle.php │ │ │ ├── Title.php │ │ │ └── Year.php │ │ ├── Canon │ │ │ ├── AEBBracketValue.php │ │ │ ├── AESetting.php │ │ │ ├── AFAccelDecelTracking.php │ │ │ ├── AFAreaHeight.php │ │ │ ├── AFAreaHeights.php │ │ │ ├── AFAreaMode.php │ │ │ ├── AFAreaWidth.php │ │ │ ├── AFAreaWidths.php │ │ │ ├── AFAreaXPositions.php │ │ │ ├── AFAreaYPositions.php │ │ │ ├── AFConfigTool.php │ │ │ ├── AFImageHeight.php │ │ │ ├── AFImageWidth.php │ │ │ ├── AFInfoSize.php │ │ │ ├── AFMicroAdjMode.php │ │ │ ├── AFMicroAdjValue.php │ │ │ ├── AFPoint.php │ │ │ ├── AFPointSwitching.php │ │ │ ├── AFPointsInFocus.php │ │ │ ├── AFPointsInFocus1D.php │ │ │ ├── AFPointsInFocus5D.php │ │ │ ├── AFPointsSelected.php │ │ │ ├── AFTrackingSensitivity.php │ │ │ ├── AmbienceSelection.php │ │ │ ├── AspectRatio.php │ │ │ ├── AudioBitrate.php │ │ │ ├── AudioChannels.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── AutoExposureBracketing.php │ │ │ ├── AutoISO.php │ │ │ ├── AutoLightingOptimizer.php │ │ │ ├── AutoRotate.php │ │ │ ├── AverageBlackLevel.php │ │ │ ├── BaseISO.php │ │ │ ├── BlackLevel.php │ │ │ ├── BlackMaskBottomBorder.php │ │ │ ├── BlackMaskLeftBorder.php │ │ │ ├── BlackMaskRightBorder.php │ │ │ ├── BlackMaskTopBorder.php │ │ │ ├── BracketMode.php │ │ │ ├── BracketShotNumber.php │ │ │ ├── BracketValue.php │ │ │ ├── BulbDuration.php │ │ │ ├── CRWParam.php │ │ │ ├── CameraColorCalibration01.php │ │ │ ├── CameraColorCalibration02.php │ │ │ ├── CameraColorCalibration03.php │ │ │ ├── CameraColorCalibration04.php │ │ │ ├── CameraColorCalibration05.php │ │ │ ├── CameraColorCalibration06.php │ │ │ ├── CameraColorCalibration07.php │ │ │ ├── CameraColorCalibration08.php │ │ │ ├── CameraColorCalibration09.php │ │ │ ├── CameraColorCalibration10.php │ │ │ ├── CameraColorCalibration11.php │ │ │ ├── CameraColorCalibration12.php │ │ │ ├── CameraColorCalibration13.php │ │ │ ├── CameraColorCalibration14.php │ │ │ ├── CameraColorCalibration15.php │ │ │ ├── CameraISO.php │ │ │ ├── CameraOrientation.php │ │ │ ├── CameraPictureStyle.php │ │ │ ├── CameraTemperature.php │ │ │ ├── CameraType.php │ │ │ ├── CanonAFInfo0x000b.php │ │ │ ├── CanonAFInfo20x000d.php │ │ │ ├── CanonExposureMode.php │ │ │ ├── CanonFileLength.php │ │ │ ├── CanonFirmwareVersion.php │ │ │ ├── CanonFlashInfo.php │ │ │ ├── CanonFlashMode.php │ │ │ ├── CanonImageHeight.php │ │ │ ├── CanonImageSize.php │ │ │ ├── CanonImageType.php │ │ │ ├── CanonImageWidth.php │ │ │ ├── CanonModelID.php │ │ │ ├── Categories.php │ │ │ ├── ChromaticAberrationCorr.php │ │ │ ├── ChromaticAberrationSetting.php │ │ │ ├── ColorDataVersion.php │ │ │ ├── ColorSpace.php │ │ │ ├── ColorTempAsShot.php │ │ │ ├── ColorTempAuto.php │ │ │ ├── ColorTempCloudy.php │ │ │ ├── ColorTempCustom.php │ │ │ ├── ColorTempCustom1.php │ │ │ ├── ColorTempCustom2.php │ │ │ ├── ColorTempDaylight.php │ │ │ ├── ColorTempFlash.php │ │ │ ├── ColorTempFlashData.php │ │ │ ├── ColorTempFluorescent.php │ │ │ ├── ColorTempKelvin.php │ │ │ ├── ColorTempMeasured.php │ │ │ ├── ColorTempPC1.php │ │ │ ├── ColorTempPC2.php │ │ │ ├── ColorTempPC3.php │ │ │ ├── ColorTempShade.php │ │ │ ├── ColorTempTungsten.php │ │ │ ├── ColorTempUnknown.php │ │ │ ├── ColorTempUnknown10.php │ │ │ ├── ColorTempUnknown11.php │ │ │ ├── ColorTempUnknown12.php │ │ │ ├── ColorTempUnknown13.php │ │ │ ├── ColorTempUnknown14.php │ │ │ ├── ColorTempUnknown15.php │ │ │ ├── ColorTempUnknown16.php │ │ │ ├── ColorTempUnknown17.php │ │ │ ├── ColorTempUnknown18.php │ │ │ ├── ColorTempUnknown19.php │ │ │ ├── ColorTempUnknown2.php │ │ │ ├── ColorTempUnknown20.php │ │ │ ├── ColorTempUnknown21.php │ │ │ ├── ColorTempUnknown22.php │ │ │ ├── ColorTempUnknown23.php │ │ │ ├── ColorTempUnknown24.php │ │ │ ├── ColorTempUnknown25.php │ │ │ ├── ColorTempUnknown26.php │ │ │ ├── ColorTempUnknown27.php │ │ │ ├── ColorTempUnknown28.php │ │ │ ├── ColorTempUnknown29.php │ │ │ ├── ColorTempUnknown3.php │ │ │ ├── ColorTempUnknown30.php │ │ │ ├── ColorTempUnknown4.php │ │ │ ├── ColorTempUnknown5.php │ │ │ ├── ColorTempUnknown6.php │ │ │ ├── ColorTempUnknown7.php │ │ │ ├── ColorTempUnknown8.php │ │ │ ├── ColorTempUnknown9.php │ │ │ ├── ColorTemperature.php │ │ │ ├── ColorTone.php │ │ │ ├── ColorToneAuto.php │ │ │ ├── ColorToneFaithful.php │ │ │ ├── ColorToneLandscape.php │ │ │ ├── ColorToneMonochrome.php │ │ │ ├── ColorToneNeutral.php │ │ │ ├── ColorTonePortrait.php │ │ │ ├── ColorToneStandard.php │ │ │ ├── ColorToneUserDef1.php │ │ │ ├── ColorToneUserDef2.php │ │ │ ├── ColorToneUserDef3.php │ │ │ ├── CompressorVersion.php │ │ │ ├── ContinuousDrive.php │ │ │ ├── Contrast.php │ │ │ ├── ContrastAuto.php │ │ │ ├── ContrastFaithful.php │ │ │ ├── ContrastLandscape.php │ │ │ ├── ContrastMonochrome.php │ │ │ ├── ContrastNeutral.php │ │ │ ├── ContrastPortrait.php │ │ │ ├── ContrastStandard.php │ │ │ ├── ContrastUserDef1.php │ │ │ ├── ContrastUserDef2.php │ │ │ ├── ContrastUserDef3.php │ │ │ ├── ControlMode.php │ │ │ ├── CropBottomMargin.php │ │ │ ├── CropLeftMargin.php │ │ │ ├── CropRightMargin.php │ │ │ ├── CropTopMargin.php │ │ │ ├── CroppedImageHeight.php │ │ │ ├── CroppedImageLeft.php │ │ │ ├── CroppedImageTop.php │ │ │ ├── CroppedImageWidth.php │ │ │ ├── CustomPictureStyleFileName.php │ │ │ ├── DateStampMode.php │ │ │ ├── DaylightSavings.php │ │ │ ├── DigitalGain.php │ │ │ ├── DigitalZoom.php │ │ │ ├── DirectoryIndex.php │ │ │ ├── DirectoryIndex2.php │ │ │ ├── DisplayAperture.php │ │ │ ├── Duration.php │ │ │ ├── DustRemovalData.php │ │ │ ├── EasyMode.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── Face1Position.php │ │ │ ├── Face2Position.php │ │ │ ├── Face3Position.php │ │ │ ├── Face4Position.php │ │ │ ├── Face5Position.php │ │ │ ├── Face6Position.php │ │ │ ├── Face7Position.php │ │ │ ├── Face8Position.php │ │ │ ├── Face9Position.php │ │ │ ├── FaceDetectFrameSize.php │ │ │ ├── FaceWidth.php │ │ │ ├── FacesDetected.php │ │ │ ├── FileIndex.php │ │ │ ├── FileIndex2.php │ │ │ ├── FileNumber.php │ │ │ ├── FilterEffect.php │ │ │ ├── FilterEffectAuto.php │ │ │ ├── FilterEffectFaithful.php │ │ │ ├── FilterEffectLandscape.php │ │ │ ├── FilterEffectMonochrome.php │ │ │ ├── FilterEffectNeutral.php │ │ │ ├── FilterEffectPortrait.php │ │ │ ├── FilterEffectStandard.php │ │ │ ├── FilterEffectUserDef1.php │ │ │ ├── FilterEffectUserDef2.php │ │ │ ├── FilterEffectUserDef3.php │ │ │ ├── FirmwareRevision.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── FirmwareVersionLookAhead.php │ │ │ ├── FisheyeFilter.php │ │ │ ├── FlashActivity.php │ │ │ ├── FlashBatteryLevel.php │ │ │ ├── FlashBits.php │ │ │ ├── FlashExposureComp.php │ │ │ ├── FlashExposureLock.php │ │ │ ├── FlashGuideNumber.php │ │ │ ├── FlashMeteringMode.php │ │ │ ├── FlashOutput.php │ │ │ ├── Flavor.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalPlaneXSize.php │ │ │ ├── FocalPlaneXUnknown.php │ │ │ ├── FocalPlaneYSize.php │ │ │ ├── FocalPlaneYUnknown.php │ │ │ ├── FocalType.php │ │ │ ├── FocalUnits.php │ │ │ ├── FocusContinuous.php │ │ │ ├── FocusDistanceLower.php │ │ │ ├── FocusDistanceUpper.php │ │ │ ├── FocusMode.php │ │ │ ├── FocusRange.php │ │ │ ├── FrameCount.php │ │ │ ├── FrameRate.php │ │ │ ├── GrainyBWFilter.php │ │ │ ├── HDR.php │ │ │ ├── HDREffect.php │ │ │ ├── HighISONoiseReduction.php │ │ │ ├── HighlightTonePriority.php │ │ │ ├── ISO.php │ │ │ ├── ImageStabilization.php │ │ │ ├── ImageUniqueID.php │ │ │ ├── IntelligentContrast.php │ │ │ ├── InternalSerialNumber.php │ │ │ ├── JPEGQuality.php │ │ │ ├── LensModel.php │ │ │ ├── LensSerialNumber.php │ │ │ ├── LensType.php │ │ │ ├── LinearityUpperMargin.php │ │ │ ├── LiveViewShooting.php │ │ │ ├── LongExposureNoiseReduction.php │ │ │ ├── LongExposureNoiseReduction2.php │ │ │ ├── MacroMagnification.php │ │ │ ├── MacroMode.php │ │ │ ├── ManualFlashOutput.php │ │ │ ├── MaxAperture.php │ │ │ ├── MaxFocalLength.php │ │ │ ├── MeasuredEV.php │ │ │ ├── MeasuredEV2.php │ │ │ ├── MeasuredEV3.php │ │ │ ├── MeasuredRGGB.php │ │ │ ├── MeasuredRGGBData.php │ │ │ ├── MeteringMode.php │ │ │ ├── MinAperture.php │ │ │ ├── MinFocalLength.php │ │ │ ├── MiniatureFilter.php │ │ │ ├── MiniatureFilterOrientation.php │ │ │ ├── MiniatureFilterParameter.php │ │ │ ├── MiniatureFilterPosition.php │ │ │ ├── ModifiedColorTemp.php │ │ │ ├── ModifiedDigitalGain.php │ │ │ ├── ModifiedParamFlag.php │ │ │ ├── ModifiedPictureStyle.php │ │ │ ├── ModifiedSensorBlueLevel.php │ │ │ ├── ModifiedSensorRedLevel.php │ │ │ ├── ModifiedSharpness.php │ │ │ ├── ModifiedSharpnessFreq.php │ │ │ ├── ModifiedToneCurve.php │ │ │ ├── ModifiedWhiteBalance.php │ │ │ ├── ModifiedWhiteBalanceBlue.php │ │ │ ├── ModifiedWhiteBalanceRed.php │ │ │ ├── MultiExposure.php │ │ │ ├── MultiExposureControl.php │ │ │ ├── MultiExposureShots.php │ │ │ ├── MyColorMode.php │ │ │ ├── NDFilter.php │ │ │ ├── NormalWhiteLevel.php │ │ │ ├── NumAFPoints.php │ │ │ ├── OpticalZoomCode.php │ │ │ ├── OriginalDecisionDataOffset.php │ │ │ ├── OriginalImageHeight.php │ │ │ ├── OriginalImageWidth.php │ │ │ ├── OwnerName.php │ │ │ ├── PaintingFilter.php │ │ │ ├── PanoramaDirection.php │ │ │ ├── PanoramaFrameNumber.php │ │ │ ├── PerChannelBlackLevel.php │ │ │ ├── PeripheralIlluminationCorr.php │ │ │ ├── PeripheralLighting.php │ │ │ ├── PeripheralLightingSetting.php │ │ │ ├── PeripheralLightingValue.php │ │ │ ├── PhotoEffect.php │ │ │ ├── PictureStyle.php │ │ │ ├── PreviewImageHeight.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── PreviewImageWidth.php │ │ │ ├── PreviewQuality.php │ │ │ ├── PrimaryAFPoint.php │ │ │ ├── Quality.php │ │ │ ├── RawDataOffset.php │ │ │ ├── RawJpgQuality.php │ │ │ ├── RawJpgSize.php │ │ │ ├── RawMeasuredRGGB.php │ │ │ ├── RecordMode.php │ │ │ ├── Rotation.php │ │ │ ├── SRAWQuality.php │ │ │ ├── Saturation.php │ │ │ ├── SaturationAuto.php │ │ │ ├── SaturationFaithful.php │ │ │ ├── SaturationLandscape.php │ │ │ ├── SaturationMonochrome.php │ │ │ ├── SaturationNeutral.php │ │ │ ├── SaturationPortrait.php │ │ │ ├── SaturationStandard.php │ │ │ ├── SaturationUserDef1.php │ │ │ ├── SaturationUserDef2.php │ │ │ ├── SaturationUserDef3.php │ │ │ ├── SelfTimer.php │ │ │ ├── SelfTimer2.php │ │ │ ├── SensorBlueLevel.php │ │ │ ├── SensorBottomBorder.php │ │ │ ├── SensorHeight.php │ │ │ ├── SensorLeftBorder.php │ │ │ ├── SensorRedLevel.php │ │ │ ├── SensorRightBorder.php │ │ │ ├── SensorTopBorder.php │ │ │ ├── SensorWidth.php │ │ │ ├── SequenceNumber.php │ │ │ ├── SerialNumber.php │ │ │ ├── SerialNumberFormat.php │ │ │ ├── Sharpness.php │ │ │ ├── SharpnessAuto.php │ │ │ ├── SharpnessFaithful.php │ │ │ ├── SharpnessFreqTable.php │ │ │ ├── SharpnessFrequency.php │ │ │ ├── SharpnessLandscape.php │ │ │ ├── SharpnessMonochrome.php │ │ │ ├── SharpnessNeutral.php │ │ │ ├── SharpnessPortrait.php │ │ │ ├── SharpnessStandard.php │ │ │ ├── SharpnessTable.php │ │ │ ├── SharpnessUserDef1.php │ │ │ ├── SharpnessUserDef2.php │ │ │ ├── SharpnessUserDef3.php │ │ │ ├── ShortOwnerName.php │ │ │ ├── ShutterCount.php │ │ │ ├── SlowShutter.php │ │ │ ├── SoftFocusFilter.php │ │ │ ├── SpecularWhiteLevel.php │ │ │ ├── SpotMeteringMode.php │ │ │ ├── SuperMacro.php │ │ │ ├── TargetAperture.php │ │ │ ├── TargetExposureTime.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── ThumbnailImageValidArea.php │ │ │ ├── TimeStamp.php │ │ │ ├── TimeStamp1.php │ │ │ ├── TimeZone.php │ │ │ ├── TimeZoneCity.php │ │ │ ├── ToneCurve.php │ │ │ ├── ToneCurveMatching.php │ │ │ ├── ToneCurveTable.php │ │ │ ├── ToningEffect.php │ │ │ ├── ToningEffectAuto.php │ │ │ ├── ToningEffectFaithful.php │ │ │ ├── ToningEffectLandscape.php │ │ │ ├── ToningEffectMonochrome.php │ │ │ ├── ToningEffectNeutral.php │ │ │ ├── ToningEffectPortrait.php │ │ │ ├── ToningEffectStandard.php │ │ │ ├── ToningEffectUserDef1.php │ │ │ ├── ToningEffectUserDef2.php │ │ │ ├── ToningEffectUserDef3.php │ │ │ ├── ToyCameraFilter.php │ │ │ ├── UnknownCNDB.php │ │ │ ├── UserDef1PictureStyle.php │ │ │ ├── UserDef2PictureStyle.php │ │ │ ├── UserDef3PictureStyle.php │ │ │ ├── VRDOffset.php │ │ │ ├── ValidAFPoints.php │ │ │ ├── VideoCodec.php │ │ │ ├── VignettingCorrVersion.php │ │ │ ├── WBBracketMode.php │ │ │ ├── WBBracketValueAB.php │ │ │ ├── WBBracketValueGM.php │ │ │ ├── WBRGGBBlackLevels.php │ │ │ ├── WBRGGBLevelsAsShot.php │ │ │ ├── WBRGGBLevelsAuto.php │ │ │ ├── WBRGGBLevelsCloudy.php │ │ │ ├── WBRGGBLevelsCustom.php │ │ │ ├── WBRGGBLevelsCustom1.php │ │ │ ├── WBRGGBLevelsCustom2.php │ │ │ ├── WBRGGBLevelsDaylight.php │ │ │ ├── WBRGGBLevelsFlash.php │ │ │ ├── WBRGGBLevelsFluorescent.php │ │ │ ├── WBRGGBLevelsKelvin.php │ │ │ ├── WBRGGBLevelsMeasured.php │ │ │ ├── WBRGGBLevelsPC1.php │ │ │ ├── WBRGGBLevelsPC2.php │ │ │ ├── WBRGGBLevelsPC3.php │ │ │ ├── WBRGGBLevelsShade.php │ │ │ ├── WBRGGBLevelsTungsten.php │ │ │ ├── WBRGGBLevelsUnknown.php │ │ │ ├── WBRGGBLevelsUnknown10.php │ │ │ ├── WBRGGBLevelsUnknown11.php │ │ │ ├── WBRGGBLevelsUnknown12.php │ │ │ ├── WBRGGBLevelsUnknown13.php │ │ │ ├── WBRGGBLevelsUnknown14.php │ │ │ ├── WBRGGBLevelsUnknown15.php │ │ │ ├── WBRGGBLevelsUnknown16.php │ │ │ ├── WBRGGBLevelsUnknown17.php │ │ │ ├── WBRGGBLevelsUnknown18.php │ │ │ ├── WBRGGBLevelsUnknown19.php │ │ │ ├── WBRGGBLevelsUnknown2.php │ │ │ ├── WBRGGBLevelsUnknown20.php │ │ │ ├── WBRGGBLevelsUnknown21.php │ │ │ ├── WBRGGBLevelsUnknown22.php │ │ │ ├── WBRGGBLevelsUnknown23.php │ │ │ ├── WBRGGBLevelsUnknown24.php │ │ │ ├── WBRGGBLevelsUnknown25.php │ │ │ ├── WBRGGBLevelsUnknown26.php │ │ │ ├── WBRGGBLevelsUnknown27.php │ │ │ ├── WBRGGBLevelsUnknown28.php │ │ │ ├── WBRGGBLevelsUnknown29.php │ │ │ ├── WBRGGBLevelsUnknown3.php │ │ │ ├── WBRGGBLevelsUnknown30.php │ │ │ ├── WBRGGBLevelsUnknown4.php │ │ │ ├── WBRGGBLevelsUnknown5.php │ │ │ ├── WBRGGBLevelsUnknown6.php │ │ │ ├── WBRGGBLevelsUnknown7.php │ │ │ ├── WBRGGBLevelsUnknown8.php │ │ │ ├── WBRGGBLevelsUnknown9.php │ │ │ ├── WBShiftAB.php │ │ │ ├── WBShiftGM.php │ │ │ ├── WatercolorFilter.php │ │ │ ├── WhiteBalance.php │ │ │ ├── WhiteBalanceBlue.php │ │ │ ├── WhiteBalanceMatching.php │ │ │ ├── WhiteBalanceRed.php │ │ │ ├── WhiteBalanceTable.php │ │ │ ├── ZoomSourceWidth.php │ │ │ └── ZoomTargetWidth.php │ │ ├── CanonCustom │ │ │ ├── AEBAutoCancel.php │ │ │ ├── AEBSequence.php │ │ │ ├── AEBSequenceAutoCancel.php │ │ │ ├── AEBShotCount.php │ │ │ ├── AEMicroadjustment.php │ │ │ ├── AFAndMeteringButtons.php │ │ │ ├── AFAreaSelectMethod.php │ │ │ ├── AFAssist.php │ │ │ ├── AFAssistBeam.php │ │ │ ├── AFDuringLiveView.php │ │ │ ├── AFMicroadjustment.php │ │ │ ├── AFOnAELockButtonSwitch.php │ │ │ ├── AFPointActivationArea.php │ │ │ ├── AFPointAreaExpansion.php │ │ │ ├── AFPointAutoSelection.php │ │ │ ├── AFPointBrightness.php │ │ │ ├── AFPointDisplayDuringFocus.php │ │ │ ├── AFPointIllumination.php │ │ │ ├── AFPointRegistration.php │ │ │ ├── AFPointSelection.php │ │ │ ├── AFPointSelectionMethod.php │ │ │ ├── AFPointSpotMetering.php │ │ │ ├── AIServoContinuousShooting.php │ │ │ ├── AIServoFirstImagePriority.php │ │ │ ├── AIServoImagePriority.php │ │ │ ├── AIServoSecondImagePriority.php │ │ │ ├── AIServoTrackingMethod.php │ │ │ ├── AIServoTrackingSensitivity.php │ │ │ ├── AccelerationTracking.php │ │ │ ├── AddAspectRatioInfo.php │ │ │ ├── AddOriginalDecisionData.php │ │ │ ├── ApertureRange.php │ │ │ ├── ApplyShootingMeteringMode.php │ │ │ ├── AssignFuncButton.php │ │ │ ├── AssistButtonFunction.php │ │ │ ├── AutoAFPointColorTracking.php │ │ │ ├── AutoLightingOptimizer.php │ │ │ ├── AvSettingWithoutLens.php │ │ │ ├── ButtonFunctionControlOff.php │ │ │ ├── ContinuousShootingSpeed.php │ │ │ ├── ContinuousShotLimit.php │ │ │ ├── CustomControls.php │ │ │ ├── DefaultEraseOption.php │ │ │ ├── DialDirectionTvAv.php │ │ │ ├── DisplayAllAFPoints.php │ │ │ ├── ETTLII.php │ │ │ ├── ExposureLevelIncrements.php │ │ │ ├── ExposureModeInManual.php │ │ │ ├── FEMicroadjustment.php │ │ │ ├── FillFlashAutoReduction.php │ │ │ ├── FinderDisplayDuringExposure.php │ │ │ ├── FlashButtonFunction.php │ │ │ ├── FlashFiring.php │ │ │ ├── FlashSyncSpeedAv.php │ │ │ ├── FocusDisplayAIServoAndMF.php │ │ │ ├── FocusingScreen.php │ │ │ ├── HighISONoiseReduction.php │ │ │ ├── HighlightTonePriority.php │ │ │ ├── ISOExpansion.php │ │ │ ├── ISOSpeedExpansion.php │ │ │ ├── ISOSpeedIncrements.php │ │ │ ├── ISOSpeedRange.php │ │ │ ├── InfoButtonWhenShooting.php │ │ │ ├── InitialAFPointAIServoAF.php │ │ │ ├── LCDDisplayAtPowerOn.php │ │ │ ├── LCDDisplayReturnToShoot.php │ │ │ ├── LCDIlluminationDuringBulb.php │ │ │ ├── LCDPanels.php │ │ │ ├── LVShootingAreaDisplay.php │ │ │ ├── LensAFStopButton.php │ │ │ ├── LensDriveNoAF.php │ │ │ ├── LiveViewExposureSimulation.php │ │ │ ├── LockMicrophoneButton.php │ │ │ ├── LongExposureNoiseReduction.php │ │ │ ├── MagnifiedView.php │ │ │ ├── ManualAFPointSelectPattern.php │ │ │ ├── ManualTv.php │ │ │ ├── MemoAudioQuality.php │ │ │ ├── MenuButtonDisplayPosition.php │ │ │ ├── MenuButtonReturn.php │ │ │ ├── MirrorLockup.php │ │ │ ├── MultiControllerWhileMetering.php │ │ │ ├── MultiFunctionLock.php │ │ │ ├── OrientationLinkedAFPoint.php │ │ │ ├── PF0CustomFuncRegistration.php │ │ │ ├── PF10RetainProgramShift.php │ │ │ ├── PF13DrivePriority.php │ │ │ ├── PF14DisableFocusSearch.php │ │ │ ├── PF15DisableAFAssistBeam.php │ │ │ ├── PF16AutoFocusPointShoot.php │ │ │ ├── PF17DisableAFPointSel.php │ │ │ ├── PF18EnableAutoAFPointSel.php │ │ │ ├── PF19ContinuousShootSpeed.php │ │ │ ├── PF19ShootingSpeedHigh.php │ │ │ ├── PF19ShootingSpeedLow.php │ │ │ ├── PF1DisableShootingModes.php │ │ │ ├── PF1Value.php │ │ │ ├── PF20LimitContinousShots.php │ │ │ ├── PF20MaxContinousShots.php │ │ │ ├── PF21EnableQuietOperation.php │ │ │ ├── PF23FELockTime.php │ │ │ ├── PF23PostReleaseTime.php │ │ │ ├── PF23SetTimerLengths.php │ │ │ ├── PF23ShutterButtonTime.php │ │ │ ├── PF24LightLCDDuringBulb.php │ │ │ ├── PF25AEMode.php │ │ │ ├── PF25AFMode.php │ │ │ ├── PF25AFPointSel.php │ │ │ ├── PF25ColorMatrix.php │ │ │ ├── PF25DefaultClearSettings.php │ │ │ ├── PF25DriveMode.php │ │ │ ├── PF25ImageSize.php │ │ │ ├── PF25MeteringMode.php │ │ │ ├── PF25Parameters.php │ │ │ ├── PF25WBMode.php │ │ │ ├── PF26ShortenReleaseLag.php │ │ │ ├── PF27ReverseDialRotation.php │ │ │ ├── PF27Value.php │ │ │ ├── PF28NoQuickDialExpComp.php │ │ │ ├── PF29QuickDialSwitchOff.php │ │ │ ├── PF2DisableMeteringModes.php │ │ │ ├── PF2Value.php │ │ │ ├── PF30EnlargementMode.php │ │ │ ├── PF31OriginalDecisionData.php │ │ │ ├── PF3ManualExposureMetering.php │ │ │ ├── PF3Value.php │ │ │ ├── PF4ExposureTimeLimits.php │ │ │ ├── PF4ExposureTimeMax.php │ │ │ ├── PF4ExposureTimeMin.php │ │ │ ├── PF5ApertureLimits.php │ │ │ ├── PF5ApertureMax.php │ │ │ ├── PF5ApertureMin.php │ │ │ ├── PF6PresetShootingModes.php │ │ │ ├── PF7BracketContinuousShoot.php │ │ │ ├── PF8BracketShots.php │ │ │ ├── PF8SetBracketShots.php │ │ │ ├── PF9ChangeBracketSequence.php │ │ │ ├── QuickControlDialInMeter.php │ │ │ ├── RawAndJpgRecording.php │ │ │ ├── RestrictDriveModes.php │ │ │ ├── RetractLensOnPowerOff.php │ │ │ ├── SafetyShift.php │ │ │ ├── SafetyShiftInAvOrTv.php │ │ │ ├── SameExposureForNewAperture.php │ │ │ ├── SelectAFAreaSelectMode.php │ │ │ ├── SelectableAFPoint.php │ │ │ ├── SensorCleaning.php │ │ │ ├── SetButtonCrossKeysFunc.php │ │ │ ├── SetButtonWhenShooting.php │ │ │ ├── SetFunctionWhenShooting.php │ │ │ ├── ShortReleaseTimeLag.php │ │ │ ├── ShutterAELButton.php │ │ │ ├── ShutterAELock.php │ │ │ ├── ShutterButtonAFOnButton.php │ │ │ ├── ShutterCurtainSync.php │ │ │ ├── ShutterReleaseNoCFCard.php │ │ │ ├── ShutterReleaseWithoutLens.php │ │ │ ├── ShutterSpeedRange.php │ │ │ ├── SpotMeterLinkToAFPoint.php │ │ │ ├── StartMovieShooting.php │ │ │ ├── SuperimposedDisplay.php │ │ │ ├── SwitchToRegisteredAFPoint.php │ │ │ ├── TimerLength.php │ │ │ ├── TrashButtonFunction.php │ │ │ ├── USMLensElectronicMF.php │ │ │ ├── UsableMeteringModes.php │ │ │ ├── UsableShootingModes.php │ │ │ ├── VFDisplayIllumination.php │ │ │ ├── ViewInfoDuringExposure.php │ │ │ ├── ViewfinderWarnings.php │ │ │ └── WBMediaImageSizeSetting.php │ │ ├── CanonRaw │ │ │ ├── ApertureValue.php │ │ │ ├── BaseISO.php │ │ │ ├── CanonColorInfo1.php │ │ │ ├── CanonColorInfo2.php │ │ │ ├── CanonFileDescription.php │ │ │ ├── CanonFirmwareVersion.php │ │ │ ├── CanonFlashInfo.php │ │ │ ├── CanonImageType.php │ │ │ ├── CanonModelID.php │ │ │ ├── ColorBW.php │ │ │ ├── ColorBitDepth.php │ │ │ ├── ColorSpace.php │ │ │ ├── ColorTemperature.php │ │ │ ├── ComponentBitDepth.php │ │ │ ├── ComponentVersion.php │ │ │ ├── CompressedDataLength.php │ │ │ ├── CompressedDataOffset.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DecoderTableNumber.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── FileFormat.php │ │ │ ├── FileNumber.php │ │ │ ├── FlashGuideNumber.php │ │ │ ├── FlashThreshold.php │ │ │ ├── FreeBytes.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── JpgFromRaw.php │ │ │ ├── Make.php │ │ │ ├── MeasuredEV.php │ │ │ ├── Model.php │ │ │ ├── NullRecord.php │ │ │ ├── OriginalFileName.php │ │ │ ├── OwnerName.php │ │ │ ├── PixelAspectRatio.php │ │ │ ├── ROMOperationMode.php │ │ │ ├── RawData.php │ │ │ ├── RawJpgHeight.php │ │ │ ├── RawJpgQuality.php │ │ │ ├── RawJpgSize.php │ │ │ ├── RawJpgWidth.php │ │ │ ├── RecordID.php │ │ │ ├── ReleaseSetting.php │ │ │ ├── Rotation.php │ │ │ ├── SelfTimerTime.php │ │ │ ├── SerialNumber.php │ │ │ ├── SerialNumberFormat.php │ │ │ ├── ShutterReleaseMethod.php │ │ │ ├── ShutterReleaseTiming.php │ │ │ ├── ShutterSpeedValue.php │ │ │ ├── TargetCompressionRatio.php │ │ │ ├── TargetDistanceSetting.php │ │ │ ├── TargetImageType.php │ │ │ ├── ThumbnailFileName.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── TimeZoneCode.php │ │ │ ├── TimeZoneInfo.php │ │ │ ├── UnknownNumber.php │ │ │ ├── UserComment.php │ │ │ ├── WhiteSampleBits.php │ │ │ ├── WhiteSampleHeight.php │ │ │ ├── WhiteSampleLeftBorder.php │ │ │ ├── WhiteSampleTopBorder.php │ │ │ └── WhiteSampleWidth.php │ │ ├── CanonVRD │ │ │ ├── AberrationCorrectionDistance.php │ │ │ ├── AngleAdj.php │ │ │ ├── AquaHSL.php │ │ │ ├── AutoLightingOptimizer.php │ │ │ ├── AutoLightingOptimizerOn.php │ │ │ ├── BlueCurveLimits.php │ │ │ ├── BlueCurvePoints.php │ │ │ ├── BlueHSL.php │ │ │ ├── BrightnessAdj.php │ │ │ ├── CRCDevelParams.php │ │ │ ├── CameraRawColorTone.php │ │ │ ├── CameraRawContrast.php │ │ │ ├── CameraRawHighlightPoint.php │ │ │ ├── CameraRawLinear.php │ │ │ ├── CameraRawOutputHighlightPoint.php │ │ │ ├── CameraRawOutputShadowPoint.php │ │ │ ├── CameraRawSaturation.php │ │ │ ├── CameraRawShadowPoint.php │ │ │ ├── CameraRawSharpness.php │ │ │ ├── CanonDR4.php │ │ │ ├── CanonVRD.php │ │ │ ├── CheckMark.php │ │ │ ├── CheckMark2.php │ │ │ ├── ChromaticAberration.php │ │ │ ├── ChromaticAberrationBlue.php │ │ │ ├── ChromaticAberrationOn.php │ │ │ ├── ChromaticAberrationRed.php │ │ │ ├── ChrominanceNRTIFFJPEG.php │ │ │ ├── ChrominanceNoiseReduction.php │ │ │ ├── ColorBlur.php │ │ │ ├── ColorBlurOn.php │ │ │ ├── ColorHue.php │ │ │ ├── ColorSaturationAdj.php │ │ │ ├── ColorToneAdj.php │ │ │ ├── ConstrainedCropHeight.php │ │ │ ├── ConstrainedCropWidth.php │ │ │ ├── ContrastAdj.php │ │ │ ├── CropActive.php │ │ │ ├── CropAspectRatio.php │ │ │ ├── CropAspectRatioCustom.php │ │ │ ├── CropCircleActive.php │ │ │ ├── CropCircleRadius.php │ │ │ ├── CropCircleX.php │ │ │ ├── CropCircleY.php │ │ │ ├── CropHeight.php │ │ │ ├── CropLeft.php │ │ │ ├── CropOriginalHeight.php │ │ │ ├── CropOriginalWidth.php │ │ │ ├── CropRotatedOriginalHeight.php │ │ │ ├── CropRotatedOriginalWidth.php │ │ │ ├── CropRotation.php │ │ │ ├── CropTop.php │ │ │ ├── CropWidth.php │ │ │ ├── CropX.php │ │ │ ├── CropY.php │ │ │ ├── CustomColorTone.php │ │ │ ├── CustomContrast.php │ │ │ ├── CustomDefaultUnsharpFineness.php │ │ │ ├── CustomDefaultUnsharpStrength.php │ │ │ ├── CustomDefaultUnsharpThreshold.php │ │ │ ├── CustomLinear.php │ │ │ ├── CustomOutputHighlightPoint.php │ │ │ ├── CustomOutputShadowPoint.php │ │ │ ├── CustomPictureStyle.php │ │ │ ├── CustomPictureStyleData.php │ │ │ ├── CustomRawHighlight.php │ │ │ ├── CustomRawHighlightPoint.php │ │ │ ├── CustomRawShadow.php │ │ │ ├── CustomRawShadowPoint.php │ │ │ ├── CustomSaturation.php │ │ │ ├── CustomSharpness.php │ │ │ ├── CustomUnsharpMaskFineness.php │ │ │ ├── CustomUnsharpMaskStrength.php │ │ │ ├── CustomUnsharpMaskThreshold.php │ │ │ ├── DLOData.php │ │ │ ├── DLODataLength.php │ │ │ ├── DLOOn.php │ │ │ ├── DLOSetting.php │ │ │ ├── DLOSettingApplied.php │ │ │ ├── DLOShootingDistance.php │ │ │ ├── DLOVersion.php │ │ │ ├── DR4CameraModel.php │ │ │ ├── DistortionCorrection.php │ │ │ ├── DistortionCorrectionOn.php │ │ │ ├── DistortionEffect.php │ │ │ ├── DustDeleteApplied.php │ │ │ ├── DynamicRangeMax.php │ │ │ ├── DynamicRangeMin.php │ │ │ ├── FaithfulOutputHighlightPoint.php │ │ │ ├── FaithfulOutputShadowPoint.php │ │ │ ├── FaithfulRawColorTone.php │ │ │ ├── FaithfulRawContrast.php │ │ │ ├── FaithfulRawHighlight.php │ │ │ ├── FaithfulRawHighlightPoint.php │ │ │ ├── FaithfulRawLinear.php │ │ │ ├── FaithfulRawSaturation.php │ │ │ ├── FaithfulRawShadow.php │ │ │ ├── FaithfulRawShadowPoint.php │ │ │ ├── FaithfulRawSharpness.php │ │ │ ├── FaithfulUnsharpMaskFineness.php │ │ │ ├── FaithfulUnsharpMaskStrength.php │ │ │ ├── FaithfulUnsharpMaskThreshold.php │ │ │ ├── GammaBlackPoint.php │ │ │ ├── GammaColorTone.php │ │ │ ├── GammaContrast.php │ │ │ ├── GammaCurveOutputRange.php │ │ │ ├── GammaHighlight.php │ │ │ ├── GammaLinear.php │ │ │ ├── GammaMidPoint.php │ │ │ ├── GammaSaturation.php │ │ │ ├── GammaShadow.php │ │ │ ├── GammaSharpnessStrength.php │ │ │ ├── GammaUnsharpMaskFineness.php │ │ │ ├── GammaUnsharpMaskStrength.php │ │ │ ├── GammaUnsharpMaskThreshold.php │ │ │ ├── GammaWhitePoint.php │ │ │ ├── GreenCurveLimits.php │ │ │ ├── GreenCurvePoints.php │ │ │ ├── GreenHSL.php │ │ │ ├── HighlightAdj.php │ │ │ ├── IHLEXIF.php │ │ │ ├── IsCustomPictureStyle.php │ │ │ ├── LandscapeOutputHighlightPoint.php │ │ │ ├── LandscapeOutputShadowPoint.php │ │ │ ├── LandscapeRawColorTone.php │ │ │ ├── LandscapeRawContrast.php │ │ │ ├── LandscapeRawHighlight.php │ │ │ ├── LandscapeRawHighlightPoint.php │ │ │ ├── LandscapeRawLinear.php │ │ │ ├── LandscapeRawSaturation.php │ │ │ ├── LandscapeRawShadow.php │ │ │ ├── LandscapeRawShadowPoint.php │ │ │ ├── LandscapeRawSharpness.php │ │ │ ├── LandscapeUnsharpMaskFineness.php │ │ │ ├── LandscapeUnsharpMaskStrength.php │ │ │ ├── LandscapeUnsharpMaskThreshold.php │ │ │ ├── LensFocalLength.php │ │ │ ├── LuminanceCurveLimits.php │ │ │ ├── LuminanceCurvePoints.php │ │ │ ├── LuminanceNRTIFFJPEG.php │ │ │ ├── LuminanceNoiseReduction.php │ │ │ ├── MagentaHSL.php │ │ │ ├── MonochromeContrast.php │ │ │ ├── MonochromeFilterEffect.php │ │ │ ├── MonochromeLinear.php │ │ │ ├── MonochromeOutputHighlightPoint.php │ │ │ ├── MonochromeOutputShadowPoint.php │ │ │ ├── MonochromeRawHighlight.php │ │ │ ├── MonochromeRawHighlightPoint.php │ │ │ ├── MonochromeRawShadow.php │ │ │ ├── MonochromeRawShadowPoint.php │ │ │ ├── MonochromeSharpness.php │ │ │ ├── MonochromeToningEffect.php │ │ │ ├── MonochromeUnsharpMaskFineness.php │ │ │ ├── MonochromeUnsharpMaskStrength.php │ │ │ ├── MonochromeUnsharpMaskThreshold.php │ │ │ ├── NeutraUnsharpMaskStrength.php │ │ │ ├── NeutralOutputHighlightPoint.php │ │ │ ├── NeutralOutputShadowPoint.php │ │ │ ├── NeutralRawColorTone.php │ │ │ ├── NeutralRawContrast.php │ │ │ ├── NeutralRawHighlight.php │ │ │ ├── NeutralRawHighlightPoint.php │ │ │ ├── NeutralRawLinear.php │ │ │ ├── NeutralRawSaturation.php │ │ │ ├── NeutralRawShadow.php │ │ │ ├── NeutralRawShadowPoint.php │ │ │ ├── NeutralRawSharpness.php │ │ │ ├── NeutralUnsharpMaskFineness.php │ │ │ ├── NeutralUnsharpMaskThreshold.php │ │ │ ├── OrangeHSL.php │ │ │ ├── PeripheralIllumination.php │ │ │ ├── PeripheralIlluminationOn.php │ │ │ ├── PictureStyle.php │ │ │ ├── PortraitOutputHighlightPoint.php │ │ │ ├── PortraitOutputShadowPoint.php │ │ │ ├── PortraitRawColorTone.php │ │ │ ├── PortraitRawContrast.php │ │ │ ├── PortraitRawHighlight.php │ │ │ ├── PortraitRawHighlightPoint.php │ │ │ ├── PortraitRawLinear.php │ │ │ ├── PortraitRawSaturation.php │ │ │ ├── PortraitRawShadow.php │ │ │ ├── PortraitRawShadowPoint.php │ │ │ ├── PortraitRawSharpness.php │ │ │ ├── PortraitUnsharpMaskFineness.php │ │ │ ├── PortraitUnsharpMaskStrength.php │ │ │ ├── PortraitUnsharpMaskThreshold.php │ │ │ ├── PreviewImage.php │ │ │ ├── PurpleHSL.php │ │ │ ├── RGBCurveLimits.php │ │ │ ├── RGBCurvePoints.php │ │ │ ├── RawBrightnessAdj.php │ │ │ ├── RawCodecVersion.php │ │ │ ├── RawColorAdj.php │ │ │ ├── RawCustomSaturation.php │ │ │ ├── RawCustomTone.php │ │ │ ├── RedCurveLimits.php │ │ │ ├── RedCurvePoints.php │ │ │ ├── RedHSL.php │ │ │ ├── Rotation.php │ │ │ ├── SaturationAdj.php │ │ │ ├── ShadowAdj.php │ │ │ ├── SharpnessAdj.php │ │ │ ├── SharpnessAdjOn.php │ │ │ ├── SharpnessStrength.php │ │ │ ├── ShootingDistance.php │ │ │ ├── StampToolCount.php │ │ │ ├── StandardOutputHighlightPoint.php │ │ │ ├── StandardOutputShadowPoint.php │ │ │ ├── StandardRawColorTone.php │ │ │ ├── StandardRawContrast.php │ │ │ ├── StandardRawHighlight.php │ │ │ ├── StandardRawHighlightPoint.php │ │ │ ├── StandardRawLinear.php │ │ │ ├── StandardRawSaturation.php │ │ │ ├── StandardRawShadow.php │ │ │ ├── StandardRawShadowPoint.php │ │ │ ├── StandardRawSharpness.php │ │ │ ├── StandardUnsharpMaskFineness.php │ │ │ ├── StandardUnsharpMaskStrength.php │ │ │ ├── StandardUnsharpMaskThreshold.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── ToneCurveActive.php │ │ │ ├── ToneCurveBrightness.php │ │ │ ├── ToneCurveColorSpace.php │ │ │ ├── ToneCurveContrast.php │ │ │ ├── ToneCurveInputRange.php │ │ │ ├── ToneCurveInterpolation.php │ │ │ ├── ToneCurveMode.php │ │ │ ├── ToneCurveOriginal.php │ │ │ ├── ToneCurveOutputRange.php │ │ │ ├── ToneCurveProperty.php │ │ │ ├── ToneCurveShape.php │ │ │ ├── ToneCurveX.php │ │ │ ├── ToneCurveY.php │ │ │ ├── UnknownContrast.php │ │ │ ├── UnknownLinear.php │ │ │ ├── UnknownOutputHighlightPoint.php │ │ │ ├── UnknownOutputShadowPoint.php │ │ │ ├── UnknownRawHighlight.php │ │ │ ├── UnknownRawHighlightPoint.php │ │ │ ├── UnknownRawShadow.php │ │ │ ├── UnknownRawShadowPoint.php │ │ │ ├── UnknownSharpness.php │ │ │ ├── UnsharpMask.php │ │ │ ├── UnsharpMaskFineness.php │ │ │ ├── UnsharpMaskStrength.php │ │ │ ├── UnsharpMaskThreshold.php │ │ │ ├── VRDVersion.php │ │ │ ├── WBAdjBlueAmber.php │ │ │ ├── WBAdjColorTemp.php │ │ │ ├── WBAdjMagentaGreen.php │ │ │ ├── WBAdjRGGBLevels.php │ │ │ ├── WBFineTuneActive.php │ │ │ ├── WBFineTuneSaturation.php │ │ │ ├── WBFineTuneTone.php │ │ │ ├── WhiteBalanceAdj.php │ │ │ ├── WorkColorSpace.php │ │ │ └── XMP.php │ │ ├── Casio │ │ │ ├── AFMode.php │ │ │ ├── AFPoint.php │ │ │ ├── AFPointPosition.php │ │ │ ├── ArtMode.php │ │ │ ├── ArtModeParameters.php │ │ │ ├── AutoISO.php │ │ │ ├── BestShotMode.php │ │ │ ├── BracketSequence.php │ │ │ ├── CaptureFrameRate.php │ │ │ ├── CasioImageSize.php │ │ │ ├── CasioQuality.php │ │ │ ├── ColorFilter.php │ │ │ ├── ColorMode.php │ │ │ ├── Contrast.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DigitalZoom.php │ │ │ ├── DriveMode.php │ │ │ ├── Enhancement.php │ │ │ ├── Face10Position.php │ │ │ ├── Face1Position.php │ │ │ ├── Face2Position.php │ │ │ ├── Face3Position.php │ │ │ ├── Face4Position.php │ │ │ ├── Face5Position.php │ │ │ ├── Face6Position.php │ │ │ ├── Face7Position.php │ │ │ ├── Face8Position.php │ │ │ ├── Face9Position.php │ │ │ ├── FaceDetectFrameSize.php │ │ │ ├── FaceInfoUnknown.php │ │ │ ├── FaceOrientation.php │ │ │ ├── FacesDetected.php │ │ │ ├── FirmwareDate.php │ │ │ ├── FlashDistance.php │ │ │ ├── FlashIntensity.php │ │ │ ├── FlashMode.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalRange.php │ │ │ ├── FocusMode.php │ │ │ ├── HometownCity.php │ │ │ ├── ISO.php │ │ │ ├── ImageStabilization.php │ │ │ ├── LightingMode.php │ │ │ ├── ManufactureCode.php │ │ │ ├── ManufactureIndex.php │ │ │ ├── ModelType.php │ │ │ ├── ObjectDistance.php │ │ │ ├── PortraitRefiner.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageSize.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── Quality.php │ │ │ ├── QualityMode.php │ │ │ ├── RecordMode.php │ │ │ ├── RecordingMode.php │ │ │ ├── ReleaseMode.php │ │ │ ├── Saturation.php │ │ │ ├── SequenceNumber.php │ │ │ ├── Sharpness.php │ │ │ ├── Software.php │ │ │ ├── SpecialEffectLevel.php │ │ │ ├── SpecialEffectMode.php │ │ │ ├── SpecialEffectSetting.php │ │ │ ├── VideoQuality.php │ │ │ ├── WhiteBalance.php │ │ │ └── WhiteBalanceBias.php │ │ ├── Composite │ │ │ ├── AdvancedSceneMode.php │ │ │ ├── Aperture.php │ │ │ ├── AudioBitrate.php │ │ │ ├── AutoFocus.php │ │ │ ├── AvgBitrate.php │ │ │ ├── BlueBalance.php │ │ │ ├── CDDBDiscPlayTime.php │ │ │ ├── CDDBDiscTracks.php │ │ │ ├── CFAPattern.php │ │ │ ├── CircleOfConfusion.php │ │ │ ├── ConditionalFEC.php │ │ │ ├── DOF.php │ │ │ ├── DateCreated.php │ │ │ ├── DateTimeCreated.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DigitalCreationDateTime.php │ │ │ ├── DigitalZoom.php │ │ │ ├── DriveMode.php │ │ │ ├── Duration.php │ │ │ ├── ExtenderStatus.php │ │ │ ├── FOV.php │ │ │ ├── FileNumber.php │ │ │ ├── Flash.php │ │ │ ├── FlashType.php │ │ │ ├── FocalLength35efl.php │ │ │ ├── FocusDistance.php │ │ │ ├── FocusDistance2.php │ │ │ ├── GPSAltitude.php │ │ │ ├── GPSAltitudeRef.php │ │ │ ├── GPSDateTime.php │ │ │ ├── GPSLatitude.php │ │ │ ├── GPSLatitudeRef.php │ │ │ ├── GPSLongitude.php │ │ │ ├── GPSLongitudeRef.php │ │ │ ├── GPSPosition.php │ │ │ ├── HyperfocalDistance.php │ │ │ ├── IDCPreviewImage.php │ │ │ ├── ISO.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageSize.php │ │ │ ├── ImageWidth.php │ │ │ ├── JpgFromRaw.php │ │ │ ├── Lens.php │ │ │ ├── Lens35efl.php │ │ │ ├── LensID.php │ │ │ ├── LensSpec.php │ │ │ ├── LightValue.php │ │ │ ├── MPImage.php │ │ │ ├── Megapixels.php │ │ │ ├── OriginalDecisionData.php │ │ │ ├── OtherImage.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewImageSize.php │ │ │ ├── RedBalance.php │ │ │ ├── RedEyeReduction.php │ │ │ ├── RicohPitch.php │ │ │ ├── RicohRoll.php │ │ │ ├── Rotation.php │ │ │ ├── RunTimeSincePowerUp.php │ │ │ ├── ScaleFactor35efl.php │ │ │ ├── ShootingMode.php │ │ │ ├── ShutterCurtainHack.php │ │ │ ├── ShutterSpeed.php │ │ │ ├── SubSecCreateDate.php │ │ │ ├── SubSecDateTimeOriginal.php │ │ │ ├── SubSecModifyDate.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── WBRGBLevels.php │ │ │ ├── WBRGGBLevels.php │ │ │ └── ZoomedPreviewImage.php │ │ ├── DICOM │ │ │ ├── ACoordOfBottomRightCorner.php │ │ │ ├── ACoordOfTopRightCorner.php │ │ │ ├── AbsoluteChannelDisplayScale.php │ │ │ ├── AbstractPriorCodeSequence.php │ │ │ ├── AbstractPriorValue.php │ │ │ ├── AccessionNumber.php │ │ │ ├── AccessoryCode.php │ │ │ ├── AcqreconRecordChecksum.php │ │ │ ├── AcquiredImageAreaDoseProduct.php │ │ │ ├── AcquisitionComments.php │ │ │ ├── AcquisitionContextDescription.php │ │ │ ├── AcquisitionContextSequence.php │ │ │ ├── AcquisitionContrast.php │ │ │ ├── AcquisitionDate.php │ │ │ ├── AcquisitionDateTime.php │ │ │ ├── AcquisitionDeviceProcessingCode.php │ │ │ ├── AcquisitionDeviceProcessingDescr.php │ │ │ ├── AcquisitionDeviceTypeCodeSequence.php │ │ │ ├── AcquisitionDuration.php │ │ │ ├── AcquisitionEndConditionData.php │ │ │ ├── AcquisitionGroupLength.php │ │ │ ├── AcquisitionIndex.php │ │ │ ├── AcquisitionMatrix.php │ │ │ ├── AcquisitionNumber.php │ │ │ ├── AcquisitionProtocolDescription.php │ │ │ ├── AcquisitionProtocolName.php │ │ │ ├── AcquisitionStartCondition.php │ │ │ ├── AcquisitionStartConditionData.php │ │ │ ├── AcquisitionTerminationCondition.php │ │ │ ├── AcquisitionTime.php │ │ │ ├── AcquisitionTimeSynchronized.php │ │ │ ├── AcquisitionType.php │ │ │ ├── AcquisitionsInSeries.php │ │ │ ├── AcquisitionsInStudy.php │ │ │ ├── AcrossScanSpatialResolution.php │ │ │ ├── ActiveSourceDiameter.php │ │ │ ├── ActiveSourceLength.php │ │ │ ├── ActualCardiacTriggerDelayTime.php │ │ │ ├── ActualFrameDuration.php │ │ │ ├── ActualHumanPerformersSequence.php │ │ │ ├── ActualReceiveGainAnalog.php │ │ │ ├── ActualReceiveGainDigital.php │ │ │ ├── ActualRespiratoryTriggerDelayTime.php │ │ │ ├── ActualSeriesDataTimeStamp.php │ │ │ ├── AdaptiveMapFormat.php │ │ │ ├── AddIntermediateSequence.php │ │ │ ├── AddNearSequence.php │ │ │ ├── AddOtherSequence.php │ │ │ ├── AddPower.php │ │ │ ├── AdditionalDrugSequence.php │ │ │ ├── AdditionalPatientHistory.php │ │ │ ├── AddressTrial.php │ │ │ ├── AdministrationRouteCodeSequence.php │ │ │ ├── AdmissionID.php │ │ │ ├── AdmittingDate.php │ │ │ ├── AdmittingDiagnosesCodeSequence.php │ │ │ ├── AdmittingDiagnosesDescription.php │ │ │ ├── AdmittingTime.php │ │ │ ├── AdvantageCompOverflow.php │ │ │ ├── AdvantageCompUnderflow.php │ │ │ ├── AirFilterCalibrationDate.php │ │ │ ├── AirFilterCalibrationTime.php │ │ │ ├── AlgorithmDescription.php │ │ │ ├── AlgorithmFamilyCodeSequ.php │ │ │ ├── AlgorithmName.php │ │ │ ├── AlgorithmParameters.php │ │ │ ├── AlgorithmType.php │ │ │ ├── AlgorithmVersion.php │ │ │ ├── AliasedDataType.php │ │ │ ├── Allergies.php │ │ │ ├── AllowLossyCompression.php │ │ │ ├── AllowMediaSplitting.php │ │ │ ├── AlongScanSpatialResolution.php │ │ │ ├── AlphaLUTTransferFunction.php │ │ │ ├── AlternateRepresentationSequence.php │ │ │ ├── AnalogReceiverGain.php │ │ │ ├── AnatomicApproachDirCodeSeqTrial.php │ │ │ ├── AnatomicEntrancePortalCodeSeqTrial.php │ │ │ ├── AnatomicPerspectiveCodeSeqTrial.php │ │ │ ├── AnatomicPerspectiveDescrTrial.php │ │ │ ├── AnatomicRegionModifierSequence.php │ │ │ ├── AnatomicRegionSequence.php │ │ │ ├── AnatomicStructure.php │ │ │ ├── AnatomicStructureModifierSequence.php │ │ │ ├── AnatomicStructureOrRegionSequence.php │ │ │ ├── AnatomicalOrientationType.php │ │ │ ├── AnatomicalReferenceForScout.php │ │ │ ├── AnchorPoint.php │ │ │ ├── AnchorPointAnnotationUnits.php │ │ │ ├── AnchorPointVisibility.php │ │ │ ├── AngioFlag.php │ │ │ ├── AngleNumber.php │ │ │ ├── AngleOfFirstView.php │ │ │ ├── AngularPosition.php │ │ │ ├── AngularStep.php │ │ │ ├── AngularViewVector.php │ │ │ ├── AnnotationContentSequence.php │ │ │ ├── AnnotationDisplayFormatID.php │ │ │ ├── AnnotationFlag.php │ │ │ ├── AnnotationGroupNumber.php │ │ │ ├── AnnotationPosition.php │ │ │ ├── AnnotationSequence.php │ │ │ ├── AnodeTargetMaterial.php │ │ │ ├── ApexPosition.php │ │ │ ├── ApplicableFrameRange.php │ │ │ ├── ApplicableSafetyStandardAgency.php │ │ │ ├── ApplicableSafetyStandardDescr.php │ │ │ ├── ApplicationManufacturer.php │ │ │ ├── ApplicationMaximumRepaintTime.php │ │ │ ├── ApplicationName.php │ │ │ ├── ApplicationSetupCheck.php │ │ │ ├── ApplicationSetupManufacturer.php │ │ │ ├── ApplicationSetupName.php │ │ │ ├── ApplicationSetupNumber.php │ │ │ ├── ApplicationSetupSequence.php │ │ │ ├── ApplicationSetupType.php │ │ │ ├── ApplicationVersion.php │ │ │ ├── ApplicatorDescription.php │ │ │ ├── ApplicatorID.php │ │ │ ├── ApplicatorSequence.php │ │ │ ├── ApplicatorType.php │ │ │ ├── ApprovalStatus.php │ │ │ ├── ApprovalStatusDateTime.php │ │ │ ├── ApprovalStatusFurtherDescription.php │ │ │ ├── Arbitrary.php │ │ │ ├── ArchiveRequested.php │ │ │ ├── AssigningFacilitySequence.php │ │ │ ├── AttachedContours.php │ │ │ ├── AttenuationCorrected.php │ │ │ ├── AttenuationCorrectionMethod.php │ │ │ ├── AttributeItemSelector.php │ │ │ ├── AttributeModificationDateTime.php │ │ │ ├── AttributeOccurrencePointer.php │ │ │ ├── AttributeOccurrencePrivateCreator.php │ │ │ ├── AttributeOccurrenceSequence.php │ │ │ ├── AudioComments.php │ │ │ ├── AudioSampleData.php │ │ │ ├── AudioSampleFormat.php │ │ │ ├── AudioType.php │ │ │ ├── AuthorObserverSequence.php │ │ │ ├── AuthorizationEquipmentCertNumber.php │ │ │ ├── AutoWindowLevelAlpha.php │ │ │ ├── AutoWindowLevelBeta.php │ │ │ ├── AutoWindowLevelWindow.php │ │ │ ├── AveragePulseWidth.php │ │ │ ├── AvgOfLeftRefChansOverViews.php │ │ │ ├── AvgOfRightRefChansOverViews.php │ │ │ ├── AvgOverrangesAllViews.php │ │ │ ├── AxialAcceptance.php │ │ │ ├── AxialDetectorDimension.php │ │ │ ├── AxialLengthOfTheEye.php │ │ │ ├── AxialMash.php │ │ │ ├── AxisLabels.php │ │ │ ├── AxisOfRotation.php │ │ │ ├── AxisUnits.php │ │ │ ├── BBHCoefficients.php │ │ │ ├── BackProjectorCoefficient.php │ │ │ ├── BackgroundColor.php │ │ │ ├── BarcodeSymbology.php │ │ │ ├── BarcodeValue.php │ │ │ ├── BaselineCorrection.php │ │ │ ├── BasicColorImageSequence.php │ │ │ ├── BasicGrayscaleImageSequence.php │ │ │ ├── BeamAngle.php │ │ │ ├── BeamCurrentModulationID.php │ │ │ ├── BeamDescription.php │ │ │ ├── BeamDose.php │ │ │ ├── BeamDosePointDepth.php │ │ │ ├── BeamDosePointEquivalentDepth.php │ │ │ ├── BeamDosePointSSD.php │ │ │ ├── BeamDoseSpecificationPoint.php │ │ │ ├── BeamLimitingDeviceAngle.php │ │ │ ├── BeamLimitingDeviceAngleTolerance.php │ │ │ ├── BeamLimitingDeviceLeafPairsSeq.php │ │ │ ├── BeamLimitingDevicePositionSequence.php │ │ │ ├── BeamLimitingDevicePositionTol.php │ │ │ ├── BeamLimitingDeviceRotateDirection.php │ │ │ ├── BeamLimitingDeviceSequence.php │ │ │ ├── BeamLimitingDeviceToleranceSeq.php │ │ │ ├── BeamMeterset.php │ │ │ ├── BeamName.php │ │ │ ├── BeamNumber.php │ │ │ ├── BeamOrderIndex.php │ │ │ ├── BeamSequence.php │ │ │ ├── BeamStopperPosition.php │ │ │ ├── BeamTaskSequence.php │ │ │ ├── BeamTaskType.php │ │ │ ├── BeamType.php │ │ │ ├── BeatRejectionFlag.php │ │ │ ├── BiPlaneAcquisitionSequence.php │ │ │ ├── BillingItemSequence.php │ │ │ ├── BillingProcedureStepSequence.php │ │ │ ├── BillingSuppliesAndDevicesSequence.php │ │ │ ├── BiopsyPosition.php │ │ │ ├── BiopsyRefLocation.php │ │ │ ├── BiopsyTLocation.php │ │ │ ├── BitmapDefiningCVs.php │ │ │ ├── BitmapOfPrescanOptions.php │ │ │ ├── BitsAllocated.php │ │ │ ├── BitsForCodeWord.php │ │ │ ├── BitsGrouped.php │ │ │ ├── BitsStored.php │ │ │ ├── BlendingLUT1Sequence.php │ │ │ ├── BlendingLUT2Sequence.php │ │ │ ├── BlendingLookupTableData.php │ │ │ ├── BlendingOperationType.php │ │ │ ├── BlendingPosition.php │ │ │ ├── BlendingSequence.php │ │ │ ├── BlendingWeightConstant.php │ │ │ ├── BlockColumns.php │ │ │ ├── BlockData.php │ │ │ ├── BlockDivergence.php │ │ │ ├── BlockMountingPosition.php │ │ │ ├── BlockName.php │ │ │ ├── BlockNumber.php │ │ │ ├── BlockNumberOfPoints.php │ │ │ ├── BlockRows.php │ │ │ ├── BlockSequence.php │ │ │ ├── BlockThickness.php │ │ │ ├── BlockTransmission.php │ │ │ ├── BlockTrayID.php │ │ │ ├── BlockType.php │ │ │ ├── BlockedPixels.php │ │ │ ├── BloodSignalNulling.php │ │ │ ├── BluePaletteColorTableData.php │ │ │ ├── BluePaletteColorTableDescriptor.php │ │ │ ├── BodyPartExamined.php │ │ │ ├── BodyPartThickness.php │ │ │ ├── BolusDescription.php │ │ │ ├── BolusID.php │ │ │ ├── BoneThermalIndex.php │ │ │ ├── BorderDensity.php │ │ │ ├── BoundingBoxAnnotationUnits.php │ │ │ ├── BoundingBoxBottomRightHandCorner.php │ │ │ ├── BoundingBoxTextHorizJustification.php │ │ │ ├── BoundingBoxTopLeftHandCorner.php │ │ │ ├── BrachyAccessoryDevNomTransmission.php │ │ │ ├── BrachyAccessoryDeviceID.php │ │ │ ├── BrachyAccessoryDeviceName.php │ │ │ ├── BrachyAccessoryDeviceNomThickness.php │ │ │ ├── BrachyAccessoryDeviceNumber.php │ │ │ ├── BrachyAccessoryDeviceSequence.php │ │ │ ├── BrachyAccessoryDeviceType.php │ │ │ ├── BrachyAppSetupDoseSpecPoint.php │ │ │ ├── BrachyApplicationSetupDose.php │ │ │ ├── BrachyControlPointDeliveredSeq.php │ │ │ ├── BrachyControlPointSequence.php │ │ │ ├── BrachyReferencedDoseReferenceSeq.php │ │ │ ├── BrachyTreatmentTechnique.php │ │ │ ├── BrachyTreatmentType.php │ │ │ ├── BranchOfService.php │ │ │ ├── BreastImplantPresent.php │ │ │ ├── BreedRegistrationNumber.php │ │ │ ├── BreedRegistrationSequence.php │ │ │ ├── BreedRegistryCodeSequence.php │ │ │ ├── BulkMotionCompensationTechnique.php │ │ │ ├── BulkMotionSignalSource.php │ │ │ ├── BulkMotionStatus.php │ │ │ ├── BurnedInAnnotation.php │ │ │ ├── CArmPositionerTabletopRelationship.php │ │ │ ├── CTAcquisitionDetailsSequence.php │ │ │ ├── CTAcquisitionTypeSequence.php │ │ │ ├── CTAdditionalXRaySourceSequence.php │ │ │ ├── CTBoneNumber.php │ │ │ ├── CTDIPhantomTypeCodeSequence.php │ │ │ ├── CTDIvol.php │ │ │ ├── CTExposureSequence.php │ │ │ ├── CTGeometrySequence.php │ │ │ ├── CTImageFrameTypeSequence.php │ │ │ ├── CTPositionSequence.php │ │ │ ├── CTReconstructionSequence.php │ │ │ ├── CTTableDynamicsSequence.php │ │ │ ├── CTWaterNumber.php │ │ │ ├── CTXRayDetailsSequence.php │ │ │ ├── CalciumScoringMassFactorDevice.php │ │ │ ├── CalciumScoringMassFactorPatient.php │ │ │ ├── CalculatedAnatomyThickness.php │ │ │ ├── CalculatedDoseReferenceDescription.php │ │ │ ├── CalculatedDoseReferenceDoseValue.php │ │ │ ├── CalculatedDoseReferenceNumber.php │ │ │ ├── CalculatedDoseReferenceSequence.php │ │ │ ├── CalculatedFrameList.php │ │ │ ├── CalibratedFieldStrength.php │ │ │ ├── CalibrationDataSequence.php │ │ │ ├── CalibrationImage.php │ │ │ ├── CalibrationParameters.php │ │ │ ├── CalibrationSequence.php │ │ │ ├── CardiacBeatRejectionTechnique.php │ │ │ ├── CardiacCyclePosition.php │ │ │ ├── CardiacFramingType.php │ │ │ ├── CardiacNumberOfImages.php │ │ │ ├── CardiacPhases.php │ │ │ ├── CardiacRRIntervalSpecified.php │ │ │ ├── CardiacRepetitionTime.php │ │ │ ├── CardiacSignalSource.php │ │ │ ├── CardiacSynchronizationTechnique.php │ │ │ ├── CardiacTriggerSequence.php │ │ │ ├── CassetteID.php │ │ │ ├── CassetteOrientation.php │ │ │ ├── CassetteSize.php │ │ │ ├── CellNumberAtTheta.php │ │ │ ├── CellSpacing.php │ │ │ ├── CenterACoordOfPlaneImage.php │ │ │ ├── CenterFreqMethod.php │ │ │ ├── CenterFrequency.php │ │ │ ├── CenterOfCircExposControlSensRegion.php │ │ │ ├── CenterOfCircularCollimator.php │ │ │ ├── CenterOfCircularShutter.php │ │ │ ├── CenterOfRotation.php │ │ │ ├── CenterOfRotationOffset.php │ │ │ ├── CenterRCoordOfPlaneImage.php │ │ │ ├── CenterSCoordOfPlaneImage.php │ │ │ ├── CertificateOfSigner.php │ │ │ ├── CertificateType.php │ │ │ ├── CertifiedTimestamp.php │ │ │ ├── CertifiedTimestampType.php │ │ │ ├── ChannelBaseline.php │ │ │ ├── ChannelDefinitionSequence.php │ │ │ ├── ChannelDerivationDescription.php │ │ │ ├── ChannelDescriptionCodeSequence.php │ │ │ ├── ChannelDisplaySequence.php │ │ │ ├── ChannelIdentificationCode.php │ │ │ ├── ChannelLabel.php │ │ │ ├── ChannelLength.php │ │ │ ├── ChannelMaximumValue.php │ │ │ ├── ChannelMinimumValue.php │ │ │ ├── ChannelMode.php │ │ │ ├── ChannelNumber.php │ │ │ ├── ChannelOffset.php │ │ │ ├── ChannelPosition.php │ │ │ ├── ChannelRecommendDisplayCIELabValue.php │ │ │ ├── ChannelSampleSkew.php │ │ │ ├── ChannelSensitivity.php │ │ │ ├── ChannelSensitivityCorrectionFactor.php │ │ │ ├── ChannelSensitivityUnitsSequence.php │ │ │ ├── ChannelSequence.php │ │ │ ├── ChannelShieldID.php │ │ │ ├── ChannelShieldName.php │ │ │ ├── ChannelShieldNominalThickness.php │ │ │ ├── ChannelShieldNominalTransmission.php │ │ │ ├── ChannelShieldNumber.php │ │ │ ├── ChannelShieldSequence.php │ │ │ ├── ChannelSourceModifiersSequence.php │ │ │ ├── ChannelSourceSequence.php │ │ │ ├── ChannelStatus.php │ │ │ ├── ChannelTimeSkew.php │ │ │ ├── ChannelTotalTime.php │ │ │ ├── ChannelWidth.php │ │ │ ├── ChemicalShiftReference.php │ │ │ ├── ChemicalShiftSequence.php │ │ │ ├── ChemicalShiftsMaxIntegrateLimitHz.php │ │ │ ├── ChemicalShiftsMaxIntegrateLimitPPM.php │ │ │ ├── ChemicalShiftsMinIntegrateLimitHz.php │ │ │ ├── ChemicalShiftsMinIntegrateLimitPPM.php │ │ │ ├── CineRate.php │ │ │ ├── CineRelativeToRealTime.php │ │ │ ├── ClinicalTrialCoordinatingCenter.php │ │ │ ├── ClinicalTrialProtocolID.php │ │ │ ├── ClinicalTrialProtocolName.php │ │ │ ├── ClinicalTrialSeriesDescription.php │ │ │ ├── ClinicalTrialSeriesID.php │ │ │ ├── ClinicalTrialSiteID.php │ │ │ ├── ClinicalTrialSiteName.php │ │ │ ├── ClinicalTrialSponsorName.php │ │ │ ├── ClinicalTrialSubjectID.php │ │ │ ├── ClinicalTrialSubjectReadingID.php │ │ │ ├── ClinicalTrialTimePointDescription.php │ │ │ ├── ClinicalTrialTimePointID.php │ │ │ ├── CodeLabel.php │ │ │ ├── CodeMeaning.php │ │ │ ├── CodeNumberFormat.php │ │ │ ├── CodeTableLocation.php │ │ │ ├── CodeValue.php │ │ │ ├── CodingSchemeDesignator.php │ │ │ ├── CodingSchemeExternalID.php │ │ │ ├── CodingSchemeIDSequence.php │ │ │ ├── CodingSchemeName.php │ │ │ ├── CodingSchemeRegistry.php │ │ │ ├── CodingSchemeUID.php │ │ │ ├── CodingSchemeVersion.php │ │ │ ├── CoefficientCoding.php │ │ │ ├── CoefficientCodingPointers.php │ │ │ ├── CoincidenceWindowWidth.php │ │ │ ├── CollationFlag.php │ │ │ ├── CollimatorGridName.php │ │ │ ├── CollimatorLeftVerticalEdge.php │ │ │ ├── CollimatorLowerHorizontalEdge.php │ │ │ ├── CollimatorRightVerticalEdge.php │ │ │ ├── CollimatorShape.php │ │ │ ├── CollimatorShapeSequence.php │ │ │ ├── CollimatorType.php │ │ │ ├── CollimatorUpperHorizontalEdge.php │ │ │ ├── ColorImagePrintingFlag.php │ │ │ ├── ColumnAngulation.php │ │ │ ├── ColumnAngulationPatient.php │ │ │ ├── ColumnOverlap.php │ │ │ ├── Columns.php │ │ │ ├── CommentsOnPerformedProcedureStep.php │ │ │ ├── CommentsOnRadiationDose.php │ │ │ ├── CommentsOnScheduledProcedureStep.php │ │ │ ├── CompensatorColumnOffset.php │ │ │ ├── CompensatorColumns.php │ │ │ ├── CompensatorDescription.php │ │ │ ├── CompensatorDivergence.php │ │ │ ├── CompensatorID.php │ │ │ ├── CompensatorMillingToolDiameter.php │ │ │ ├── CompensatorMountingPosition.php │ │ │ ├── CompensatorNumber.php │ │ │ ├── CompensatorPixelSpacing.php │ │ │ ├── CompensatorPosition.php │ │ │ ├── CompensatorRelStoppingPowerRatio.php │ │ │ ├── CompensatorRows.php │ │ │ ├── CompensatorSequence.php │ │ │ ├── CompensatorThicknessData.php │ │ │ ├── CompensatorTransmissionData.php │ │ │ ├── CompensatorType.php │ │ │ ├── CompletionFlag.php │ │ │ ├── CompletionFlagDescription.php │ │ │ ├── ComplexImageComponent.php │ │ │ ├── CompressionCode.php │ │ │ ├── CompressionDescription.php │ │ │ ├── CompressionForce.php │ │ │ ├── CompressionLabel.php │ │ │ ├── CompressionOriginator.php │ │ │ ├── CompressionRecognitionCode.php │ │ │ ├── CompressionSequence.php │ │ │ ├── CompressionStepPointers.php │ │ │ ├── ComputeType.php │ │ │ ├── ConcatenatedSAT.php │ │ │ ├── ConcatenationFrameOffsetNumber.php │ │ │ ├── ConcatenationUID.php │ │ │ ├── ConceptCodeSequence.php │ │ │ ├── ConceptNameCodeSequence.php │ │ │ ├── ConfidentialityCode.php │ │ │ ├── ConfidentialityOnPatientDataDescr.php │ │ │ ├── ConfigurationInformation.php │ │ │ ├── ConfigurationInformationDescr.php │ │ │ ├── ConsentForDistributionFlag.php │ │ │ ├── ConstantVolumeFlag.php │ │ │ ├── ConstraintWeight.php │ │ │ ├── ContactDisplayName.php │ │ │ ├── ContactURI.php │ │ │ ├── ContainerComponentID.php │ │ │ ├── ContainerComponentWidth.php │ │ │ ├── ContainerDescription.php │ │ │ ├── ContainerIdentifier.php │ │ │ ├── ContentCreatorIDCodeSequence.php │ │ │ ├── ContentCreatorName.php │ │ │ ├── ContentDate.php │ │ │ ├── ContentDescription.php │ │ │ ├── ContentItemModifierSequence.php │ │ │ ├── ContentLabel.php │ │ │ ├── ContentQualification.php │ │ │ ├── ContentSequence.php │ │ │ ├── ContentTemplateSequence.php │ │ │ ├── ContentTime.php │ │ │ ├── ContextGroupExtensionCreatorUID.php │ │ │ ├── ContextGroupExtensionFlag.php │ │ │ ├── ContextGroupLocalVersion.php │ │ │ ├── ContextGroupVersion.php │ │ │ ├── ContextIdentifier.php │ │ │ ├── ContextUID.php │ │ │ ├── Contiguous.php │ │ │ ├── ContinuityOfContent.php │ │ │ ├── ContourData.php │ │ │ ├── ContourGeometricType.php │ │ │ ├── ContourImageSequence.php │ │ │ ├── ContourNumber.php │ │ │ ├── ContourOffsetVector.php │ │ │ ├── ContourSequence.php │ │ │ ├── ContourSlabThickness.php │ │ │ ├── ContourUncertaintyRadius.php │ │ │ ├── ContrastAdministrationProfileSeq.php │ │ │ ├── ContrastBolusAdministrationRoute.php │ │ │ ├── ContrastBolusAgent.php │ │ │ ├── ContrastBolusAgentAdministered.php │ │ │ ├── ContrastBolusAgentDetected.php │ │ │ ├── ContrastBolusAgentNumber.php │ │ │ ├── ContrastBolusAgentPhase.php │ │ │ ├── ContrastBolusAgentSequence.php │ │ │ ├── ContrastBolusConcentration.php │ │ │ ├── ContrastBolusIngredient.php │ │ │ ├── ContrastBolusIngredientCodeSeq.php │ │ │ ├── ContrastBolusIngredientOpaque.php │ │ │ ├── ContrastBolusRoute.php │ │ │ ├── ContrastBolusStartTime.php │ │ │ ├── ContrastBolusStopTime.php │ │ │ ├── ContrastBolusTotalDose.php │ │ │ ├── ContrastBolusUsageSequence.php │ │ │ ├── ContrastBolusVolume.php │ │ │ ├── ContrastFlowDuration.php │ │ │ ├── ContrastFlowRate.php │ │ │ ├── ContrastFrameAveraging.php │ │ │ ├── ContributingEquipmentSequence.php │ │ │ ├── ContributingSOPInstancesRefSeq.php │ │ │ ├── ContributingSourcesSequence.php │ │ │ ├── ContributionDateTime.php │ │ │ ├── ContributionDescription.php │ │ │ ├── ControlPoint3DPosition.php │ │ │ ├── ControlPointDeliverySequence.php │ │ │ ├── ControlPointIndex.php │ │ │ ├── ControlPointOrientation.php │ │ │ ├── ControlPointRelativePosition.php │ │ │ ├── ControlPointSequence.php │ │ │ ├── ConventionalControlPointVerifySeq.php │ │ │ ├── ConventionalMachineVerificationSeq.php │ │ │ ├── ConversionType.php │ │ │ ├── ConvolutionKernel.php │ │ │ ├── ConvolutionKernelGroup.php │ │ │ ├── CoordinateStartValue.php │ │ │ ├── CoordinateStepValue.php │ │ │ ├── CoordinateSystemAxisCodeSequence.php │ │ │ ├── CornealSize.php │ │ │ ├── CorrectedAfterGlowTerms.php │ │ │ ├── CorrectedImage.php │ │ │ ├── CorrectedParameterSequence.php │ │ │ ├── CorrectionValue.php │ │ │ ├── CountRate.php │ │ │ ├── CountryOfResidence.php │ │ │ ├── CountsAccumulated.php │ │ │ ├── CountsIncluded.php │ │ │ ├── CountsSource.php │ │ │ ├── CoverageOfKSpace.php │ │ │ ├── CranialThermalIndex.php │ │ │ ├── CreationDate.php │ │ │ ├── CreationTime.php │ │ │ ├── CreatorVersionUID.php │ │ │ ├── CrosstalkCalibrationDate.php │ │ │ ├── CrosstalkCalibrationTime.php │ │ │ ├── CumulativeDoseReferenceCoefficient.php │ │ │ ├── CumulativeDoseToDoseReference.php │ │ │ ├── CumulativeMetersetWeight.php │ │ │ ├── CumulativeTimeWeight.php │ │ │ ├── CurrentFractionNumber.php │ │ │ ├── CurrentPatientLocation.php │ │ │ ├── CurrentRequestedProcEvidenceSeq.php │ │ │ ├── CurrentTreatmentStatus.php │ │ │ ├── CurveActivationLayer.php │ │ │ ├── CurveData.php │ │ │ ├── CurveDataDescriptor.php │ │ │ ├── CurveDate.php │ │ │ ├── CurveDescription.php │ │ │ ├── CurveDimensions.php │ │ │ ├── CurveLabel.php │ │ │ ├── CurveNumber.php │ │ │ ├── CurveRange.php │ │ │ ├── CurveTime.php │ │ │ ├── CustodialOrganizationSequence.php │ │ │ ├── CylinderAxis.php │ │ │ ├── CylinderLensPower.php │ │ │ ├── CylinderPower.php │ │ │ ├── CylinderSequence.php │ │ │ ├── DASAdInput.php │ │ │ ├── DASAutoZero.php │ │ │ ├── DASCalFrequency.php │ │ │ ├── DASCalMode.php │ │ │ ├── DASFpaGain.php │ │ │ ├── DASGain.php │ │ │ ├── DASOutputSource.php │ │ │ ├── DASRegXm.php │ │ │ ├── DASTemperature.php │ │ │ ├── DASTriggerSource.php │ │ │ ├── DASType.php │ │ │ ├── DASXmPattern.php │ │ │ ├── DBDt.php │ │ │ ├── DCTLabel.php │ │ │ ├── DVHData.php │ │ │ ├── DVHDoseScaling.php │ │ │ ├── DVHMaximumDose.php │ │ │ ├── DVHMeanDose.php │ │ │ ├── DVHMinimumDose.php │ │ │ ├── DVHNormalizationDoseValue.php │ │ │ ├── DVHNormalizationPoint.php │ │ │ ├── DVHNumberOfBins.php │ │ │ ├── DVHROIContributionType.php │ │ │ ├── DVHReferencedROISequence.php │ │ │ ├── DVHSequence.php │ │ │ ├── DVHType.php │ │ │ ├── DVHVolumeUnits.php │ │ │ ├── DataBlock.php │ │ │ ├── DataBlockDescription.php │ │ │ ├── DataCollectionCenterPatient.php │ │ │ ├── DataCollectionDiameter.php │ │ │ ├── DataElementsSigned.php │ │ │ ├── DataInformationSequence.php │ │ │ ├── DataPathAssignment.php │ │ │ ├── DataPathID.php │ │ │ ├── DataPointColumns.php │ │ │ ├── DataPointRows.php │ │ │ ├── DataRepresentation.php │ │ │ ├── DataSetSubtype.php │ │ │ ├── DataSetTrailingPadding.php │ │ │ ├── DataSetType.php │ │ │ ├── DataSizeForScanData.php │ │ │ ├── DataType.php │ │ │ ├── DataValueRepresentation.php │ │ │ ├── Date.php │ │ │ ├── DateOfLastCalibration.php │ │ │ ├── DateOfLastDetectorCalibration.php │ │ │ ├── DateOfSecondaryCapture.php │ │ │ ├── DateTime.php │ │ │ ├── DeadTimeCorrected.php │ │ │ ├── DeadTimeCorrectionFlag.php │ │ │ ├── DeadTimeFactor.php │ │ │ ├── DecayCorrected.php │ │ │ ├── DecayCorrection.php │ │ │ ├── DecayCorrectionDateTime.php │ │ │ ├── DecayFactor.php │ │ │ ├── DecimalVisualAcuity.php │ │ │ ├── DecimateCropResult.php │ │ │ ├── DeconKernelParameters.php │ │ │ ├── DecoupledNucleus.php │ │ │ ├── Decoupling.php │ │ │ ├── DecouplingChemicalShiftReference.php │ │ │ ├── DecouplingFrequency.php │ │ │ ├── DecouplingMethod.php │ │ │ ├── DefaultMagnificationType.php │ │ │ ├── DefaultPrinterResolutionID.php │ │ │ ├── DefaultSmoothingType.php │ │ │ ├── DeformableRegistrationGridSequence.php │ │ │ ├── DeformableRegistrationSequence.php │ │ │ ├── DegreeOfDilation.php │ │ │ ├── DegreeOfRotation.php │ │ │ ├── DegreesOfAzimuth.php │ │ │ ├── DeidentificationMethod.php │ │ │ ├── DeidentificationMethodCodeSequence.php │ │ │ ├── DelayAfterTrigger.php │ │ │ ├── DeletionLock.php │ │ │ ├── DeliveredChannelTotalTime.php │ │ │ ├── DeliveredMeterset.php │ │ │ ├── DeliveredNumberOfPulses.php │ │ │ ├── DeliveredPrimaryMeterset.php │ │ │ ├── DeliveredPulseRepetitionInterval.php │ │ │ ├── DeliveredSecondaryMeterset.php │ │ │ ├── DeliveredTreatmentTime.php │ │ │ ├── DeliveryMaximumDose.php │ │ │ ├── DeliveryVerificationImageSequence.php │ │ │ ├── DeliveryWarningDose.php │ │ │ ├── DeltaStartTime.php │ │ │ ├── DependantOnNoViewsProcessed.php │ │ │ ├── DepthOfScanField.php │ │ │ ├── DepthOfTransverseImage.php │ │ │ ├── DepthSpatialResolution.php │ │ │ ├── DepthsOfFocus.php │ │ │ ├── DerivationCodeSequence.php │ │ │ ├── DerivationDescription.php │ │ │ ├── DerivationImageSequence.php │ │ │ ├── DestinationAE.php │ │ │ ├── DetailsOfCoefficients.php │ │ │ ├── DetectorActiveDimensions.php │ │ │ ├── DetectorActiveOffsetFromExposure.php │ │ │ ├── DetectorActiveOrigin.php │ │ │ ├── DetectorActiveShape.php │ │ │ ├── DetectorActiveTime.php │ │ │ ├── DetectorBinning.php │ │ │ ├── DetectorConditionsNominalFlag.php │ │ │ ├── DetectorConfiguration.php │ │ │ ├── DetectorDescription.php │ │ │ ├── DetectorElementPhysicalSize.php │ │ │ ├── DetectorElementSize.php │ │ │ ├── DetectorElementSpacing.php │ │ │ ├── DetectorExposuresSinceCalibration.php │ │ │ ├── DetectorExposuresSinceManufactured.php │ │ │ ├── DetectorGeometry.php │ │ │ ├── DetectorID.php │ │ │ ├── DetectorInformationSequence.php │ │ │ ├── DetectorLinesOfResponseUsed.php │ │ │ ├── DetectorManufacturerName.php │ │ │ ├── DetectorManufacturersModelName.php │ │ │ ├── DetectorMode.php │ │ │ ├── DetectorPrimaryAngle.php │ │ │ ├── DetectorSecondaryAngle.php │ │ │ ├── DetectorTemperature.php │ │ │ ├── DetectorTimeSinceLastExposure.php │ │ │ ├── DetectorType.php │ │ │ ├── DetectorVector.php │ │ │ ├── DeviceDescription.php │ │ │ ├── DeviceDiameter.php │ │ │ ├── DeviceDiameterUnits.php │ │ │ ├── DeviceID.php │ │ │ ├── DeviceLength.php │ │ │ ├── DeviceSequence.php │ │ │ ├── DeviceSerialNumber.php │ │ │ ├── DeviceUID.php │ │ │ ├── DeviceVolume.php │ │ │ ├── DiaphragmPosition.php │ │ │ ├── DiffusionAnisotropyType.php │ │ │ ├── DiffusionBMatrixSequence.php │ │ │ ├── DiffusionBValue.php │ │ │ ├── DiffusionBValueXX.php │ │ │ ├── DiffusionBValueXY.php │ │ │ ├── DiffusionBValueXZ.php │ │ │ ├── DiffusionBValueYY.php │ │ │ ├── DiffusionBValueYZ.php │ │ │ ├── DiffusionBValueZZ.php │ │ │ ├── DiffusionDirectionality.php │ │ │ ├── DiffusionGradientDirectionSequence.php │ │ │ ├── DiffusionGradientOrientation.php │ │ │ ├── DigitalImageFormatAcquired.php │ │ │ ├── DigitalReceiverGain.php │ │ │ ├── DigitalSignatureDateTime.php │ │ │ ├── DigitalSignaturePurposeCodeSeq.php │ │ │ ├── DigitalSignatureUID.php │ │ │ ├── DigitalSignaturesSequence.php │ │ │ ├── DigitizingDeviceTransportDirection.php │ │ │ ├── DimensionDescriptionLabel.php │ │ │ ├── DimensionIndexPointer.php │ │ │ ├── DimensionIndexPrivateCreator.php │ │ │ ├── DimensionIndexSequence.php │ │ │ ├── DimensionIndexValues.php │ │ │ ├── DimensionOrganizationSequence.php │ │ │ ├── DimensionOrganizationUID.php │ │ │ ├── DirectoryRecordSequence.php │ │ │ ├── DirectoryRecordType.php │ │ │ ├── DischargeDate.php │ │ │ ├── DischargeDiagnosisCodeSequence.php │ │ │ ├── DischargeDiagnosisDescription.php │ │ │ ├── DischargeTime.php │ │ │ ├── DisplayEnvironmentSpatialPosition.php │ │ │ ├── DisplayFieldOfView.php │ │ │ ├── DisplayFilterPercentage.php │ │ │ ├── DisplaySetHorizontalJustification.php │ │ │ ├── DisplaySetLabel.php │ │ │ ├── DisplaySetNumber.php │ │ │ ├── DisplaySetPatientOrientation.php │ │ │ ├── DisplaySetPresentationGroup.php │ │ │ ├── DisplaySetPresentationGroupDescr.php │ │ │ ├── DisplaySetScrollingGroup.php │ │ │ ├── DisplaySetVerticalJustification.php │ │ │ ├── DisplaySetsSequence.php │ │ │ ├── DisplayShadingFlag.php │ │ │ ├── DisplayWindowLabelVector.php │ │ │ ├── DisplayedAreaBottomRight.php │ │ │ ├── DisplayedAreaBottomRightTrial.php │ │ │ ├── DisplayedAreaSelectionSequence.php │ │ │ ├── DisplayedAreaTopLeft.php │ │ │ ├── DisplayedAreaTopLeftTrial.php │ │ │ ├── DistanceObjectToTableTop.php │ │ │ ├── DistancePupillaryDistance.php │ │ │ ├── DistanceReceptorPlaneToDetHousing.php │ │ │ ├── DistanceSourceToDetector.php │ │ │ ├── DistanceSourceToEntrance.php │ │ │ ├── DistanceSourceToIsocenter.php │ │ │ ├── DistanceSourceToPatient.php │ │ │ ├── DistanceSourceToSupport.php │ │ │ ├── DistributionAddress.php │ │ │ ├── DistributionName.php │ │ │ ├── DistributionType.php │ │ │ ├── DocumentTitle.php │ │ │ ├── DopplerCorrectionAngle.php │ │ │ ├── DopplerSampleVolumeXPosRetired.php │ │ │ ├── DopplerSampleVolumeXPosition.php │ │ │ ├── DopplerSampleVolumeYPosRetired.php │ │ │ ├── DopplerSampleVolumeYPosition.php │ │ │ ├── DoseCalibrationFactor.php │ │ │ ├── DoseComment.php │ │ │ ├── DoseGridScaling.php │ │ │ ├── DoseRateDelivered.php │ │ │ ├── DoseRateSet.php │ │ │ ├── DoseReferenceDescription.php │ │ │ ├── DoseReferenceNumber.php │ │ │ ├── DoseReferencePointCoordinates.php │ │ │ ├── DoseReferenceSequence.php │ │ │ ├── DoseReferenceStructureType.php │ │ │ ├── DoseReferenceType.php │ │ │ ├── DoseReferenceUID.php │ │ │ ├── DoseSummationType.php │ │ │ ├── DoseType.php │ │ │ ├── DoseUnits.php │ │ │ ├── DoseValue.php │ │ │ ├── DoubleExposureFieldDelta.php │ │ │ ├── DoubleExposureFlag.php │ │ │ ├── DoubleExposureMeterset.php │ │ │ ├── DoubleExposureOrdering.php │ │ │ ├── DurationOfXrayOn.php │ │ │ ├── DynamicRange.php │ │ │ ├── DynamicZAlphaValue.php │ │ │ ├── EchoNumber.php │ │ │ ├── EchoPlanarPulseSequence.php │ │ │ ├── EchoPulseSequence.php │ │ │ ├── EchoTime.php │ │ │ ├── EchoTrainLength.php │ │ │ ├── EdgePointIndexList.php │ │ │ ├── EffectiveDuration.php │ │ │ ├── EffectiveEchoSpacing.php │ │ │ ├── EffectiveEchoTime.php │ │ │ ├── EmmetropicMagnification.php │ │ │ ├── EmptyImageDensity.php │ │ │ ├── EncapsulatedDocument.php │ │ │ ├── EncryptedAttributesSequence.php │ │ │ ├── EncryptedContent.php │ │ │ ├── EncryptedContentTransferSyntaxUID.php │ │ │ ├── EndAcquisitionDateTime.php │ │ │ ├── EndCumulativeMetersetWeight.php │ │ │ ├── EndMeterset.php │ │ │ ├── EndNumberForBaseline.php │ │ │ ├── EndNumberForEnhancedScans.php │ │ │ ├── EndOfItems.php │ │ │ ├── EndOfSequence.php │ │ │ ├── EndingRespiratoryAmplitude.php │ │ │ ├── EndingRespiratoryPhase.php │ │ │ ├── EnergyWeightingFactor.php │ │ │ ├── EnergyWindowCenterline.php │ │ │ ├── EnergyWindowInformationSequence.php │ │ │ ├── EnergyWindowLowerLimit.php │ │ │ ├── EnergyWindowName.php │ │ │ ├── EnergyWindowNumber.php │ │ │ ├── EnergyWindowRangeSequence.php │ │ │ ├── EnergyWindowTotalWidth.php │ │ │ ├── EnergyWindowUpperLimit.php │ │ │ ├── EnergyWindowVector.php │ │ │ ├── EntranceDose.php │ │ │ ├── EntranceDoseInMilliGy.php │ │ │ ├── EquipmentCoordinateSystemID.php │ │ │ ├── EquipmentUID.php │ │ │ ├── EquivalentCDADocumentSequence.php │ │ │ ├── EscapeTriplet.php │ │ │ ├── EstimatedDoseSaving.php │ │ │ ├── EstimatedRadiographicMagnification.php │ │ │ ├── EthnicGroup.php │ │ │ ├── EventCodeSequence.php │ │ │ ├── EventElapsedTimes.php │ │ │ ├── EventTimeOffset.php │ │ │ ├── EventTimerNames.php │ │ │ ├── EventTimerSequence.php │ │ │ ├── ExamRecordChecksum.php │ │ │ ├── ExaminedBodyThickness.php │ │ │ ├── ExclusionDuration.php │ │ │ ├── ExclusionStartDatetime.php │ │ │ ├── ExecutionStatus.php │ │ │ ├── ExecutionStatusInfo.php │ │ │ ├── ExpectedCompletionDateAndTime.php │ │ │ ├── ExposedArea.php │ │ │ ├── Exposure.php │ │ │ ├── ExposureControlMode.php │ │ │ ├── ExposureControlModeDescription.php │ │ │ ├── ExposureControlSensRegionLeftEdge.php │ │ │ ├── ExposureControlSensRegionRightEdge.php │ │ │ ├── ExposureControlSensingRegionShape.php │ │ │ ├── ExposureControlSensingRegionsSeq.php │ │ │ ├── ExposureDoseSequence.php │ │ │ ├── ExposureInMicroAmpSec.php │ │ │ ├── ExposureInMilliAmpSec.php │ │ │ ├── ExposureModulationType.php │ │ │ ├── ExposureSequence.php │ │ │ ├── ExposureStatus.php │ │ │ ├── ExposureTime.php │ │ │ ├── ExposureTimeInMicroSec.php │ │ │ ├── ExposureTimeInMilliSec.php │ │ │ ├── ExposuresOnPlate.php │ │ │ ├── ExtremityCoilFlag.php │ │ │ ├── FacetSequence.php │ │ │ ├── FailedAttributesSequence.php │ │ │ ├── FailedSOPInstanceUIDList.php │ │ │ ├── FailedSOPSequence.php │ │ │ ├── FailureAttributes.php │ │ │ ├── FailureReason.php │ │ │ ├── FastPhases.php │ │ │ ├── FiducialDescription.php │ │ │ ├── FiducialIdentifier.php │ │ │ ├── FiducialIdentifierCodeSequence.php │ │ │ ├── FiducialSequence.php │ │ │ ├── FiducialSetSequence.php │ │ │ ├── FiducialUID.php │ │ │ ├── FieldOfViewDescription.php │ │ │ ├── FieldOfViewDimensions.php │ │ │ ├── FieldOfViewDimensionsInFloat.php │ │ │ ├── FieldOfViewHorizontalFlip.php │ │ │ ├── FieldOfViewInDetectorCells.php │ │ │ ├── FieldOfViewOrigin.php │ │ │ ├── FieldOfViewRotation.php │ │ │ ├── FieldOfViewSequence.php │ │ │ ├── FieldOfViewShape.php │ │ │ ├── FileMetaInfoGroupLength.php │ │ │ ├── FileMetaInfoVersion.php │ │ │ ├── FileSetConsistencyFlag.php │ │ │ ├── FileSetDescriptorFileID.php │ │ │ ├── FileSetID.php │ │ │ ├── FillerOrderNumImagingServiceReq.php │ │ │ ├── FillerOrderNumberProcedure.php │ │ │ ├── FilmBoxContentSequence.php │ │ │ ├── FilmConsumptionSequence.php │ │ │ ├── FilmDestination.php │ │ │ ├── FilmOrientation.php │ │ │ ├── FilmSessionLabel.php │ │ │ ├── FilmSizeID.php │ │ │ ├── FilterByAttributePresence.php │ │ │ ├── FilterByCategory.php │ │ │ ├── FilterByOperator.php │ │ │ ├── FilterHighFrequency.php │ │ │ ├── FilterLowFrequency.php │ │ │ ├── FilterMaterial.php │ │ │ ├── FilterOperationsSequence.php │ │ │ ├── FilterThicknessMaximum.php │ │ │ ├── FilterThicknessMinimum.php │ │ │ ├── FilterType.php │ │ │ ├── FinalCumulativeMetersetWeight.php │ │ │ ├── FinalCumulativeTimeWeight.php │ │ │ ├── FiniteVolume.php │ │ │ ├── FirstDirectoryRecordOffset.php │ │ │ ├── FirstOrderPhaseCorrection.php │ │ │ ├── FirstOrderPhaseCorrectionAngle.php │ │ │ ├── FirstScanLocation.php │ │ │ ├── FirstScanRas.php │ │ │ ├── FirstTreatmentDate.php │ │ │ ├── FixationDeviceDescription.php │ │ │ ├── FixationDeviceLabel.php │ │ │ ├── FixationDevicePitchAngle.php │ │ │ ├── FixationDevicePosition.php │ │ │ ├── FixationDeviceRollAngle.php │ │ │ ├── FixationDeviceSequence.php │ │ │ ├── FixationDeviceType.php │ │ │ ├── FixationLightAzimuthalAngle.php │ │ │ ├── FixationLightPolarAngle.php │ │ │ ├── FlipAngle.php │ │ │ ├── FloatSlop.php │ │ │ ├── FlowCompensation.php │ │ │ ├── FlowCompensationDirection.php │ │ │ ├── FluenceDataScale.php │ │ │ ├── FluenceDataSource.php │ │ │ ├── FluenceMapSequence.php │ │ │ ├── FluenceMode.php │ │ │ ├── FluenceModeID.php │ │ │ ├── FluoroscopyFlag.php │ │ │ ├── FocalDistance.php │ │ │ ├── FocalSpots.php │ │ │ ├── FocusDepth.php │ │ │ ├── ForeignImageRevision.php │ │ │ ├── FractionGroupDescription.php │ │ │ ├── FractionGroupNumber.php │ │ │ ├── FractionGroupSequence.php │ │ │ ├── FractionGroupSummarySequence.php │ │ │ ├── FractionGroupType.php │ │ │ ├── FractionNumber.php │ │ │ ├── FractionPattern.php │ │ │ ├── FractionStatusSummarySequence.php │ │ │ ├── FractionalChannelDisplayScale.php │ │ │ ├── FractionalEcho.php │ │ │ ├── FrameAcquisitionDateTime.php │ │ │ ├── FrameAcquisitionDuration.php │ │ │ ├── FrameAcquisitionNumber.php │ │ │ ├── FrameAcquisitionSequence.php │ │ │ ├── FrameAnatomySequence.php │ │ │ ├── FrameComments.php │ │ │ ├── FrameContentSequence.php │ │ │ ├── FrameDelay.php │ │ │ ├── FrameDetectorParametersSequence.php │ │ │ ├── FrameDimensionPointer.php │ │ │ ├── FrameDisplaySequence.php │ │ │ ├── FrameDisplayShutterSequence.php │ │ │ ├── FrameExtractionSequence.php │ │ │ ├── FrameIncrementPointer.php │ │ │ ├── FrameLabel.php │ │ │ ├── FrameLabelVector.php │ │ │ ├── FrameLaterality.php │ │ │ ├── FrameNumbersOfInterest.php │ │ │ ├── FrameOfInterestDescription.php │ │ │ ├── FrameOfInterestType.php │ │ │ ├── FrameOfRefTransformationMatrixType.php │ │ │ ├── FrameOfReferenceRelationshipSeq.php │ │ │ ├── FrameOfReferenceTransformComment.php │ │ │ ├── FrameOfReferenceTransformMatrix.php │ │ │ ├── FrameOfReferenceTransformType.php │ │ │ ├── FrameOfReferenceUID.php │ │ │ ├── FramePixelDataPropertiesSequence.php │ │ │ ├── FramePixelShiftSequence.php │ │ │ ├── FramePrimaryAngleVector.php │ │ │ ├── FrameReferenceDateTime.php │ │ │ ├── FrameReferenceTime.php │ │ │ ├── FrameSecondaryAngleVector.php │ │ │ ├── FrameTime.php │ │ │ ├── FrameTimeVector.php │ │ │ ├── FrameType.php │ │ │ ├── FrameVOILUTSequence.php │ │ │ ├── FrequencyCorrection.php │ │ │ ├── FullFidelity.php │ │ │ ├── FunctionalGroupPointer.php │ │ │ ├── FunctionalGroupPrivateCreator.php │ │ │ ├── GEImageIntegrity.php │ │ │ ├── GantryAngle.php │ │ │ ├── GantryAngleTolerance.php │ │ │ ├── GantryDetectorSlew.php │ │ │ ├── GantryDetectorTilt.php │ │ │ ├── GantryID.php │ │ │ ├── GantryMotionCorrected.php │ │ │ ├── GantryPeriod.php │ │ │ ├── GantryPitchAngle.php │ │ │ ├── GantryPitchAngleTolerance.php │ │ │ ├── GantryPitchRotationDirection.php │ │ │ ├── GantryRotationDirection.php │ │ │ ├── GatedInformationSequence.php │ │ │ ├── GenPurposePerformedProcStepStatus.php │ │ │ ├── GenPurposeSchedProcStepPriority.php │ │ │ ├── GenPurposeScheduledProcStepStatus.php │ │ │ ├── GeneralAccessoryDescription.php │ │ │ ├── GeneralAccessoryID.php │ │ │ ├── GeneralAccessoryNumber.php │ │ │ ├── GeneralAccessorySequence.php │ │ │ ├── GeneralAccessoryType.php │ │ │ ├── GeneralMachineVerificationSequence.php │ │ │ ├── GeneratorID.php │ │ │ ├── GeneratorPower.php │ │ │ ├── GenesisVersionNow.php │ │ │ ├── GeometricMaximumDistortion.php │ │ │ ├── GeometricalProperties.php │ │ │ ├── GeometryOfKSpaceTraversal.php │ │ │ ├── GradientEchoTrainLength.php │ │ │ ├── GradientOffsetInX.php │ │ │ ├── GradientOffsetInY.php │ │ │ ├── GradientOffsetInZ.php │ │ │ ├── GradientOutput.php │ │ │ ├── GradientOutputType.php │ │ │ ├── GraphicAnnotationSequence.php │ │ │ ├── GraphicAnnotationUnits.php │ │ │ ├── GraphicCoordinatesDataSequence.php │ │ │ ├── GraphicData.php │ │ │ ├── GraphicDimensions.php │ │ │ ├── GraphicFilled.php │ │ │ ├── GraphicLayer.php │ │ │ ├── GraphicLayerDescription.php │ │ │ ├── GraphicLayerOrder.php │ │ │ ├── GraphicLayerRecDisplayGraysclValue.php │ │ │ ├── GraphicLayerRecDisplayRGBValue.php │ │ │ ├── GraphicLayerRecomDisplayCIELabVal.php │ │ │ ├── GraphicLayerSequence.php │ │ │ ├── GraphicObjectSequence.php │ │ │ ├── GraphicType.php │ │ │ ├── GraphicallyPrescribed.php │ │ │ ├── GrayLookupTableData.php │ │ │ ├── GrayLookupTableDescriptor.php │ │ │ ├── GrayScale.php │ │ │ ├── GrayscalePresentationStateSequence.php │ │ │ ├── GreenPaletteColorTableData.php │ │ │ ├── GreenPaletteColorTableDescriptor.php │ │ │ ├── Grid.php │ │ │ ├── GridAbsorbingMaterial.php │ │ │ ├── GridAspectRatio.php │ │ │ ├── GridDimensions.php │ │ │ ├── GridFocalDistance.php │ │ │ ├── GridFrameOffsetVector.php │ │ │ ├── GridID.php │ │ │ ├── GridPeriod.php │ │ │ ├── GridPitch.php │ │ │ ├── GridResolution.php │ │ │ ├── GridSpacingMaterial.php │ │ │ ├── GridThickness.php │ │ │ ├── HL7DocumentEffectiveTime.php │ │ │ ├── HL7DocumentTypeCodeSequence.php │ │ │ ├── HL7InstanceIdentifier.php │ │ │ ├── HL7StructuredDocumentRefSeq.php │ │ │ ├── HalfValueLayer.php │ │ │ ├── HangingProtocolCreationDateTime.php │ │ │ ├── HangingProtocolCreator.php │ │ │ ├── HangingProtocolDefinitionSequence.php │ │ │ ├── HangingProtocolDescription.php │ │ │ ├── HangingProtocolLevel.php │ │ │ ├── HangingProtocolName.php │ │ │ ├── HangingProtocolUserGroupName.php │ │ │ ├── HangingProtocolUserIDCodeSequence.php │ │ │ ├── HardcopyCreationDeviceID.php │ │ │ ├── HardcopyDeviceManufacturer.php │ │ │ ├── HardcopyDeviceModelName.php │ │ │ ├── HardcopyDeviceSoftwareVersion.php │ │ │ ├── HeadFixationAngle.php │ │ │ ├── HeartRate.php │ │ │ ├── HighBit.php │ │ │ ├── HighDoseTechniqueType.php │ │ │ ├── HighRRValue.php │ │ │ ├── HistogramBinWidth.php │ │ │ ├── HistogramData.php │ │ │ ├── HistogramExplanation.php │ │ │ ├── HistogramFirstBinValue.php │ │ │ ├── HistogramLastBinValue.php │ │ │ ├── HistogramNumberOfBins.php │ │ │ ├── HistogramSequence.php │ │ │ ├── HistogramTables.php │ │ │ ├── HorizFrameOfRef.php │ │ │ ├── HorizontalFieldOfView.php │ │ │ ├── HorizontalPrismBase.php │ │ │ ├── HorizontalPrismPower.php │ │ │ ├── HuffmanTableSize.php │ │ │ ├── HuffmanTableTriplet.php │ │ │ ├── HumanPerformerCodeSequence.php │ │ │ ├── HumanPerformerName.php │ │ │ ├── HumanPerformersOrganization.php │ │ │ ├── IBHImageScaleFactors.php │ │ │ ├── ICCProfile.php │ │ │ ├── IVUSAcquisition.php │ │ │ ├── IVUSGatedRate.php │ │ │ ├── IVUSPullbackRate.php │ │ │ ├── IVUSPullbackStartFrameNumber.php │ │ │ ├── IVUSPullbackStopFrameNumber.php │ │ │ ├── IconImageSequence.php │ │ │ ├── IdenticalDocumentsSequence.php │ │ │ ├── IdentifierTypeCode.php │ │ │ ├── IdentifyingComments.php │ │ │ ├── IdentifyingGroupLength.php │ │ │ ├── Illumination.php │ │ │ ├── IlluminationBandwidth.php │ │ │ ├── IlluminationPower.php │ │ │ ├── IlluminationTypeCodeSequence.php │ │ │ ├── IlluminationWaveLength.php │ │ │ ├── ImageActualDate.php │ │ │ ├── ImageArchiveFlag.php │ │ │ ├── ImageAreaDoseProduct.php │ │ │ ├── ImageBoxContentSequence.php │ │ │ ├── ImageBoxLargeScrollAmount.php │ │ │ ├── ImageBoxLargeScrollType.php │ │ │ ├── ImageBoxLayoutType.php │ │ │ ├── ImageBoxNumber.php │ │ │ ├── ImageBoxOverlapPriority.php │ │ │ ├── ImageBoxPosition.php │ │ │ ├── ImageBoxPresentationLUTFlag.php │ │ │ ├── ImageBoxScrollDirection.php │ │ │ ├── ImageBoxSmallScrollAmount.php │ │ │ ├── ImageBoxSmallScrollType.php │ │ │ ├── ImageBoxTileHorizontalDimension.php │ │ │ ├── ImageBoxTileVerticalDimension.php │ │ │ ├── ImageBoxesSequence.php │ │ │ ├── ImageCenterPointCoordinatesSeq.php │ │ │ ├── ImageComments.php │ │ │ ├── ImageDataLocation.php │ │ │ ├── ImageDataTypeSequence.php │ │ │ ├── ImageDimensionX.php │ │ │ ├── ImageDimensionY.php │ │ │ ├── ImageDimensions.php │ │ │ ├── ImageDisplayFormat.php │ │ │ ├── ImageFilter.php │ │ │ ├── ImageFormat.php │ │ │ ├── ImageFrameOrigin.php │ │ │ ├── ImageFromWhichPrescribed.php │ │ │ ├── ImageGeometryType.php │ │ │ ├── ImageHorizontalFlip.php │ │ │ ├── ImageID.php │ │ │ ├── ImageIndex.php │ │ │ ├── ImageLaterality.php │ │ │ ├── ImageLocation.php │ │ │ ├── ImageOrientation.php │ │ │ ├── ImageOrientationPatient.php │ │ │ ├── ImageOrientationVolume.php │ │ │ ├── ImageOverlayBoxContentSequence.php │ │ │ ├── ImageOverlayFlag.php │ │ │ ├── ImagePathFilterPassBand.php │ │ │ ├── ImagePathFilterPassThroughWavelen.php │ │ │ ├── ImagePathFilterTypeStackCodeSeq.php │ │ │ ├── ImagePlanePixelSpacing.php │ │ │ ├── ImagePosition.php │ │ │ ├── ImagePositionPatient.php │ │ │ ├── ImagePositionVolume.php │ │ │ ├── ImagePresentationComments.php │ │ │ ├── ImagePresentationGroupLength.php │ │ │ ├── ImageProcessingApplied.php │ │ │ ├── ImageRotation.php │ │ │ ├── ImageRotationRetired.php │ │ │ ├── ImageSetLabel.php │ │ │ ├── ImageSetNumber.php │ │ │ ├── ImageSetSelectorCategory.php │ │ │ ├── ImageSetSelectorSequence.php │ │ │ ├── ImageSetSelectorUsageFlag.php │ │ │ ├── ImageSetsSequence.php │ │ │ ├── ImageToEquipmentMappingMatrix.php │ │ │ ├── ImageTransformationMatrix.php │ │ │ ├── ImageTranslationVector.php │ │ │ ├── ImageTriggerDelay.php │ │ │ ├── ImageType.php │ │ │ ├── ImagedNucleus.php │ │ │ ├── ImagerPixelSpacing.php │ │ │ ├── ImagesInAcquisition.php │ │ │ ├── ImagesInSeries.php │ │ │ ├── ImagesInStudy.php │ │ │ ├── ImagesPerCardiacCycle.php │ │ │ ├── ImagingDeviceSpecificAcqParams.php │ │ │ ├── ImagingFrequency.php │ │ │ ├── ImagingMode.php │ │ │ ├── ImagingOptions.php │ │ │ ├── ImagingServiceRequestComments.php │ │ │ ├── ImgIsOriginalOrUnoriginal.php │ │ │ ├── ImplementationClassUID.php │ │ │ ├── ImplementationVersionName.php │ │ │ ├── Impressions.php │ │ │ ├── InConcatenationNumber.php │ │ │ ├── InConcatenationTotalNumber.php │ │ │ ├── InPlanePhaseEncodingDirection.php │ │ │ ├── InStackPositionNumber.php │ │ │ ├── IncludeDisplayApplication.php │ │ │ ├── IncludeNonDICOMObjects.php │ │ │ ├── IncrementBetweenChannels.php │ │ │ ├── IncrementBetweenViews.php │ │ │ ├── IndicatesIfTheStudyHasCompleteInfo.php │ │ │ ├── IndicatesNoofUpdatesToHeader.php │ │ │ ├── InitialCineRunState.php │ │ │ ├── InputAvailabilityFlag.php │ │ │ ├── InputInformationSequence.php │ │ │ ├── InstanceAvailability.php │ │ │ ├── InstanceCreationDate.php │ │ │ ├── InstanceCreationTime.php │ │ │ ├── InstanceCreatorUID.php │ │ │ ├── InstanceNumber.php │ │ │ ├── InstitutionAddress.php │ │ │ ├── InstitutionCodeSequence.php │ │ │ ├── InstitutionName.php │ │ │ ├── InstitutionalDepartmentName.php │ │ │ ├── InsurancePlanIdentification.php │ │ │ ├── IntegerSlop.php │ │ │ ├── IntendedRecipientsOfResultsIDSeq.php │ │ │ ├── IntensifierActiveDimensions.php │ │ │ ├── IntensifierActiveShape.php │ │ │ ├── IntensifierSize.php │ │ │ ├── InterMarkerDistance.php │ │ │ ├── InternalPulseSeqName.php │ │ │ ├── InterpretationApprovalDate.php │ │ │ ├── InterpretationApprovalTime.php │ │ │ ├── InterpretationApproverSequence.php │ │ │ ├── InterpretationAuthor.php │ │ │ ├── InterpretationDiagnosisCodeSeq.php │ │ │ ├── InterpretationDiagnosisDescription.php │ │ │ ├── InterpretationID.php │ │ │ ├── InterpretationIDIssuer.php │ │ │ ├── InterpretationRecordedDate.php │ │ │ ├── InterpretationRecordedTime.php │ │ │ ├── InterpretationRecorder.php │ │ │ ├── InterpretationStatusID.php │ │ │ ├── InterpretationText.php │ │ │ ├── InterpretationTranscriber.php │ │ │ ├── InterpretationTranscriptionDate.php │ │ │ ├── InterpretationTranscriptionTime.php │ │ │ ├── InterpretationTypeID.php │ │ │ ├── InterscanDelay.php │ │ │ ├── IntervalNumber.php │ │ │ ├── IntervalsAcquired.php │ │ │ ├── IntervalsRejected.php │ │ │ ├── InterventionDescription.php │ │ │ ├── InterventionDrugDose.php │ │ │ ├── InterventionDrugInformationSeq.php │ │ │ ├── InterventionDrugName.php │ │ │ ├── InterventionDrugSequence.php │ │ │ ├── InterventionDrugStartTime.php │ │ │ ├── InterventionDrugStopTime.php │ │ │ ├── InterventionSequence.php │ │ │ ├── InterventionStatus.php │ │ │ ├── IntraOcularPressure.php │ │ │ ├── InversionRecovery.php │ │ │ ├── InversionTime.php │ │ │ ├── InversionTimes.php │ │ │ ├── IonBeamLimitingDeviceSequence.php │ │ │ ├── IonBeamSequence.php │ │ │ ├── IonBlockSequence.php │ │ │ ├── IonControlPointDeliverySequence.php │ │ │ ├── IonControlPointSequence.php │ │ │ ├── IonControlPointVerificationSeq.php │ │ │ ├── IonMachineVerificationSequence.php │ │ │ ├── IonRangeCompensatorSequence.php │ │ │ ├── IonToleranceTableSequence.php │ │ │ ├── IonWedgePositionSequence.php │ │ │ ├── IonWedgeSequence.php │ │ │ ├── IrradiationEventIDSequence.php │ │ │ ├── IrradiationEventUID.php │ │ │ ├── IsocenterPosition.php │ │ │ ├── IsocenterReferenceSystemSequence.php │ │ │ ├── IsocenterToBeamLimitingDeviceDist.php │ │ │ ├── IsocenterToBlockTrayDistance.php │ │ │ ├── IsocenterToCompensatorDistances.php │ │ │ ├── IsocenterToCompensatorTrayDistance.php │ │ │ ├── IsocenterToLateralSpreadingDevDist.php │ │ │ ├── IsocenterToRangeModulatorDistance.php │ │ │ ├── IsocenterToRangeShifterDistance.php │ │ │ ├── IsocenterToWedgeTrayDistance.php │ │ │ ├── IsotopeNumber.php │ │ │ ├── IssueDateOfImagingServiceRequest.php │ │ │ ├── IssueTimeOfImagingServiceRequest.php │ │ │ ├── IssuerOfAdmissionID.php │ │ │ ├── IssuerOfPatientID.php │ │ │ ├── IssuerOfServiceEpisodeID.php │ │ │ ├── ItemNumber.php │ │ │ ├── IterboneOptionFlag.php │ │ │ ├── KSpaceFiltering.php │ │ │ ├── KVP.php │ │ │ ├── KeratometricAxis.php │ │ │ ├── KeratometricPower.php │ │ │ ├── LUTData.php │ │ │ ├── LUTDescriptor.php │ │ │ ├── LUTExplanation.php │ │ │ ├── LUTFrameRange.php │ │ │ ├── LUTFunction.php │ │ │ ├── LUTLabel.php │ │ │ ├── LabelFromInfoExtractedFromInstance.php │ │ │ ├── LabelStyleSelection.php │ │ │ ├── LabelText.php │ │ │ ├── LandmarkCounter.php │ │ │ ├── LanguageCodeSequence.php │ │ │ ├── LargeBluePaletteColorTableData.php │ │ │ ├── LargeBluePaletteColorTableDescr.php │ │ │ ├── LargeGreenPaletteColorTableData.php │ │ │ ├── LargeGreenPaletteColorTableDescr.php │ │ │ ├── LargePaletteColorLookupTableUID.php │ │ │ ├── LargeRedPaletteColorTableData.php │ │ │ ├── LargeRedPaletteColorTableDescr.php │ │ │ ├── LargestImagePixelValue.php │ │ │ ├── LargestImagePixelValueInPlane.php │ │ │ ├── LargestMonochromePixelValue.php │ │ │ ├── LargestPixelValueInSeries.php │ │ │ ├── LargestValidPixelValue.php │ │ │ ├── LastDirectoryRecordOffset.php │ │ │ ├── LastImageNumberUsed.php │ │ │ ├── LastMenstrualDate.php │ │ │ ├── LastPseq.php │ │ │ ├── LastPulseSequenceUsed.php │ │ │ ├── LastScanLoc.php │ │ │ ├── LastScanRas.php │ │ │ ├── LateralSpreadingDevWaterEquivThick.php │ │ │ ├── LateralSpreadingDeviceDescription.php │ │ │ ├── LateralSpreadingDeviceID.php │ │ │ ├── LateralSpreadingDeviceNumber.php │ │ │ ├── LateralSpreadingDeviceSequence.php │ │ │ ├── LateralSpreadingDeviceSetting.php │ │ │ ├── LateralSpreadingDeviceSettingsSeq.php │ │ │ ├── LateralSpreadingDeviceType.php │ │ │ ├── Laterality.php │ │ │ ├── LeafJawPositions.php │ │ │ ├── LeafPositionBoundaries.php │ │ │ ├── LeftImageSequence.php │ │ │ ├── LeftLensSequence.php │ │ │ ├── LenOfTotHdrInBytes.php │ │ │ ├── LengthToEnd.php │ │ │ ├── LensDescription.php │ │ │ ├── LensSegmentType.php │ │ │ ├── LensesCodeSequence.php │ │ │ ├── LesionNumber.php │ │ │ ├── LevelValue.php │ │ │ ├── LightPathFilterPassBand.php │ │ │ ├── LightPathFilterPassThroughWavelen.php │ │ │ ├── LightPathFilterTypeStackCodeSeq.php │ │ │ ├── LimitsInUnitsOfPercent.php │ │ │ ├── LineSequence.php │ │ │ ├── ListOfMIMETypes.php │ │ │ ├── LocalNamespaceEntityID.php │ │ │ ├── Location.php │ │ │ ├── LocationsInAcquisition.php │ │ │ ├── LookupTableNumber.php │ │ │ ├── LossyImageCompression.php │ │ │ ├── LossyImageCompressionMethod.php │ │ │ ├── LossyImageCompressionRatio.php │ │ │ ├── LowRRValue.php │ │ │ ├── LowerLevelDirectoryEntityOffset.php │ │ │ ├── LowerRangeOfPixels1a.php │ │ │ ├── LowerRangeOfPixels1b.php │ │ │ ├── LowerRangeOfPixels1c.php │ │ │ ├── LowerRangeOfPixels1d.php │ │ │ ├── LowerRangeOfPixels1e.php │ │ │ ├── LowerRangeOfPixels1f.php │ │ │ ├── LowerRangeOfPixels1g.php │ │ │ ├── LowerRangeOfPixels1h.php │ │ │ ├── LowerRangeOfPixels1i.php │ │ │ ├── LowerRangeOfPixels2.php │ │ │ ├── MAC.php │ │ │ ├── MACAlgorithm.php │ │ │ ├── MACCalculationTransferSyntaxUID.php │ │ │ ├── MACIDNumber.php │ │ │ ├── MACParametersSequence.php │ │ │ ├── MIMETypeOfEncapsulatedDocument.php │ │ │ ├── MRAcqPhaseEncodingStepsInPlane.php │ │ │ ├── MRAcqPhaseEncodingStepsOutOfPlane.php │ │ │ ├── MRAcquisitionFrequencyEncodeSteps.php │ │ │ ├── MRAcquisitionType.php │ │ │ ├── MRAveragesSequence.php │ │ │ ├── MRDRDirectoryRecordOffset.php │ │ │ ├── MRDiffusionSequence.php │ │ │ ├── MREchoSequence.php │ │ │ ├── MRFOVGeometrySequence.php │ │ │ ├── MRImageFrameTypeSequence.php │ │ │ ├── MRImagingModifierSequence.php │ │ │ ├── MRMetaboliteMapSequence.php │ │ │ ├── MRModifierSequence.php │ │ │ ├── MRReceiveCoilSequence.php │ │ │ ├── MRSpatialSaturationSequence.php │ │ │ ├── MRSpectroscopyAcquisitionType.php │ │ │ ├── MRSpectroscopyFOVGeometrySequence.php │ │ │ ├── MRSpectroscopyFrameTypeSequence.php │ │ │ ├── MRTimingAndRelatedParametersSeq.php │ │ │ ├── MRTransmitCoilSequence.php │ │ │ ├── MRVelocityEncodingSequence.php │ │ │ ├── MacroWidthAtISOCenter.php │ │ │ ├── MagneticFieldStrength.php │ │ │ ├── MagnetizationTransfer.php │ │ │ ├── MagnificationType.php │ │ │ ├── MagnifyToNumberOfColumns.php │ │ │ ├── Manifold.php │ │ │ ├── ManipulatedImage.php │ │ │ ├── Manufacturer.php │ │ │ ├── ManufacturersModelName.php │ │ │ ├── MappingResource.php │ │ │ ├── MaskFrameNumbers.php │ │ │ ├── MaskOperation.php │ │ │ ├── MaskOperationExplanation.php │ │ │ ├── MaskPointers.php │ │ │ ├── MaskSelectionMode.php │ │ │ ├── MaskSubPixelShift.php │ │ │ ├── MaskSubtractionSequence.php │ │ │ ├── MaskVisibilityPercentage.php │ │ │ ├── MaskingImage.php │ │ │ ├── MaterialID.php │ │ │ ├── MatrixRegistrationSequence.php │ │ │ ├── MatrixSequence.php │ │ │ ├── MaxDensity.php │ │ │ ├── MaxLeftChanOverViews.php │ │ │ ├── MaxOverrangesInAView.php │ │ │ ├── MaxRightChanOverViews.php │ │ │ ├── MaximumAcrossScanDistortion.php │ │ │ ├── MaximumAlongScanDistortion.php │ │ │ ├── MaximumCollatedFilms.php │ │ │ ├── MaximumCoordinateValue.php │ │ │ ├── MaximumDepthDistortion.php │ │ │ ├── MaximumFractionalValue.php │ │ │ ├── MaximumMemoryAllocation.php │ │ │ ├── MaximumOffsetShiftValueUsed.php │ │ │ ├── MaximumPointDistance.php │ │ │ ├── MeanPointDistance.php │ │ │ ├── MeanZError.php │ │ │ ├── MeasuredDoseDescription.php │ │ │ ├── MeasuredDoseReferenceNumber.php │ │ │ ├── MeasuredDoseReferenceSequence.php │ │ │ ├── MeasuredDoseType.php │ │ │ ├── MeasuredDoseValue.php │ │ │ ├── MeasuredValueSequence.php │ │ │ ├── MeasurementUnitsCodeSequence.php │ │ │ ├── MeasuringUnitsSequence.php │ │ │ ├── MechanicalIndex.php │ │ │ ├── MediaDisposition.php │ │ │ ├── MediaInstalledSequence.php │ │ │ ├── MediaStorageSOPClassUID.php │ │ │ ├── MediaStorageSOPInstanceUID.php │ │ │ ├── MedicalAlerts.php │ │ │ ├── MedicalRecordLocator.php │ │ │ ├── MediumType.php │ │ │ ├── MemoryAllocation.php │ │ │ ├── MemoryBitDepth.php │ │ │ ├── MetaboliteMapCodeSequence.php │ │ │ ├── MetaboliteMapDescription.php │ │ │ ├── MetersetExposure.php │ │ │ ├── MetersetRate.php │ │ │ ├── MetersetRateDelivered.php │ │ │ ├── MetersetRateSet.php │ │ │ ├── MidScanFlag.php │ │ │ ├── MidScanTime.php │ │ │ ├── MidSlabPosition.php │ │ │ ├── MilitaryRank.php │ │ │ ├── MinDensity.php │ │ │ ├── MinimumCoordinateValue.php │ │ │ ├── MinimumDasValueFoundInTheScanData.php │ │ │ ├── MobileLocationNumber.php │ │ │ ├── ModalitiesInStudy.php │ │ │ ├── Modality.php │ │ │ ├── ModalityLUTSequence.php │ │ │ ├── ModalityLUTType.php │ │ │ ├── ModifiedAttributesSequence.php │ │ │ ├── ModifiedImageDate.php │ │ │ ├── ModifiedImageDescription.php │ │ │ ├── ModifiedImageID.php │ │ │ ├── ModifiedImageTime.php │ │ │ ├── ModifierCodeSequence.php │ │ │ ├── ModifyingDeviceID.php │ │ │ ├── ModifyingDeviceManufacturer.php │ │ │ ├── ModifyingSystem.php │ │ │ ├── MonitorSAR.php │ │ │ ├── MostRecentTreatmentDate.php │ │ │ ├── MotionSynchronizationSequence.php │ │ │ ├── MultiCoilConfiguration.php │ │ │ ├── MultiCoilDefinitionSequence.php │ │ │ ├── MultiCoilElementName.php │ │ │ ├── MultiCoilElementUsed.php │ │ │ ├── MultiPlanarExcitation.php │ │ │ ├── MultipleCopiesFlag.php │ │ │ ├── MultipleSpinEcho.php │ │ │ ├── MultiplexAudioChannelsDescrCodeSeq.php │ │ │ ├── MultiplexGroupLabel.php │ │ │ ├── MultiplexGroupTimeOffset.php │ │ │ ├── MydriaticAgentCodeSequence.php │ │ │ ├── MydriaticAgentConcUnitsSeq.php │ │ │ ├── MydriaticAgentConcentration.php │ │ │ ├── MydriaticAgentSequence.php │ │ │ ├── NTPSourceAddress.php │ │ │ ├── NameOfPhysicianReadingStudy.php │ │ │ ├── NamesOfIntendedRecipientsOfResults.php │ │ │ ├── NavigationDisplaySet.php │ │ │ ├── NavigationIndicatorSequence.php │ │ │ ├── NearPupillaryDistance.php │ │ │ ├── NegScanspacing.php │ │ │ ├── NetworkID.php │ │ │ ├── NoViewsRefChansBlocked.php │ │ │ ├── NominalBeamEnergy.php │ │ │ ├── NominalBeamEnergyUnit.php │ │ │ ├── NominalInterval.php │ │ │ ├── NominalPercentOfRespiratoryPhase.php │ │ │ ├── NominalPercentageOfCardiacPhase.php │ │ │ ├── NominalPriorDose.php │ │ │ ├── NominalRespiratoryTriggerDelayTime.php │ │ │ ├── NominalScannedPixelSpacing.php │ │ │ ├── NominalScreenDefinitionSequence.php │ │ │ ├── NonDICOMOutputCodeSequence.php │ │ │ ├── NoofUpdatesToHeader.php │ │ │ ├── NormalACoord.php │ │ │ ├── NormalRCoord.php │ │ │ ├── NormalSCoord.php │ │ │ ├── NormalizationFactorFormat.php │ │ │ ├── NormalizationPoint.php │ │ │ ├── NotchFilterBandwidth.php │ │ │ ├── NotchFilterFrequency.php │ │ │ ├── NuclearMedicineSeriesType.php │ │ │ ├── NumberFractionPatternDigitsPerDay.php │ │ │ ├── NumberOfAcquisitions.php │ │ │ ├── NumberOfAverages.php │ │ │ ├── NumberOfBBHChainsToBlend.php │ │ │ ├── NumberOfBeams.php │ │ │ ├── NumberOfBlocks.php │ │ │ ├── NumberOfBoli.php │ │ │ ├── NumberOfBrachyApplicationSetups.php │ │ │ ├── NumberOfCellsIInDetector.php │ │ │ ├── NumberOfChannels.php │ │ │ ├── NumberOfCompensators.php │ │ │ ├── NumberOfContourPoints.php │ │ │ ├── NumberOfControlPoints.php │ │ │ ├── NumberOfCopies.php │ │ │ ├── NumberOfDetectors.php │ │ │ ├── NumberOfEPIShots.php │ │ │ ├── NumberOfEchoes.php │ │ │ ├── NumberOfEnergyWindows.php │ │ │ ├── NumberOfEventTimers.php │ │ │ ├── NumberOfExcitations.php │ │ │ ├── NumberOfFilms.php │ │ │ ├── NumberOfFractionsDelivered.php │ │ │ ├── NumberOfFractionsPlanned.php │ │ │ ├── NumberOfFrames.php │ │ │ ├── NumberOfFramesInOverlay.php │ │ │ ├── NumberOfFramesInPhase.php │ │ │ ├── NumberOfFramesInRotation.php │ │ │ ├── NumberOfGraphicPoints.php │ │ │ ├── NumberOfHorizontalPixels.php │ │ │ ├── NumberOfImagesArchived.php │ │ │ ├── NumberOfIterations.php │ │ │ ├── NumberOfKSpaceTrajectories.php │ │ │ ├── NumberOfLateralSpreadingDevices.php │ │ │ ├── NumberOfLeafJawPairs.php │ │ │ ├── NumberOfMacroRowsInDetector.php │ │ │ ├── NumberOfOverranges.php │ │ │ ├── NumberOfPaintings.php │ │ │ ├── NumberOfPatientRelatedInstances.php │ │ │ ├── NumberOfPatientRelatedSeries.php │ │ │ ├── NumberOfPatientRelatedStudies.php │ │ │ ├── NumberOfPhaseEncodingSteps.php │ │ │ ├── NumberOfPhases.php │ │ │ ├── NumberOfPoints.php │ │ │ ├── NumberOfPriorsReferenced.php │ │ │ ├── NumberOfPulses.php │ │ │ ├── NumberOfRRIntervals.php │ │ │ ├── NumberOfRangeModulators.php │ │ │ ├── NumberOfRangeShifters.php │ │ │ ├── NumberOfReferences.php │ │ │ ├── NumberOfRotations.php │ │ │ ├── NumberOfSamples.php │ │ │ ├── NumberOfScanSpotPositions.php │ │ │ ├── NumberOfScreens.php │ │ │ ├── NumberOfSeriesInStudy.php │ │ │ ├── NumberOfSeriesRelatedInstances.php │ │ │ ├── NumberOfSlices.php │ │ │ ├── NumberOfStages.php │ │ │ ├── NumberOfStudyRelatedInstances.php │ │ │ ├── NumberOfStudyRelatedSeries.php │ │ │ ├── NumberOfSubsets.php │ │ │ ├── NumberOfSurfacePoints.php │ │ │ ├── NumberOfSurfaces.php │ │ │ ├── NumberOfTableBreakPoints.php │ │ │ ├── NumberOfTableEntries.php │ │ │ ├── NumberOfTables.php │ │ │ ├── NumberOfTemporalPositions.php │ │ │ ├── NumberOfTimeSlices.php │ │ │ ├── NumberOfTimeSlots.php │ │ │ ├── NumberOfTomosynthesisSourceImages.php │ │ │ ├── NumberOfTransformSteps.php │ │ │ ├── NumberOfTriggers.php │ │ │ ├── NumberOfTriggersInPhase.php │ │ │ ├── NumberOfUnarchivedSeries.php │ │ │ ├── NumberOfVectors.php │ │ │ ├── NumberOfVerticalPixels.php │ │ │ ├── NumberOfViews.php │ │ │ ├── NumberOfViewsInRow1a.php │ │ │ ├── NumberOfViewsInRow1b.php │ │ │ ├── NumberOfViewsInRow2a.php │ │ │ ├── NumberOfViewsInRow2b.php │ │ │ ├── NumberOfViewsInStage.php │ │ │ ├── NumberOfViewsShifted.php │ │ │ ├── NumberOfWaveformChannels.php │ │ │ ├── NumberOfWaveformSamples.php │ │ │ ├── NumberOfWedges.php │ │ │ ├── NumberOfZeroFills.php │ │ │ ├── NumericValue.php │ │ │ ├── NumericValueQualifierCodeSequence.php │ │ │ ├── ObjectPixelSpacingInCenterOfBeam.php │ │ │ ├── ObjectThicknessSequence.php │ │ │ ├── ObliquePlane.php │ │ │ ├── ObservationDateTime.php │ │ │ ├── ObservationNumber.php │ │ │ ├── ObserverType.php │ │ │ ├── Occupation.php │ │ │ ├── OffsetFrequency.php │ │ │ ├── OffsetOfNextDirectoryRecord.php │ │ │ ├── OperatingMode.php │ │ │ ├── OperatingModeSequence.php │ │ │ ├── OperatingModeType.php │ │ │ ├── OperatorIDSequence.php │ │ │ ├── OperatorsName.php │ │ │ ├── OphthalmicFrameLocationSequence.php │ │ │ ├── OphthalmicImageOrientation.php │ │ │ ├── OpticalTransmittance.php │ │ │ ├── Optotype.php │ │ │ ├── OptotypeDetailedDefinition.php │ │ │ ├── OptotypePresentation.php │ │ │ ├── OrderCallbackPhoneNumber.php │ │ │ ├── OrderEnteredBy.php │ │ │ ├── OrderEntererLocation.php │ │ │ ├── OrganAtRiskFullVolumeDose.php │ │ │ ├── OrganAtRiskLimitDose.php │ │ │ ├── OrganAtRiskMaximumDose.php │ │ │ ├── OrganAtRiskOverdoseVolumeFraction.php │ │ │ ├── OrganDose.php │ │ │ ├── OrganExposed.php │ │ │ ├── OriginalAttributesSequence.php │ │ │ ├── OriginalImageIdentNomenclature.php │ │ │ ├── OriginalImageIdentification.php │ │ │ ├── OriginalImageSequence.php │ │ │ ├── OriginalSpecializedSOPClassUID.php │ │ │ ├── Originator.php │ │ │ ├── OtherMagnificationTypesAvailable.php │ │ │ ├── OtherMediaAvailableSequence.php │ │ │ ├── OtherPatientIDs.php │ │ │ ├── OtherPatientIDsSequence.php │ │ │ ├── OtherPatientNames.php │ │ │ ├── OtherPupillaryDistance.php │ │ │ ├── OtherReferencedStudiesSequence.php │ │ │ ├── OtherSmoothingTypesAvailable.php │ │ │ ├── OtherStudyNumbers.php │ │ │ ├── OutputInformationSequence.php │ │ │ ├── OutputPower.php │ │ │ ├── OverlayActivationLayer.php │ │ │ ├── OverlayBackgroundDensity.php │ │ │ ├── OverlayBitPosition.php │ │ │ ├── OverlayBitsAllocated.php │ │ │ ├── OverlayBitsForCodeWord.php │ │ │ ├── OverlayBitsGrouped.php │ │ │ ├── OverlayCodeLabel.php │ │ │ ├── OverlayCodeTableLocation.php │ │ │ ├── OverlayColumns.php │ │ │ ├── OverlayComments.php │ │ │ ├── OverlayCompressionCode.php │ │ │ ├── OverlayCompressionDescription.php │ │ │ ├── OverlayCompressionLabel.php │ │ │ ├── OverlayCompressionOriginator.php │ │ │ ├── OverlayCompressionStepPointers.php │ │ │ ├── OverlayData.php │ │ │ ├── OverlayDate.php │ │ │ ├── OverlayDescription.php │ │ │ ├── OverlayDescriptorBlue.php │ │ │ ├── OverlayDescriptorGray.php │ │ │ ├── OverlayDescriptorGreen.php │ │ │ ├── OverlayDescriptorRed.php │ │ │ ├── OverlayForegroundDensity.php │ │ │ ├── OverlayFormat.php │ │ │ ├── OverlayGroupLength.php │ │ │ ├── OverlayLabel.php │ │ │ ├── OverlayLocation.php │ │ │ ├── OverlayMagnificationType.php │ │ │ ├── OverlayMode.php │ │ │ ├── OverlayNumber.php │ │ │ ├── OverlayNumberOfTables.php │ │ │ ├── OverlayOrImageMagnification.php │ │ │ ├── OverlayOrigin.php │ │ │ ├── OverlayPixelDataSequence.php │ │ │ ├── OverlayPlaneOrigin.php │ │ │ ├── OverlayPlanes.php │ │ │ ├── OverlayRepeatInterval.php │ │ │ ├── OverlayRows.php │ │ │ ├── OverlaySmoothingType.php │ │ │ ├── OverlaySubtype.php │ │ │ ├── OverlayTime.php │ │ │ ├── OverlayType.php │ │ │ ├── OverlaysBlue.php │ │ │ ├── OverlaysGray.php │ │ │ ├── OverlaysGreen.php │ │ │ ├── OverlaysRed.php │ │ │ ├── OverrangeCorrectionUsed.php │ │ │ ├── OverriddenAttributesSequence.php │ │ │ ├── OverrideParameterPointer.php │ │ │ ├── OverrideReason.php │ │ │ ├── OverrideSequence.php │ │ │ ├── OversamplingPhase.php │ │ │ ├── OwnerID.php │ │ │ ├── PETFrameTypeSequence.php │ │ │ ├── PETPositionSequence.php │ │ │ ├── PSDEstimatedLimit.php │ │ │ ├── PSDEstimatedLimitInTeslaPerSecond.php │ │ │ ├── PVCRejection.php │ │ │ ├── PageNumberVector.php │ │ │ ├── PaletteColorTableUID.php │ │ │ ├── ParallelAcquisition.php │ │ │ ├── ParallelAcquisitionTechnique.php │ │ │ ├── ParallelReductFactorInPlaneRetired.php │ │ │ ├── ParallelReductionFactSecondInPlane.php │ │ │ ├── ParallelReductionFactorInPlane.php │ │ │ ├── ParallelReductionFactorOutOfPlane.php │ │ │ ├── ParameterItemIndex.php │ │ │ ├── ParameterPointer.php │ │ │ ├── ParameterSequencePointer.php │ │ │ ├── PartialDataDisplayHandling.php │ │ │ ├── PartialFourier.php │ │ │ ├── PartialFourierDirection.php │ │ │ ├── PartialView.php │ │ │ ├── PartialViewCodeSequence.php │ │ │ ├── PartialViewDescription.php │ │ │ ├── ParticipantSequence.php │ │ │ ├── ParticipationDateTime.php │ │ │ ├── ParticipationType.php │ │ │ ├── PatientAdditionalPosition.php │ │ │ ├── PatientAddress.php │ │ │ ├── PatientAge.php │ │ │ ├── PatientBirthDate.php │ │ │ ├── PatientBirthName.php │ │ │ ├── PatientBirthTime.php │ │ │ ├── PatientBreedCodeSequence.php │ │ │ ├── PatientBreedDescription.php │ │ │ ├── PatientClinicalTrialParticipSeq.php │ │ │ ├── PatientComments.php │ │ │ ├── PatientEyeMovementCommandCodeSeq.php │ │ │ ├── PatientEyeMovementCommanded.php │ │ │ ├── PatientGantryRelationshipCodeSeq.php │ │ │ ├── PatientGroupLength.php │ │ │ ├── PatientID.php │ │ │ ├── PatientIdentityRemoved.php │ │ │ ├── PatientInstitutionResidence.php │ │ │ ├── PatientInsurancePlanCodeSequence.php │ │ │ ├── PatientMotherBirthName.php │ │ │ ├── PatientMotionCorrected.php │ │ │ ├── PatientName.php │ │ │ ├── PatientOrientation.php │ │ │ ├── PatientOrientationCodeSequence.php │ │ │ ├── PatientOrientationInFrameSequence.php │ │ │ ├── PatientOrientationModifierCodeSeq.php │ │ │ ├── PatientPosition.php │ │ │ ├── PatientPrimaryLanguageCodeModSeq.php │ │ │ ├── PatientPrimaryLanguageCodeSeq.php │ │ │ ├── PatientReligiousPreference.php │ │ │ ├── PatientSetupLabel.php │ │ │ ├── PatientSetupNumber.php │ │ │ ├── PatientSetupSequence.php │ │ │ ├── PatientSex.php │ │ │ ├── PatientSexNeutered.php │ │ │ ├── PatientSize.php │ │ │ ├── PatientSpeciesCodeSequence.php │ │ │ ├── PatientSpeciesDescription.php │ │ │ ├── PatientState.php │ │ │ ├── PatientStatus.php │ │ │ ├── PatientSupportAccessoryCode.php │ │ │ ├── PatientSupportAngle.php │ │ │ ├── PatientSupportAngleTolerance.php │ │ │ ├── PatientSupportID.php │ │ │ ├── PatientSupportRotationDirection.php │ │ │ ├── PatientSupportType.php │ │ │ ├── PatientTelephoneNumbers.php │ │ │ ├── PatientTransportArrangements.php │ │ │ ├── PatientWeight.php │ │ │ ├── PauseBetweenFrames.php │ │ │ ├── PauseInterval.php │ │ │ ├── PeakRateOfChangeOfGradientField.php │ │ │ ├── PeakSAR.php │ │ │ ├── PerFrameFunctionalGroupsSequence.php │ │ │ ├── PerProjectionAcquisitionSequence.php │ │ │ ├── PercentPhaseFieldOfView.php │ │ │ ├── PercentSampling.php │ │ │ ├── PerformedLocation.php │ │ │ ├── PerformedProcedureCodeSequence.php │ │ │ ├── PerformedProcedureStepDescription.php │ │ │ ├── PerformedProcedureStepEndDate.php │ │ │ ├── PerformedProcedureStepEndTime.php │ │ │ ├── PerformedProcedureStepID.php │ │ │ ├── PerformedProcedureStepStartDate.php │ │ │ ├── PerformedProcedureStepStartTime.php │ │ │ ├── PerformedProcedureStepStatus.php │ │ │ ├── PerformedProcedureTypeDescription.php │ │ │ ├── PerformedProcessingAppsCodeSeq.php │ │ │ ├── PerformedProcessingParametersSeq.php │ │ │ ├── PerformedProtocolCodeSequence.php │ │ │ ├── PerformedProtocolType.php │ │ │ ├── PerformedSeriesSequence.php │ │ │ ├── PerformedStationAETitle.php │ │ │ ├── PerformedStationClassCodeSequence.php │ │ │ ├── PerformedStationGeogLocCodeSeq.php │ │ │ ├── PerformedStationName.php │ │ │ ├── PerformedStationNameCodeSequence.php │ │ │ ├── PerformedWorkitemCodeSequence.php │ │ │ ├── PerformingPhysicianIDSequence.php │ │ │ ├── PerformingPhysicianName.php │ │ │ ├── PerimeterTable.php │ │ │ ├── PerimeterValue.php │ │ │ ├── PeristalticFlagOption.php │ │ │ ├── PersonAddress.php │ │ │ ├── PersonIdentificationCodeSequence.php │ │ │ ├── PersonName.php │ │ │ ├── PersonTelephoneNumbers.php │ │ │ ├── PertinentDocumentsSequence.php │ │ │ ├── PertinentOtherEvidenceSequence.php │ │ │ ├── PhantomCalibrationDate.php │ │ │ ├── PhantomCalibrationTime.php │ │ │ ├── PhaseContrast.php │ │ │ ├── PhaseDelay.php │ │ │ ├── PhaseDescription.php │ │ │ ├── PhaseInformationSequence.php │ │ │ ├── PhaseNumber.php │ │ │ ├── PhaseVector.php │ │ │ ├── PhosphorType.php │ │ │ ├── PhotometricInterpretation.php │ │ │ ├── PhototimerSetting.php │ │ │ ├── PhysicalDeltaX.php │ │ │ ├── PhysicalDeltaY.php │ │ │ ├── PhysicalDetectorSize.php │ │ │ ├── PhysicalUnitsXDirection.php │ │ │ ├── PhysicalUnitsYDirection.php │ │ │ ├── PhysicianApprovingInterpretation.php │ │ │ ├── PhysicianReadingStudyIDSequence.php │ │ │ ├── PhysiciansOfRecord.php │ │ │ ├── PhysiciansOfRecordIDSequence.php │ │ │ ├── PixelAspectRatio.php │ │ │ ├── PixelBandwidth.php │ │ │ ├── PixelComponentDataType.php │ │ │ ├── PixelComponentMask.php │ │ │ ├── PixelComponentOrganization.php │ │ │ ├── PixelComponentPhysicalUnits.php │ │ │ ├── PixelComponentRangeStart.php │ │ │ ├── PixelComponentRangeStop.php │ │ │ ├── PixelData.php │ │ │ ├── PixelDataGroupLength.php │ │ │ ├── PixelDataProviderURL.php │ │ │ ├── PixelIntensityRelationship.php │ │ │ ├── PixelIntensityRelationshipLUTSeq.php │ │ │ ├── PixelIntensityRelationshipSign.php │ │ │ ├── PixelMeasuresSequence.php │ │ │ ├── PixelPaddingRangeLimit.php │ │ │ ├── PixelPaddingValue.php │ │ │ ├── PixelPresentation.php │ │ │ ├── PixelRepresentation.php │ │ │ ├── PixelShiftFrameRange.php │ │ │ ├── PixelShiftSequence.php │ │ │ ├── PixelSpacing.php │ │ │ ├── PixelSpacingCalibrationDescription.php │ │ │ ├── PixelSpacingCalibrationType.php │ │ │ ├── PixelSpacingSequence.php │ │ │ ├── PixelValueMappingCodeSequence.php │ │ │ ├── PixelValueTransformationSequence.php │ │ │ ├── PlacerOrderNumImagingServiceReq.php │ │ │ ├── PlacerOrderNumberProcedure.php │ │ │ ├── PlanIntent.php │ │ │ ├── PlanarConfiguration.php │ │ │ ├── PlaneIdentification.php │ │ │ ├── PlaneOrientationSequence.php │ │ │ ├── PlanePositionSequence.php │ │ │ ├── PlaneType.php │ │ │ ├── Planes.php │ │ │ ├── PlannedVerificationImageSequence.php │ │ │ ├── PlateID.php │ │ │ ├── PlateType.php │ │ │ ├── PointCoordinatesData.php │ │ │ ├── PointPositionAccuracy.php │ │ │ ├── Polarity.php │ │ │ ├── PositionOfIsocenterProjection.php │ │ │ ├── PositionReferenceIndicator.php │ │ │ ├── PositionerIsocenterDetRotAngle.php │ │ │ ├── PositionerIsocenterPrimaryAngle.php │ │ │ ├── PositionerIsocenterSecondaryAngle.php │ │ │ ├── PositionerMotion.php │ │ │ ├── PositionerPositionSequence.php │ │ │ ├── PositionerPrimaryAngle.php │ │ │ ├── PositionerPrimaryAngleIncrement.php │ │ │ ├── PositionerSecondaryAngle.php │ │ │ ├── PositionerSecondaryAngleIncrement.php │ │ │ ├── PositionerType.php │ │ │ ├── PostDeformationMatrixRegistSeq.php │ │ │ ├── PostprocessingFunction.php │ │ │ ├── PpscanParameters.php │ │ │ ├── PreDeformationMatrixRegistSeq.php │ │ │ ├── PreMedication.php │ │ │ ├── PredecessorDocumentsSequence.php │ │ │ ├── PredictorColumns.php │ │ │ ├── PredictorConstants.php │ │ │ ├── PredictorRows.php │ │ │ ├── PreferredPlaybackSequencing.php │ │ │ ├── PregnancyStatus.php │ │ │ ├── PreliminaryFlag.php │ │ │ ├── PrepPulse.php │ │ │ ├── PrescanStatus.php │ │ │ ├── PrescanType.php │ │ │ ├── PrescribedFlowAxis.php │ │ │ ├── PrescriptionDescription.php │ │ │ ├── PresentationCreationDate.php │ │ │ ├── PresentationCreationTime.php │ │ │ ├── PresentationGroupNumber.php │ │ │ ├── PresentationIntentType.php │ │ │ ├── PresentationLUTContentSequence.php │ │ │ ├── PresentationLUTFlag.php │ │ │ ├── PresentationLUTSequence.php │ │ │ ├── PresentationLUTShape.php │ │ │ ├── PresentationPixelAspectRatio.php │ │ │ ├── PresentationPixelMagRatio.php │ │ │ ├── PresentationPixelSpacing.php │ │ │ ├── PresentationSizeMode.php │ │ │ ├── PrimaryAnatomicStructureSequence.php │ │ │ ├── PrimaryCountsAccumulated.php │ │ │ ├── PrimaryDosimeterUnit.php │ │ │ ├── PrimaryPositionerIncrement.php │ │ │ ├── PrimaryPositionerScanArc.php │ │ │ ├── PrimaryPositionerScanStartAngle.php │ │ │ ├── PrimaryReceiverSuiteAndHost.php │ │ │ ├── PrimarySpeedCorrectionUsed.php │ │ │ ├── PrimitivePointIndexList.php │ │ │ ├── PrintJobDescriptionSequence.php │ │ │ ├── PrintJobID.php │ │ │ ├── PrintManagementCapabilitiesSeq.php │ │ │ ├── PrintPriority.php │ │ │ ├── PrintQueueID.php │ │ │ ├── PrinterCharacteristicsSequence.php │ │ │ ├── PrinterConfigurationSequence.php │ │ │ ├── PrinterName.php │ │ │ ├── PrinterPixelSpacing.php │ │ │ ├── PrinterResolutionID.php │ │ │ ├── PrinterStatus.php │ │ │ ├── PrinterStatusInfo.php │ │ │ ├── PrintingBitDepth.php │ │ │ ├── PrismSequence.php │ │ │ ├── PrivateInformation.php │ │ │ ├── PrivateInformationCreatorUID.php │ │ │ ├── PrivateRecordUID.php │ │ │ ├── PrivateScanOptions.php │ │ │ ├── ProcStepDiscontinueReasonCodeSeq.php │ │ │ ├── ProcedureCodeSequence.php │ │ │ ├── ProcedureStepLabel.php │ │ │ ├── ProcedureStepRelationshipType.php │ │ │ ├── ProcessingFunction.php │ │ │ ├── ProductDescription.php │ │ │ ├── ProductExpirationDateTime.php │ │ │ ├── ProductID.php │ │ │ ├── ProductLotIdentifier.php │ │ │ ├── ProductName.php │ │ │ ├── ProductPackageIdentifier.php │ │ │ ├── ProductParameterSequence.php │ │ │ ├── ProductTypeCodeSequence.php │ │ │ ├── ProjectionAlgorithm.php │ │ │ ├── ProjectionAngle.php │ │ │ ├── ProjectionEponymousNameCodeSeq.php │ │ │ ├── ProjectionPixelCalibrationSequence.php │ │ │ ├── ProposedStudySequence.php │ │ │ ├── ProtocolContextSequence.php │ │ │ ├── ProtocolName.php │ │ │ ├── PseudoColorType.php │ │ │ ├── PulseRepetitionFrequency.php │ │ │ ├── PulseRepetitionInterval.php │ │ │ ├── PulseSeqDate.php │ │ │ ├── PulseSeqMode.php │ │ │ ├── PulseSeqName.php │ │ │ ├── PulseSequence.php │ │ │ ├── PulseSequenceName.php │ │ │ ├── PulseTime.php │ │ │ ├── PupilDilated.php │ │ │ ├── PupilSize.php │ │ │ ├── PurposeOfReferenceCodeSequence.php │ │ │ ├── QuadratureReceiveCoil.php │ │ │ ├── QualityControlImage.php │ │ │ ├── Quantity.php │ │ │ ├── QuantitySequence.php │ │ │ ├── QueryRetrieveLevel.php │ │ │ ├── QueueStatus.php │ │ │ ├── RACordOfTargetReconCenter.php │ │ │ ├── RASLetterForAnteriorPosterior.php │ │ │ ├── RASLetterForScoutEndLoc.php │ │ │ ├── RASLetterForScoutStartLoc.php │ │ │ ├── RASLetterForSideOfImage.php │ │ │ ├── RASLetterOfImageLocation.php │ │ │ ├── RCoordOfBottomRightCorner.php │ │ │ ├── RCoordOfTopRightCorner.php │ │ │ ├── RFEchoTrainLength.php │ │ │ ├── RGBLUTTransferFunction.php │ │ │ ├── ROIArea.php │ │ │ ├── ROIContourSequence.php │ │ │ ├── ROIDescription.php │ │ │ ├── ROIDisplayColor.php │ │ │ ├── ROIElementalCompAtomicMassFraction.php │ │ │ ├── ROIElementalCompAtomicNumber.php │ │ │ ├── ROIElementalCompositionSequence.php │ │ │ ├── ROIGenerationAlgorithm.php │ │ │ ├── ROIGenerationDescription.php │ │ │ ├── ROIInterpreter.php │ │ │ ├── ROIMean.php │ │ │ ├── ROIName.php │ │ │ ├── ROINumber.php │ │ │ ├── ROIObservationDescription.php │ │ │ ├── ROIObservationLabel.php │ │ │ ├── ROIPhysicalPropertiesSequence.php │ │ │ ├── ROIPhysicalProperty.php │ │ │ ├── ROIPhysicalPropertyValue.php │ │ │ ├── ROIStandardDeviation.php │ │ │ ├── ROIVolume.php │ │ │ ├── RRIntervalTimeNominal.php │ │ │ ├── RRIntervalVector.php │ │ │ ├── RTBeamLimitingDeviceType.php │ │ │ ├── RTDoseROISequence.php │ │ │ ├── RTImageDescription.php │ │ │ ├── RTImageLabel.php │ │ │ ├── RTImageName.php │ │ │ ├── RTImageOrientation.php │ │ │ ├── RTImagePlane.php │ │ │ ├── RTImagePosition.php │ │ │ ├── RTImageSID.php │ │ │ ├── RTPlanDate.php │ │ │ ├── RTPlanDescription.php │ │ │ ├── RTPlanGeometry.php │ │ │ ├── RTPlanLabel.php │ │ │ ├── RTPlanName.php │ │ │ ├── RTPlanRelationship.php │ │ │ ├── RTPlanTime.php │ │ │ ├── RTROIIdentificationCodeSequence.php │ │ │ ├── RTROIInterpretedType.php │ │ │ ├── RTROIObservationsSequence.php │ │ │ ├── RTROIRelationship.php │ │ │ ├── RTReferencedSeriesSequence.php │ │ │ ├── RTReferencedStudySequence.php │ │ │ ├── RTRelatedROISequence.php │ │ │ ├── RWavePointer.php │ │ │ ├── RWaveTimeVector.php │ │ │ ├── RadialPosition.php │ │ │ ├── RadiationAtomicNumber.php │ │ │ ├── RadiationChargeState.php │ │ │ ├── RadiationMachineName.php │ │ │ ├── RadiationMachineSAD.php │ │ │ ├── RadiationMachineSSD.php │ │ │ ├── RadiationMassNumber.php │ │ │ ├── RadiationMode.php │ │ │ ├── RadiationSetting.php │ │ │ ├── RadiationType.php │ │ │ ├── Radionuclide.php │ │ │ ├── RadionuclideCodeSequence.php │ │ │ ├── RadionuclideHalfLife.php │ │ │ ├── RadionuclidePositronFraction.php │ │ │ ├── RadionuclideTotalDose.php │ │ │ ├── Radiopharmaceutical.php │ │ │ ├── RadiopharmaceuticalCodeSequence.php │ │ │ ├── RadiopharmaceuticalInformationSeq.php │ │ │ ├── RadiopharmaceuticalRoute.php │ │ │ ├── RadiopharmaceuticalSpecActivity.php │ │ │ ├── RadiopharmaceuticalStartDateTime.php │ │ │ ├── RadiopharmaceuticalStartTime.php │ │ │ ├── RadiopharmaceuticalStopDateTime.php │ │ │ ├── RadiopharmaceuticalStopTime.php │ │ │ ├── RadiopharmaceuticalVolume.php │ │ │ ├── RadiusOfCircExposControlSensRegion.php │ │ │ ├── RadiusOfCircularCollimator.php │ │ │ ├── RadiusOfCircularShutter.php │ │ │ ├── RadiusOfCurvature.php │ │ │ ├── RandomsCorrected.php │ │ │ ├── RandomsCorrectionMethod.php │ │ │ ├── RangeModulatorDescription.php │ │ │ ├── RangeModulatorGatingStartValue.php │ │ │ ├── RangeModulatorGatingStopValue.php │ │ │ ├── RangeModulatorID.php │ │ │ ├── RangeModulatorNumber.php │ │ │ ├── RangeModulatorSequence.php │ │ │ ├── RangeModulatorSettingsSequence.php │ │ │ ├── RangeModulatorType.php │ │ │ ├── RangeShifterDescription.php │ │ │ ├── RangeShifterID.php │ │ │ ├── RangeShifterNumber.php │ │ │ ├── RangeShifterSequence.php │ │ │ ├── RangeShifterSetting.php │ │ │ ├── RangeShifterSettingsSequence.php │ │ │ ├── RangeShifterType.php │ │ │ ├── RangeShifterWaterEquivThickness.php │ │ │ ├── RawDataHandling.php │ │ │ ├── RawDataRunNumber.php │ │ │ ├── RawDataType.php │ │ │ ├── RealWorldValueFirstValueMapped.php │ │ │ ├── RealWorldValueIntercept.php │ │ │ ├── RealWorldValueLUTData.php │ │ │ ├── RealWorldValueLastValueMapped.php │ │ │ ├── RealWorldValueMappingSequence.php │ │ │ ├── RealWorldValueSlope.php │ │ │ ├── ReasonForCancellation.php │ │ │ ├── ReasonForImagingServiceRequest.php │ │ │ ├── ReasonForRequestedProcedure.php │ │ │ ├── ReasonForRequestedProcedureCodeSeq.php │ │ │ ├── ReasonForStudy.php │ │ │ ├── ReasonForTheAttributeModification.php │ │ │ ├── ReceiveBandwidth.php │ │ │ ├── ReceiveCoilManufacturerName.php │ │ │ ├── ReceiveCoilName.php │ │ │ ├── ReceiveCoilType.php │ │ │ ├── ReceivingAE.php │ │ │ ├── RecognitionCode.php │ │ │ ├── RecommendedDisplayCIELabValue.php │ │ │ ├── RecommendedDisplayFrameRate.php │ │ │ ├── RecommendedDisplayFrameRateInFloat.php │ │ │ ├── RecommendedDisplayGrayscaleValue.php │ │ │ ├── RecommendedViewingMode.php │ │ │ ├── ReconPostProcflag.php │ │ │ ├── ReconstructionAlgorithm.php │ │ │ ├── ReconstructionAngle.php │ │ │ ├── ReconstructionDescription.php │ │ │ ├── ReconstructionDiameter.php │ │ │ ├── ReconstructionFieldOfView.php │ │ │ ├── ReconstructionIndex.php │ │ │ ├── ReconstructionMethod.php │ │ │ ├── ReconstructionPixelSpacing.php │ │ │ ├── ReconstructionTargetCenterPatient.php │ │ │ ├── ReconstructionType.php │ │ │ ├── RecordInUseFlag.php │ │ │ ├── RecordedBlockSequence.php │ │ │ ├── RecordedBrachyAccessoryDeviceSeq.php │ │ │ ├── RecordedChannelSequence.php │ │ │ ├── RecordedChannelShieldSequence.php │ │ │ ├── RecordedCompensatorSequence.php │ │ │ ├── RecordedLateralSpreadingDeviceSeq.php │ │ │ ├── RecordedRangeModulatorSequence.php │ │ │ ├── RecordedRangeShifterSequence.php │ │ │ ├── RecordedSnoutSequence.php │ │ │ ├── RecordedSourceApplicatorSequence.php │ │ │ ├── RecordedSourceSequence.php │ │ │ ├── RecordedWedgeSequence.php │ │ │ ├── RectificationType.php │ │ │ ├── RectilinearPhaseEncodeReordering.php │ │ │ ├── RedPaletteColorTableData.php │ │ │ ├── RedPaletteColorTableDescriptor.php │ │ │ ├── RefGenPurSchedProcStepTransUID.php │ │ │ ├── RefGenPurposeSchedProcStepSeq.php │ │ │ ├── RefImageRealWorldValueMappingSeq.php │ │ │ ├── Reference.php │ │ │ ├── ReferenceAirKermaRate.php │ │ │ ├── ReferenceChannelUsed.php │ │ │ ├── ReferenceChannels.php │ │ │ ├── ReferenceCoordinates.php │ │ │ ├── ReferenceDisplaySets.php │ │ │ ├── ReferenceImageField.php │ │ │ ├── ReferenceImageNumber.php │ │ │ ├── ReferencePixelPhysicalValueX.php │ │ │ ├── ReferencePixelPhysicalValueY.php │ │ │ ├── ReferencePixelX0.php │ │ │ ├── ReferencePixelY0.php │ │ │ ├── ReferenceToRecordedSound.php │ │ │ ├── ReferencedBasicAnnotationBoxSeq.php │ │ │ ├── ReferencedBeamNumber.php │ │ │ ├── ReferencedBeamSequence.php │ │ │ ├── ReferencedBlockNumber.php │ │ │ ├── ReferencedBolusSequence.php │ │ │ ├── ReferencedBrachyAccessoryDeviceNum.php │ │ │ ├── ReferencedBrachyAppSetupNumber.php │ │ │ ├── ReferencedBrachyAppSetupSeq.php │ │ │ ├── ReferencedCalculatedDoseRefNumber.php │ │ │ ├── ReferencedCalculatedDoseRefSeq.php │ │ │ ├── ReferencedChannelShieldNumber.php │ │ │ ├── ReferencedCompensatorNumber.php │ │ │ ├── ReferencedContentItemIdentifier.php │ │ │ ├── ReferencedControlPointIndex.php │ │ │ ├── ReferencedControlPointSequence.php │ │ │ ├── ReferencedCurveSequence.php │ │ │ ├── ReferencedDateTime.php │ │ │ ├── ReferencedDigitalSignatureSeq.php │ │ │ ├── ReferencedDoseReferenceNumber.php │ │ │ ├── ReferencedDoseReferenceSequence.php │ │ │ ├── ReferencedDoseSequence.php │ │ │ ├── ReferencedFileID.php │ │ │ ├── ReferencedFilmBoxSequence.php │ │ │ ├── ReferencedFilmSessionSequence.php │ │ │ ├── ReferencedFractionGroupNumber.php │ │ │ ├── ReferencedFractionGroupSequence.php │ │ │ ├── ReferencedFractionNumber.php │ │ │ ├── ReferencedFrameNumber.php │ │ │ ├── ReferencedFrameNumbers.php │ │ │ ├── ReferencedFrameOfReferenceSequence.php │ │ │ ├── ReferencedFrameOfReferenceUID.php │ │ │ ├── ReferencedImageBoxSequence.php │ │ │ ├── ReferencedImageEvidenceSequence.php │ │ │ ├── ReferencedImageOverlayBoxSequence.php │ │ │ ├── ReferencedImageSequence.php │ │ │ ├── ReferencedInstanceSequence.php │ │ │ ├── ReferencedInterpretationSequence.php │ │ │ ├── ReferencedLateralSpreadingDevNum.php │ │ │ ├── ReferencedMeasuredDoseReferenceNum.php │ │ │ ├── ReferencedMeasuredDoseReferenceSeq.php │ │ │ ├── ReferencedNonImageCompositeSOPSeq.php │ │ │ ├── ReferencedOtherPlaneSequence.php │ │ │ ├── ReferencedOverlayGroup.php │ │ │ ├── ReferencedOverlayPlaneGroups.php │ │ │ ├── ReferencedOverlayPlaneSequence.php │ │ │ ├── ReferencedOverlaySequence.php │ │ │ ├── ReferencedPatientAliasSequence.php │ │ │ ├── ReferencedPatientSequence.php │ │ │ ├── ReferencedPatientSetupNumber.php │ │ │ ├── ReferencedPresentationLUTSequence.php │ │ │ ├── ReferencedPrintJobSequence.php │ │ │ ├── ReferencedProcedureStepSequence.php │ │ │ ├── ReferencedROINumber.php │ │ │ ├── ReferencedRTPlanSequence.php │ │ │ ├── ReferencedRangeModulatorNumber.php │ │ │ ├── ReferencedRangeShifterNumber.php │ │ │ ├── ReferencedRawDataSequence.php │ │ │ ├── ReferencedReferenceImageNumber.php │ │ │ ├── ReferencedReferenceImageSequence.php │ │ │ ├── ReferencedRelatedSOPClassUIDInFile.php │ │ │ ├── ReferencedRequestSequence.php │ │ │ ├── ReferencedResultsSequence.php │ │ │ ├── ReferencedSOPClassUID.php │ │ │ ├── ReferencedSOPClassUIDInFile.php │ │ │ ├── ReferencedSOPInstanceMACSeq.php │ │ │ ├── ReferencedSOPInstanceUID.php │ │ │ ├── ReferencedSOPInstanceUIDInFile.php │ │ │ ├── ReferencedSOPSequence.php │ │ │ ├── ReferencedSamplePositions.php │ │ │ ├── ReferencedSegmentNumber.php │ │ │ ├── ReferencedSeriesSequence.php │ │ │ ├── ReferencedSetupImageSequence.php │ │ │ ├── ReferencedSourceApplicatorNumber.php │ │ │ ├── ReferencedSourceNumber.php │ │ │ ├── ReferencedSpatialRegistrationSeq.php │ │ │ ├── ReferencedStartControlPointIndex.php │ │ │ ├── ReferencedStopControlPointIndex.php │ │ │ ├── ReferencedStorageMediaSequence.php │ │ │ ├── ReferencedStoredPrintSequence.php │ │ │ ├── ReferencedStructureSetSequence.php │ │ │ ├── ReferencedStudySequence.php │ │ │ ├── ReferencedTimeOffsets.php │ │ │ ├── ReferencedToleranceTableNumber.php │ │ │ ├── ReferencedTransferSyntaxUIDInFile.php │ │ │ ├── ReferencedTreatmentRecordSequence.php │ │ │ ├── ReferencedVOILUTBoxSequence.php │ │ │ ├── ReferencedVerificationImageSeq.php │ │ │ ├── ReferencedVisitSequence.php │ │ │ ├── ReferencedWaveformChannels.php │ │ │ ├── ReferencedWaveformSequence.php │ │ │ ├── ReferencedWedgeNumber.php │ │ │ ├── ReferringPhysicianAddress.php │ │ │ ├── ReferringPhysicianIDSequence.php │ │ │ ├── ReferringPhysicianName.php │ │ │ ├── ReferringPhysicianTelephoneNumber.php │ │ │ ├── ReflectedAmbientLight.php │ │ │ ├── ReformattingInterval.php │ │ │ ├── ReformattingOpInitialViewDir.php │ │ │ ├── ReformattingOperationType.php │ │ │ ├── ReformattingThickness.php │ │ │ ├── RefractiveStateSequence.php │ │ │ ├── RegionDataType.php │ │ │ ├── RegionFlags.php │ │ │ ├── RegionLocationMaxX1.php │ │ │ ├── RegionLocationMaxY1.php │ │ │ ├── RegionLocationMinX0.php │ │ │ ├── RegionLocationMinY0.php │ │ │ ├── RegionOfResidence.php │ │ │ ├── RegionPixelShiftSequence.php │ │ │ ├── RegionSpatialFormat.php │ │ │ ├── RegistrationSequence.php │ │ │ ├── RegistrationTypeCodeSequence.php │ │ │ ├── RelatedFrameOfReferenceUID.php │ │ │ ├── RelatedGeneralSOPClassUID.php │ │ │ ├── RelatedProcedureStepSequence.php │ │ │ ├── RelatedRTROIObservationsSequence.php │ │ │ ├── RelatedReferenceRTImageSequence.php │ │ │ ├── RelatedSeriesSequence.php │ │ │ ├── RelationshipGroupLength.php │ │ │ ├── RelationshipType.php │ │ │ ├── RelativeImagePositionCodeSequence.php │ │ │ ├── RelativeOpacity.php │ │ │ ├── RelativeTime.php │ │ │ ├── RelativeTimeUnits.php │ │ │ ├── RelativeXRayExposure.php │ │ │ ├── RelevantInformationSequence.php │ │ │ ├── RenderingType3D.php │ │ │ ├── RepeatFractionCycleLength.php │ │ │ ├── RepeatInterval.php │ │ │ ├── RepetitionTime.php │ │ │ ├── ReportedValuesOrigin.php │ │ │ ├── ReportingPriority.php │ │ │ ├── RepresentativeFrameNumber.php │ │ │ ├── ReprojectionMethod.php │ │ │ ├── RequestAttributesSequence.php │ │ │ ├── RequestPriority.php │ │ │ ├── RequestedContrastAgent.php │ │ │ ├── RequestedDecimateCropBehavior.php │ │ │ ├── RequestedImageSize.php │ │ │ ├── RequestedImageSizeFlag.php │ │ │ ├── RequestedMediaApplicationProfile.php │ │ │ ├── RequestedProcedureCodeSequence.php │ │ │ ├── RequestedProcedureComments.php │ │ │ ├── RequestedProcedureDescription.php │ │ │ ├── RequestedProcedureID.php │ │ │ ├── RequestedProcedureLocation.php │ │ │ ├── RequestedProcedurePriority.php │ │ │ ├── RequestedResolutionID.php │ │ │ ├── RequestedSubsequentWorkItemCodeSeq.php │ │ │ ├── RequestingAE.php │ │ │ ├── RequestingPhysician.php │ │ │ ├── RequestingPhysicianIDSequence.php │ │ │ ├── RequestingService.php │ │ │ ├── RescaleIntercept.php │ │ │ ├── RescaleSlope.php │ │ │ ├── RescaleType.php │ │ │ ├── ResidualSyringeCounts.php │ │ │ ├── ResonantNucleus.php │ │ │ ├── RespiratoryCyclePosition.php │ │ │ ├── RespiratoryIntervalTime.php │ │ │ ├── RespiratoryMotionCompTechDescr.php │ │ │ ├── RespiratoryMotionCompTechnique.php │ │ │ ├── RespiratoryRateBpm.php │ │ │ ├── RespiratorySignalSource.php │ │ │ ├── RespiratorySignalSourceID.php │ │ │ ├── RespiratorySynchronizationSequence.php │ │ │ ├── RespiratoryTriggerDelayThreshold.php │ │ │ ├── RespiratoryTriggerPoint.php │ │ │ ├── RespiratoryTriggerType.php │ │ │ ├── ResponsibleOrganization.php │ │ │ ├── ResponsiblePerson.php │ │ │ ├── ResponsiblePersonRole.php │ │ │ ├── ResultingGenPurposePerfProcStepSeq.php │ │ │ ├── ResultsComments.php │ │ │ ├── ResultsDistributionListSequence.php │ │ │ ├── ResultsID.php │ │ │ ├── ResultsIDIssuer.php │ │ │ ├── RetrieveAETitle.php │ │ │ ├── RetrieveLocationUID.php │ │ │ ├── RetrieveURI.php │ │ │ ├── ReviewDate.php │ │ │ ├── ReviewTime.php │ │ │ ├── ReviewerName.php │ │ │ ├── RevolutionTime.php │ │ │ ├── RightImageSequence.php │ │ │ ├── RightLensSequence.php │ │ │ ├── RotationDirection.php │ │ │ ├── RotationFromSourceXRot.php │ │ │ ├── RotationFromSourceYRot.php │ │ │ ├── RotationFromSourceZRot.php │ │ │ ├── RotationInformationSequence.php │ │ │ ├── RotationOfScannedFilm.php │ │ │ ├── RotationOffset.php │ │ │ ├── RotationVector.php │ │ │ ├── RouteOfAdmissions.php │ │ │ ├── RowOverlap.php │ │ │ ├── Rows.php │ │ │ ├── RunLengthTriplet.php │ │ │ ├── SAR.php │ │ │ ├── SATFatWaterBone.php │ │ │ ├── SATLocationA.php │ │ │ ├── SATLocationF.php │ │ │ ├── SATLocationH.php │ │ │ ├── SATLocationL.php │ │ │ ├── SATLocationP.php │ │ │ ├── SATLocationR.php │ │ │ ├── SATThicknessAP.php │ │ │ ├── SATThicknessHF.php │ │ │ ├── SATThicknessRL.php │ │ │ ├── SCPStatus.php │ │ │ ├── SCoordOfBottomRightCorner.php │ │ │ ├── SCoordOfTopRightCorner.php │ │ │ ├── SOPAuthorizationComment.php │ │ │ ├── SOPAuthorizationDateAndTime.php │ │ │ ├── SOPClassUID.php │ │ │ ├── SOPClassesInStudy.php │ │ │ ├── SOPClassesSupported.php │ │ │ ├── SOPInstanceStatus.php │ │ │ ├── SOPInstanceUID.php │ │ │ ├── SafePositionExitDate.php │ │ │ ├── SafePositionExitTime.php │ │ │ ├── SafePositionReturnDate.php │ │ │ ├── SafePositionReturnTime.php │ │ │ ├── SampleRate.php │ │ │ ├── SamplesPerPixel.php │ │ │ ├── SamplesPerPixelUsed.php │ │ │ ├── SamplingFrequency.php │ │ │ ├── Saravghead.php │ │ │ ├── SaturationPlanes.php │ │ │ ├── SaturationRecovery.php │ │ │ ├── SaveCompInstancesAfterMediaCreate.php │ │ │ ├── ScanArc.php │ │ │ ├── ScanFOVType.php │ │ │ ├── ScanLength.php │ │ │ ├── ScanMode.php │ │ │ ├── ScanOptions.php │ │ │ ├── ScanPitchRatio.php │ │ │ ├── ScanSpotMetersetWeights.php │ │ │ ├── ScanSpotMetersetsDelivered.php │ │ │ ├── ScanSpotPositionMap.php │ │ │ ├── ScanSpotTuneID.php │ │ │ ├── ScanVelocity.php │ │ │ ├── ScannerStudyEntityUID.php │ │ │ ├── ScannerStudyID.php │ │ │ ├── ScannerTableEntry.php │ │ │ ├── ScanningSequence.php │ │ │ ├── ScanningSpotSize.php │ │ │ ├── ScatterCorrected.php │ │ │ ├── ScatterCorrectionMethod.php │ │ │ ├── ScatterFractionFactor.php │ │ │ ├── SchedProcStepModificationDateTime.php │ │ │ ├── SchedProcedureStepStartDateAndTime.php │ │ │ ├── SchedProcessingApplicationsCodeSeq.php │ │ │ ├── SchedStationGeographicLocCodeSeq.php │ │ │ ├── ScheduledAdmissionDate.php │ │ │ ├── ScheduledAdmissionTime.php │ │ │ ├── ScheduledDischargeDate.php │ │ │ ├── ScheduledDischargeTime.php │ │ │ ├── ScheduledHumanPerformersSequence.php │ │ │ ├── ScheduledPatientInstitResidence.php │ │ │ ├── ScheduledPerformingPhysicianIDSeq.php │ │ │ ├── ScheduledPerformingPhysiciansName.php │ │ │ ├── ScheduledProcedureStepDescription.php │ │ │ ├── ScheduledProcedureStepEndDate.php │ │ │ ├── ScheduledProcedureStepEndTime.php │ │ │ ├── ScheduledProcedureStepID.php │ │ │ ├── ScheduledProcedureStepLocation.php │ │ │ ├── ScheduledProcedureStepPriority.php │ │ │ ├── ScheduledProcedureStepSequence.php │ │ │ ├── ScheduledProcedureStepStartDate.php │ │ │ ├── ScheduledProcedureStepStartTime.php │ │ │ ├── ScheduledProcedureStepStatus.php │ │ │ ├── ScheduledProcessingParametersSeq.php │ │ │ ├── ScheduledProtocolCodeSequence.php │ │ │ ├── ScheduledStationAETitle.php │ │ │ ├── ScheduledStationClassCodeSequence.php │ │ │ ├── ScheduledStationName.php │ │ │ ├── ScheduledStationNameCodeSequence.php │ │ │ ├── ScheduledStepAttributesSequence.php │ │ │ ├── ScheduledStudyLocation.php │ │ │ ├── ScheduledStudyLocationAETitle.php │ │ │ ├── ScheduledStudyStartDate.php │ │ │ ├── ScheduledStudyStartTime.php │ │ │ ├── ScheduledStudyStopDate.php │ │ │ ├── ScheduledStudyStopTime.php │ │ │ ├── ScheduledWorkitemCodeSequence.php │ │ │ ├── ScoutType.php │ │ │ ├── ScreenFormat.php │ │ │ ├── ScreenMinimumColorBitDepth.php │ │ │ ├── ScreenMinimumGrayscaleBitDepth.php │ │ │ ├── SecondEcho.php │ │ │ ├── SecondaryCaptureDeviceID.php │ │ │ ├── SecondaryCaptureDeviceManufacturer.php │ │ │ ├── SecondaryCaptureDeviceModelName.php │ │ │ ├── SecondaryCaptureDeviceSoftwareVers.php │ │ │ ├── SecondaryCountsAccumulated.php │ │ │ ├── SecondaryCountsType.php │ │ │ ├── SecondaryPositionerIncrement.php │ │ │ ├── SecondaryPositionerScanArc.php │ │ │ ├── SecondaryPositionerScanStartAngle.php │ │ │ ├── SegmentAlgorithmName.php │ │ │ ├── SegmentAlgorithmType.php │ │ │ ├── SegmentDescription.php │ │ │ ├── SegmentIdentificationSequence.php │ │ │ ├── SegmentLabel.php │ │ │ ├── SegmentNumber.php │ │ │ ├── SegmentSequence.php │ │ │ ├── SegmentationFractionalType.php │ │ │ ├── SegmentationType.php │ │ │ ├── SegmentedBlueColorTableData.php │ │ │ ├── SegmentedGreenColorTableData.php │ │ │ ├── SegmentedKSpaceTraversal.php │ │ │ ├── SegmentedPropertyCategoryCodeSeq.php │ │ │ ├── SegmentedPropertyTypeCodeSequence.php │ │ │ ├── SegmentedRedColorTableData.php │ │ │ ├── SelectorATValue.php │ │ │ ├── SelectorAttribute.php │ │ │ ├── SelectorAttributePrivateCreator.php │ │ │ ├── SelectorAttributeVR.php │ │ │ ├── SelectorCSValue.php │ │ │ ├── SelectorCodeSequenceValue.php │ │ │ ├── SelectorDSValue.php │ │ │ ├── SelectorFDValue.php │ │ │ ├── SelectorFLValue.php │ │ │ ├── SelectorISValue.php │ │ │ ├── SelectorLOValue.php │ │ │ ├── SelectorLTValue.php │ │ │ ├── SelectorPNValue.php │ │ │ ├── SelectorSHValue.php │ │ │ ├── SelectorSLValue.php │ │ │ ├── SelectorSSValue.php │ │ │ ├── SelectorSTValue.php │ │ │ ├── SelectorSeqPointerPrivateCreator.php │ │ │ ├── SelectorSequencePointer.php │ │ │ ├── SelectorULValue.php │ │ │ ├── SelectorUSValue.php │ │ │ ├── SelectorUTValue.php │ │ │ ├── SelectorValueNumber.php │ │ │ ├── Sensitivity.php │ │ │ ├── SensitivityCalibrated.php │ │ │ ├── SequenceName.php │ │ │ ├── SequenceOfCompressedData.php │ │ │ ├── SequenceOfUltrasoundRegions.php │ │ │ ├── SequenceVariant.php │ │ │ ├── SeriesCompleteFlag.php │ │ │ ├── SeriesContrast.php │ │ │ ├── SeriesDate.php │ │ │ ├── SeriesDescription.php │ │ │ ├── SeriesFromWhichPrescribed.php │ │ │ ├── SeriesInStudy.php │ │ │ ├── SeriesInstanceUID.php │ │ │ ├── SeriesNumber.php │ │ │ ├── SeriesPlane.php │ │ │ ├── SeriesRecordChecksum.php │ │ │ ├── SeriesTime.php │ │ │ ├── SeriesType.php │ │ │ ├── ServiceEpisodeDescription.php │ │ │ ├── ServiceEpisodeID.php │ │ │ ├── ServiceID.php │ │ │ ├── SetIfFatqEstimatesWereUsed.php │ │ │ ├── SetupDeviceDescription.php │ │ │ ├── SetupDeviceLabel.php │ │ │ ├── SetupDeviceParameter.php │ │ │ ├── SetupDeviceSequence.php │ │ │ ├── SetupDeviceType.php │ │ │ ├── SetupImageComment.php │ │ │ ├── SetupReferenceDescription.php │ │ │ ├── SetupTechnique.php │ │ │ ├── SetupTechniqueDescription.php │ │ │ ├── ShapeType.php │ │ │ ├── SharedFunctionalGroupsSequence.php │ │ │ ├── ShieldingDeviceDescription.php │ │ │ ├── ShieldingDeviceLabel.php │ │ │ ├── ShieldingDevicePosition.php │ │ │ ├── ShieldingDeviceSequence.php │ │ │ ├── ShieldingDeviceType.php │ │ │ ├── ShiftTableSize.php │ │ │ ├── ShiftTableTriplet.php │ │ │ ├── ShowAcquisitionTechniquesFlag.php │ │ │ ├── ShowGraphicAnnotationFlag.php │ │ │ ├── ShowGrayscaleInverted.php │ │ │ ├── ShowImageTrueSizeFlag.php │ │ │ ├── ShowPatientDemographicsFlag.php │ │ │ ├── ShutterLeftVerticalEdge.php │ │ │ ├── ShutterLowerHorizontalEdge.php │ │ │ ├── ShutterOverlayGroup.php │ │ │ ├── ShutterPresentationColorCIELabVal.php │ │ │ ├── ShutterPresentationValue.php │ │ │ ├── ShutterRightVerticalEdge.php │ │ │ ├── ShutterShape.php │ │ │ ├── ShutterUpperHorizontalEdge.php │ │ │ ├── SigmaMode.php │ │ │ ├── SigmaRowNumberWhichRowsWereUsed.php │ │ │ ├── SignalDomainColumns.php │ │ │ ├── SignalDomainRows.php │ │ │ ├── Signature.php │ │ │ ├── SimpleFrameList.php │ │ │ ├── SingleCollimationWidth.php │ │ │ ├── SkipBeats.php │ │ │ ├── SkipFrameRangeFlag.php │ │ │ ├── SlabOrientation.php │ │ │ ├── SlabThickness.php │ │ │ ├── SliceLocation.php │ │ │ ├── SliceLocationVector.php │ │ │ ├── SliceOffsetOnFreqAxis.php │ │ │ ├── SliceProgressionDirection.php │ │ │ ├── SliceSensitivityFactor.php │ │ │ ├── SliceThickness.php │ │ │ ├── SliceVector.php │ │ │ ├── SlideIdentifier.php │ │ │ ├── SlopInt1017.php │ │ │ ├── SlopInt69.php │ │ │ ├── SmallestImagePixelValue.php │ │ │ ├── SmallestImagePixelValueInPlane.php │ │ │ ├── SmallestPixelValueInSeries.php │ │ │ ├── SmallestValidPixelValue.php │ │ │ ├── SmartScanOnOffFlag.php │ │ │ ├── SmokingStatus.php │ │ │ ├── SmoothingType.php │ │ │ ├── SnoutID.php │ │ │ ├── SnoutPosition.php │ │ │ ├── SnoutPositionTolerance.php │ │ │ ├── SnoutSequence.php │ │ │ ├── SoftTissueFocusThermalIndex.php │ │ │ ├── SoftTissueSurfaceThermalIndex.php │ │ │ ├── SoftTissueThermalIndex.php │ │ │ ├── SoftcopyVOILUTSequence.php │ │ │ ├── SoftwareVersion.php │ │ │ ├── SortByCategory.php │ │ │ ├── SortingDirection.php │ │ │ ├── SortingOperationsSequence.php │ │ │ ├── SourceApplicationEntityTitle.php │ │ │ ├── SourceApplicatorID.php │ │ │ ├── SourceApplicatorLength.php │ │ │ ├── SourceApplicatorManufacturer.php │ │ │ ├── SourceApplicatorName.php │ │ │ ├── SourceApplicatorNumber.php │ │ │ ├── SourceApplicatorStepSize.php │ │ │ ├── SourceApplicatorType.php │ │ │ ├── SourceApplicatorWallNomThickness.php │ │ │ ├── SourceApplicatorWallNomTrans.php │ │ │ ├── SourceAxisDistance.php │ │ │ ├── SourceEncapsulationNomThickness.php │ │ │ ├── SourceEncapsulationNomTransmission.php │ │ │ ├── SourceFrameOfReferenceUID.php │ │ │ ├── SourceHangingProtocolSequence.php │ │ │ ├── SourceImageEvidenceSequence.php │ │ │ ├── SourceImageIDs.php │ │ │ ├── SourceImageSequence.php │ │ │ ├── SourceInstanceSequence.php │ │ │ ├── SourceIsotopeHalfLife.php │ │ │ ├── SourceIsotopeName.php │ │ │ ├── SourceManufacturer.php │ │ │ ├── SourceMovementType.php │ │ │ ├── SourceNumber.php │ │ │ ├── SourceOfPreviousValues.php │ │ │ ├── SourceSequence.php │ │ │ ├── SourceSerialNumber.php │ │ │ ├── SourceStrength.php │ │ │ ├── SourceStrengthReferenceDate.php │ │ │ ├── SourceStrengthReferenceTime.php │ │ │ ├── SourceStrengthUnits.php │ │ │ ├── SourceToBeamLimitingDeviceDistance.php │ │ │ ├── SourceToBlockTrayDistance.php │ │ │ ├── SourceToCompensatorDistance.php │ │ │ ├── SourceToCompensatorTrayDistance.php │ │ │ ├── SourceToDataCollectionCenterDist.php │ │ │ ├── SourceToReferenceObjectDistance.php │ │ │ ├── SourceToSurfaceDistance.php │ │ │ ├── SourceToWedgeTrayDistance.php │ │ │ ├── SourceType.php │ │ │ ├── SourceWaveformSequence.php │ │ │ ├── SpacingBetweenSlices.php │ │ │ ├── SpatialLocationsPreserved.php │ │ │ ├── SpatialPresaturation.php │ │ │ ├── SpatialResolution.php │ │ │ ├── SpecialNeeds.php │ │ │ ├── SpecificAbsorptionRateDefinition.php │ │ │ ├── SpecificAbsorptionRateSequence.php │ │ │ ├── SpecificAbsorptionRateValue.php │ │ │ ├── SpecificCharacterSet.php │ │ │ ├── SpecificCharacterSetOfFile.php │ │ │ ├── SpecifiedChannelTotalTime.php │ │ │ ├── SpecifiedMeterset.php │ │ │ ├── SpecifiedNumberOfPulses.php │ │ │ ├── SpecifiedPrimaryMeterset.php │ │ │ ├── SpecifiedPulseRepetitionInterval.php │ │ │ ├── SpecifiedSecondaryMeterset.php │ │ │ ├── SpecifiedTreatmentTime.php │ │ │ ├── SpecimenAccessionNumber.php │ │ │ ├── SpecimenDescriptionSequenceTrial.php │ │ │ ├── SpecimenDescriptionTrial.php │ │ │ ├── SpecimenIdentifier.php │ │ │ ├── SpecimenSequence.php │ │ │ ├── SpecimenShortDescription.php │ │ │ ├── SpecimenTypeCodeSequence.php │ │ │ ├── SpecimenUID.php │ │ │ ├── SpectralWidth.php │ │ │ ├── SpectrallySelectedExcitation.php │ │ │ ├── SpectrallySelectedSuppression.php │ │ │ ├── SpectroscopyAcqPhaseColumns.php │ │ │ ├── SpectroscopyAcquisitionDataColumns.php │ │ │ ├── SpectroscopyAcquisitionPhaseRows.php │ │ │ ├── SpectroscopyData.php │ │ │ ├── SpectroscopyOutOfPlanePhaseSteps.php │ │ │ ├── SpherePower.php │ │ │ ├── SphericalLensPower.php │ │ │ ├── SpiralPitchFactor.php │ │ │ ├── Spoiling.php │ │ │ ├── StackID.php │ │ │ ├── StageCodeSequence.php │ │ │ ├── StageName.php │ │ │ ├── StageNumber.php │ │ │ ├── StartAcquisitionDateTime.php │ │ │ ├── StartAngle.php │ │ │ ├── StartCumulativeMetersetWeight.php │ │ │ ├── StartDensityThreshold.php │ │ │ ├── StartMeterset.php │ │ │ ├── StartNumberForBaseline.php │ │ │ ├── StartNumberForEnhancedScans.php │ │ │ ├── StartOfItem.php │ │ │ ├── StartScanToXrayOnDelay.php │ │ │ ├── StartTimeSecsInFirstAxial.php │ │ │ ├── StartTrim.php │ │ │ ├── StartingChannelNumber.php │ │ │ ├── StartingChannelOfView.php │ │ │ ├── StartingRespiratoryAmplitude.php │ │ │ ├── StartingRespiratoryPhase.php │ │ │ ├── StartingView.php │ │ │ ├── StartingViewForRow1a.php │ │ │ ├── StartingViewForRow1b.php │ │ │ ├── StartingViewForRow2a.php │ │ │ ├── StartingViewForRow2b.php │ │ │ ├── StatReconFlag.php │ │ │ ├── StationName.php │ │ │ ├── SteadyStatePulseSequence.php │ │ │ ├── SteeringAngle.php │ │ │ ├── StereoBaselineAngle.php │ │ │ ├── StereoBaselineDisplacement.php │ │ │ ├── StereoHorizontalPixelOffset.php │ │ │ ├── StereoPairsSequence.php │ │ │ ├── StereoRotation.php │ │ │ ├── StereoVerticalPixelOffset.php │ │ │ ├── StopTrim.php │ │ │ ├── StorageMediaFileSetID.php │ │ │ ├── StorageMediaFileSetUID.php │ │ │ ├── StringSlopField1.php │ │ │ ├── StringSlopField2.php │ │ │ ├── StructureSetDate.php │ │ │ ├── StructureSetDescription.php │ │ │ ├── StructureSetLabel.php │ │ │ ├── StructureSetName.php │ │ │ ├── StructureSetROISequence.php │ │ │ ├── StructureSetTime.php │ │ │ ├── StudyArrivalDate.php │ │ │ ├── StudyArrivalTime.php │ │ │ ├── StudyComments.php │ │ │ ├── StudyCompletionDate.php │ │ │ ├── StudyCompletionTime.php │ │ │ ├── StudyComponentStatusID.php │ │ │ ├── StudyDate.php │ │ │ ├── StudyDescription.php │ │ │ ├── StudyGroupLength.php │ │ │ ├── StudyID.php │ │ │ ├── StudyIDIssuer.php │ │ │ ├── StudyInstanceUID.php │ │ │ ├── StudyPriorityID.php │ │ │ ├── StudyReadDate.php │ │ │ ├── StudyReadTime.php │ │ │ ├── StudyStatusID.php │ │ │ ├── StudyTime.php │ │ │ ├── StudyVerifiedDate.php │ │ │ ├── StudyVerifiedTime.php │ │ │ ├── SubscriptionListStatus.php │ │ │ ├── SubstanceAdminParameterSeq.php │ │ │ ├── SubstanceAdministrationApproval.php │ │ │ ├── SubstanceAdministrationDateTime.php │ │ │ ├── SubstanceAdministrationDeviceID.php │ │ │ ├── SubstanceAdministrationNotes.php │ │ │ ├── SubtractionItemID.php │ │ │ ├── SuiteID.php │ │ │ ├── SummaryImage.php │ │ │ ├── SupportedImageDisplayFormatSeq.php │ │ │ ├── SurfaceCoilIntensity.php │ │ │ ├── SurfaceCoilType.php │ │ │ ├── SurfaceComments.php │ │ │ ├── SurfaceCount.php │ │ │ ├── SurfaceEntryPoint.php │ │ │ ├── SurfaceNumber.php │ │ │ ├── SurfacePointsSequence.php │ │ │ ├── SurfaceProcessing.php │ │ │ ├── SurfaceProcessingRatio.php │ │ │ ├── SurfaceSequence.php │ │ │ ├── Swappf.php │ │ │ ├── SynchronizationChannel.php │ │ │ ├── SynchronizationFrameOfReferenceUID.php │ │ │ ├── SynchronizationTrigger.php │ │ │ ├── SynchronizedImageBoxList.php │ │ │ ├── SynchronizedScrollingSequence.php │ │ │ ├── SyringeCounts.php │ │ │ ├── T2Preparation.php │ │ │ ├── TGGCTriggerMode.php │ │ │ ├── TIDOffset.php │ │ │ ├── TMLinePositionX0.php │ │ │ ├── TMLinePositionX0Retired.php │ │ │ ├── TMLinePositionX1.php │ │ │ ├── TMLinePositionX1Retired.php │ │ │ ├── TMLinePositionY0.php │ │ │ ├── TMLinePositionY0Retired.php │ │ │ ├── TMLinePositionY1.php │ │ │ ├── TMLinePositionY1Retired.php │ │ │ ├── TableAngle.php │ │ │ ├── TableCradleTiltAngle.php │ │ │ ├── TableDelta.php │ │ │ ├── TableDirectionInOrOut.php │ │ │ ├── TableEndLocation.php │ │ │ ├── TableFeedPerRotation.php │ │ │ ├── TableHeadTiltAngle.php │ │ │ ├── TableHeight.php │ │ │ ├── TableHorizontalRotationAngle.php │ │ │ ├── TableLateralIncrement.php │ │ │ ├── TableLongitudinalIncrement.php │ │ │ ├── TableMotion.php │ │ │ ├── TableOfParameterValues.php │ │ │ ├── TableOfPixelValues.php │ │ │ ├── TableOfXBreakPoints.php │ │ │ ├── TableOfYBreakPoints.php │ │ │ ├── TablePosition.php │ │ │ ├── TablePositionSequence.php │ │ │ ├── TableSpeed.php │ │ │ ├── TableStartLocation.php │ │ │ ├── TableTopEccentricAngle.php │ │ │ ├── TableTopEccentricAngleTolerance.php │ │ │ ├── TableTopEccentricAxisDistance.php │ │ │ ├── TableTopEccentricRotateDirection.php │ │ │ ├── TableTopLateralPosition.php │ │ │ ├── TableTopLateralPositionTolerance.php │ │ │ ├── TableTopLateralSetupDisplacement.php │ │ │ ├── TableTopLongitudinalPosition.php │ │ │ ├── TableTopLongitudinalPositionTol.php │ │ │ ├── TableTopLongitudinalSetupDisplace.php │ │ │ ├── TableTopPitchAngle.php │ │ │ ├── TableTopPitchAngleTolerance.php │ │ │ ├── TableTopPitchRotationDirection.php │ │ │ ├── TableTopRollAngle.php │ │ │ ├── TableTopRollAngleTolerance.php │ │ │ ├── TableTopRollRotationDirection.php │ │ │ ├── TableTopVerticalPosition.php │ │ │ ├── TableTopVerticalPositionTolerance.php │ │ │ ├── TableTopVerticalSetupDisplacement.php │ │ │ ├── TableTraverse.php │ │ │ ├── TableType.php │ │ │ ├── TableVerticalIncrement.php │ │ │ ├── TableXPositionToIsocenter.php │ │ │ ├── TableYPositionToIsocenter.php │ │ │ ├── TableZPositionToIsocenter.php │ │ │ ├── TagAngleFirstAxis.php │ │ │ ├── TagAngleSecondAxis.php │ │ │ ├── TagSpacingFirstDimension.php │ │ │ ├── TagSpacingSecondDimension.php │ │ │ ├── TagThickness.php │ │ │ ├── Tagging.php │ │ │ ├── TaggingDelay.php │ │ │ ├── TargetMaximumDose.php │ │ │ ├── TargetMinimumDose.php │ │ │ ├── TargetPrescriptionDose.php │ │ │ ├── TargetUnderdoseVolumeFraction.php │ │ │ ├── TelephoneNumberTrial.php │ │ │ ├── TemplateExtensionCreatorUID.php │ │ │ ├── TemplateExtensionFlag.php │ │ │ ├── TemplateExtensionOrganizationUID.php │ │ │ ├── TemplateIdentifier.php │ │ │ ├── TemplateLocalVersion.php │ │ │ ├── TemplateName.php │ │ │ ├── TemplateNumber.php │ │ │ ├── TemplateType.php │ │ │ ├── TemplateVersion.php │ │ │ ├── TemporalPositionIdentifier.php │ │ │ ├── TemporalPositionIndex.php │ │ │ ├── TemporalRangeType.php │ │ │ ├── TemporalResolution.php │ │ │ ├── TerminationTimeThreshold.php │ │ │ ├── TextComments.php │ │ │ ├── TextGroupLength.php │ │ │ ├── TextObjectSequence.php │ │ │ ├── TextString.php │ │ │ ├── TextValue.php │ │ │ ├── TherapyDescription.php │ │ │ ├── TherapyType.php │ │ │ ├── ThicknessDisclaimer.php │ │ │ ├── ThresholdDensity.php │ │ │ ├── Time.php │ │ │ ├── TimeBasedImageSetsSequence.php │ │ │ ├── TimeDistributionProtocol.php │ │ │ ├── TimeDomainFiltering.php │ │ │ ├── TimeOfFlightContrast.php │ │ │ ├── TimeOfLastCalibration.php │ │ │ ├── TimeOfLastDetectorCalibration.php │ │ │ ├── TimeOfSecondaryCapture.php │ │ │ ├── TimeRange.php │ │ │ ├── TimeSliceVector.php │ │ │ ├── TimeSlotInformationSequence.php │ │ │ ├── TimeSlotNumber.php │ │ │ ├── TimeSlotTime.php │ │ │ ├── TimeSlotVector.php │ │ │ ├── TimeSource.php │ │ │ ├── TimezoneOffsetFromUTC.php │ │ │ ├── TissueHeterogeneityCorrection.php │ │ │ ├── ToWindowLevelLevel.php │ │ │ ├── ToleranceTableLabel.php │ │ │ ├── ToleranceTableNumber.php │ │ │ ├── ToleranceTableSequence.php │ │ │ ├── TomoAngle.php │ │ │ ├── TomoClass.php │ │ │ ├── TomoLayerHeight.php │ │ │ ├── TomoTime.php │ │ │ ├── TomoType.php │ │ │ ├── TopicAuthor.php │ │ │ ├── TopicKeywords.php │ │ │ ├── TopicSubject.php │ │ │ ├── TopicTitle.php │ │ │ ├── TotalBlockTrayFactor.php │ │ │ ├── TotalBlockTrayWaterEquivThickness.php │ │ │ ├── TotalCollimationWidth.php │ │ │ ├── TotalCompTrayWaterEquivThickness.php │ │ │ ├── TotalCompensatorTrayFactor.php │ │ │ ├── TotalGain.php │ │ │ ├── TotalInputViews.php │ │ │ ├── TotalNoOfRefChannels.php │ │ │ ├── TotalNumberMediaPiecesCreated.php │ │ │ ├── TotalNumberOfExposures.php │ │ │ ├── TotalOutputViews.php │ │ │ ├── TotalReferenceAirKerma.php │ │ │ ├── TotalSegmentsRequested.php │ │ │ ├── TotalTime.php │ │ │ ├── TotalTimeOfFluoroscopy.php │ │ │ ├── TotalWedgeTrayWaterEquivThickness.php │ │ │ ├── TransactionUID.php │ │ │ ├── TransducerData.php │ │ │ ├── TransducerFrequency.php │ │ │ ├── TransducerOrientation.php │ │ │ ├── TransducerOrientationModifierSeq.php │ │ │ ├── TransducerOrientationSequence.php │ │ │ ├── TransducerPosition.php │ │ │ ├── TransducerPositionModifierSequence.php │ │ │ ├── TransducerPositionSequence.php │ │ │ ├── TransducerType.php │ │ │ ├── TransferSyntaxUID.php │ │ │ ├── TransferTubeLength.php │ │ │ ├── TransferTubeNumber.php │ │ │ ├── TransformLabel.php │ │ │ ├── TransformVersionNumber.php │ │ │ ├── TransmissionGain.php │ │ │ ├── TransmitCoilManufacturerName.php │ │ │ ├── TransmitCoilName.php │ │ │ ├── TransmitCoilType.php │ │ │ ├── TransmitGain.php │ │ │ ├── TransmitterFrequency.php │ │ │ ├── TransmittingCoil.php │ │ │ ├── TransverseMash.php │ │ │ ├── TreatmentControlPointDate.php │ │ │ ├── TreatmentControlPointTime.php │ │ │ ├── TreatmentDate.php │ │ │ ├── TreatmentDeliveryType.php │ │ │ ├── TreatmentMachineName.php │ │ │ ├── TreatmentMachineSequence.php │ │ │ ├── TreatmentProtocols.php │ │ │ ├── TreatmentSessionAppSetupSeq.php │ │ │ ├── TreatmentSessionBeamSequence.php │ │ │ ├── TreatmentSessionIonBeamSequence.php │ │ │ ├── TreatmentSites.php │ │ │ ├── TreatmentStatusComment.php │ │ │ ├── TreatmentSummaryCalcDoseRefSeq.php │ │ │ ├── TreatmentSummaryMeasuredDoseRefSeq.php │ │ │ ├── TreatmentTerminationCode.php │ │ │ ├── TreatmentTerminationStatus.php │ │ │ ├── TreatmentTime.php │ │ │ ├── TreatmentVerificationStatus.php │ │ │ ├── TriangleFanSequence.php │ │ │ ├── TrianglePointIndexList.php │ │ │ ├── TriangleStripSequence.php │ │ │ ├── TriggerDelayTime.php │ │ │ ├── TriggerFrequency.php │ │ │ ├── TriggerOnPosition.php │ │ │ ├── TriggerSamplePosition.php │ │ │ ├── TriggerSourceOrType.php │ │ │ ├── TriggerTime.php │ │ │ ├── TriggerTimeOffset.php │ │ │ ├── TriggerVector.php │ │ │ ├── TriggerWindow.php │ │ │ ├── Trim.php │ │ │ ├── TubeAngle.php │ │ │ ├── TubeFocalSpotPosition.php │ │ │ ├── TypeOfData.php │ │ │ ├── TypeOfDetectorMotion.php │ │ │ ├── TypeOfFilters.php │ │ │ ├── TypeOfPatientID.php │ │ │ ├── TypeOfReceiverUsed.php │ │ │ ├── TypeOfSynchronization.php │ │ │ ├── UID.php │ │ │ ├── UPSListStatus.php │ │ │ ├── UPSPerformedProcedureSequence.php │ │ │ ├── UPSProgressInformationSequence.php │ │ │ ├── UltrasoundColorDataPresent.php │ │ │ ├── UnformattedTextValue.php │ │ │ ├── UnifiedProcedureStepComURISeq.php │ │ │ ├── UnifiedProcedureStepProgress.php │ │ │ ├── UnifiedProcedureStepProgressDescr.php │ │ │ ├── UnifiedProcedureStepState.php │ │ │ ├── UniqueImageIden.php │ │ │ ├── Units.php │ │ │ ├── UniversalEntityID.php │ │ │ ├── UniversalEntityIDType.php │ │ │ ├── UpperLowerPixelValues.php │ │ │ ├── UpperRangeOfPixels2.php │ │ │ ├── UsedFiducialsSequence.php │ │ │ ├── User2548.php │ │ │ ├── UserData.php │ │ │ ├── UserData01.php │ │ │ ├── UserData02.php │ │ │ ├── UserData03.php │ │ │ ├── UserData04.php │ │ │ ├── UserData05.php │ │ │ ├── UserData06.php │ │ │ ├── UserData07.php │ │ │ ├── UserData08.php │ │ │ ├── UserData09.php │ │ │ ├── UserData10.php │ │ │ ├── UserData11.php │ │ │ ├── UserData12.php │ │ │ ├── UserData13.php │ │ │ ├── UserData14.php │ │ │ ├── UserData15.php │ │ │ ├── UserData16.php │ │ │ ├── UserData17.php │ │ │ ├── UserData18.php │ │ │ ├── UserData19.php │ │ │ ├── UserData20.php │ │ │ ├── UserData21.php │ │ │ ├── UserData22.php │ │ │ ├── UserData23.php │ │ │ ├── UserDefinedData.php │ │ │ ├── UserFillMapLSW.php │ │ │ ├── UserFillMapMSW.php │ │ │ ├── UserUsageTag.php │ │ │ ├── VOILUTFunction.php │ │ │ ├── VOILUTSequence.php │ │ │ ├── VOIType.php │ │ │ ├── ValueOfBackProjectionButton.php │ │ │ ├── ValueType.php │ │ │ ├── VariableCoefficientsSDDN.php │ │ │ ├── VariableCoefficientsSDHN.php │ │ │ ├── VariableCoefficientsSDVN.php │ │ │ ├── VariableEchoflag.php │ │ │ ├── VariableFlipAngleFlag.php │ │ │ ├── VariableNextDataGroup.php │ │ │ ├── VectorAccuracy.php │ │ │ ├── VectorCoordinateData.php │ │ │ ├── VectorDimensionality.php │ │ │ ├── VectorGridData.php │ │ │ ├── VelocityEncodeScale.php │ │ │ ├── VelocityEncoding.php │ │ │ ├── VelocityEncodingDirection.php │ │ │ ├── VelocityEncodingMaximumValue.php │ │ │ ├── VelocityEncodingMinimumValue.php │ │ │ ├── VerificationDateTime.php │ │ │ ├── VerificationFlag.php │ │ │ ├── VerificationImageTiming.php │ │ │ ├── VerifyingObserverIdentCodeSequence.php │ │ │ ├── VerifyingObserverName.php │ │ │ ├── VerifyingObserverSequence.php │ │ │ ├── VerifyingOrganization.php │ │ │ ├── VersionOfTheHdrStruct.php │ │ │ ├── VertexPointIndexList.php │ │ │ ├── VerticalPrismBase.php │ │ │ ├── VerticalPrismPower.php │ │ │ ├── VerticesOfPolygonalCollimator.php │ │ │ ├── VerticesOfPolygonalShutter.php │ │ │ ├── VerticesOfTheRegion.php │ │ │ ├── VideoImageFormatAcquired.php │ │ │ ├── ViewCodeSequence.php │ │ │ ├── ViewCompressionFactor.php │ │ │ ├── ViewModifierCodeSequence.php │ │ │ ├── ViewName.php │ │ │ ├── ViewNumber.php │ │ │ ├── ViewPosition.php │ │ │ ├── ViewWeightingMode.php │ │ │ ├── ViewingDistance.php │ │ │ ├── ViewingDistanceType.php │ │ │ ├── ViewsPerSegment.php │ │ │ ├── VirtualSourceAxisDistances.php │ │ │ ├── VisitComments.php │ │ │ ├── VisitStatusID.php │ │ │ ├── VisualAcuityModifiers.php │ │ │ ├── VitalStainCodeSequenceTrial.php │ │ │ ├── VmaClip.php │ │ │ ├── VmaMamp.php │ │ │ ├── VmaMod.php │ │ │ ├── VmaPhase.php │ │ │ ├── VolumeBasedCalculationTechnique.php │ │ │ ├── VolumeLocalizationSequence.php │ │ │ ├── VolumeLocalizationTechnique.php │ │ │ ├── VolumetricProperties.php │ │ │ ├── WaterReferencedPhaseCorrection.php │ │ │ ├── WaveformBitsAllocated.php │ │ │ ├── WaveformBitsStored.php │ │ │ ├── WaveformChannelNumber.php │ │ │ ├── WaveformData.php │ │ │ ├── WaveformDataDisplayScale.php │ │ │ ├── WaveformDisplayBkgCIELabValue.php │ │ │ ├── WaveformOriginality.php │ │ │ ├── WaveformPaddingValue.php │ │ │ ├── WaveformPresentationGroupSequence.php │ │ │ ├── WaveformSampleInterpretation.php │ │ │ ├── WaveformSequence.php │ │ │ ├── WedgeAngle.php │ │ │ ├── WedgeFactor.php │ │ │ ├── WedgeID.php │ │ │ ├── WedgeNumber.php │ │ │ ├── WedgeOrientation.php │ │ │ ├── WedgePosition.php │ │ │ ├── WedgePositionSequence.php │ │ │ ├── WedgeSequence.php │ │ │ ├── WedgeThinEdgePosition.php │ │ │ ├── WedgeType.php │ │ │ ├── WholeBodyTechnique.php │ │ │ ├── WindowCenter.php │ │ │ ├── WindowCenterAndWidthExplanation.php │ │ │ ├── WindowValue.php │ │ │ ├── WindowWidth.php │ │ │ ├── WorklistLabel.php │ │ │ ├── XAXRFFrameCharacteristicsSequence.php │ │ │ ├── XFocusCenter.php │ │ │ ├── XOffsetInSlideCoordinateSystem.php │ │ │ ├── XRay3DAcquisitionSequence.php │ │ │ ├── XRay3DFrameTypeSequence.php │ │ │ ├── XRay3DReconstructionSequence.php │ │ │ ├── XRayChain.php │ │ │ ├── XRayGeometrySequence.php │ │ │ ├── XRayImageReceptorAngle.php │ │ │ ├── XRayImageReceptorTranslation.php │ │ │ ├── XRayOffPosition.php │ │ │ ├── XRayOnPosition.php │ │ │ ├── XRayOutput.php │ │ │ ├── XRayReceptorType.php │ │ │ ├── XRayTubeCurrent.php │ │ │ ├── XRayTubeCurrentInMicroAmps.php │ │ │ ├── XRayTubeCurrentInMilliAmps.php │ │ │ ├── YFocusCenter.php │ │ │ ├── YOffsetInSlideCoordinateSystem.php │ │ │ ├── ZChanAvgOverViews.php │ │ │ ├── ZOffsetInSlideCoordinateSystem.php │ │ │ ├── ZSlopeCalibrationDate.php │ │ │ ├── ZSlopeCalibrationTime.php │ │ │ ├── ZSmoothingFactor.php │ │ │ ├── ZTrackingFlag.php │ │ │ ├── ZTrackingMaximumError.php │ │ │ ├── ZonalMap.php │ │ │ ├── ZonalMapFormat.php │ │ │ ├── ZonalMapLocation.php │ │ │ ├── ZonalMapNumberFormat.php │ │ │ ├── ZoomCenter.php │ │ │ └── ZoomFactor.php │ │ ├── DNG │ │ │ ├── OriginalRawCreator.php │ │ │ ├── OriginalRawFileType.php │ │ │ ├── OriginalRawImage.php │ │ │ ├── OriginalRawResource.php │ │ │ ├── OriginalTHMCreator.php │ │ │ ├── OriginalTHMFileType.php │ │ │ ├── OriginalTHMImage.php │ │ │ └── OriginalTHMResource.php │ │ ├── DV │ │ │ ├── AspectRatio.php │ │ │ ├── AudioBitsPerSample.php │ │ │ ├── AudioChannels.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── Colorimetry.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── Duration.php │ │ │ ├── FrameRate.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── TotalBitrate.php │ │ │ ├── VideoFormat.php │ │ │ └── VideoScanType.php │ │ ├── DjVu │ │ │ ├── DjVuVersion.php │ │ │ ├── Gamma.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── IncludedFileID.php │ │ │ ├── Orientation.php │ │ │ ├── SpatialResolution.php │ │ │ └── SubfileType.php │ │ ├── DjVuMeta │ │ │ ├── Address.php │ │ │ ├── Annotation.php │ │ │ ├── Author.php │ │ │ ├── BookTitle.php │ │ │ ├── Chapter.php │ │ │ ├── CreateDate.php │ │ │ ├── Creator.php │ │ │ ├── CrossRef.php │ │ │ ├── EPrint.php │ │ │ ├── Edition.php │ │ │ ├── HowPublished.php │ │ │ ├── Institution.php │ │ │ ├── Journal.php │ │ │ ├── Key.php │ │ │ ├── Keywords.php │ │ │ ├── ModifyDate.php │ │ │ ├── Month.php │ │ │ ├── Note.php │ │ │ ├── Number.php │ │ │ ├── Organization.php │ │ │ ├── Pages.php │ │ │ ├── Producer.php │ │ │ ├── Publisher.php │ │ │ ├── School.php │ │ │ ├── Series.php │ │ │ ├── Subject.php │ │ │ ├── Title.php │ │ │ ├── Trapped.php │ │ │ ├── Type.php │ │ │ ├── URL.php │ │ │ ├── Volume.php │ │ │ └── Year.php │ │ ├── Ducky │ │ │ ├── Comment.php │ │ │ ├── Copyright.php │ │ │ └── Quality.php │ │ ├── EPPIM │ │ │ └── PrintIM.php │ │ ├── EXE │ │ │ ├── BuildDate.php │ │ │ ├── BuildVersion.php │ │ │ ├── CHMVersion.php │ │ │ ├── CPUArchitecture.php │ │ │ ├── CPUByteOrder.php │ │ │ ├── CPUCount.php │ │ │ ├── CPUSubtype.php │ │ │ ├── CPUType.php │ │ │ ├── CharacterSet.php │ │ │ ├── CodeSize.php │ │ │ ├── Comments.php │ │ │ ├── CompanyName.php │ │ │ ├── Copyright.php │ │ │ ├── EntryPoint.php │ │ │ ├── FileDescription.php │ │ │ ├── FileFlags.php │ │ │ ├── FileFlagsMask.php │ │ │ ├── FileOS.php │ │ │ ├── FileSubtype.php │ │ │ ├── FileVersion.php │ │ │ ├── FileVersionNumber.php │ │ │ ├── ImageVersion.php │ │ │ ├── InitializedDataSize.php │ │ │ ├── InternalName.php │ │ │ ├── LanguageCode.php │ │ │ ├── LegalCopyright.php │ │ │ ├── LegalTrademarks.php │ │ │ ├── LinkerVersion.php │ │ │ ├── MachineType.php │ │ │ ├── OSVersion.php │ │ │ ├── ObjectFileType.php │ │ │ ├── OriginalFilename.php │ │ │ ├── PEFVersion.php │ │ │ ├── PEType.php │ │ │ ├── PrivateBuild.php │ │ │ ├── ProductName.php │ │ │ ├── ProductVersion.php │ │ │ ├── ProductVersionNumber.php │ │ │ ├── SpecialBuild.php │ │ │ ├── Subsystem.php │ │ │ ├── SubsystemVersion.php │ │ │ ├── TimeStamp.php │ │ │ └── UninitializedDataSize.php │ │ ├── EXIF │ │ │ └── EXIF.php │ │ ├── ExifIFD │ │ │ ├── A100DataOffset.php │ │ │ ├── AdventRevision.php │ │ │ ├── AdventScale.php │ │ │ ├── AffineTransformMat.php │ │ │ ├── AliasLayerMetadata.php │ │ │ ├── AlphaByteCount.php │ │ │ ├── AlphaDataDiscard.php │ │ │ ├── AlphaOffset.php │ │ │ ├── Annotations.php │ │ │ ├── ApertureValue.php │ │ │ ├── ApplicationNotes.php │ │ │ ├── BackgroundColorIndicator.php │ │ │ ├── BackgroundColorValue.php │ │ │ ├── BadFaxLines.php │ │ │ ├── BatteryLevel.php │ │ │ ├── BitsPerExtendedRunLength.php │ │ │ ├── BitsPerRunLength.php │ │ │ ├── Brightness.php │ │ │ ├── BrightnessValue.php │ │ │ ├── CFALayout.php │ │ │ ├── CFAPattern.php │ │ │ ├── CFAPlaneColor.php │ │ │ ├── CIP3DataFile.php │ │ │ ├── CIP3Sheet.php │ │ │ ├── CIP3Side.php │ │ │ ├── CMYKEquivalent.php │ │ │ ├── ChromaticAberrationCorrParams.php │ │ │ ├── CleanFaxData.php │ │ │ ├── ClipPath.php │ │ │ ├── CodingMethods.php │ │ │ ├── ColorCharacterization.php │ │ │ ├── ColorMap.php │ │ │ ├── ColorResponseUnit.php │ │ │ ├── ColorSequence.php │ │ │ ├── ColorSpace.php │ │ │ ├── ColorTable.php │ │ │ ├── ComponentsConfiguration.php │ │ │ ├── CompressedBitsPerPixel.php │ │ │ ├── ConsecutiveBadFaxLines.php │ │ │ ├── Contrast.php │ │ │ ├── Converter.php │ │ │ ├── CreateDate.php │ │ │ ├── CustomRendered.php │ │ │ ├── DataType.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── Decode.php │ │ │ ├── DefaultImageColor.php │ │ │ ├── DeviceSettingDescription.php │ │ │ ├── DigitalZoomRatio.php │ │ │ ├── DistortionCorrParams.php │ │ │ ├── ExifImageHeight.php │ │ │ ├── ExifImageWidth.php │ │ │ ├── ExifVersion.php │ │ │ ├── ExpandFilm.php │ │ │ ├── ExpandFilterLens.php │ │ │ ├── ExpandFlashLamp.php │ │ │ ├── ExpandLens.php │ │ │ ├── ExpandScanner.php │ │ │ ├── ExpandSoftware.php │ │ │ ├── Exposure.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureIndex.php │ │ │ ├── ExposureMode.php │ │ │ ├── ExposureProgram.php │ │ │ ├── ExposureTime.php │ │ │ ├── ExtraSamples.php │ │ │ ├── FNumber.php │ │ │ ├── FaxProfile.php │ │ │ ├── FaxRecvParams.php │ │ │ ├── FaxRecvTime.php │ │ │ ├── FaxSubAddress.php │ │ │ ├── FedexEDR.php │ │ │ ├── FileSource.php │ │ │ ├── Flash.php │ │ │ ├── FlashEnergy.php │ │ │ ├── FlashpixVersion.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalLengthIn35mmFormat.php │ │ │ ├── FocalPlaneResolutionUnit.php │ │ │ ├── FocalPlaneXResolution.php │ │ │ ├── FocalPlaneYResolution.php │ │ │ ├── FovCot.php │ │ │ ├── FreeByteCounts.php │ │ │ ├── FreeOffsets.php │ │ │ ├── GDALMetadata.php │ │ │ ├── GDALNoData.php │ │ │ ├── GainControl.php │ │ │ ├── Gamma.php │ │ │ ├── GooglePlusUploadCode.php │ │ │ ├── GrayResponseCurve.php │ │ │ ├── HCUsage.php │ │ │ ├── HeightResolution.php │ │ │ ├── INGRReserved.php │ │ │ ├── ISO.php │ │ │ ├── ISOSpeed.php │ │ │ ├── ISOSpeedLatitudeyyy.php │ │ │ ├── ISOSpeedLatitudezzz.php │ │ │ ├── IT8Header.php │ │ │ ├── ImageByteCount.php │ │ │ ├── ImageColorIndicator.php │ │ │ ├── ImageColorValue.php │ │ │ ├── ImageDataDiscard.php │ │ │ ├── ImageDepth.php │ │ │ ├── ImageFullHeight.php │ │ │ ├── ImageFullWidth.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageHistory.php │ │ │ ├── ImageID.php │ │ │ ├── ImageLayer.php │ │ │ ├── ImageNumber.php │ │ │ ├── ImageOffset.php │ │ │ ├── ImageReferencePoints.php │ │ │ ├── ImageType.php │ │ │ ├── ImageUniqueID.php │ │ │ ├── ImageWidth.php │ │ │ ├── Indexed.php │ │ │ ├── InkNames.php │ │ │ ├── IntergraphFlagRegisters.php │ │ │ ├── IntergraphMatrix.php │ │ │ ├── IntergraphPacketData.php │ │ │ ├── Interlace.php │ │ │ ├── JBIGOptions.php │ │ │ ├── JPEGACTables.php │ │ │ ├── JPEGDCTables.php │ │ │ ├── JPEGLosslessPredictors.php │ │ │ ├── JPEGPointTransforms.php │ │ │ ├── JPEGProc.php │ │ │ ├── JPEGQTables.php │ │ │ ├── JPEGRestartInterval.php │ │ │ ├── JPEGTables.php │ │ │ ├── JPLCartoIFD.php │ │ │ ├── Lens.php │ │ │ ├── LensInfo.php │ │ │ ├── LensMake.php │ │ │ ├── LensModel.php │ │ │ ├── LensSerialNumber.php │ │ │ ├── LightSource.php │ │ │ ├── MDColorTable.php │ │ │ ├── MDFileTag.php │ │ │ ├── MDFileUnits.php │ │ │ ├── MDLabName.php │ │ │ ├── MDPrepDate.php │ │ │ ├── MDPrepTime.php │ │ │ ├── MDSampleInfo.php │ │ │ ├── MDScalePixel.php │ │ │ ├── MSDocumentText.php │ │ │ ├── MSDocumentTextPosition.php │ │ │ ├── MSPropertySetStorage.php │ │ │ ├── MakerNoteApple.php │ │ │ ├── MakerNoteCanon.php │ │ │ ├── MakerNoteCasio.php │ │ │ ├── MakerNoteCasio2.php │ │ │ ├── MakerNoteFLIR.php │ │ │ ├── MakerNoteFujiFilm.php │ │ │ ├── MakerNoteGE.php │ │ │ ├── MakerNoteGE2.php │ │ │ ├── MakerNoteHP.php │ │ │ ├── MakerNoteHP2.php │ │ │ ├── MakerNoteHP4.php │ │ │ ├── MakerNoteHP6.php │ │ │ ├── MakerNoteHasselblad.php │ │ │ ├── MakerNoteISL.php │ │ │ ├── MakerNoteJVC.php │ │ │ ├── MakerNoteJVCText.php │ │ │ ├── MakerNoteKodak10.php │ │ │ ├── MakerNoteKodak11.php │ │ │ ├── MakerNoteKodak1a.php │ │ │ ├── MakerNoteKodak1b.php │ │ │ ├── MakerNoteKodak2.php │ │ │ ├── MakerNoteKodak3.php │ │ │ ├── MakerNoteKodak4.php │ │ │ ├── MakerNoteKodak5.php │ │ │ ├── MakerNoteKodak6a.php │ │ │ ├── MakerNoteKodak6b.php │ │ │ ├── MakerNoteKodak7.php │ │ │ ├── MakerNoteKodak8a.php │ │ │ ├── MakerNoteKodak8b.php │ │ │ ├── MakerNoteKodak8c.php │ │ │ ├── MakerNoteKodak9.php │ │ │ ├── MakerNoteKodakUnknown.php │ │ │ ├── MakerNoteKyocera.php │ │ │ ├── MakerNoteLeica.php │ │ │ ├── MakerNoteLeica2.php │ │ │ ├── MakerNoteLeica3.php │ │ │ ├── MakerNoteLeica4.php │ │ │ ├── MakerNoteLeica5.php │ │ │ ├── MakerNoteLeica6.php │ │ │ ├── MakerNoteLeica7.php │ │ │ ├── MakerNoteLeica8.php │ │ │ ├── MakerNoteLeica9.php │ │ │ ├── MakerNoteMinolta.php │ │ │ ├── MakerNoteMinolta2.php │ │ │ ├── MakerNoteMinolta3.php │ │ │ ├── MakerNoteMotorola.php │ │ │ ├── MakerNoteNikon.php │ │ │ ├── MakerNoteNikon2.php │ │ │ ├── MakerNoteNikon3.php │ │ │ ├── MakerNoteNintendo.php │ │ │ ├── MakerNoteOlympus.php │ │ │ ├── MakerNoteOlympus2.php │ │ │ ├── MakerNotePanasonic.php │ │ │ ├── MakerNotePanasonic2.php │ │ │ ├── MakerNotePentax.php │ │ │ ├── MakerNotePentax2.php │ │ │ ├── MakerNotePentax3.php │ │ │ ├── MakerNotePentax4.php │ │ │ ├── MakerNotePentax5.php │ │ │ ├── MakerNotePentax6.php │ │ │ ├── MakerNotePhaseOne.php │ │ │ ├── MakerNoteReconyx.php │ │ │ ├── MakerNoteRicoh.php │ │ │ ├── MakerNoteRicoh2.php │ │ │ ├── MakerNoteRicohText.php │ │ │ ├── MakerNoteSamsung1a.php │ │ │ ├── MakerNoteSamsung1b.php │ │ │ ├── MakerNoteSamsung2.php │ │ │ ├── MakerNoteSanyo.php │ │ │ ├── MakerNoteSanyoC4.php │ │ │ ├── MakerNoteSanyoPatch.php │ │ │ ├── MakerNoteSigma.php │ │ │ ├── MakerNoteSony.php │ │ │ ├── MakerNoteSony2.php │ │ │ ├── MakerNoteSony3.php │ │ │ ├── MakerNoteSony4.php │ │ │ ├── MakerNoteSony5.php │ │ │ ├── MakerNoteSonyEricsson.php │ │ │ ├── MakerNoteSonySRF.php │ │ │ ├── MakerNoteUnknown.php │ │ │ ├── MakerNoteUnknownBinary.php │ │ │ ├── MakerNoteUnknownText.php │ │ │ ├── MatrixWorldToCamera.php │ │ │ ├── MatrixWorldToScreen.php │ │ │ ├── Matteing.php │ │ │ ├── MaxApertureValue.php │ │ │ ├── MeteringMode.php │ │ │ ├── ModeNumber.php │ │ │ ├── Model2.php │ │ │ ├── ModelTiePoint.php │ │ │ ├── ModelTransform.php │ │ │ ├── MoireFilter.php │ │ │ ├── MultiProfiles.php │ │ │ ├── Noise.php │ │ │ ├── NumberofInks.php │ │ │ ├── OPIProxy.php │ │ │ ├── OceApplicationSelector.php │ │ │ ├── OceIDNumber.php │ │ │ ├── OceImageLogic.php │ │ │ ├── OceScanjobDesc.php │ │ │ ├── OffsetSchema.php │ │ │ ├── OpcodeList1.php │ │ │ ├── OpcodeList2.php │ │ │ ├── OpcodeList3.php │ │ │ ├── OptoElectricConvFactor.php │ │ │ ├── OriginalFileName.php │ │ │ ├── OtherImageLength.php │ │ │ ├── OtherImageStart.php │ │ │ ├── OwnerName.php │ │ │ ├── Padding.php │ │ │ ├── PixelFormat.php │ │ │ ├── PixelIntensityRange.php │ │ │ ├── PixelMagicJBIGOptions.php │ │ │ ├── PixelScale.php │ │ │ ├── ProfileType.php │ │ │ ├── RasterPadding.php │ │ │ ├── RawFile.php │ │ │ ├── RawImageSegmentation.php │ │ │ ├── RecommendedExposureIndex.php │ │ │ ├── RegionXformTackPoint.php │ │ │ ├── RelatedSoundFile.php │ │ │ ├── RowInterleaveFactor.php │ │ │ ├── SMaxSampleValue.php │ │ │ ├── SMinSampleValue.php │ │ │ ├── SRawType.php │ │ │ ├── SampleFormat.php │ │ │ ├── Saturation.php │ │ │ ├── SceneCaptureType.php │ │ │ ├── SceneType.php │ │ │ ├── SecurityClassification.php │ │ │ ├── SelfTimerMode.php │ │ │ ├── SensingMethod.php │ │ │ ├── SensitivityType.php │ │ │ ├── SerialNumber.php │ │ │ ├── Shadows.php │ │ │ ├── SharedData.php │ │ │ ├── Sharpness.php │ │ │ ├── ShutterSpeedValue.php │ │ │ ├── Site.php │ │ │ ├── Smoothness.php │ │ │ ├── SonyRawFileType.php │ │ │ ├── SpatialFrequencyResponse.php │ │ │ ├── SpectralSensitivity.php │ │ │ ├── StandardOutputSensitivity.php │ │ │ ├── StoNits.php │ │ │ ├── StripByteCounts.php │ │ │ ├── StripOffsets.php │ │ │ ├── StripRowCounts.php │ │ │ ├── SubSecTime.php │ │ │ ├── SubSecTimeDigitized.php │ │ │ ├── SubSecTimeOriginal.php │ │ │ ├── SubTileBlockSize.php │ │ │ ├── SubjectArea.php │ │ │ ├── SubjectDistance.php │ │ │ ├── SubjectDistanceRange.php │ │ │ ├── SubjectLocation.php │ │ │ ├── T4Options.php │ │ │ ├── T6Options.php │ │ │ ├── T82Options.php │ │ │ ├── T88Options.php │ │ │ ├── TIFFEPStandardID.php │ │ │ ├── TIFFFXExtensions.php │ │ │ ├── TargetPrinter.php │ │ │ ├── TextureFormat.php │ │ │ ├── TileByteCounts.php │ │ │ ├── TileDepth.php │ │ │ ├── TileOffsets.php │ │ │ ├── TimeZoneOffset.php │ │ │ ├── TransferRange.php │ │ │ ├── Transformation.php │ │ │ ├── TransparencyIndicator.php │ │ │ ├── TrapIndicator.php │ │ │ ├── UIC1Tag.php │ │ │ ├── UIC2Tag.php │ │ │ ├── UIC3Tag.php │ │ │ ├── UIC4Tag.php │ │ │ ├── USPTOMiscellaneous.php │ │ │ ├── USPTOOriginalContentType.php │ │ │ ├── Uncompressed.php │ │ │ ├── UserComment.php │ │ │ ├── VersionYear.php │ │ │ ├── WBGRGBLevels.php │ │ │ ├── WangAnnotation.php │ │ │ ├── WangTag1.php │ │ │ ├── WangTag3.php │ │ │ ├── WangTag4.php │ │ │ ├── WarpQuadrilateral.php │ │ │ ├── WhiteBalance.php │ │ │ ├── WidthResolution.php │ │ │ ├── WrapModes.php │ │ │ ├── XClipPathUnits.php │ │ │ ├── XPDIPXML.php │ │ │ └── YClipPathUnits.php │ │ ├── ExifTool │ │ │ ├── Error.php │ │ │ ├── ExifToolVersion.php │ │ │ ├── FileSequence.php │ │ │ ├── NewGUID.php │ │ │ ├── Now.php │ │ │ ├── ProcessingTime.php │ │ │ └── Warning.php │ │ ├── FLAC │ │ │ ├── Application.php │ │ │ ├── BitsPerSample.php │ │ │ ├── BlockSizeMax.php │ │ │ ├── BlockSizeMin.php │ │ │ ├── Channels.php │ │ │ ├── CueSheet.php │ │ │ ├── FrameSizeMax.php │ │ │ ├── FrameSizeMin.php │ │ │ ├── Padding.php │ │ │ ├── Picture.php │ │ │ ├── PictureBitsPerPixel.php │ │ │ ├── PictureDescription.php │ │ │ ├── PictureHeight.php │ │ │ ├── PictureIndexedColors.php │ │ │ ├── PictureLength.php │ │ │ ├── PictureMIMEType.php │ │ │ ├── PictureType.php │ │ │ ├── PictureWidth.php │ │ │ ├── SampleRate.php │ │ │ ├── SeekTable.php │ │ │ └── TotalSamples.php │ │ ├── FLIR │ │ │ ├── AboveColor.php │ │ │ ├── ActualScaleMax.php │ │ │ ├── ActualScaleMin.php │ │ │ ├── AtmosphericTemperature.php │ │ │ ├── AtmosphericTransAlpha1.php │ │ │ ├── AtmosphericTransAlpha2.php │ │ │ ├── AtmosphericTransBeta1.php │ │ │ ├── AtmosphericTransBeta2.php │ │ │ ├── AtmosphericTransX.php │ │ │ ├── BAHPVer.php │ │ │ ├── BALPVer.php │ │ │ ├── BAVPVer.php │ │ │ ├── Battery.php │ │ │ ├── BelowColor.php │ │ │ ├── CalculatedScaleMax.php │ │ │ ├── CalculatedScaleMin.php │ │ │ ├── CamCore.php │ │ │ ├── CameraInfoByteOrder.php │ │ │ ├── CameraModel.php │ │ │ ├── CameraPartNumber.php │ │ │ ├── CameraScaleMax.php │ │ │ ├── CameraScaleMin.php │ │ │ ├── CameraSerialNumber.php │ │ │ ├── CameraSoftware.php │ │ │ ├── CameraTemperatureRangeMax.php │ │ │ ├── CameraTemperatureRangeMin.php │ │ │ ├── CoarseMapByteOrder.php │ │ │ ├── CoarseMapImage.php │ │ │ ├── CoarseMapImageHeight.php │ │ │ ├── CoarseMapImageType.php │ │ │ ├── CoarseMapImageWidth.php │ │ │ ├── ComputedAtmosphericTrans.php │ │ │ ├── CreatorSoftware.php │ │ │ ├── DateTimeGenerated.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── Detector.php │ │ │ ├── DetectorBoard.php │ │ │ ├── EmbeddedAudioFile.php │ │ │ ├── EmbeddedImage.php │ │ │ ├── EmbeddedImageByteOrder.php │ │ │ ├── EmbeddedImageHeight.php │ │ │ ├── EmbeddedImageType.php │ │ │ ├── EmbeddedImageWidth.php │ │ │ ├── Emissivity.php │ │ │ ├── EstimatedAtmosphericTrans.php │ │ │ ├── ExternalTriggerCount.php │ │ │ ├── FLIRUnknown.php │ │ │ ├── FPFVersion.php │ │ │ ├── FieldOfView.php │ │ │ ├── FilterModel.php │ │ │ ├── FilterPartNumber.php │ │ │ ├── FilterSerialNumber.php │ │ │ ├── FocusDistance.php │ │ │ ├── FocusStepCount.php │ │ │ ├── GIDCVer.php │ │ │ ├── GIDPVer.php │ │ │ ├── GIPCCPLD.php │ │ │ ├── GIPCVer.php │ │ │ ├── GIXIVer.php │ │ │ ├── GPSAltitude.php │ │ │ ├── GPSLatitude.php │ │ │ ├── GPSLongitude.php │ │ │ ├── GPSMapDatum.php │ │ │ ├── GainDeadMapByteOrder.php │ │ │ ├── GainDeadMapImage.php │ │ │ ├── GainDeadMapImageHeight.php │ │ │ ├── GainDeadMapImageType.php │ │ │ ├── GainDeadMapImageWidth.php │ │ │ ├── IRWindowTemperature.php │ │ │ ├── IRWindowTransmission.php │ │ │ ├── ImageDataOffset.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImagePixelFormat.php │ │ │ ├── ImageTemperatureMax.php │ │ │ ├── ImageTemperatureMin.php │ │ │ ├── ImageType.php │ │ │ ├── ImageWidth.php │ │ │ ├── Isotherm1Color.php │ │ │ ├── Isotherm2Color.php │ │ │ ├── Label0.php │ │ │ ├── Label1.php │ │ │ ├── Label2.php │ │ │ ├── Label3.php │ │ │ ├── LensModel.php │ │ │ ├── LensPartNumber.php │ │ │ ├── LensSerialNumber.php │ │ │ ├── MainBoard.php │ │ │ ├── Meas1Label.php │ │ │ ├── Meas1Params.php │ │ │ ├── Meas1Type.php │ │ │ ├── ObjectDistance.php │ │ │ ├── OffsetX.php │ │ │ ├── OffsetY.php │ │ │ ├── Optics.php │ │ │ ├── OverflowColor.php │ │ │ ├── PaintByteOrder.php │ │ │ ├── PaintImage.php │ │ │ ├── PaintImageHeight.php │ │ │ ├── PaintImageType.php │ │ │ ├── PaintImageWidth.php │ │ │ ├── Palette.php │ │ │ ├── PaletteColors.php │ │ │ ├── PaletteFileName.php │ │ │ ├── PaletteMethod.php │ │ │ ├── PaletteName.php │ │ │ ├── PaletteStretch.php │ │ │ ├── Param0.php │ │ │ ├── Param1.php │ │ │ ├── Param2.php │ │ │ ├── Param3.php │ │ │ ├── PartNumber.php │ │ │ ├── PeakSpectralSensitivity.php │ │ │ ├── PiPX1.php │ │ │ ├── PiPX2.php │ │ │ ├── PiPY1.php │ │ │ ├── PiPY2.php │ │ │ ├── PlanckB.php │ │ │ ├── PlanckF.php │ │ │ ├── PlanckO.php │ │ │ ├── PlanckR1.php │ │ │ ├── PlanckR2.php │ │ │ ├── RawDataByteOrder.php │ │ │ ├── RawThermalImage.php │ │ │ ├── RawThermalImageHeight.php │ │ │ ├── RawThermalImageType.php │ │ │ ├── RawThermalImageWidth.php │ │ │ ├── RawValueMedian.php │ │ │ ├── RawValueRange.php │ │ │ ├── Reading1Description.php │ │ │ ├── Reading1Device.php │ │ │ ├── Reading1Units.php │ │ │ ├── Reading1Value.php │ │ │ ├── Reading2Description.php │ │ │ ├── Reading2Device.php │ │ │ ├── Reading2Units.php │ │ │ ├── Reading2Value.php │ │ │ ├── Reading3Description.php │ │ │ ├── Reading3Device.php │ │ │ ├── Reading3Units.php │ │ │ ├── Reading3Value.php │ │ │ ├── Reading4Description.php │ │ │ ├── Reading4Device.php │ │ │ ├── Reading4Units.php │ │ │ ├── Reading4Value.php │ │ │ ├── Real2IR.php │ │ │ ├── ReferenceTemperature.php │ │ │ ├── ReflectedApparentTemperature.php │ │ │ ├── RelativeHumidity.php │ │ │ ├── SensorHeight.php │ │ │ ├── SensorWidth.php │ │ │ ├── SequenceFrameNumber.php │ │ │ ├── SoftwareComponents.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── UnderflowColor.php │ │ │ ├── Units.php │ │ │ ├── UnknownNumber.php │ │ │ ├── UnknownSerial1.php │ │ │ ├── UnknownSerial2.php │ │ │ ├── UnknownSerial3.php │ │ │ ├── UnknownSerial4.php │ │ │ ├── UnknownTemperature.php │ │ │ ├── UnknownTemperature1.php │ │ │ ├── UnknownTemperature2.php │ │ │ ├── UnknownTemperature3.php │ │ │ ├── UnknownTemperature4.php │ │ │ ├── UnknownTemperature5.php │ │ │ ├── UnknownTemperature6.php │ │ │ ├── Value0.php │ │ │ ├── Value1.php │ │ │ ├── Value2.php │ │ │ └── Value3.php │ │ ├── File │ │ │ ├── BackgroundColor.php │ │ │ ├── BitDepth.php │ │ │ ├── BitsPerPixel.php │ │ │ ├── BitsPerSample.php │ │ │ ├── ByteOrder.php │ │ │ ├── ColorComponents.php │ │ │ ├── ColorMode.php │ │ │ ├── Comment.php │ │ │ ├── ComponentsConfiguration.php │ │ │ ├── Compression.php │ │ │ ├── Copyright.php │ │ │ ├── CreateDate.php │ │ │ ├── Creator.php │ │ │ ├── CurrentIPTCDigest.php │ │ │ ├── DPXFileSize.php │ │ │ ├── DataSign.php │ │ │ ├── DittoKey.php │ │ │ ├── EncodingProcess.php │ │ │ ├── EncryptionKey.php │ │ │ ├── ExifByteOrder.php │ │ │ ├── ExifUnicodeByteOrder.php │ │ │ ├── FileType.php │ │ │ ├── FileTypeExtension.php │ │ │ ├── FrameID.php │ │ │ ├── FrameRate.php │ │ │ ├── Geosync.php │ │ │ ├── Geotag.php │ │ │ ├── Geotime.php │ │ │ ├── HardLink.php │ │ │ ├── HeaderVersion.php │ │ │ ├── ID3Size.php │ │ │ ├── Image2Description.php │ │ │ ├── Image3Description.php │ │ │ ├── Image4Description.php │ │ │ ├── Image5Description.php │ │ │ ├── Image6Description.php │ │ │ ├── Image7Description.php │ │ │ ├── Image8Description.php │ │ │ ├── ImageDescription.php │ │ │ ├── ImageElements.php │ │ │ ├── ImageFileName.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageLength.php │ │ │ ├── ImageWidth.php │ │ │ ├── InputDeviceName.php │ │ │ ├── InputDeviceSerialNumber.php │ │ │ ├── JPEGDigest.php │ │ │ ├── JPEGQualityEstimate.php │ │ │ ├── MIMEType.php │ │ │ ├── MaxVal.php │ │ │ ├── NumColors.php │ │ │ ├── NumImportantColors.php │ │ │ ├── Orientation.php │ │ │ ├── PGFVersion.php │ │ │ ├── PixelsPerMeterX.php │ │ │ ├── PixelsPerMeterY.php │ │ │ ├── Planes.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewPNG.php │ │ │ ├── PreviewWMF.php │ │ │ ├── Project.php │ │ │ ├── PyramidLevels.php │ │ │ ├── Quality.php │ │ │ ├── RAFVersion.php │ │ │ ├── SlateInformation.php │ │ │ ├── SourceCreateDate.php │ │ │ ├── SourceFileName.php │ │ │ ├── TestName.php │ │ │ ├── UserID.php │ │ │ ├── XResolution.php │ │ │ ├── YCbCrSubSampling.php │ │ │ └── YResolution.php │ │ ├── Flash │ │ │ ├── AudioBitrate.php │ │ │ ├── AudioBitsPerSample.php │ │ │ ├── AudioChannels.php │ │ │ ├── AudioCodecID.php │ │ │ ├── AudioDelay.php │ │ │ ├── AudioEncoding.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── AudioSampleSize.php │ │ │ ├── AudioSize.php │ │ │ ├── ByteLength.php │ │ │ ├── CanSeekOnTime.php │ │ │ ├── CanSeekToEnd.php │ │ │ ├── Compressed.php │ │ │ ├── CreateDate.php │ │ │ ├── CreatedBy.php │ │ │ ├── DataSize.php │ │ │ ├── Duration.php │ │ │ ├── FileSizeBytes.php │ │ │ ├── FlashAttributes.php │ │ │ ├── FlashVersion.php │ │ │ ├── FrameCount.php │ │ │ ├── FrameRate.php │ │ │ ├── HTTPHostHeader.php │ │ │ ├── HasAudio.php │ │ │ ├── HasCuePoints.php │ │ │ ├── HasKeyFrames.php │ │ │ ├── HasMetadata.php │ │ │ ├── HasVideo.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── KeyFramePositions.php │ │ │ ├── KeyFramesTimes.php │ │ │ ├── LastKeyFrameTime.php │ │ │ ├── LastTimeStamp.php │ │ │ ├── Message.php │ │ │ ├── MetadataCreator.php │ │ │ ├── MetadataDate.php │ │ │ ├── Name.php │ │ │ ├── SourceData.php │ │ │ ├── StartTime.php │ │ │ ├── Stereo.php │ │ │ ├── Time.php │ │ │ ├── TotalDataRate.php │ │ │ ├── TotalDuration.php │ │ │ ├── Type.php │ │ │ ├── URL.php │ │ │ ├── VideoBitrate.php │ │ │ ├── VideoCodecID.php │ │ │ ├── VideoEncoding.php │ │ │ └── VideoSize.php │ │ ├── FlashPix │ │ │ ├── AppVersion.php │ │ │ ├── AudioStream.php │ │ │ ├── Author.php │ │ │ ├── Authorship.php │ │ │ ├── BackLight.php │ │ │ ├── BrightnessValue.php │ │ │ ├── Bytes.php │ │ │ ├── CFAPattern.php │ │ │ ├── CachedImageHeight.php │ │ │ ├── CachedImageWidth.php │ │ │ ├── CaptionText.php │ │ │ ├── Category.php │ │ │ ├── CharCountWithSpaces.php │ │ │ ├── Characters.php │ │ │ ├── CodePage.php │ │ │ ├── ColorTwistMatrix.php │ │ │ ├── Comments.php │ │ │ ├── CompObjUserType.php │ │ │ ├── CompObjUserTypeLen.php │ │ │ ├── Company.php │ │ │ ├── ContentDescriptionNotes.php │ │ │ ├── ContrastAdjustment.php │ │ │ ├── Copyright.php │ │ │ ├── CreateDate.php │ │ │ ├── CreatingApplication.php │ │ │ ├── CreatingTransform.php │ │ │ ├── CreationPathVector.php │ │ │ ├── CurrentUser.php │ │ │ ├── DataCreateDate.php │ │ │ ├── DataModifyDate.php │ │ │ ├── DataObjectID.php │ │ │ ├── DataObjectStatus.php │ │ │ ├── DataObjectTitle.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DecimationMethod.php │ │ │ ├── DecimationPrefilterWidth.php │ │ │ ├── DefaultDisplayHeight.php │ │ │ ├── DefaultDisplayWidth.php │ │ │ ├── Dictionary.php │ │ │ ├── DigitalImageBroker.php │ │ │ ├── DisplayUnits.php │ │ │ ├── Events.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureIndex.php │ │ │ ├── ExposureProgram.php │ │ │ ├── ExposureTime.php │ │ │ ├── ExtensionClassID.php │ │ │ ├── ExtensionCreateDate.php │ │ │ ├── ExtensionDescription.php │ │ │ ├── ExtensionModifyDate.php │ │ │ ├── ExtensionName.php │ │ │ ├── ExtensionPersistence.php │ │ │ ├── FNumber.php │ │ │ ├── FileSource.php │ │ │ ├── FilmBrand.php │ │ │ ├── FilmCategory.php │ │ │ ├── FilmFrameNumber.php │ │ │ ├── FilmRollNumber.php │ │ │ ├── FilmSize.php │ │ │ ├── Filtering.php │ │ │ ├── Flash.php │ │ │ ├── FlashEnergy.php │ │ │ ├── FlashPixStreamFieldOffset.php │ │ │ ├── FlashPixStreamPathname.php │ │ │ ├── FlashReturn.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalPlaneResolutionUnit.php │ │ │ ├── FocalPlaneXResolution.php │ │ │ ├── FocalPlaneYResolution.php │ │ │ ├── GroupCaption.php │ │ │ ├── HeadingPairs.php │ │ │ ├── HiddenSlides.php │ │ │ ├── HyperlinkBase.php │ │ │ ├── Hyperlinks.php │ │ │ ├── HyperlinksChanged.php │ │ │ ├── ISO.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── InputDataObjectList.php │ │ │ ├── IntellectualPropertyNotes.php │ │ │ ├── JPEGTables.php │ │ │ ├── Keywords.php │ │ │ ├── LastModifiedBy.php │ │ │ ├── LastModifier.php │ │ │ ├── LastPrinted.php │ │ │ ├── LightSource.php │ │ │ ├── Lines.php │ │ │ ├── LinksUpToDate.php │ │ │ ├── LocaleIndicator.php │ │ │ ├── LockedPropertyList.php │ │ │ ├── MMClips.php │ │ │ ├── Make.php │ │ │ ├── Manager.php │ │ │ ├── MaxApertureValue.php │ │ │ ├── MaxJPEGTableIndex.php │ │ │ ├── MaximumImageIndex.php │ │ │ ├── MaximumOperationIndex.php │ │ │ ├── MaximumTransformIndex.php │ │ │ ├── MeteringMode.php │ │ │ ├── Model.php │ │ │ ├── ModifyDate.php │ │ │ ├── Notes.php │ │ │ ├── NumChannels.php │ │ │ ├── NumberOfResolutions.php │ │ │ ├── OperationClassID.php │ │ │ ├── OperationID.php │ │ │ ├── OperationNumber.php │ │ │ ├── OptoElectricConvFactor.php │ │ │ ├── OriginalDocumentSize.php │ │ │ ├── OriginalImageBroker.php │ │ │ ├── OriginalMedium.php │ │ │ ├── OriginalScannedImageSize.php │ │ │ ├── OutputDataObjectList.php │ │ │ ├── Pages.php │ │ │ ├── Paragraphs.php │ │ │ ├── People.php │ │ │ ├── PerPictureNotes.php │ │ │ ├── Places.php │ │ │ ├── PresentationTarget.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewImageHeight.php │ │ │ ├── PreviewImageWidth.php │ │ │ ├── PropertySetIDCodes.php │ │ │ ├── PropertySetPathname.php │ │ │ ├── PropertyVectorElements.php │ │ │ ├── RectangleOfInterest.php │ │ │ ├── ResultAspectRatio.php │ │ │ ├── RevisionNumber.php │ │ │ ├── ScaleCrop.php │ │ │ ├── ScanDate.php │ │ │ ├── ScanOperatorID.php │ │ │ ├── ScanSoftware.php │ │ │ ├── ScanSoftwareRevisionDate.php │ │ │ ├── ScannerMake.php │ │ │ ├── ScannerModel.php │ │ │ ├── ScannerPixelSize.php │ │ │ ├── ScannerSerialNumber.php │ │ │ ├── SceneType.php │ │ │ ├── ScreenNail.php │ │ │ ├── Security.php │ │ │ ├── SensingMethod.php │ │ │ ├── SerialNumber.php │ │ │ ├── ServiceOrganizationName.php │ │ │ ├── SharedDoc.php │ │ │ ├── SharpnessApproximation.php │ │ │ ├── Slides.php │ │ │ ├── Software.php │ │ │ ├── SoftwareRelease.php │ │ │ ├── SpatialFrequencyResponse.php │ │ │ ├── SpatialOrientation.php │ │ │ ├── SpecialEffectsOpticalFilter.php │ │ │ ├── StorageStreamPathname.php │ │ │ ├── SubimageColor.php │ │ │ ├── SubimageHeight.php │ │ │ ├── SubimageICCProfile.php │ │ │ ├── SubimageNumericalFormat.php │ │ │ ├── SubimageResolutions.php │ │ │ ├── SubimageTileCount.php │ │ │ ├── SubimageTileHeight.php │ │ │ ├── SubimageTileWidth.php │ │ │ ├── SubimageWidth.php │ │ │ ├── Subject.php │ │ │ ├── SubjectDistance.php │ │ │ ├── SubjectLocation.php │ │ │ ├── Template.php │ │ │ ├── TestTarget.php │ │ │ ├── Things.php │ │ │ ├── ThumbnailClip.php │ │ │ ├── Title.php │ │ │ ├── TitleOfParts.php │ │ │ ├── TotalEditTime.php │ │ │ ├── TransformCreateDate.php │ │ │ ├── TransformModifyDate.php │ │ │ ├── TransformNodeID.php │ │ │ ├── TransformTitle.php │ │ │ ├── TransformedImageTitle.php │ │ │ ├── TypeOfOriginal.php │ │ │ ├── UsedExtensionNumbers.php │ │ │ ├── UserDefinedID.php │ │ │ ├── UsingTransforms.php │ │ │ ├── VisibleOutputs.php │ │ │ └── Words.php │ │ ├── Font │ │ │ ├── Ascender.php │ │ │ ├── Ascent.php │ │ │ ├── AvgWidth.php │ │ │ ├── BreakChar.php │ │ │ ├── CapHeight.php │ │ │ ├── CharacterSet.php │ │ │ ├── Characters.php │ │ │ ├── CompatibleFontName.php │ │ │ ├── Copyright.php │ │ │ ├── CreateDate.php │ │ │ ├── DefaultChar.php │ │ │ ├── Descender.php │ │ │ ├── Description.php │ │ │ ├── Designer.php │ │ │ ├── DesignerURL.php │ │ │ ├── EncodingScheme.php │ │ │ ├── EscChar.php │ │ │ ├── ExternalLeading.php │ │ │ ├── FSType.php │ │ │ ├── FirstChar.php │ │ │ ├── FontFamily.php │ │ │ ├── FontName.php │ │ │ ├── FontSubfamily.php │ │ │ ├── FontSubfamilyID.php │ │ │ ├── FontType.php │ │ │ ├── FullName.php │ │ │ ├── InternalLeading.php │ │ │ ├── IsBaseFont.php │ │ │ ├── IsFixedPitch.php │ │ │ ├── IsFixedV.php │ │ │ ├── Italic.php │ │ │ ├── ItalicAngle.php │ │ │ ├── LastChar.php │ │ │ ├── License.php │ │ │ ├── LicenseInfoURL.php │ │ │ ├── Manufacturer.php │ │ │ ├── MappingScheme.php │ │ │ ├── MaxWidth.php │ │ │ ├── NameTableVersion.php │ │ │ ├── Notice.php │ │ │ ├── NumFonts.php │ │ │ ├── PFMVersion.php │ │ │ ├── PitchAndFamily.php │ │ │ ├── PixHeight.php │ │ │ ├── PixWidth.php │ │ │ ├── PointSize.php │ │ │ ├── PostScriptFontName.php │ │ │ ├── PreferredFamily.php │ │ │ ├── PreferredSubfamily.php │ │ │ ├── SampleText.php │ │ │ ├── Strikeout.php │ │ │ ├── Trademark.php │ │ │ ├── Underline.php │ │ │ ├── UnderlinePosition.php │ │ │ ├── UnderlineThickness.php │ │ │ ├── VendorURL.php │ │ │ ├── Version.php │ │ │ ├── WWSFamilyName.php │ │ │ ├── WWSSubfamilyName.php │ │ │ ├── Weight.php │ │ │ ├── WidthBytes.php │ │ │ ├── XHeight.php │ │ │ ├── XResolution.php │ │ │ └── YResolution.php │ │ ├── FotoStation │ │ │ ├── ColorPlanes.php │ │ │ ├── CropBottom.php │ │ │ ├── CropLeft.php │ │ │ ├── CropRight.php │ │ │ ├── CropRotation.php │ │ │ ├── CropTop.php │ │ │ ├── OriginalImageHeight.php │ │ │ ├── OriginalImageWidth.php │ │ │ ├── PreviewImage.php │ │ │ ├── Rotation.php │ │ │ ├── ThumbnailImage.php │ │ │ └── XYResolution.php │ │ ├── FujiFilm │ │ │ ├── AFMode.php │ │ │ ├── AdvancedFilter.php │ │ │ ├── AutoBracketing.php │ │ │ ├── AutoDynamicRange.php │ │ │ ├── BlurWarning.php │ │ │ ├── ColorMode.php │ │ │ ├── ColorTemperature.php │ │ │ ├── Contrast.php │ │ │ ├── DevelopmentDynamicRange.php │ │ │ ├── DynamicRange.php │ │ │ ├── DynamicRangeSetting.php │ │ │ ├── EXRAuto.php │ │ │ ├── EXRMode.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureCount.php │ │ │ ├── ExposureTime.php │ │ │ ├── ExposureWarning.php │ │ │ ├── FNumber.php │ │ │ ├── Face1Birthday.php │ │ │ ├── Face1Category.php │ │ │ ├── Face1Name.php │ │ │ ├── Face2Birthday.php │ │ │ ├── Face2Category.php │ │ │ ├── Face2Name.php │ │ │ ├── Face3Birthday.php │ │ │ ├── Face3Category.php │ │ │ ├── Face3Name.php │ │ │ ├── Face4Birthday.php │ │ │ ├── Face4Category.php │ │ │ ├── Face4Name.php │ │ │ ├── Face5Birthday.php │ │ │ ├── Face5Category.php │ │ │ ├── Face5Name.php │ │ │ ├── Face6Birthday.php │ │ │ ├── Face6Category.php │ │ │ ├── Face6Name.php │ │ │ ├── Face7Birthday.php │ │ │ ├── Face7Category.php │ │ │ ├── Face7Name.php │ │ │ ├── Face8Birthday.php │ │ │ ├── Face8Category.php │ │ │ ├── Face8Name.php │ │ │ ├── FacePositions.php │ │ │ ├── FacesDetected.php │ │ │ ├── FileSource.php │ │ │ ├── FilmMode.php │ │ │ ├── FlashExposureComp.php │ │ │ ├── FocusMode.php │ │ │ ├── FocusPixel.php │ │ │ ├── FocusWarning.php │ │ │ ├── FrameHeight.php │ │ │ ├── FrameNumber.php │ │ │ ├── FrameRate.php │ │ │ ├── FrameWidth.php │ │ │ ├── FujiFlashMode.php │ │ │ ├── GEImageSize.php │ │ │ ├── HighISONoiseReduction.php │ │ │ ├── HighlightTone.php │ │ │ ├── ImageCount.php │ │ │ ├── ImageGeneration.php │ │ │ ├── ImageStabilization.php │ │ │ ├── InternalSerialNumber.php │ │ │ ├── Macro.php │ │ │ ├── Make.php │ │ │ ├── MaxApertureAtMaxFocal.php │ │ │ ├── MaxApertureAtMinFocal.php │ │ │ ├── MaxFocalLength.php │ │ │ ├── MinFocalLength.php │ │ │ ├── Model.php │ │ │ ├── MovieStreamName.php │ │ │ ├── NoiseReduction.php │ │ │ ├── OrderNumber.php │ │ │ ├── Parallax.php │ │ │ ├── PictureMode.php │ │ │ ├── Quality.php │ │ │ ├── Rating.php │ │ │ ├── RawImageHeight.php │ │ │ ├── RawImageWidth.php │ │ │ ├── Saturation.php │ │ │ ├── SequenceNumber.php │ │ │ ├── ShadowTone.php │ │ │ ├── Sharpness.php │ │ │ ├── ShutterType.php │ │ │ ├── SlowSync.php │ │ │ ├── Version.php │ │ │ ├── WhiteBalance.php │ │ │ └── WhiteBalanceFineTune.php │ │ ├── FujiIFD │ │ │ ├── BitsPerSample.php │ │ │ ├── BlackLevel.php │ │ │ ├── RawImageFullHeight.php │ │ │ ├── RawImageFullWidth.php │ │ │ ├── StripByteCounts.php │ │ │ ├── StripOffsets.php │ │ │ ├── WBGRBLevels.php │ │ │ ├── WBGRBLevelsAuto.php │ │ │ └── WBGRBLevelsStandard.php │ │ ├── GE │ │ │ ├── GEMake.php │ │ │ ├── GEModel.php │ │ │ └── Macro.php │ │ ├── GIF │ │ │ ├── AnimationIterations.php │ │ │ ├── BackgroundColor.php │ │ │ ├── BitsPerPixel.php │ │ │ ├── ColorResolutionDepth.php │ │ │ ├── Comment.php │ │ │ ├── Duration.php │ │ │ ├── FrameCount.php │ │ │ ├── GIFVersion.php │ │ │ ├── HasColorMap.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ └── Text.php │ │ ├── GIMP │ │ │ ├── ColorMode.php │ │ │ ├── Comment.php │ │ │ ├── Compression.php │ │ │ ├── ICCProfileName.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── XCFVersion.php │ │ │ ├── XResolution.php │ │ │ └── YResolution.php │ │ ├── GPS │ │ │ ├── GPSAltitude.php │ │ │ ├── GPSAltitudeRef.php │ │ │ ├── GPSAreaInformation.php │ │ │ ├── GPSDOP.php │ │ │ ├── GPSDateStamp.php │ │ │ ├── GPSDestBearing.php │ │ │ ├── GPSDestBearingRef.php │ │ │ ├── GPSDestDistance.php │ │ │ ├── GPSDestDistanceRef.php │ │ │ ├── GPSDestLatitude.php │ │ │ ├── GPSDestLatitudeRef.php │ │ │ ├── GPSDestLongitude.php │ │ │ ├── GPSDestLongitudeRef.php │ │ │ ├── GPSDifferential.php │ │ │ ├── GPSHPositioningError.php │ │ │ ├── GPSImgDirection.php │ │ │ ├── GPSImgDirectionRef.php │ │ │ ├── GPSLatitude.php │ │ │ ├── GPSLatitudeRef.php │ │ │ ├── GPSLongitude.php │ │ │ ├── GPSLongitudeRef.php │ │ │ ├── GPSMapDatum.php │ │ │ ├── GPSMeasureMode.php │ │ │ ├── GPSProcessingMethod.php │ │ │ ├── GPSSatellites.php │ │ │ ├── GPSSpeed.php │ │ │ ├── GPSSpeedRef.php │ │ │ ├── GPSStatus.php │ │ │ ├── GPSTimeStamp.php │ │ │ ├── GPSTrack.php │ │ │ ├── GPSTrackRef.php │ │ │ └── GPSVersionID.php │ │ ├── GeoTiff │ │ │ ├── ChartContourInterval.php │ │ │ ├── ChartCorrDate.php │ │ │ ├── ChartCountryOrigin.php │ │ │ ├── ChartDepthUnits.php │ │ │ ├── ChartFormat.php │ │ │ ├── ChartMagVar.php │ │ │ ├── ChartMagVarAnnChange.php │ │ │ ├── ChartMagVarYear.php │ │ │ ├── ChartRasterEdition.php │ │ │ ├── ChartSoundingDatum.php │ │ │ ├── ChartSource.php │ │ │ ├── ChartSourceDate.php │ │ │ ├── ChartSourceEdition.php │ │ │ ├── ChartWGSNSShift.php │ │ │ ├── GTCitation.php │ │ │ ├── GTModelType.php │ │ │ ├── GTRasterType.php │ │ │ ├── GeoTiffVersion.php │ │ │ ├── GeogAngularUnitSize.php │ │ │ ├── GeogAngularUnits.php │ │ │ ├── GeogAzimuthUnits.php │ │ │ ├── GeogCitation.php │ │ │ ├── GeogEllipsoid.php │ │ │ ├── GeogGeodeticDatum.php │ │ │ ├── GeogInvFlattening.php │ │ │ ├── GeogLinearUnitSize.php │ │ │ ├── GeogLinearUnits.php │ │ │ ├── GeogPrimeMeridian.php │ │ │ ├── GeogPrimeMeridianLong.php │ │ │ ├── GeogSemiMajorAxis.php │ │ │ ├── GeogSemiMinorAxis.php │ │ │ ├── GeogToWGS84.php │ │ │ ├── GeographicType.php │ │ │ ├── InsetNWPixelX.php │ │ │ ├── InsetNWPixelY.php │ │ │ ├── PCSCitation.php │ │ │ ├── ProjAzimuthAngle.php │ │ │ ├── ProjCenterEasting.php │ │ │ ├── ProjCenterLat.php │ │ │ ├── ProjCenterLong.php │ │ │ ├── ProjCenterNorthing.php │ │ │ ├── ProjCoordTrans.php │ │ │ ├── ProjFalseEasting.php │ │ │ ├── ProjFalseNorthing.php │ │ │ ├── ProjFalseOriginEasting.php │ │ │ ├── ProjFalseOriginLat.php │ │ │ ├── ProjFalseOriginLong.php │ │ │ ├── ProjFalseOriginNorthing.php │ │ │ ├── ProjLinearUnitSize.php │ │ │ ├── ProjLinearUnits.php │ │ │ ├── ProjNatOriginLat.php │ │ │ ├── ProjNatOriginLong.php │ │ │ ├── ProjRectifiedGridAngle.php │ │ │ ├── ProjScaleAtCenter.php │ │ │ ├── ProjScaleAtNatOrigin.php │ │ │ ├── ProjStdParallel1.php │ │ │ ├── ProjStdParallel2.php │ │ │ ├── ProjStraightVertPoleLong.php │ │ │ ├── ProjectedCSType.php │ │ │ ├── Projection.php │ │ │ ├── VerticalCSType.php │ │ │ ├── VerticalCitation.php │ │ │ ├── VerticalDatum.php │ │ │ └── VerticalUnits.php │ │ ├── GraphConv │ │ │ └── Quality.php │ │ ├── H264 │ │ │ ├── ApertureSetting.php │ │ │ ├── BrightnessValue.php │ │ │ ├── CaptureFrameRate.php │ │ │ ├── CustomRendered.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureProgram.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── Flash.php │ │ │ ├── FocalLengthIn35mmFormat.php │ │ │ ├── Focus.php │ │ │ ├── Gain.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageStabilization.php │ │ │ ├── ImageWidth.php │ │ │ ├── Make.php │ │ │ ├── MaxApertureValue.php │ │ │ ├── Model.php │ │ │ ├── RecordingMode.php │ │ │ ├── SceneCaptureType.php │ │ │ ├── TimeCode.php │ │ │ ├── VideoFrameRate.php │ │ │ └── WhiteBalance.php │ │ ├── HP │ │ │ ├── CameraDateTime.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── ISO.php │ │ │ ├── LensShading.php │ │ │ ├── MaxAperture.php │ │ │ ├── PreviewImage.php │ │ │ └── SerialNumber.php │ │ ├── HTML │ │ │ ├── Abstract0.php │ │ │ ├── Author.php │ │ │ ├── Classification.php │ │ │ ├── ContentLanguage.php │ │ │ ├── Copyright.php │ │ │ ├── Description.php │ │ │ ├── Distribution.php │ │ │ ├── DocClass.php │ │ │ ├── DocRights.php │ │ │ ├── DocType.php │ │ │ ├── Formatter.php │ │ │ ├── Generator.php │ │ │ ├── GeneratorVersion.php │ │ │ ├── GoogleBot.php │ │ │ ├── Keywords.php │ │ │ ├── NoMSSmartTags.php │ │ │ ├── Originator.php │ │ │ ├── Owner.php │ │ │ ├── ProgID.php │ │ │ ├── Rating.php │ │ │ ├── Refresh.php │ │ │ ├── ResourceType.php │ │ │ ├── RevisitAfter.php │ │ │ ├── Robots.php │ │ │ └── Title.php │ │ ├── HTMLDc │ │ │ ├── Contributor.php │ │ │ ├── Coverage.php │ │ │ ├── Creator.php │ │ │ ├── Date.php │ │ │ ├── Description.php │ │ │ ├── Format.php │ │ │ ├── Identifier.php │ │ │ ├── Language.php │ │ │ ├── Publisher.php │ │ │ ├── Relation.php │ │ │ ├── Rights.php │ │ │ ├── Source.php │ │ │ ├── Subject.php │ │ │ ├── Title.php │ │ │ └── Type.php │ │ ├── HTMLNcc │ │ │ ├── CharacterSet.php │ │ │ ├── Depth.php │ │ │ ├── Duration.php │ │ │ ├── Files.php │ │ │ ├── Footnotes.php │ │ │ ├── Generator.php │ │ │ ├── KByteSize.php │ │ │ ├── MaxPageNormal.php │ │ │ ├── MultimediaType.php │ │ │ ├── Narrator.php │ │ │ ├── PageFront.php │ │ │ ├── PageNormal.php │ │ │ ├── PageSpecial.php │ │ │ ├── ProdNotes.php │ │ │ ├── ProducedDate.php │ │ │ ├── Producer.php │ │ │ ├── Revision.php │ │ │ ├── RevisionDate.php │ │ │ ├── SetInfo.php │ │ │ ├── Sidebars.php │ │ │ ├── SourceDate.php │ │ │ ├── SourceEdition.php │ │ │ ├── SourcePublisher.php │ │ │ ├── SourceRights.php │ │ │ ├── SourceTitle.php │ │ │ └── TOCItems.php │ │ ├── HTMLOffice │ │ │ ├── Author.php │ │ │ ├── Category.php │ │ │ ├── Characters.php │ │ │ ├── CharactersWithSpaces.php │ │ │ ├── Company.php │ │ │ ├── CreateDate.php │ │ │ ├── Description.php │ │ │ ├── Keywords.php │ │ │ ├── LastAuthor.php │ │ │ ├── LastPrinted.php │ │ │ ├── Lines.php │ │ │ ├── Manager.php │ │ │ ├── ModifyDate.php │ │ │ ├── Pages.php │ │ │ ├── Paragraphs.php │ │ │ ├── RevisionNumber.php │ │ │ ├── Subject.php │ │ │ ├── Template.php │ │ │ ├── TotalEditTime.php │ │ │ └── Words.php │ │ ├── HTMLProd │ │ │ ├── RecEngineer.php │ │ │ └── RecLocation.php │ │ ├── HTMLVw96 │ │ │ └── ObjectType.php │ │ ├── HTTPEquiv │ │ │ ├── CacheControl.php │ │ │ ├── ContentDisposition.php │ │ │ ├── ContentLanguage.php │ │ │ ├── ContentScriptType.php │ │ │ ├── ContentStyleType.php │ │ │ ├── ContentType.php │ │ │ ├── DefaultStyle.php │ │ │ ├── Expires.php │ │ │ ├── ExtCache.php │ │ │ ├── ImageToolbar.php │ │ │ ├── Lotus.php │ │ │ ├── PageEnter.php │ │ │ ├── PageExit.php │ │ │ ├── PicsLabel.php │ │ │ ├── Pragma.php │ │ │ ├── Refresh.php │ │ │ ├── ReplyTo.php │ │ │ ├── SetCookie.php │ │ │ ├── SiteEnter.php │ │ │ ├── SiteExit.php │ │ │ ├── Vary.php │ │ │ └── WindowTarget.php │ │ ├── ICCChrm │ │ │ ├── ChromaticityChannel1.php │ │ │ ├── ChromaticityChannel2.php │ │ │ ├── ChromaticityChannel3.php │ │ │ ├── ChromaticityChannel4.php │ │ │ ├── ChromaticityChannels.php │ │ │ └── ChromaticityColorant.php │ │ ├── ICCClrt │ │ │ ├── Colorant1Coordinates.php │ │ │ ├── Colorant1Name.php │ │ │ ├── Colorant2Coordinates.php │ │ │ ├── Colorant2Name.php │ │ │ ├── Colorant3Coordinates.php │ │ │ ├── Colorant3Name.php │ │ │ └── ColorantCount.php │ │ ├── ICCHeader │ │ │ ├── CMMFlags.php │ │ │ ├── ColorSpaceData.php │ │ │ ├── ConnectionSpaceIlluminant.php │ │ │ ├── DeviceAttributes.php │ │ │ ├── DeviceManufacturer.php │ │ │ ├── DeviceModel.php │ │ │ ├── PrimaryPlatform.php │ │ │ ├── ProfileCMMType.php │ │ │ ├── ProfileClass.php │ │ │ ├── ProfileConnectionSpace.php │ │ │ ├── ProfileCreator.php │ │ │ ├── ProfileDateTime.php │ │ │ ├── ProfileFileSignature.php │ │ │ ├── ProfileID.php │ │ │ ├── ProfileVersion.php │ │ │ └── RenderingIntent.php │ │ ├── ICCMeas │ │ │ ├── MeasurementBacking.php │ │ │ ├── MeasurementFlare.php │ │ │ ├── MeasurementGeometry.php │ │ │ ├── MeasurementIlluminant.php │ │ │ └── MeasurementObserver.php │ │ ├── ICCMeta │ │ │ ├── ManufacturerName.php │ │ │ ├── MediaColor.php │ │ │ └── MediaWeight.php │ │ ├── ICCProfile │ │ │ ├── AToB0.php │ │ │ ├── AToB1.php │ │ │ ├── AToB2.php │ │ │ ├── BToA0.php │ │ │ ├── BToA1.php │ │ │ ├── BToA2.php │ │ │ ├── BToD0.php │ │ │ ├── BToD1.php │ │ │ ├── BToD2.php │ │ │ ├── BToD3.php │ │ │ ├── BlueMatrixColumn.php │ │ │ ├── BlueTRC.php │ │ │ ├── CRDInfo.php │ │ │ ├── CalibrationDateTime.php │ │ │ ├── CharTarget.php │ │ │ ├── ChromaticAdaptation.php │ │ │ ├── ColorantOrder.php │ │ │ ├── ColorantTableOut.php │ │ │ ├── ColorimetricIntentImageState.php │ │ │ ├── DToB0.php │ │ │ ├── DToB1.php │ │ │ ├── DToB2.php │ │ │ ├── DToB3.php │ │ │ ├── DeviceMfgDesc.php │ │ │ ├── DeviceModelDesc.php │ │ │ ├── DeviceSettings.php │ │ │ ├── FocalPlaneColorimetryEstimates.php │ │ │ ├── Gamut.php │ │ │ ├── GrayTRC.php │ │ │ ├── GreenMatrixColumn.php │ │ │ ├── GreenTRC.php │ │ │ ├── ICCProfile.php │ │ │ ├── Luminance.php │ │ │ ├── MakeAndModel.php │ │ │ ├── MediaBlackPoint.php │ │ │ ├── MediaWhitePoint.php │ │ │ ├── NamedColor.php │ │ │ ├── NamedColor2.php │ │ │ ├── NativeDisplayInfo.php │ │ │ ├── OutputResponse.php │ │ │ ├── PS2CRDVMSize.php │ │ │ ├── PS2RenderingIntent.php │ │ │ ├── PerceptualRenderingIntentGamut.php │ │ │ ├── PostScript2CRD0.php │ │ │ ├── PostScript2CRD1.php │ │ │ ├── PostScript2CRD2.php │ │ │ ├── PostScript2CSA.php │ │ │ ├── Preview0.php │ │ │ ├── Preview1.php │ │ │ ├── Preview2.php │ │ │ ├── ProfileCopyright.php │ │ │ ├── ProfileDescription.php │ │ │ ├── ProfileDescriptionML.php │ │ │ ├── ProfileSequenceDesc.php │ │ │ ├── ProfileSequenceIdentifier.php │ │ │ ├── RedMatrixColumn.php │ │ │ ├── RedTRC.php │ │ │ ├── ReflectionHardcopyOrigColorimetry.php │ │ │ ├── ReflectionPrintOutputColorimetry.php │ │ │ ├── SaturationRenderingIntentGamut.php │ │ │ ├── SceneAppearanceEstimates.php │ │ │ ├── SceneColorimetryEstimates.php │ │ │ ├── Screening.php │ │ │ ├── ScreeningDesc.php │ │ │ ├── Technology.php │ │ │ ├── UCRBG.php │ │ │ ├── VideoCardGamma.php │ │ │ ├── ViewingCondDesc.php │ │ │ └── WCSProfiles.php │ │ ├── ICCView │ │ │ ├── ViewingCondIlluminant.php │ │ │ ├── ViewingCondIlluminantType.php │ │ │ └── ViewingCondSurround.php │ │ ├── ID3 │ │ │ ├── AverageLevel.php │ │ │ ├── PeakValue.php │ │ │ ├── SynchronizedLyricsDescription.php │ │ │ ├── SynchronizedLyricsText.php │ │ │ ├── SynchronizedLyricsType.php │ │ │ ├── WMCollectionGroupID.php │ │ │ ├── WMCollectionID.php │ │ │ ├── WMContentID.php │ │ │ ├── WMMediaClassPrimaryID.php │ │ │ ├── WMMediaClassSecondaryID.php │ │ │ └── WMProvider.php │ │ ├── ID3v1 │ │ │ ├── Album.php │ │ │ ├── Artist.php │ │ │ ├── Comment.php │ │ │ ├── Genre.php │ │ │ ├── Title.php │ │ │ ├── Track.php │ │ │ └── Year.php │ │ ├── ID3v1Enh │ │ │ ├── Album2.php │ │ │ ├── Artist2.php │ │ │ ├── EndTime.php │ │ │ ├── Genre.php │ │ │ ├── Speed.php │ │ │ ├── StartTime.php │ │ │ └── Title2.php │ │ ├── ID3v22 │ │ │ ├── Album.php │ │ │ ├── AlbumArtistSortOrder.php │ │ │ ├── AlbumSortOrder.php │ │ │ ├── Artist.php │ │ │ ├── ArtistURL.php │ │ │ ├── Band.php │ │ │ ├── BeatsPerMinute.php │ │ │ ├── Comment.php │ │ │ ├── CommercialURL.php │ │ │ ├── Compilation.php │ │ │ ├── Composer.php │ │ │ ├── ComposerSortOrder.php │ │ │ ├── Conductor.php │ │ │ ├── Copyright.php │ │ │ ├── CopyrightURL.php │ │ │ ├── Date.php │ │ │ ├── EncodedBy.php │ │ │ ├── EncoderSettings.php │ │ │ ├── FileType.php │ │ │ ├── FileURL.php │ │ │ ├── Genre.php │ │ │ ├── Grouping.php │ │ │ ├── ISRC.php │ │ │ ├── ITunesU.php │ │ │ ├── InitialKey.php │ │ │ ├── InterpretedBy.php │ │ │ ├── InvolvedPeople.php │ │ │ ├── Language.php │ │ │ ├── Length.php │ │ │ ├── Lyricist.php │ │ │ ├── Lyrics.php │ │ │ ├── Media.php │ │ │ ├── OriginalAlbum.php │ │ │ ├── OriginalArtist.php │ │ │ ├── OriginalFilename.php │ │ │ ├── OriginalLyricist.php │ │ │ ├── OriginalReleaseYear.php │ │ │ ├── PartOfSet.php │ │ │ ├── PerformerSortOrder.php │ │ │ ├── Picture.php │ │ │ ├── PictureDescription.php │ │ │ ├── PictureFormat.php │ │ │ ├── PictureType.php │ │ │ ├── PlayCounter.php │ │ │ ├── PlaylistDelay.php │ │ │ ├── Podcast.php │ │ │ ├── Popularimeter.php │ │ │ ├── Publisher.php │ │ │ ├── PublisherURL.php │ │ │ ├── RecordingDates.php │ │ │ ├── RelativeVolumeAdjustment.php │ │ │ ├── Size.php │ │ │ ├── SourceURL.php │ │ │ ├── Subtitle.php │ │ │ ├── Time.php │ │ │ ├── Title.php │ │ │ ├── TitleSortOrder.php │ │ │ ├── Track.php │ │ │ ├── UserDefinedText.php │ │ │ ├── UserDefinedURL.php │ │ │ └── Year.php │ │ ├── ID3v23 │ │ │ ├── Album.php │ │ │ ├── AlbumArtistSortOrder.php │ │ │ ├── AlbumSortOrder.php │ │ │ ├── Artist.php │ │ │ ├── ArtistURL.php │ │ │ ├── Band.php │ │ │ ├── BeatsPerMinute.php │ │ │ ├── Comment.php │ │ │ ├── CommercialURL.php │ │ │ ├── Compilation.php │ │ │ ├── Composer.php │ │ │ ├── ComposerSortOrder.php │ │ │ ├── Conductor.php │ │ │ ├── Copyright.php │ │ │ ├── CopyrightURL.php │ │ │ ├── Date.php │ │ │ ├── EncodedBy.php │ │ │ ├── EncoderSettings.php │ │ │ ├── FileOwner.php │ │ │ ├── FileType.php │ │ │ ├── FileURL.php │ │ │ ├── Genre.php │ │ │ ├── Grouping.php │ │ │ ├── ISRC.php │ │ │ ├── ITunesU.php │ │ │ ├── InitialKey.php │ │ │ ├── InternetRadioStationName.php │ │ │ ├── InternetRadioStationOwner.php │ │ │ ├── InternetRadioStationURL.php │ │ │ ├── InterpretedBy.php │ │ │ ├── InvolvedPeople.php │ │ │ ├── Language.php │ │ │ ├── Length.php │ │ │ ├── Lyricist.php │ │ │ ├── Lyrics.php │ │ │ ├── Media.php │ │ │ ├── MusicCDIdentifier.php │ │ │ ├── OriginalAlbum.php │ │ │ ├── OriginalArtist.php │ │ │ ├── OriginalFilename.php │ │ │ ├── OriginalLyricist.php │ │ │ ├── OriginalReleaseTime.php │ │ │ ├── OriginalReleaseYear.php │ │ │ ├── Ownership.php │ │ │ ├── PartOfSet.php │ │ │ ├── PaymentURL.php │ │ │ ├── PerformerSortOrder.php │ │ │ ├── Picture.php │ │ │ ├── PictureDescription.php │ │ │ ├── PictureMimeType.php │ │ │ ├── PictureType.php │ │ │ ├── PlayCounter.php │ │ │ ├── PlaylistDelay.php │ │ │ ├── Podcast.php │ │ │ ├── PodcastCategory.php │ │ │ ├── PodcastDescription.php │ │ │ ├── PodcastID.php │ │ │ ├── PodcastKeywords.php │ │ │ ├── PodcastURL.php │ │ │ ├── Popularimeter.php │ │ │ ├── Publisher.php │ │ │ ├── PublisherURL.php │ │ │ ├── RecordingDates.php │ │ │ ├── Size.php │ │ │ ├── SourceURL.php │ │ │ ├── Subtitle.php │ │ │ ├── TermsOfUse.php │ │ │ ├── Time.php │ │ │ ├── Title.php │ │ │ ├── TitleSortOrder.php │ │ │ ├── Track.php │ │ │ ├── UserDefinedText.php │ │ │ ├── UserDefinedURL.php │ │ │ └── Year.php │ │ ├── ID3v24 │ │ │ ├── Album.php │ │ │ ├── AlbumArtistSortOrder.php │ │ │ ├── AlbumSortOrder.php │ │ │ ├── Artist.php │ │ │ ├── ArtistURL.php │ │ │ ├── Band.php │ │ │ ├── BeatsPerMinute.php │ │ │ ├── Comment.php │ │ │ ├── CommercialURL.php │ │ │ ├── Compilation.php │ │ │ ├── Composer.php │ │ │ ├── ComposerSortOrder.php │ │ │ ├── Conductor.php │ │ │ ├── Copyright.php │ │ │ ├── CopyrightURL.php │ │ │ ├── EncodedBy.php │ │ │ ├── EncoderSettings.php │ │ │ ├── EncodingTime.php │ │ │ ├── FileOwner.php │ │ │ ├── FileType.php │ │ │ ├── FileURL.php │ │ │ ├── Genre.php │ │ │ ├── Grouping.php │ │ │ ├── ISRC.php │ │ │ ├── ITunesU.php │ │ │ ├── InitialKey.php │ │ │ ├── InternetRadioStationName.php │ │ │ ├── InternetRadioStationOwner.php │ │ │ ├── InternetRadioStationURL.php │ │ │ ├── InterpretedBy.php │ │ │ ├── InvolvedPeople.php │ │ │ ├── Language.php │ │ │ ├── Length.php │ │ │ ├── Lyricist.php │ │ │ ├── Lyrics.php │ │ │ ├── Media.php │ │ │ ├── Mood.php │ │ │ ├── MusicCDIdentifier.php │ │ │ ├── MusicianCredits.php │ │ │ ├── OriginalAlbum.php │ │ │ ├── OriginalArtist.php │ │ │ ├── OriginalFilename.php │ │ │ ├── OriginalLyricist.php │ │ │ ├── OriginalReleaseTime.php │ │ │ ├── Ownership.php │ │ │ ├── PartOfSet.php │ │ │ ├── PaymentURL.php │ │ │ ├── PerformerSortOrder.php │ │ │ ├── Picture.php │ │ │ ├── PictureDescription.php │ │ │ ├── PictureMimeType.php │ │ │ ├── PictureType.php │ │ │ ├── PlayCounter.php │ │ │ ├── PlaylistDelay.php │ │ │ ├── Podcast.php │ │ │ ├── PodcastCategory.php │ │ │ ├── PodcastDescription.php │ │ │ ├── PodcastID.php │ │ │ ├── PodcastKeywords.php │ │ │ ├── PodcastURL.php │ │ │ ├── Popularimeter.php │ │ │ ├── ProducedNotice.php │ │ │ ├── Publisher.php │ │ │ ├── PublisherURL.php │ │ │ ├── RecordingTime.php │ │ │ ├── RelativeVolumeAdjustment.php │ │ │ ├── ReleaseTime.php │ │ │ ├── SetSubtitle.php │ │ │ ├── SourceURL.php │ │ │ ├── Subtitle.php │ │ │ ├── TaggingTime.php │ │ │ ├── TermsOfUse.php │ │ │ ├── Title.php │ │ │ ├── TitleSortOrder.php │ │ │ ├── Track.php │ │ │ ├── UserDefinedText.php │ │ │ └── UserDefinedURL.php │ │ ├── IFD0 │ │ │ ├── AnalogBalance.php │ │ │ ├── ApplicationNotes.php │ │ │ ├── Artist.php │ │ │ ├── AsShotICCProfile.php │ │ │ ├── AsShotNeutral.php │ │ │ ├── AsShotPreProfileMatrix.php │ │ │ ├── AsShotProfileName.php │ │ │ ├── AsShotWhiteXY.php │ │ │ ├── BaselineExposure.php │ │ │ ├── BaselineExposureOffset.php │ │ │ ├── BaselineNoise.php │ │ │ ├── BaselineSharpness.php │ │ │ ├── BitsPerSample.php │ │ │ ├── BlackLevel1.php │ │ │ ├── BlackLevel2.php │ │ │ ├── BlackLevel3.php │ │ │ ├── BlackLevelBlue.php │ │ │ ├── BlackLevelGreen.php │ │ │ ├── BlackLevelRed.php │ │ │ ├── BlueBalance.php │ │ │ ├── CalibrationIlluminant1.php │ │ │ ├── CalibrationIlluminant2.php │ │ │ ├── CameraCalibration1.php │ │ │ ├── CameraCalibration2.php │ │ │ ├── CameraCalibrationSig.php │ │ │ ├── CameraLabel.php │ │ │ ├── CameraSerialNumber.php │ │ │ ├── CellLength.php │ │ │ ├── CellWidth.php │ │ │ ├── ColorMatrix1.php │ │ │ ├── ColorMatrix2.php │ │ │ ├── ColorimetricReference.php │ │ │ ├── Compression.php │ │ │ ├── Copyright.php │ │ │ ├── CropBottom.php │ │ │ ├── CropLeft.php │ │ │ ├── CropRight.php │ │ │ ├── CropTop.php │ │ │ ├── CurrentICCProfile.php │ │ │ ├── CurrentPreProfileMatrix.php │ │ │ ├── DNGAdobeData.php │ │ │ ├── DNGBackwardVersion.php │ │ │ ├── DNGLensInfo.php │ │ │ ├── DNGPrivateData.php │ │ │ ├── DNGVersion.php │ │ │ ├── DefaultBlackRender.php │ │ │ ├── DocumentName.php │ │ │ ├── DotRange.php │ │ │ ├── FillOrder.php │ │ │ ├── ForwardMatrix1.php │ │ │ ├── ForwardMatrix2.php │ │ │ ├── FrameRate.php │ │ │ ├── GeoTiffAsciiParams.php │ │ │ ├── GeoTiffDirectory.php │ │ │ ├── GeoTiffDoubleParams.php │ │ │ ├── GrayResponseUnit.php │ │ │ ├── HalftoneHints.php │ │ │ ├── HighISOMultiplierBlue.php │ │ │ ├── HighISOMultiplierGreen.php │ │ │ ├── HighISOMultiplierRed.php │ │ │ ├── HostComputer.php │ │ │ ├── IPTCNAA.php │ │ │ ├── ISO.php │ │ │ ├── ImageDescription.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageSourceData.php │ │ │ ├── ImageWidth.php │ │ │ ├── InkSet.php │ │ │ ├── JpgFromRaw.php │ │ │ ├── LinearResponseLimit.php │ │ │ ├── LinearityLimitBlue.php │ │ │ ├── LinearityLimitGreen.php │ │ │ ├── LinearityLimitRed.php │ │ │ ├── LocalizedCameraModel.php │ │ │ ├── Make.php │ │ │ ├── MakerNoteSafety.php │ │ │ ├── MaxSampleValue.php │ │ │ ├── MinSampleValue.php │ │ │ ├── Model.php │ │ │ ├── ModifyDate.php │ │ │ ├── NewRawImageDigest.php │ │ │ ├── OldSubfileType.php │ │ │ ├── Orientation.php │ │ │ ├── OriginalBestQualitySize.php │ │ │ ├── OriginalDefaultCropSize.php │ │ │ ├── OriginalDefaultFinalSize.php │ │ │ ├── OriginalRawFileData.php │ │ │ ├── OriginalRawFileDigest.php │ │ │ ├── OriginalRawFileName.php │ │ │ ├── PageName.php │ │ │ ├── PageNumber.php │ │ │ ├── PanasonicRawVersion.php │ │ │ ├── PanasonicTitle.php │ │ │ ├── PanasonicTitle2.php │ │ │ ├── PhotometricInterpretation.php │ │ │ ├── PlanarConfiguration.php │ │ │ ├── Predictor.php │ │ │ ├── PreviewApplicationName.php │ │ │ ├── PreviewApplicationVersion.php │ │ │ ├── PreviewColorSpace.php │ │ │ ├── PreviewDateTime.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── PreviewSettingsDigest.php │ │ │ ├── PreviewSettingsName.php │ │ │ ├── PrimaryChromaticities.php │ │ │ ├── PrintIM.php │ │ │ ├── ProcessingSoftware.php │ │ │ ├── ProfileCalibrationSig.php │ │ │ ├── ProfileCopyright.php │ │ │ ├── ProfileEmbedPolicy.php │ │ │ ├── ProfileHueSatMapData1.php │ │ │ ├── ProfileHueSatMapData2.php │ │ │ ├── ProfileHueSatMapDims.php │ │ │ ├── ProfileHueSatMapEncoding.php │ │ │ ├── ProfileLookTableData.php │ │ │ ├── ProfileLookTableDims.php │ │ │ ├── ProfileLookTableEncoding.php │ │ │ ├── ProfileName.php │ │ │ ├── ProfileToneCurve.php │ │ │ ├── Rating.php │ │ │ ├── RatingPercent.php │ │ │ ├── RawDataOffset.php │ │ │ ├── RawDataUniqueID.php │ │ │ ├── RawImageDigest.php │ │ │ ├── RawToPreviewGain.php │ │ │ ├── RedBalance.php │ │ │ ├── ReductionMatrix1.php │ │ │ ├── ReductionMatrix2.php │ │ │ ├── ReelName.php │ │ │ ├── ReferenceBlackWhite.php │ │ │ ├── ResolutionUnit.php │ │ │ ├── RowsPerStrip.php │ │ │ ├── SEMInfo.php │ │ │ ├── SamplesPerPixel.php │ │ │ ├── SensorBottomBorder.php │ │ │ ├── SensorHeight.php │ │ │ ├── SensorLeftBorder.php │ │ │ ├── SensorRightBorder.php │ │ │ ├── SensorTopBorder.php │ │ │ ├── SensorWidth.php │ │ │ ├── ShadowScale.php │ │ │ ├── Software.php │ │ │ ├── StripByteCounts.php │ │ │ ├── StripOffsets.php │ │ │ ├── SubfileType.php │ │ │ ├── TStop.php │ │ │ ├── Thresholding.php │ │ │ ├── ThumbnailLength.php │ │ │ ├── ThumbnailOffset.php │ │ │ ├── TileLength.php │ │ │ ├── TileWidth.php │ │ │ ├── TimeCodes.php │ │ │ ├── TransferFunction.php │ │ │ ├── UniqueCameraModel.php │ │ │ ├── WBBlueLevel.php │ │ │ ├── WBGreenLevel.php │ │ │ ├── WBRedLevel.php │ │ │ ├── WhitePoint.php │ │ │ ├── XPAuthor.php │ │ │ ├── XPComment.php │ │ │ ├── XPKeywords.php │ │ │ ├── XPSubject.php │ │ │ ├── XPTitle.php │ │ │ ├── XPosition.php │ │ │ ├── XResolution.php │ │ │ ├── YCbCrCoefficients.php │ │ │ ├── YCbCrPositioning.php │ │ │ ├── YCbCrSubSampling.php │ │ │ ├── YPosition.php │ │ │ └── YResolution.php │ │ ├── IFD1 │ │ │ ├── ThumbnailLength.php │ │ │ └── ThumbnailOffset.php │ │ ├── IFD2 │ │ │ ├── JpgFromRawLength.php │ │ │ └── JpgFromRawStart.php │ │ ├── IPTC │ │ │ ├── ARMIdentifier.php │ │ │ ├── ARMVersion.php │ │ │ ├── ActionAdvised.php │ │ │ ├── ApplicationRecordVersion.php │ │ │ ├── AudioDuration.php │ │ │ ├── AudioOutcue.php │ │ │ ├── AudioSamplingRate.php │ │ │ ├── AudioSamplingResolution.php │ │ │ ├── AudioType.php │ │ │ ├── BitsPerComponent.php │ │ │ ├── ByLine.php │ │ │ ├── ByLineTitle.php │ │ │ ├── CaptionAbstract.php │ │ │ ├── CatalogSets.php │ │ │ ├── Category.php │ │ │ ├── City.php │ │ │ ├── ClassifyState.php │ │ │ ├── CodedCharacterSet.php │ │ │ ├── ColorCalibrationMatrix.php │ │ │ ├── ColorPalette.php │ │ │ ├── ColorRepresentation.php │ │ │ ├── ColorSequence.php │ │ │ ├── ConfirmedObjectSize.php │ │ │ ├── Contact.php │ │ │ ├── ContentLocationCode.php │ │ │ ├── ContentLocationName.php │ │ │ ├── CopyrightNotice.php │ │ │ ├── CountryPrimaryLocationCode.php │ │ │ ├── CountryPrimaryLocationName.php │ │ │ ├── Credit.php │ │ │ ├── DataCompressionMethod.php │ │ │ ├── DateCreated.php │ │ │ ├── DateSent.php │ │ │ ├── Destination.php │ │ │ ├── DigitalCreationDate.php │ │ │ ├── DigitalCreationTime.php │ │ │ ├── DocumentHistory.php │ │ │ ├── DocumentNotes.php │ │ │ ├── EditStatus.php │ │ │ ├── EditorialUpdate.php │ │ │ ├── EndPoints.php │ │ │ ├── EnvelopeNumber.php │ │ │ ├── EnvelopePriority.php │ │ │ ├── EnvelopeRecordVersion.php │ │ │ ├── ExcursionTolerance.php │ │ │ ├── ExifCameraInfo.php │ │ │ ├── ExpirationDate.php │ │ │ ├── ExpirationTime.php │ │ │ ├── FileFormat.php │ │ │ ├── FileVersion.php │ │ │ ├── FixtureIdentifier.php │ │ │ ├── GammaCompensatedValue.php │ │ │ ├── Headline.php │ │ │ ├── ICCProfile.php │ │ │ ├── IPTC.php │ │ │ ├── IPTCBitsPerSample.php │ │ │ ├── IPTCImageHeight.php │ │ │ ├── IPTCImageRotation.php │ │ │ ├── IPTCImageWidth.php │ │ │ ├── IPTCPictureNumber.php │ │ │ ├── IPTCPixelHeight.php │ │ │ ├── IPTCPixelWidth.php │ │ │ ├── ImageOrientation.php │ │ │ ├── ImageType.php │ │ │ ├── InterchangeColorSpace.php │ │ │ ├── JobID.php │ │ │ ├── Keywords.php │ │ │ ├── LanguageIdentifier.php │ │ │ ├── LocalCaption.php │ │ │ ├── LookupTable.php │ │ │ ├── MasterDocumentID.php │ │ │ ├── MaxSubfileSize.php │ │ │ ├── MaximumDensityRange.php │ │ │ ├── MaximumObjectSize.php │ │ │ ├── NewsPhotoVersion.php │ │ │ ├── NumIndexEntries.php │ │ │ ├── ObjectAttributeReference.php │ │ │ ├── ObjectCycle.php │ │ │ ├── ObjectName.php │ │ │ ├── ObjectPreviewData.php │ │ │ ├── ObjectPreviewFileFormat.php │ │ │ ├── ObjectPreviewFileVersion.php │ │ │ ├── ObjectSizeAnnounced.php │ │ │ ├── ObjectTypeReference.php │ │ │ ├── OriginalTransmissionReference.php │ │ │ ├── OriginatingProgram.php │ │ │ ├── OwnerID.php │ │ │ ├── Prefs.php │ │ │ ├── ProductID.php │ │ │ ├── ProgramVersion.php │ │ │ ├── ProvinceState.php │ │ │ ├── QuantizationMethod.php │ │ │ ├── RasterizedCaption.php │ │ │ ├── ReferenceDate.php │ │ │ ├── ReferenceNumber.php │ │ │ ├── ReferenceService.php │ │ │ ├── ReleaseDate.php │ │ │ ├── ReleaseTime.php │ │ │ ├── SampleStructure.php │ │ │ ├── ScanningDirection.php │ │ │ ├── ServiceIdentifier.php │ │ │ ├── ShortDocumentID.php │ │ │ ├── SimilarityIndex.php │ │ │ ├── SizeMode.php │ │ │ ├── Source.php │ │ │ ├── SpecialInstructions.php │ │ │ ├── SubFile.php │ │ │ ├── SubLocation.php │ │ │ ├── SubjectReference.php │ │ │ ├── SupplementalCategories.php │ │ │ ├── SupplementalType.php │ │ │ ├── TimeCreated.php │ │ │ ├── TimeSent.php │ │ │ ├── UniqueDocumentID.php │ │ │ ├── UniqueObjectName.php │ │ │ ├── Urgency.php │ │ │ └── WriterEditor.php │ │ ├── ITC │ │ │ ├── DataLocation.php │ │ │ ├── DataType.php │ │ │ ├── ImageData.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageType.php │ │ │ ├── ImageWidth.php │ │ │ ├── LibraryID.php │ │ │ └── TrackID.php │ │ ├── InteropIFD │ │ │ ├── InteropIndex.php │ │ │ ├── InteropVersion.php │ │ │ ├── RelatedImageFileFormat.php │ │ │ ├── RelatedImageHeight.php │ │ │ └── RelatedImageWidth.php │ │ ├── JFIF │ │ │ ├── JFIFVersion.php │ │ │ ├── ResolutionUnit.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── XResolution.php │ │ │ └── YResolution.php │ │ ├── JPEG │ │ │ ├── Adobe.php │ │ │ ├── Comment.php │ │ │ ├── DefineQuantizationTable.php │ │ │ └── PreviewImage.php │ │ ├── JPEGHDR │ │ │ ├── Alpha.php │ │ │ ├── Beta.php │ │ │ ├── CorrectionMethod.php │ │ │ ├── JPEGHDRVersion.php │ │ │ ├── Ln0.php │ │ │ ├── Ln1.php │ │ │ ├── RatioImage.php │ │ │ └── S2n.php │ │ ├── JVC │ │ │ ├── CPUVersions.php │ │ │ ├── MakerNoteVersion.php │ │ │ └── Quality.php │ │ ├── Jpeg2000 │ │ │ ├── Association.php │ │ │ ├── BinaryFilter.php │ │ │ ├── BitsPerComponent.php │ │ │ ├── CaptureXResolution.php │ │ │ ├── CaptureXResolutionUnit.php │ │ │ ├── CaptureYResolution.php │ │ │ ├── CaptureYResolutionUnit.php │ │ │ ├── CodestreamRegistration.php │ │ │ ├── ColorGroup.php │ │ │ ├── ColorSpace.php │ │ │ ├── ColorSpecApproximation.php │ │ │ ├── ColorSpecData.php │ │ │ ├── ColorSpecMethod.php │ │ │ ├── ColorSpecPrecedence.php │ │ │ ├── CompatibleBrands.php │ │ │ ├── ComponentDefinition.php │ │ │ ├── ComponentMapping.php │ │ │ ├── Composition.php │ │ │ ├── CompositionOptions.php │ │ │ ├── Compression.php │ │ │ ├── ContiguousCodestream.php │ │ │ ├── CrossReference.php │ │ │ ├── DataReference.php │ │ │ ├── DesiredReproductions.php │ │ │ ├── DigitalSignature.php │ │ │ ├── DisplayXResolution.php │ │ │ ├── DisplayXResolutionUnit.php │ │ │ ├── DisplayYResolution.php │ │ │ ├── DisplayYResolutionUnit.php │ │ │ ├── FragmentList.php │ │ │ ├── FragmentTable.php │ │ │ ├── Free.php │ │ │ ├── GraphicsTechnologyStandardOutput.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── InstructionSet.php │ │ │ ├── JP2Signature.php │ │ │ ├── Label.php │ │ │ ├── MPEG7Binary.php │ │ │ ├── MajorBrand.php │ │ │ ├── MediaData.php │ │ │ ├── MinorVersion.php │ │ │ ├── NumberList.php │ │ │ ├── NumberOfComponents.php │ │ │ ├── Opacity.php │ │ │ ├── Palette.php │ │ │ ├── Profile.php │ │ │ ├── ROIDescription.php │ │ │ ├── ReaderRequirements.php │ │ │ ├── URL.php │ │ │ ├── UUIDList.php │ │ │ ├── UUIDUnknown.php │ │ │ └── XML.php │ │ ├── KDCIFD │ │ │ ├── SerialNumber.php │ │ │ ├── WBRGBLevelsAuto.php │ │ │ ├── WBRGBLevelsDaylight.php │ │ │ ├── WBRGBLevelsFluorescent.php │ │ │ ├── WBRGBLevelsShade.php │ │ │ ├── WBRGBLevelsTungsten.php │ │ │ └── WhiteBalance.php │ │ ├── Kodak │ │ │ ├── AFMode.php │ │ │ ├── ActualCompensation.php │ │ │ ├── Aperture.php │ │ │ ├── ApertureValue.php │ │ │ ├── AutoBracket.php │ │ │ ├── BayerPattern.php │ │ │ ├── BrightnessValue.php │ │ │ ├── BurstMode.php │ │ │ ├── BurstMode2.php │ │ │ ├── CameraBody.php │ │ │ ├── CameraByteOrder.php │ │ │ ├── CameraModel.php │ │ │ ├── ColorMode.php │ │ │ ├── Date.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DateTimeStamp.php │ │ │ ├── DigitalZoom.php │ │ │ ├── Distance1.php │ │ │ ├── Distance2.php │ │ │ ├── Distance3.php │ │ │ ├── Distance4.php │ │ │ ├── ExposureBias.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureMode.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── Flash.php │ │ │ ├── FlashExposureComp.php │ │ │ ├── FlashFired.php │ │ │ ├── FlashMode.php │ │ │ ├── FlashSyncMode.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalLengthIn35mmFormat.php │ │ │ ├── FocusMode.php │ │ │ ├── ISO.php │ │ │ ├── ISOSetting.php │ │ │ ├── ImageNumber.php │ │ │ ├── ImageRotated.php │ │ │ ├── KodakImageHeight.php │ │ │ ├── KodakImageWidth.php │ │ │ ├── KodakInfoType.php │ │ │ ├── KodakMake.php │ │ │ ├── KodakMaker.php │ │ │ ├── KodakModel.php │ │ │ ├── KodakSubIFD30x2007.php │ │ │ ├── KodakSubIFD30x2008.php │ │ │ ├── KodakSubIFD30x2009.php │ │ │ ├── KodakSubIFD30x200a.php │ │ │ ├── KodakSubIFD30x200b.php │ │ │ ├── KodakSubIFD30x3020.php │ │ │ ├── KodakSubIFD30x3030.php │ │ │ ├── KodakSubIFD30x3040.php │ │ │ ├── KodakSubIFD30x3050.php │ │ │ ├── KodakSubIFD30x3060.php │ │ │ ├── KodakSubIFD30x8001.php │ │ │ ├── KodakSubIFD30x8002.php │ │ │ ├── KodakSubIFD30x8003.php │ │ │ ├── KodakSubIFD30x8004.php │ │ │ ├── KodakSubIFD30x8005.php │ │ │ ├── KodakSubIFD30x8006.php │ │ │ ├── KodakSubIFD30x8007.php │ │ │ ├── KodakSubIFD30x8008.php │ │ │ ├── KodakSubIFD30x8009.php │ │ │ ├── KodakSubIFD30x800a.php │ │ │ ├── KodakSubIFD30x800b.php │ │ │ ├── KodakSubIFD30x800c.php │ │ │ ├── LensModel.php │ │ │ ├── LensSerialNumber.php │ │ │ ├── Macro.php │ │ │ ├── Make.php │ │ │ ├── MaxAperture.php │ │ │ ├── MeterMode.php │ │ │ ├── MeteringMode.php │ │ │ ├── MinAperture.php │ │ │ ├── Model.php │ │ │ ├── ModelType.php │ │ │ ├── MonthDayCreated.php │ │ │ ├── OpticalZoom.php │ │ │ ├── OriginalFileName.php │ │ │ ├── OtherInfo.php │ │ │ ├── PanoramaMode.php │ │ │ ├── PictureEffect.php │ │ │ ├── PopupFlash.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewImageHeight.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageSize.php │ │ │ ├── PreviewImageWidth.php │ │ │ ├── Quality.php │ │ │ ├── SceneMode.php │ │ │ ├── SceneModeUsed.php │ │ │ ├── SensorFullHeight.php │ │ │ ├── SensorFullWidth.php │ │ │ ├── SensorHeight.php │ │ │ ├── SensorWidth.php │ │ │ ├── SequenceNumber.php │ │ │ ├── SerialNumber.php │ │ │ ├── Sharpness.php │ │ │ ├── ShootingMode.php │ │ │ ├── ShutterMode.php │ │ │ ├── ShutterSpeed.php │ │ │ ├── ShutterSpeedValue.php │ │ │ ├── SubjectDistance.php │ │ │ ├── Temperature.php │ │ │ ├── ThumbnailHeight.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── ThumbnailWidth.php │ │ │ ├── Time.php │ │ │ ├── TimeCreated.php │ │ │ ├── TotalZoom.php │ │ │ ├── UnknownNumber.php │ │ │ ├── VariousModes.php │ │ │ ├── VariousModes2.php │ │ │ ├── WBRGBLevels.php │ │ │ ├── WhiteBalance.php │ │ │ └── YearCreated.php │ │ ├── KodakBordersIFD │ │ │ ├── BorderID.php │ │ │ ├── BorderLocation.php │ │ │ ├── BorderName.php │ │ │ ├── BorderType.php │ │ │ ├── BordersVersion.php │ │ │ └── WatermarkType.php │ │ ├── KodakEffectsIFD │ │ │ ├── DigitalEffectsName.php │ │ │ ├── DigitalEffectsType.php │ │ │ └── DigitalEffectsVersion.php │ │ ├── KodakIFD │ │ │ ├── AdapterVoltage.php │ │ │ ├── BaseISO.php │ │ │ ├── BatteryVoltage.php │ │ │ ├── CameraTemperature.php │ │ │ ├── ColorTemperature.php │ │ │ ├── ExposureValue.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── ISO.php │ │ │ ├── InputProfile.php │ │ │ ├── KodakLook.php │ │ │ ├── KodakLookProfile.php │ │ │ ├── NCDFileInfo.php │ │ │ ├── OriginalFileName.php │ │ │ ├── OutputProfile.php │ │ │ ├── SensorImageHeight.php │ │ │ ├── SensorImageWidth.php │ │ │ ├── SensorLeftBorder.php │ │ │ ├── SensorSerialNumber.php │ │ │ ├── SensorTopBorder.php │ │ │ ├── Time.php │ │ │ ├── ToneCurveFileName.php │ │ │ ├── UnknownEV.php │ │ │ ├── WBRGBCoeffs0.php │ │ │ ├── WBRGBCoeffs1.php │ │ │ ├── WBRGBCoeffs2.php │ │ │ ├── WBRGBCoeffs3.php │ │ │ ├── WBRGBLevelsAuto.php │ │ │ ├── WBRGBLevelsCustom.php │ │ │ ├── WBRGBLevelsDaylight.php │ │ │ ├── WBRGBLevelsFlash.php │ │ │ ├── WBRGBLevelsFluorescent.php │ │ │ ├── WBRGBLevelsTungsten.php │ │ │ ├── WBRGBMul0.php │ │ │ ├── WBRGBMul1.php │ │ │ ├── WBRGBMul2.php │ │ │ ├── WBRGBMul3.php │ │ │ └── WhiteBalance.php │ │ ├── KyoceraRaw │ │ │ ├── DateTimeOriginal.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── FocalLength.php │ │ │ ├── ISO.php │ │ │ ├── Lens.php │ │ │ ├── Make.php │ │ │ ├── MaxAperture.php │ │ │ ├── Model.php │ │ │ └── WBRGGBLevels.php │ │ ├── LNK │ │ │ ├── AccessDate.php │ │ │ ├── CodePage.php │ │ │ ├── CommandLineArguments.php │ │ │ ├── CommonNetworkRelLink.php │ │ │ ├── CommonPathSuffix.php │ │ │ ├── CreateDate.php │ │ │ ├── CursorSize.php │ │ │ ├── Description.php │ │ │ ├── DeviceName.php │ │ │ ├── DriveSerialNumber.php │ │ │ ├── DriveType.php │ │ │ ├── FileAttributes.php │ │ │ ├── FillAttributes.php │ │ │ ├── Flags.php │ │ │ ├── FontFamily.php │ │ │ ├── FontName.php │ │ │ ├── FontSize.php │ │ │ ├── FontWeight.php │ │ │ ├── FullScreen.php │ │ │ ├── HistoryBufferSize.php │ │ │ ├── HotKey.php │ │ │ ├── IconFileName.php │ │ │ ├── IconIndex.php │ │ │ ├── InsertMode.php │ │ │ ├── LocalBasePath.php │ │ │ ├── MachineID.php │ │ │ ├── ModifyDate.php │ │ │ ├── NetName.php │ │ │ ├── NetProviderType.php │ │ │ ├── NumHistoryBuffers.php │ │ │ ├── PopupFillAttributes.php │ │ │ ├── QuickEdit.php │ │ │ ├── RelativePath.php │ │ │ ├── RemoveHistoryDuplicates.php │ │ │ ├── RunWindow.php │ │ │ ├── ScreenBufferSize.php │ │ │ ├── TargetFileDOSName.php │ │ │ ├── TargetFileSize.php │ │ │ ├── VolumeID.php │ │ │ ├── VolumeLabel.php │ │ │ ├── WindowOrigin.php │ │ │ ├── WindowOriginAuto.php │ │ │ ├── WindowSize.php │ │ │ └── WorkingDirectory.php │ │ ├── Leaf │ │ │ ├── BackSerial.php │ │ │ ├── CCDRect.php │ │ │ ├── CCDValidRect.php │ │ │ ├── CCDVideoRect.php │ │ │ ├── CameraBackType.php │ │ │ ├── CameraName.php │ │ │ ├── CameraObjBackType.php │ │ │ ├── CameraObjName.php │ │ │ ├── CameraObjType.php │ │ │ ├── CameraObjVersion.php │ │ │ ├── CameraProfileVersion.php │ │ │ ├── CameraType.php │ │ │ ├── CaptProfBackType.php │ │ │ ├── CaptProfName.php │ │ │ ├── CaptProfType.php │ │ │ ├── CaptProfVersion.php │ │ │ ├── CaptureObjBackType.php │ │ │ ├── CaptureObjName.php │ │ │ ├── CaptureObjType.php │ │ │ ├── CaptureObjVersion.php │ │ │ ├── CaptureSerial.php │ │ │ ├── CenterDarkRect.php │ │ │ ├── ColorAverages.php │ │ │ ├── ColorCasts.php │ │ │ ├── ColorMatrix.php │ │ │ ├── ColorMode.php │ │ │ ├── ColorObjBackType.php │ │ │ ├── ColorObjName.php │ │ │ ├── ColorObjType.php │ │ │ ├── ColorObjVersion.php │ │ │ ├── ColorType.php │ │ │ ├── DarkCorrectionType.php │ │ │ ├── DataLen.php │ │ │ ├── Gamma.php │ │ │ ├── HasICC.php │ │ │ ├── HighlightEndPoints.php │ │ │ ├── ISOSpeed.php │ │ │ ├── ImageBounds.php │ │ │ ├── ImageFields.php │ │ │ ├── ImageOffset.php │ │ │ ├── ImageStatus.php │ │ │ ├── ImgProfBackType.php │ │ │ ├── ImgProfName.php │ │ │ ├── ImgProfType.php │ │ │ ├── ImgProfVersion.php │ │ │ ├── InputProfile.php │ │ │ ├── LeafAutoActive.php │ │ │ ├── LeafAutoBaseName.php │ │ │ ├── LeafHotFolder.php │ │ │ ├── LeafOpenProcHDR.php │ │ │ ├── LeafOutputFileType.php │ │ │ ├── LeafSaveSelection.php │ │ │ ├── LeftDarkRect.php │ │ │ ├── LensID.php │ │ │ ├── LensType.php │ │ │ ├── Locks.php │ │ │ ├── LookHeadBackType.php │ │ │ ├── LookHeadName.php │ │ │ ├── LookHeadType.php │ │ │ ├── LookHeadVersion.php │ │ │ ├── LuminanceConsts.php │ │ │ ├── MosaicPattern.php │ │ │ ├── MultiQuality.php │ │ │ ├── NeutObjBackType.php │ │ │ ├── NeutObjName.php │ │ │ ├── NeutObjType.php │ │ │ ├── NeutObjVersion.php │ │ │ ├── Neutrals.php │ │ │ ├── Npts.php │ │ │ ├── NumberOfPlanes.php │ │ │ ├── Orientation.php │ │ │ ├── OutputProfile.php │ │ │ ├── PDAHistogram.php │ │ │ ├── PatternAngle.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewInfo.php │ │ │ ├── RawDataRotation.php │ │ │ ├── ReconstructionType.php │ │ │ ├── Rect.php │ │ │ ├── Resolution.php │ │ │ ├── RightDarkRect.php │ │ │ ├── RotationAngle.php │ │ │ ├── SaveObjBackType.php │ │ │ ├── SaveObjName.php │ │ │ ├── SaveObjType.php │ │ │ ├── SaveObjVersion.php │ │ │ ├── Scale.php │ │ │ ├── SelObjBackType.php │ │ │ ├── SelObjName.php │ │ │ ├── SelObjType.php │ │ │ ├── SelObjVersion.php │ │ │ ├── ShadowEndPoints.php │ │ │ ├── SharpInfo.php │ │ │ ├── SharpMethod.php │ │ │ ├── SharpObjBackType.php │ │ │ ├── SharpObjName.php │ │ │ ├── SharpObjType.php │ │ │ ├── SharpObjVersion.php │ │ │ ├── ShootObjBackType.php │ │ │ ├── ShootObjName.php │ │ │ ├── ShootObjType.php │ │ │ ├── ShootObjVersion.php │ │ │ ├── SingleQuality.php │ │ │ ├── StdAutoActive.php │ │ │ ├── StdBaseName.php │ │ │ ├── StdHotFolder.php │ │ │ ├── StdOpenInPhotoshop.php │ │ │ ├── StdOutputBitDepth.php │ │ │ ├── StdOutputColorMode.php │ │ │ ├── StdOutputFileType.php │ │ │ ├── StdOxygen.php │ │ │ ├── StdSaveSelection.php │ │ │ ├── StdScaledOutput.php │ │ │ ├── StdSharpenOutput.php │ │ │ ├── Strobe.php │ │ │ ├── ToneMatrix.php │ │ │ ├── ToneObjBackType.php │ │ │ ├── ToneObjName.php │ │ │ ├── ToneObjType.php │ │ │ ├── ToneObjVersion.php │ │ │ ├── ToneSpaceFlow.php │ │ │ ├── Tones.php │ │ │ └── XYOffsetInfo.php │ │ ├── Leica │ │ │ ├── ApproximateFNumber.php │ │ │ ├── BaseISO.php │ │ │ ├── CCDBoardVersion.php │ │ │ ├── CCDVersion.php │ │ │ ├── CameraTemperature.php │ │ │ ├── ColorTemperature.php │ │ │ ├── Contrast.php │ │ │ ├── ControllerBoardVersion.php │ │ │ ├── ExposureMode.php │ │ │ ├── ExternalSensorBrightnessValue.php │ │ │ ├── FileIndex.php │ │ │ ├── FilmMode.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── ImageIDNumber.php │ │ │ ├── JPEGQuality.php │ │ │ ├── JPEGSize.php │ │ │ ├── LensModel.php │ │ │ ├── LensType.php │ │ │ ├── M16CVersion.php │ │ │ ├── MeasuredLV.php │ │ │ ├── OriginalDirectory.php │ │ │ ├── OriginalFileName.php │ │ │ ├── PreviewImage.php │ │ │ ├── Quality.php │ │ │ ├── Saturation.php │ │ │ ├── SensorBitDepth.php │ │ │ ├── SensorHeight.php │ │ │ ├── SensorWidth.php │ │ │ ├── SerialNumber.php │ │ │ ├── Sharpening.php │ │ │ ├── UVIRFilterCorrection.php │ │ │ ├── UnknownBlock.php │ │ │ ├── UserProfile.php │ │ │ ├── WBBlueLevel.php │ │ │ ├── WBGreenLevel.php │ │ │ ├── WBRGBLevels.php │ │ │ ├── WBRedLevel.php │ │ │ └── WhiteBalance.php │ │ ├── Lytro │ │ │ ├── AccelerometerTime.php │ │ │ ├── AccelerometerX.php │ │ │ ├── AccelerometerY.php │ │ │ ├── AccelerometerZ.php │ │ │ ├── CameraType.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── EmbeddedImage.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalPlaneXResolution.php │ │ │ ├── FrameExposureTime.php │ │ │ ├── ISO.php │ │ │ ├── ImageLimitExposureBias.php │ │ │ ├── ImageModulationExposureBias.php │ │ │ ├── JSONMetadata.php │ │ │ ├── LensTemperature.php │ │ │ ├── Make.php │ │ │ ├── Model.php │ │ │ ├── Orientation.php │ │ │ ├── SensorSerialNumber.php │ │ │ ├── SerialNumber.php │ │ │ └── SocTemperature.php │ │ ├── M2TS │ │ │ ├── AudioStreamType.php │ │ │ ├── Duration.php │ │ │ └── VideoStreamType.php │ │ ├── MAC │ │ │ ├── APEVersion.php │ │ │ ├── BitsPerSample.php │ │ │ ├── BlocksPerFrame.php │ │ │ ├── Channels.php │ │ │ ├── CompressionLevel.php │ │ │ ├── FinalFrameBlocks.php │ │ │ ├── SampleRate.php │ │ │ └── TotalFrames.php │ │ ├── MIEAudio │ │ │ ├── AudioCompression.php │ │ │ ├── Channels.php │ │ │ ├── Duration.php │ │ │ ├── RelatedAudioFile.php │ │ │ ├── RelatedAudioFileName.php │ │ │ ├── RelatedAudioFileType.php │ │ │ ├── SampleBits.php │ │ │ └── SampleRate.php │ │ ├── MIECamera │ │ │ ├── Brightness.php │ │ │ ├── ColorBalance.php │ │ │ ├── ColorTemperature.php │ │ │ ├── Contrast.php │ │ │ ├── DigitalZoom.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureMode.php │ │ │ ├── ExposureTime.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── FocusMode.php │ │ │ ├── ISO.php │ │ │ ├── ISOSetting.php │ │ │ ├── ImageNumber.php │ │ │ ├── ImageQuality.php │ │ │ ├── ImageStabilization.php │ │ │ ├── Make.php │ │ │ ├── MeasuredEV.php │ │ │ ├── Model.php │ │ │ ├── OwnerName.php │ │ │ ├── Saturation.php │ │ │ ├── SensorSize.php │ │ │ ├── SerialNumber.php │ │ │ ├── Sharpness.php │ │ │ └── ShootingMode.php │ │ ├── MIEDoc │ │ │ ├── Author.php │ │ │ ├── Comment.php │ │ │ ├── Contributors.php │ │ │ ├── Copyright.php │ │ │ ├── CreateDate.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── EMail.php │ │ │ ├── Keywords.php │ │ │ ├── ModifyDate.php │ │ │ ├── PhoneNumber.php │ │ │ ├── References.php │ │ │ ├── Software.php │ │ │ ├── Title.php │ │ │ └── URL.php │ │ ├── MIEExtender │ │ │ ├── ExtenderMagnification.php │ │ │ ├── ExtenderMake.php │ │ │ ├── ExtenderModel.php │ │ │ └── ExtenderSerialNumber.php │ │ ├── MIEFlash │ │ │ ├── FlashExposureComp.php │ │ │ ├── FlashFired.php │ │ │ ├── FlashGuideNumber.php │ │ │ ├── FlashMake.php │ │ │ ├── FlashMode.php │ │ │ ├── FlashModel.php │ │ │ ├── FlashSerialNumber.php │ │ │ └── FlashType.php │ │ ├── MIEGPS │ │ │ ├── GPSAltitude.php │ │ │ ├── GPSDateTime.php │ │ │ ├── GPSDestBearing.php │ │ │ ├── GPSDestDistance.php │ │ │ ├── GPSDifferential.php │ │ │ ├── GPSLatitude.php │ │ │ ├── GPSLongitude.php │ │ │ ├── GPSMapDatum.php │ │ │ ├── GPSMeasureMode.php │ │ │ ├── GPSSatellites.php │ │ │ ├── GPSSpeed.php │ │ │ └── GPSTrack.php │ │ ├── MIEGeo │ │ │ ├── Address.php │ │ │ ├── City.php │ │ │ ├── Country.php │ │ │ ├── PostalCode.php │ │ │ └── State.php │ │ ├── MIEImage │ │ │ ├── BitDepth.php │ │ │ ├── ColorSpace.php │ │ │ ├── ComponentsConfiguration.php │ │ │ ├── CompressionRatio.php │ │ │ ├── FullSizeImage.php │ │ │ ├── FullSizeImageName.php │ │ │ ├── FullSizeImageType.php │ │ │ ├── ImageSize.php │ │ │ └── Resolution.php │ │ ├── MIELens │ │ │ ├── FNumber.php │ │ │ ├── FocalLength.php │ │ │ ├── FocusDistance.php │ │ │ ├── LensMake.php │ │ │ ├── LensModel.php │ │ │ ├── LensSerialNumber.php │ │ │ ├── MaxAperture.php │ │ │ ├── MaxApertureAtMaxFocal.php │ │ │ ├── MaxFocalLength.php │ │ │ ├── MinAperture.php │ │ │ ├── MinFocalLength.php │ │ │ └── OpticalZoom.php │ │ ├── MIEMain │ │ │ ├── MD5Digest.php │ │ │ ├── MIEVersion.php │ │ │ ├── SubfileData.php │ │ │ ├── SubfileDirectory.php │ │ │ ├── SubfileMIMEType.php │ │ │ ├── SubfileName.php │ │ │ ├── SubfileResource.php │ │ │ ├── SubfileType.php │ │ │ └── TrailerSignature.php │ │ ├── MIEOrient │ │ │ ├── Azimuth.php │ │ │ ├── Declination.php │ │ │ ├── Elevation.php │ │ │ ├── RightAscension.php │ │ │ └── Rotation.php │ │ ├── MIEPreview │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewImageName.php │ │ │ ├── PreviewImageSize.php │ │ │ └── PreviewImageType.php │ │ ├── MIEThumbnail │ │ │ ├── ThumbnailImage.php │ │ │ ├── ThumbnailImageName.php │ │ │ ├── ThumbnailImageSize.php │ │ │ └── ThumbnailImageType.php │ │ ├── MIEUTM │ │ │ ├── UTMEasting.php │ │ │ ├── UTMMapDatum.php │ │ │ ├── UTMNorthing.php │ │ │ └── UTMZone.php │ │ ├── MIEVideo │ │ │ ├── Codec.php │ │ │ ├── Duration.php │ │ │ ├── RelatedVideoFile.php │ │ │ ├── RelatedVideoFileName.php │ │ │ └── RelatedVideoFileType.php │ │ ├── MIFF │ │ │ ├── BackgroundColor.php │ │ │ ├── BluePrimary.php │ │ │ ├── BorderColor.php │ │ │ ├── Class0.php │ │ │ ├── ColorSpace.php │ │ │ ├── Colors.php │ │ │ ├── Compression.php │ │ │ ├── Delay.php │ │ │ ├── Depth.php │ │ │ ├── Dispose.php │ │ │ ├── Gamma.php │ │ │ ├── GreenPrimary.php │ │ │ ├── ID.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── Iterations.php │ │ │ ├── Label.php │ │ │ ├── MattColor.php │ │ │ ├── Matte.php │ │ │ ├── Montage.php │ │ │ ├── Packets.php │ │ │ ├── Page.php │ │ │ ├── RedPrimary.php │ │ │ ├── RenderingIntent.php │ │ │ ├── Resolution.php │ │ │ ├── Scene.php │ │ │ ├── Signature.php │ │ │ ├── Units.php │ │ │ └── WhitePoint.php │ │ ├── MNG │ │ │ ├── AlphaBitDepth.php │ │ │ ├── AlphaCompression.php │ │ │ ├── AlphaFilter.php │ │ │ ├── AlphaInterlace.php │ │ │ ├── AlphaSample.php │ │ │ ├── BackgroundColor.php │ │ │ ├── BackgroundImageID.php │ │ │ ├── BackgroundTiling.php │ │ │ ├── BitDepth.php │ │ │ ├── BlockLocation.php │ │ │ ├── BlockSize.php │ │ │ ├── BlueSample.php │ │ │ ├── BottomMag.php │ │ │ ├── BoundaryOrigin.php │ │ │ ├── ClipBoundary.php │ │ │ ├── ClippingBoundary.php │ │ │ ├── CloneID.php │ │ │ ├── CloneType.php │ │ │ ├── ColorType.php │ │ │ ├── CompositionMode.php │ │ │ ├── Compression.php │ │ │ ├── ConcreteFlag.php │ │ │ ├── Delay.php │ │ │ ├── DeltaType.php │ │ │ ├── DeltaXY.php │ │ │ ├── DestinationID.php │ │ │ ├── DiscardObjects.php │ │ │ ├── DoNotShow.php │ │ │ ├── DropByKeyword.php │ │ │ ├── DropChunks.php │ │ │ ├── FillMethod.php │ │ │ ├── Filter.php │ │ │ ├── FirstObject.php │ │ │ ├── FirstObjectID.php │ │ │ ├── Frame.php │ │ │ ├── GreenSample.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageType.php │ │ │ ├── ImageWidth.php │ │ │ ├── Interlace.php │ │ │ ├── IterationCount.php │ │ │ ├── IterationEndAction.php │ │ │ ├── IterationMax.php │ │ │ ├── IterationMinMax.php │ │ │ ├── LastObject.php │ │ │ ├── LastObjectID.php │ │ │ ├── LeftMag.php │ │ │ ├── LocalDeltaType.php │ │ │ ├── MandatoryBackground.php │ │ │ ├── NestLevel.php │ │ │ ├── NewBitDepth.php │ │ │ ├── NewColorType.php │ │ │ ├── NominalFrameCount.php │ │ │ ├── NominalLayerCount.php │ │ │ ├── NominalPlayTime.php │ │ │ ├── ObjectID.php │ │ │ ├── OffsetOrigin.php │ │ │ ├── OffsetXY.php │ │ │ ├── OrderingRestrictions.php │ │ │ ├── Orientation.php │ │ │ ├── PartialPalette.php │ │ │ ├── PastClippingBoundary.php │ │ │ ├── Priority.php │ │ │ ├── RedSample.php │ │ │ ├── ResourcesNeeded.php │ │ │ ├── RightMag.php │ │ │ ├── SaveObjects.php │ │ │ ├── SeekPoint.php │ │ │ ├── ShowMode.php │ │ │ ├── SignalNumber.php │ │ │ ├── SimplicityProfile.php │ │ │ ├── SnapshotID.php │ │ │ ├── SnapshotName.php │ │ │ ├── SourceID.php │ │ │ ├── TargetDeltaType.php │ │ │ ├── TargetXY.php │ │ │ ├── TerminationAction.php │ │ │ ├── TerminationCondition.php │ │ │ ├── TicksPerSecond.php │ │ │ ├── TopMag.php │ │ │ ├── Viewable.php │ │ │ ├── XMag.php │ │ │ ├── XMethod.php │ │ │ ├── XYLocation.php │ │ │ ├── YMag.php │ │ │ └── YMethod.php │ │ ├── MOBI │ │ │ ├── ASIN.php │ │ │ ├── ASIN2.php │ │ │ ├── Adult.php │ │ │ ├── Alignment.php │ │ │ ├── Author.php │ │ │ ├── BookName.php │ │ │ ├── BookType.php │ │ │ ├── BookVersion.php │ │ │ ├── CDEType.php │ │ │ ├── ClippingLimit.php │ │ │ ├── CodePage.php │ │ │ ├── Compression.php │ │ │ ├── Contributor.php │ │ │ ├── CreatorBuildNumber.php │ │ │ ├── CreatorBuildNumber2.php │ │ │ ├── CreatorMajorVersion.php │ │ │ ├── CreatorMinorVersion.php │ │ │ ├── CreatorSoftware.php │ │ │ ├── DRMCommerceID.php │ │ │ ├── DRMEBookBaseID.php │ │ │ ├── DRMServerID.php │ │ │ ├── Description.php │ │ │ ├── DictionaryShortName.php │ │ │ ├── Encryption.php │ │ │ ├── ISBN.php │ │ │ ├── Imprint.php │ │ │ ├── KF8CoverURI.php │ │ │ ├── Language.php │ │ │ ├── LastUpdateTime.php │ │ │ ├── MinimumVersion.php │ │ │ ├── MobiType.php │ │ │ ├── MobiVersion.php │ │ │ ├── PublishDate.php │ │ │ ├── Publisher.php │ │ │ ├── PublisherLimit.php │ │ │ ├── RentalExpirationDate.php │ │ │ ├── RentalFlag.php │ │ │ ├── ResourceCount.php │ │ │ ├── RetailPrice.php │ │ │ ├── RetailPriceCurrency.php │ │ │ ├── Review.php │ │ │ ├── Rights.php │ │ │ ├── SampleFlag.php │ │ │ ├── Source.php │ │ │ ├── StartReading.php │ │ │ ├── Subject.php │ │ │ ├── SubjectCode.php │ │ │ ├── TamperProofKeys.php │ │ │ ├── TextToSpeech.php │ │ │ ├── UncompressedTextLength.php │ │ │ ├── UpdatedTitle.php │ │ │ └── Watermark.php │ │ ├── MOI │ │ │ ├── AspectRatio.php │ │ │ ├── AudioBitrate.php │ │ │ ├── AudioCodec.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── Duration.php │ │ │ ├── MOIVersion.php │ │ │ └── VideoBitrate.php │ │ ├── MPC │ │ │ ├── EncoderVersion.php │ │ │ ├── FastSeek.php │ │ │ ├── Gapless.php │ │ │ ├── MaxBand.php │ │ │ ├── Quality.php │ │ │ ├── ReplayGainAlbumGain.php │ │ │ ├── ReplayGainAlbumPeak.php │ │ │ ├── ReplayGainTrackGain.php │ │ │ ├── ReplayGainTrackPeak.php │ │ │ ├── SampleRate.php │ │ │ └── TotalFrames.php │ │ ├── MPEG │ │ │ ├── AspectRatio.php │ │ │ ├── AudioBitrate.php │ │ │ ├── AudioLayer.php │ │ │ ├── ChannelMode.php │ │ │ ├── CopyrightFlag.php │ │ │ ├── Emphasis.php │ │ │ ├── Encoder.php │ │ │ ├── FrameRate.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── IntensityStereo.php │ │ │ ├── LameBitrate.php │ │ │ ├── LameLowPassFilter.php │ │ │ ├── LameMethod.php │ │ │ ├── LameQuality.php │ │ │ ├── LameStereoMode.php │ │ │ ├── LameVBRQuality.php │ │ │ ├── MPEGAudioVersion.php │ │ │ ├── MSStereo.php │ │ │ ├── ModeExtension.php │ │ │ ├── OriginalMedia.php │ │ │ ├── SampleRate.php │ │ │ ├── VBRBytes.php │ │ │ ├── VBRFrames.php │ │ │ ├── VBRScale.php │ │ │ └── VideoBitrate.php │ │ ├── MPF0 │ │ │ ├── AxisDistanceX.php │ │ │ ├── AxisDistanceY.php │ │ │ ├── AxisDistanceZ.php │ │ │ ├── BaseViewpointNum.php │ │ │ ├── BaselineLength.php │ │ │ ├── ConvergenceAngle.php │ │ │ ├── ImageUIDList.php │ │ │ ├── MPFVersion.php │ │ │ ├── MPIndividualNum.php │ │ │ ├── NumberOfImages.php │ │ │ ├── PanOrientation.php │ │ │ ├── PanOverlapH.php │ │ │ ├── PanOverlapV.php │ │ │ ├── PitchAngle.php │ │ │ ├── RollAngle.php │ │ │ ├── TotalFrames.php │ │ │ ├── VerticalDivergence.php │ │ │ └── YawAngle.php │ │ ├── MPImage │ │ │ ├── DependentImage1EntryNumber.php │ │ │ ├── DependentImage2EntryNumber.php │ │ │ ├── MPImageFlags.php │ │ │ ├── MPImageFormat.php │ │ │ ├── MPImageLength.php │ │ │ ├── MPImageStart.php │ │ │ └── MPImageType.php │ │ ├── MXF │ │ │ ├── AAFManufacturerID.php │ │ │ ├── AFDAndBarData.php │ │ │ ├── AGICOAID.php │ │ │ ├── AICI.php │ │ │ ├── AIFCSummary.php │ │ │ ├── ANCPacketCount.php │ │ │ ├── ANCPayloadByteArray.php │ │ │ ├── ANCPayloadSampleCoding.php │ │ │ ├── ANCPayloadSampleCount.php │ │ │ ├── ANCWrappingType.php │ │ │ ├── Abstract0.php │ │ │ ├── AccountingReferenceNumber.php │ │ │ ├── ActiveFormatDescriptor.php │ │ │ ├── ActiveLinesperFrame.php │ │ │ ├── ActiveSamplesperLine.php │ │ │ ├── ActiveState.php │ │ │ ├── AdID.php │ │ │ ├── AddressLine.php │ │ │ ├── AddressNameValueSets.php │ │ │ ├── AddressSets.php │ │ │ ├── AdvertisingMaterialReference.php │ │ │ ├── AestheticValue.php │ │ │ ├── AlphaMaximumRef.php │ │ │ ├── AlphaMinimumRef.php │ │ │ ├── AlphaSampleDepth.php │ │ │ ├── AlphaTransparency.php │ │ │ ├── AlternateName.php │ │ │ ├── Alternates.php │ │ │ ├── AnalogDataCodingKind.php │ │ │ ├── AnalogMetadataCarrier.php │ │ │ ├── AnalogMonitoringAndControlCodingKind.php │ │ │ ├── AnalogSystem.php │ │ │ ├── AnalogVideoSystemName.php │ │ │ ├── AnamorphicLensCharacteristic.php │ │ │ ├── AnchorOffset.php │ │ │ ├── AncillaryResourceID.php │ │ │ ├── AngleToNorth.php │ │ │ ├── AngularUnitKind.php │ │ │ ├── Annotation.php │ │ │ ├── AnnotationCueWordsSet.php │ │ │ ├── AnnotationDescription.php │ │ │ ├── AnnotationKind.php │ │ │ ├── AnnotationParticipantSets.php │ │ │ ├── AnnotationSets.php │ │ │ ├── AnnotationSynopsis.php │ │ │ ├── ApplicationEnvironmentID.php │ │ │ ├── ApplicationInformationArray.php │ │ │ ├── ApplicationName.php │ │ │ ├── ApplicationPlatform.php │ │ │ ├── ApplicationPlugInBatch.php │ │ │ ├── ApplicationPlugInInstanceID.php │ │ │ ├── ApplicationProductID.php │ │ │ ├── ApplicationScheme.php │ │ │ ├── ApplicationSchemeBatch.php │ │ │ ├── ApplicationSupplierName.php │ │ │ ├── ApplicationVersionNumber.php │ │ │ ├── ApplicationVersionString.php │ │ │ ├── ApproximateImageContainerSize.php │ │ │ ├── ArchiveID.php │ │ │ ├── AssetValue.php │ │ │ ├── AssignedCategoryName.php │ │ │ ├── AssignedCategoryValue.php │ │ │ ├── AssociatedMetadataDefinition.php │ │ │ ├── AstronomicalBodyName.php │ │ │ ├── AudienceAppreciation.php │ │ │ ├── AudienceRating.php │ │ │ ├── AudienceReach.php │ │ │ ├── AudienceShare.php │ │ │ ├── AudioAverageBitrate.php │ │ │ ├── AudioCodingSchemeCode.php │ │ │ ├── AudioCodingSchemeID.php │ │ │ ├── AudioCodingSchemeName.php │ │ │ ├── AudioCompressionAlgorithm.php │ │ │ ├── AudioDeviceKind.php │ │ │ ├── AudioDeviceParameter.php │ │ │ ├── AudioDeviceParameterSetting.php │ │ │ ├── AudioEnhancementOrModificationDescription.php │ │ │ ├── AudioFirstMixDownProcess.php │ │ │ ├── AudioFixedBitrateFlag.php │ │ │ ├── AudioMonoChannelCount.php │ │ │ ├── AudioNoiseReductionAlgorithm.php │ │ │ ├── AudioReferenceLevel.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── AudioStereoChannelCount.php │ │ │ ├── AudioWatermarkKind.php │ │ │ ├── AuthenticationFlag.php │ │ │ ├── AuxiliaryBitsMode.php │ │ │ ├── AvailableRepresentations.php │ │ │ ├── AverageBytesPerSecond.php │ │ │ ├── AwardCategory.php │ │ │ ├── AwardName.php │ │ │ ├── AwardParticipantSets.php │ │ │ ├── AwardSets.php │ │ │ ├── BICI.php │ │ │ ├── BackgroundMusicFlag.php │ │ │ ├── BankDetailsSet.php │ │ │ ├── BeginAnchor.php │ │ │ ├── BextCodingHistory.php │ │ │ ├── Bitrate.php │ │ │ ├── BitsPerAudioSample.php │ │ │ ├── BitsPerSample.php │ │ │ ├── BitsperPixel.php │ │ │ ├── BlackReferenceLevel.php │ │ │ ├── BlockAlign.php │ │ │ ├── BlockContinuityCount.php │ │ │ ├── BlockStartOffset.php │ │ │ ├── BoundingRectangle.php │ │ │ ├── BrandMainTitle.php │ │ │ ├── BrandOriginalTitle.php │ │ │ ├── BrandingSets.php │ │ │ ├── BroadcastChannel.php │ │ │ ├── BroadcastDate.php │ │ │ ├── BroadcastMediumCode.php │ │ │ ├── BroadcastMediumKind.php │ │ │ ├── BroadcastOrganizationName.php │ │ │ ├── BroadcastRegion.php │ │ │ ├── BroadcastServiceName.php │ │ │ ├── BroadcastTime.php │ │ │ ├── BroadcasterRightsToCopy.php │ │ │ ├── BufferDelay.php │ │ │ ├── BuildingName.php │ │ │ ├── Bypass.php │ │ │ ├── BypassOverride.php │ │ │ ├── ByteOffset.php │ │ │ ├── ByteOrder.php │ │ │ ├── CBEStartOffset.php │ │ │ ├── CISACLegalEntityID.php │ │ │ ├── CaptionDescriptionSets.php │ │ │ ├── CaptionKind.php │ │ │ ├── CaptionTitles.php │ │ │ ├── CaptionsDescriptionParticipantSets.php │ │ │ ├── CaptionsViaTeletext.php │ │ │ ├── CaptureAspectRatio.php │ │ │ ├── CaptureFilmFrameRate.php │ │ │ ├── CaptureGammaEquation.php │ │ │ ├── CatalogDataStatus.php │ │ │ ├── CatalogPrefixNumber.php │ │ │ ├── CatalogingSystemName.php │ │ │ ├── CentralTelephoneNumber.php │ │ │ ├── ChannelAssignment.php │ │ │ ├── ChannelCount.php │ │ │ ├── ChannelHandle.php │ │ │ ├── ChannelID.php │ │ │ ├── ChannelIDs.php │ │ │ ├── ChannelStatusMode.php │ │ │ ├── CipherAlgorithm.php │ │ │ ├── CipherAlgorithmAES128CBC.php │ │ │ ├── Citizenship.php │ │ │ ├── CityName.php │ │ │ ├── ClassDefinitions.php │ │ │ ├── ClassificationAndMarkingSystem.php │ │ │ ├── ClassificationComment.php │ │ │ ├── ClassificationNameValueSets.php │ │ │ ├── ClassificationReason.php │ │ │ ├── ClassificationSets.php │ │ │ ├── ClassifiedBy.php │ │ │ ├── ClassifyingCountryCode.php │ │ │ ├── ClipCreationDateTime.php │ │ │ ├── ClipID.php │ │ │ ├── ClipIDArray.php │ │ │ ├── ClipKind.php │ │ │ ├── ClipNumber.php │ │ │ ├── ClipShotSets.php │ │ │ ├── CloneCount.php │ │ │ ├── ClosedBodyPartition.php │ │ │ ├── ClosedCaptionSubtitlesFlag.php │ │ │ ├── ClosedCompleteBodyPartition.php │ │ │ ├── ClosedGOPIndicator.php │ │ │ ├── CodecDefinition.php │ │ │ ├── CodecDefinitions.php │ │ │ ├── CodecEssenceDescriptor.php │ │ │ ├── CodecEssenceKinds.php │ │ │ ├── CodedContentScanningKind.php │ │ │ ├── CodingLawKind.php │ │ │ ├── CodingLawName.php │ │ │ ├── CodingStyleDefault.php │ │ │ ├── CollectionName.php │ │ │ ├── ColorDescriptor.php │ │ │ ├── ColorFieldCode.php │ │ │ ├── ColorPrimaries.php │ │ │ ├── ColorRangeLevels.php │ │ │ ├── ColorSiting.php │ │ │ ├── ColorimetryCode.php │ │ │ ├── CommunicationSets.php │ │ │ ├── CompleteFooter.php │ │ │ ├── ComponentAttributes.php │ │ │ ├── ComponentDataDefinition.php │ │ │ ├── ComponentDepth.php │ │ │ ├── ComponentKLVData.php │ │ │ ├── ComponentMaximumRef.php │ │ │ ├── ComponentMinimumRef.php │ │ │ ├── ComponentUserComments.php │ │ │ ├── ComponentsInSequence.php │ │ │ ├── CompositionRendering.php │ │ │ ├── ComputedKeyData.php │ │ │ ├── ComputedKeyFrames.php │ │ │ ├── ComputedKeySounds.php │ │ │ ├── ComputedKeywords.php │ │ │ ├── ComputedObjectKind.php │ │ │ ├── ComputedStratumKind.php │ │ │ ├── ConstantBPictureFlag.php │ │ │ ├── ConsumerRightsToCopy.php │ │ │ ├── ContactDepartmentName.php │ │ │ ├── ContactID.php │ │ │ ├── ContactKind.php │ │ │ ├── ContactNameValueSets.php │ │ │ ├── ContactsListSet.php │ │ │ ├── ContainerDefinitions.php │ │ │ ├── ContainerLastModifyDate.php │ │ │ ├── ContainerVersion.php │ │ │ ├── ContentClassification.php │ │ │ ├── ContentCodingSystem.php │ │ │ ├── ContentMaturityDescription.php │ │ │ ├── ContentMaturityGraphic.php │ │ │ ├── ContentMaturityRating.php │ │ │ ├── ContentPackageIndexArray.php │ │ │ ├── ContentPackageMetadataLink.php │ │ │ ├── ContentStorage.php │ │ │ ├── ContentValue.php │ │ │ ├── ContextDescription.php │ │ │ ├── ContiguousDataFlag.php │ │ │ ├── ContractClauseDescription.php │ │ │ ├── ContractDateTime.php │ │ │ ├── ContractEntity.php │ │ │ ├── ContractInstallmentPercentage.php │ │ │ ├── ContractLineCode.php │ │ │ ├── ContractLineName.php │ │ │ ├── ContractParticipantSets.php │ │ │ ├── ContractSets.php │ │ │ ├── ContractTermsOfBusiness.php │ │ │ ├── ContractType.php │ │ │ ├── ContractTypeCode.php │ │ │ ├── ContractTypeLink.php │ │ │ ├── ContributionStatus.php │ │ │ ├── ControlPointList.php │ │ │ ├── ControlPointTime.php │ │ │ ├── CopyCount.php │ │ │ ├── CopyrightLicenseCountryCode.php │ │ │ ├── CopyrightLicenseRegionCode.php │ │ │ ├── CopyrightLicenseRegionName.php │ │ │ ├── CopyrightOwnerName.php │ │ │ ├── CopyrightStatus.php │ │ │ ├── CornerLatitudePoint1.php │ │ │ ├── CornerLatitudePoint2.php │ │ │ ├── CornerLatitudePoint3.php │ │ │ ├── CornerLatitudePoint4.php │ │ │ ├── CornerLongitudePoint1.php │ │ │ ├── CornerLongitudePoint2.php │ │ │ ├── CornerLongitudePoint3.php │ │ │ ├── CornerLongitudePoint4.php │ │ │ ├── CountryCodeMethod.php │ │ │ ├── CountryName.php │ │ │ ├── CreateDate.php │ │ │ ├── CryptographicContextID.php │ │ │ ├── CryptographicContextLink.php │ │ │ ├── CryptographicContextObject.php │ │ │ ├── CryptographicFrameworkLabel.php │ │ │ ├── CryptographicKeyID.php │ │ │ ├── Csiz.php │ │ │ ├── CueInWords.php │ │ │ ├── CueOutWords.php │ │ │ ├── CulturalValue.php │ │ │ ├── CurrencyCode.php │ │ │ ├── CurrencyName.php │ │ │ ├── CurrentNumberInSequence.php │ │ │ ├── CurrentRepeatNumber.php │ │ │ ├── CutPoint.php │ │ │ ├── DOI.php │ │ │ ├── DVBParentalRating.php │ │ │ ├── DataDefinition.php │ │ │ ├── DataDefinitions.php │ │ │ ├── DataDeviceKind.php │ │ │ ├── DataDeviceParameterName.php │ │ │ ├── DataDeviceParameterSetting.php │ │ │ ├── DataEnhancementOrModificationDescription.php │ │ │ ├── DataEssenceCoding.php │ │ │ ├── DataEssenceCodingID.php │ │ │ ├── DateTimeDropFrameFlag.php │ │ │ ├── DateTimeEmbeddedFlag.php │ │ │ ├── DateTimeKind.php │ │ │ ├── DateTimeRate.php │ │ │ ├── DeclassificationDate.php │ │ │ ├── DefaultDataValue.php │ │ │ ├── DefaultFadeDuration.php │ │ │ ├── DefaultFadeEditRate.php │ │ │ ├── DefaultFadeType.php │ │ │ ├── DefaultNamespaceURI.php │ │ │ ├── DefaultObject.php │ │ │ ├── DefinedName.php │ │ │ ├── DefinitionObjectID.php │ │ │ ├── DefinitionObjectName.php │ │ │ ├── DegradedEffects.php │ │ │ ├── DeltaEntryArray.php │ │ │ ├── DerivedFrom.php │ │ │ ├── Description.php │ │ │ ├── DescriptionKind.php │ │ │ ├── DescriptiveComment.php │ │ │ ├── DescriptiveMetadataApplicationEnvironmentID.php │ │ │ ├── DescriptiveMetadataFramework.php │ │ │ ├── DescriptiveMetadataPlugInID.php │ │ │ ├── DescriptiveMetadataScheme.php │ │ │ ├── DescriptiveMetadataSchemes.php │ │ │ ├── DescriptiveMetadataSetReferences.php │ │ │ ├── DescriptiveMetadataSets.php │ │ │ ├── DescriptiveMetadataTrackIDs.php │ │ │ ├── DeviceAbsoluteHeading.php │ │ │ ├── DeviceAbsolutePositionalAccuracy.php │ │ │ ├── DeviceAbsoluteSpeed.php │ │ │ ├── DeviceAltitude.php │ │ │ ├── DeviceAssetNumber.php │ │ │ ├── DeviceDesignation.php │ │ │ ├── DeviceIDKind.php │ │ │ ├── DeviceKind.php │ │ │ ├── DeviceKindCode.php │ │ │ ├── DeviceLatitude.php │ │ │ ├── DeviceLongitude.php │ │ │ ├── DeviceManufacturerName.php │ │ │ ├── DeviceModel.php │ │ │ ├── DeviceParameterNameValueSets.php │ │ │ ├── DeviceParametersSets.php │ │ │ ├── DeviceRelativeHeading.php │ │ │ ├── DeviceRelativePositionX.php │ │ │ ├── DeviceRelativePositionY.php │ │ │ ├── DeviceRelativePositionZ.php │ │ │ ├── DeviceRelativePositionalAccuracy.php │ │ │ ├── DeviceRelativeSpeed.php │ │ │ ├── DeviceSerialNumber.php │ │ │ ├── DeviceUsageDescription.php │ │ │ ├── DeviceXDimension.php │ │ │ ├── DeviceYDimension.php │ │ │ ├── DialNorm.php │ │ │ ├── Dictionary.php │ │ │ ├── DictionaryDescription.php │ │ │ ├── DictionaryIdentifier.php │ │ │ ├── DigitalEncodingBitrate.php │ │ │ ├── DigitalMetadataCarrier.php │ │ │ ├── DigitalOrAnalogOrigination.php │ │ │ ├── DigitalVideoFileFormat.php │ │ │ ├── DirectorName.php │ │ │ ├── DiscPartitionCapacity.php │ │ │ ├── DisplayF2Offset.php │ │ │ ├── DisplayHeight.php │ │ │ ├── DisplayUnits.php │ │ │ ├── DisplayWidth.php │ │ │ ├── DisplayXOffset.php │ │ │ ├── DisplayYOffset.php │ │ │ ├── Dither.php │ │ │ ├── DropFrame.php │ │ │ ├── Duration.php │ │ │ ├── DynamicSourcePackageID.php │ │ │ ├── DynamicSourceTrackIDs.php │ │ │ ├── EMailAddress.php │ │ │ ├── EPGProgramSynopsis.php │ │ │ ├── EdgeCode.php │ │ │ ├── EdgeCodeFilmGauge.php │ │ │ ├── EdgeCodeFormat.php │ │ │ ├── EdgeCodeHeader.php │ │ │ ├── EdgeCodeStart.php │ │ │ ├── EditHint.php │ │ │ ├── EditRate.php │ │ │ ├── EditUnitFlags.php │ │ │ ├── EditUnitLength.php │ │ │ ├── EditingEventComment.php │ │ │ ├── EffectRendering.php │ │ │ ├── ElectrospatialFormulation.php │ │ │ ├── ElementCount.php │ │ │ ├── ElementDelta.php │ │ │ ├── ElementLength.php │ │ │ ├── ElementNameList.php │ │ │ ├── Emphasis.php │ │ │ ├── EncryptedContainerLabel.php │ │ │ ├── EncryptedSourceValue.php │ │ │ ├── EncryptedTrackFileID.php │ │ │ ├── EndAnchor.php │ │ │ ├── EnhancementOrModificationDescription.php │ │ │ ├── EnumerationUnderlyingIntegerType.php │ │ │ ├── EpisodeEndNumber.php │ │ │ ├── EpisodeNumber.php │ │ │ ├── EpisodeStartNumber.php │ │ │ ├── EpisodicItemSets.php │ │ │ ├── EssenceContainerArray.php │ │ │ ├── EssenceContainerFormat.php │ │ │ ├── EssenceContainers.php │ │ │ ├── EssenceData.php │ │ │ ├── EssenceDescription.php │ │ │ ├── EssenceIsIdentified.php │ │ │ ├── EssenceLength.php │ │ │ ├── EssenceLocators.php │ │ │ ├── EssenceStreamID.php │ │ │ ├── EventAbsoluteDuration.php │ │ │ ├── EventAbsoluteDurationFrameCount.php │ │ │ ├── EventAnnotationSets.php │ │ │ ├── EventElapsedTimeToEnd.php │ │ │ ├── EventElapsedTimeToStart.php │ │ │ ├── EventEndTimeOffset.php │ │ │ ├── EventEndTimecodeOffset.php │ │ │ ├── EventIndication.php │ │ │ ├── EventOrigin.php │ │ │ ├── EventSets.php │ │ │ ├── EventStart.php │ │ │ ├── EventStartTimeOffset.php │ │ │ ├── EventStartTimecodeOffset.php │ │ │ ├── EventTrackEditRate.php │ │ │ ├── ExCCIData.php │ │ │ ├── ExposedAspectRatio.php │ │ │ ├── ExtendedCaptionsLanguageCode.php │ │ │ ├── ExtendedClipID.php │ │ │ ├── ExtendedClipIDArray.php │ │ │ ├── ExtendedTextLanguageCode.php │ │ │ ├── ExtendibleElementNameList.php │ │ │ ├── FNumber.php │ │ │ ├── FadeInDuration.php │ │ │ ├── FadeInType.php │ │ │ ├── FadeOutDuration.php │ │ │ ├── FadeOutType.php │ │ │ ├── FamilyName.php │ │ │ ├── FaxNumber.php │ │ │ ├── FemaleLeadActressName.php │ │ │ ├── FestivalName.php │ │ │ ├── FieldDominance.php │ │ │ ├── FieldFrameTypeCode.php │ │ │ ├── FieldOfViewHorizontal.php │ │ │ ├── FieldOfViewVertical.php │ │ │ ├── FieldOfViewVerticalFP.php │ │ │ ├── FieldRate.php │ │ │ ├── FileDescriptors.php │ │ │ ├── FileSecurityReport.php │ │ │ ├── FileSecurityWave.php │ │ │ ├── FillerData.php │ │ │ ├── FilmBatchNumber.php │ │ │ ├── FilmCaptureAperture.php │ │ │ ├── FilmColorProcess.php │ │ │ ├── FilmFormatName.php │ │ │ ├── FilmGauge.php │ │ │ ├── FilmStockKind.php │ │ │ ├── FilmStockManufacturerName.php │ │ │ ├── FilmTestParameter.php │ │ │ ├── FilmTestResult.php │ │ │ ├── FilmToVideoTransferDirection.php │ │ │ ├── FilmToVideoTransferKind.php │ │ │ ├── FilmToVideoTransferPhase.php │ │ │ ├── FilteringApplied.php │ │ │ ├── FilteringCode.php │ │ │ ├── FirstBroadcastFlag.php │ │ │ ├── FirstGivenName.php │ │ │ ├── FirstNumberInSequence.php │ │ │ ├── FirstTransmissionInfo.php │ │ │ ├── FixedArrayElementType.php │ │ │ ├── FixedChannelStatusData.php │ │ │ ├── FixedUserData.php │ │ │ ├── FocalLength.php │ │ │ ├── Footer.php │ │ │ ├── FooterPosition.php │ │ │ ├── FormatDescriptor.php │ │ │ ├── FormerFamilyName.php │ │ │ ├── FrameCenterElevation.php │ │ │ ├── FrameCenterLatitude.php │ │ │ ├── FrameCenterLatitudeLongitude.php │ │ │ ├── FrameCenterLongitude.php │ │ │ ├── FrameCode.php │ │ │ ├── FrameCount.php │ │ │ ├── FrameCountOffset.php │ │ │ ├── FrameLayout.php │ │ │ ├── FramePositionalAccuracy.php │ │ │ ├── FrameRate.php │ │ │ ├── FrameworkExtendedTextLanguageCode.php │ │ │ ├── FrameworkTextLanguageCode.php │ │ │ ├── FrameworkThesaurusName.php │ │ │ ├── FrameworkTitle.php │ │ │ ├── GenerationCloneNumber.php │ │ │ ├── GenerationCopyNumber.php │ │ │ ├── GenerationID.php │ │ │ ├── GenericPayloads.php │ │ │ ├── Genre.php │ │ │ ├── GeographicAreaNorthwest.php │ │ │ ├── GeographicAreaSourceDatum.php │ │ │ ├── GeographicAreaSoutheast.php │ │ │ ├── GeographicLocation.php │ │ │ ├── GeographicPolygonCoordinates.php │ │ │ ├── GeographicPolygonSourceDatum.php │ │ │ ├── GeographicalCoordinates.php │ │ │ ├── GlobalNumber.php │ │ │ ├── GraphicKind.php │ │ │ ├── GraphicUsageKind.php │ │ │ ├── GroupSet.php │ │ │ ├── GroupSets.php │ │ │ ├── GroupSynopsis.php │ │ │ ├── HMACAlgorithmSHA1128.php │ │ │ ├── HTMLDOCTYPE.php │ │ │ ├── HTMLMetaDescription.php │ │ │ ├── HardwareAcceleratorFlag.php │ │ │ ├── HasAudioWatermark.php │ │ │ ├── HasVideoWatermark.php │ │ │ ├── HeaderByteCount.php │ │ │ ├── HeaderSize.php │ │ │ ├── HistoricalValue.php │ │ │ ├── HonorsAndQualifications.php │ │ │ ├── HorizontalActionSafePercentage.php │ │ │ ├── HorizontalDatum.php │ │ │ ├── HorizontalGraphicsSafePercentage.php │ │ │ ├── HorizontalSubsampling.php │ │ │ ├── IBTN.php │ │ │ ├── IEEEDeviceID.php │ │ │ ├── IEEEManufacturerID.php │ │ │ ├── ISAN.php │ │ │ ├── ISBD.php │ │ │ ├── ISBN.php │ │ │ ├── ISCI.php │ │ │ ├── ISMN.php │ │ │ ├── ISO3166CountryCode.php │ │ │ ├── ISO6391LanguageCode.php │ │ │ ├── ISO639CaptionsLanguageCode.php │ │ │ ├── ISO639TextLanguageCode.php │ │ │ ├── ISRC.php │ │ │ ├── ISRN.php │ │ │ ├── ISSN.php │ │ │ ├── ISTC.php │ │ │ ├── ISWC.php │ │ │ ├── IdenticalGOPIndicator.php │ │ │ ├── IdentificationList.php │ │ │ ├── IdentificationSets.php │ │ │ ├── IdentificationUL.php │ │ │ ├── IdentifierIssuingAuthority.php │ │ │ ├── IdentifierKind.php │ │ │ ├── IdentifierValue.php │ │ │ ├── ImageAlignmentOffset.php │ │ │ ├── ImageCategory.php │ │ │ ├── ImageCoordinateSystem.php │ │ │ ├── ImageEndOffset.php │ │ │ ├── ImageFormatSet.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageSourceDeviceKind.php │ │ │ ├── ImageStartOffset.php │ │ │ ├── ImageWidth.php │ │ │ ├── IncludeSync.php │ │ │ ├── IndexByteCount.php │ │ │ ├── IndexDuration.php │ │ │ ├── IndexEditRate.php │ │ │ ├── IndexEntryArray.php │ │ │ ├── IndexStreamID.php │ │ │ ├── IndexTableSegment.php │ │ │ ├── IndexingStartPosition.php │ │ │ ├── IndividualAwardName.php │ │ │ ├── InkNumber.php │ │ │ ├── InputSegment.php │ │ │ ├── InputSegmentCount.php │ │ │ ├── InputSegments.php │ │ │ ├── InsertMusicFlag.php │ │ │ ├── InstallmentNumber.php │ │ │ ├── InstanceUID.php │ │ │ ├── IntegrationIndication.php │ │ │ ├── IntellectualPropertyDescription.php │ │ │ ├── IntellectualPropertyLicenseCountryCode.php │ │ │ ├── IntellectualPropertyLicenseRegionCode.php │ │ │ ├── IntellectualPropertyLicenseRegionName.php │ │ │ ├── IntellectualPropertyRights.php │ │ │ ├── IntendedAFD.php │ │ │ ├── IntentDescriptor.php │ │ │ ├── InterestedPartyName.php │ │ │ ├── Interpolation.php │ │ │ ├── InterpolationDefinitions.php │ │ │ ├── IsConcrete.php │ │ │ ├── IsDubbed.php │ │ │ ├── IsLiveProduction.php │ │ │ ├── IsLiveTransmission.php │ │ │ ├── IsOptional.php │ │ │ ├── IsRecording.php │ │ │ ├── IsRepeat.php │ │ │ ├── IsSearchable.php │ │ │ ├── IsSigned.php │ │ │ ├── IsUniqueIdentifier.php │ │ │ ├── IsVoiceover.php │ │ │ ├── ItemDesignatorID.php │ │ │ ├── ItemID.php │ │ │ ├── ItemName.php │ │ │ ├── ItemValue.php │ │ │ ├── JFIFMarkerDescription.php │ │ │ ├── JPEGTableID.php │ │ │ ├── JobFunctionCode.php │ │ │ ├── JobFunctionName.php │ │ │ ├── JobTitle.php │ │ │ ├── Jurisdiction.php │ │ │ ├── KAGSize.php │ │ │ ├── KLVDataDefinitions.php │ │ │ ├── KLVDataParentProperties.php │ │ │ ├── KLVDataType.php │ │ │ ├── KLVDataValue.php │ │ │ ├── KLVMetadataSequence.php │ │ │ ├── KeyCode.php │ │ │ ├── KeyData.php │ │ │ ├── KeyDataOrProgram.php │ │ │ ├── KeyFrame.php │ │ │ ├── KeyFrameSampleCount.php │ │ │ ├── KeyFrames.php │ │ │ ├── KeyPointSets.php │ │ │ ├── KeySound.php │ │ │ ├── KeySounds.php │ │ │ ├── KeyText.php │ │ │ ├── KeyTimePoint.php │ │ │ ├── KeypointKind.php │ │ │ ├── KeypointValue.php │ │ │ ├── Keywords.php │ │ │ ├── LUID.php │ │ │ ├── LanguageName.php │ │ │ ├── LastNumberInSequence.php │ │ │ ├── LayerNumber.php │ │ │ ├── LeadingLines.php │ │ │ ├── LengthSystemName.php │ │ │ ├── LengthUnitKind.php │ │ │ ├── LicenseOptionsDescription.php │ │ │ ├── LineNumber.php │ │ │ ├── LinkedApplicationPlugInInstanceID.php │ │ │ ├── LinkedDescriptiveFrameworkPlugInID.php │ │ │ ├── LinkedDescriptiveObjectPlugInID.php │ │ │ ├── LinkedGenerationID.php │ │ │ ├── LinkedPackageID.php │ │ │ ├── LinkedTimecodeTrackID.php │ │ │ ├── LinkedTrackID.php │ │ │ ├── LinkingName.php │ │ │ ├── LocalCreationDateTime.php │ │ │ ├── LocalDatumAbsolutePositionAccuracy.php │ │ │ ├── LocalDatumRelativePositionAccuracy.php │ │ │ ├── LocalEndDateTime.php │ │ │ ├── LocalEventEndDateTime.php │ │ │ ├── LocalEventStartDateTime.php │ │ │ ├── LocalFestivalDateTime.php │ │ │ ├── LocalFilePath.php │ │ │ ├── LocalID.php │ │ │ ├── LocalLastModifyDate.php │ │ │ ├── LocalModifyDate.php │ │ │ ├── LocalStartDateTime.php │ │ │ ├── LocalTagEntries.php │ │ │ ├── LocalTagUniqueID.php │ │ │ ├── LocalTagValue.php │ │ │ ├── LocalTapeNumber.php │ │ │ ├── LocalTargetID.php │ │ │ ├── LocalUserDateTime.php │ │ │ ├── LocationDescription.php │ │ │ ├── LocationKind.php │ │ │ ├── LocationSets.php │ │ │ ├── LockedIndicator.php │ │ │ ├── LogoFlag.php │ │ │ ├── LowDelayIndicator.php │ │ │ ├── LumaEquation.php │ │ │ ├── LuminanceSampleRate.php │ │ │ ├── MIC.php │ │ │ ├── MICAlgorithm.php │ │ │ ├── MIMECharSet.php │ │ │ ├── MIMEEncoding.php │ │ │ ├── MIMEMediaType.php │ │ │ ├── MPEG7BiMAccessUnitFrame1.php │ │ │ ├── MPEG7BiMAccessUnitFrame2.php │ │ │ ├── MPEG7BiMAccessUnitFrame3.php │ │ │ ├── MPEG7BiMAccessUnitFrame4.php │ │ │ ├── MPEG7BiMAccessUnitFrame5.php │ │ │ ├── MPEG7BiMAccessUnitFrame6.php │ │ │ ├── MPEG7BiMAccessUnitFrame7.php │ │ │ ├── MPEG7BiMAccessUnitFrame8.php │ │ │ ├── MPEG7BiMDecoderInitFrame1.php │ │ │ ├── MPEG7BiMDecoderInitFrame2.php │ │ │ ├── MPEG7BiMDecoderInitFrame3.php │ │ │ ├── MPEG7BiMDecoderInitFrame4.php │ │ │ ├── MPEG7BiMDecoderInitFrame5.php │ │ │ ├── MPEG7BiMDecoderInitFrame6.php │ │ │ ├── MPEG7BiMDecoderInitFrame7.php │ │ │ ├── MPEG7BiMDecoderInitFrame8.php │ │ │ ├── MPEGAudioBitrate.php │ │ │ ├── MPEGAudioRecodingDataset.php │ │ │ ├── MPEGVideoRecodingDataset.php │ │ │ ├── MXFVersion.php │ │ │ ├── MagneticDiskNumber.php │ │ │ ├── MagneticTrack.php │ │ │ ├── MainCatalogNumber.php │ │ │ ├── MainName.php │ │ │ ├── MainSponsorName.php │ │ │ ├── MainTitle.php │ │ │ ├── MajorVersion.php │ │ │ ├── MaleLeadActorName.php │ │ │ ├── ManufacturerID.php │ │ │ ├── ManufacturerInformationObject.php │ │ │ ├── MapDatumUsed.php │ │ │ ├── MarkIn.php │ │ │ ├── MarkOut.php │ │ │ ├── MaterialAbsoluteDuration.php │ │ │ ├── MaterialEndTimeOffset.php │ │ │ ├── MaterialEndTimecodeOffset.php │ │ │ ├── MaximumAPIVersion.php │ │ │ ├── MaximumBPictureCount.php │ │ │ ├── MaximumGOPSize.php │ │ │ ├── MaximumSupportedEngineVersion.php │ │ │ ├── MaximumSupportedPlatformVersion.php │ │ │ ├── MaximumUseCount.php │ │ │ ├── MediaLocation.php │ │ │ ├── MemberNameList.php │ │ │ ├── MemberTypes.php │ │ │ ├── MetadataEncodingSchemeCode.php │ │ │ ├── MetadataItemName.php │ │ │ ├── MetadataServerLocators.php │ │ │ ├── MicrophonePlacementTechniques.php │ │ │ ├── MinimumAPIVersion.php │ │ │ ├── MinimumSupportedEngineVersion.php │ │ │ ├── MinimumSupportedPlatformVersion.php │ │ │ ├── MinorVersion.php │ │ │ ├── MissionID.php │ │ │ ├── MobileTelephoneNumber.php │ │ │ ├── ModifyDate.php │ │ │ ├── MonoSourceTrackIDs.php │ │ │ ├── NITFLayerTargetID.php │ │ │ ├── NMEADocumentText.php │ │ │ ├── NOLACode.php │ │ │ ├── NameSuffix.php │ │ │ ├── NamespacePrefix.php │ │ │ ├── NamespacePrefixes.php │ │ │ ├── NamespaceURI.php │ │ │ ├── NamespaceURIs.php │ │ │ ├── Nationality.php │ │ │ ├── NatureOfPersonality.php │ │ │ ├── NextNumberInSequence.php │ │ │ ├── NielsenStreamIdentifier.php │ │ │ ├── NominationCategory.php │ │ │ ├── NonUSClassifyingCountryCode.php │ │ │ ├── ObjectAreaDimension.php │ │ │ ├── ObjectClass.php │ │ │ ├── ObjectClassDefinition.php │ │ │ ├── ObjectCountryCode.php │ │ │ ├── ObjectCountryCodeMethod.php │ │ │ ├── ObjectDescription.php │ │ │ ├── ObjectDescriptionCode.php │ │ │ ├── ObjectHorizontalAverageDimension.php │ │ │ ├── ObjectIdentificationConfidence.php │ │ │ ├── ObjectKind.php │ │ │ ├── ObjectModelVersion.php │ │ │ ├── ObjectName.php │ │ │ ├── ObjectRegionCode.php │ │ │ ├── ObjectRegionName.php │ │ │ ├── ObjectVerticalAverageDimension.php │ │ │ ├── ObliquityAngle.php │ │ │ ├── OffsetToIndexTable.php │ │ │ ├── OffsetToMetadata.php │ │ │ ├── OpenBodyPartition.php │ │ │ ├── OpenCompleteBodyPartition.php │ │ │ ├── OperatingSystemInterpretations.php │ │ │ ├── OperationCategory.php │ │ │ ├── OperationDataDefinition.php │ │ │ ├── OperationDefinitionID.php │ │ │ ├── OperationDefinitions.php │ │ │ ├── OperationParameters.php │ │ │ ├── OperationalPatternUL.php │ │ │ ├── OpticalDiscNumber.php │ │ │ ├── OpticalTestParameterName.php │ │ │ ├── OpticalTestResult.php │ │ │ ├── OpticalTrack.php │ │ │ ├── OrganizationCode.php │ │ │ ├── OrganizationID.php │ │ │ ├── OrganizationIDKind.php │ │ │ ├── OrganizationKind.php │ │ │ ├── OrganizationMainName.php │ │ │ ├── OrganizationSets.php │ │ │ ├── OrganizationalProgramNumber.php │ │ │ ├── Origin.php │ │ │ ├── OriginCode.php │ │ │ ├── OriginalExtendedSpokenPrimaryLanguageCode.php │ │ │ ├── OriginalProducerName.php │ │ │ ├── OriginalTitle.php │ │ │ ├── OtherGivenNames.php │ │ │ ├── OtherValues.php │ │ │ ├── PII.php │ │ │ ├── POSIXMicroseconds.php │ │ │ ├── PURL.php │ │ │ ├── PackLength.php │ │ │ ├── PackageAttributes.php │ │ │ ├── PackageID.php │ │ │ ├── PackageKLVData.php │ │ │ ├── PackageLastModifyDate.php │ │ │ ├── PackageMarkInPosition.php │ │ │ ├── PackageMarkOutPosition.php │ │ │ ├── PackageMarker.php │ │ │ ├── PackageName.php │ │ │ ├── PackageTimelineMarkerRef.php │ │ │ ├── PackageTracks.php │ │ │ ├── PackageUsageKind.php │ │ │ ├── PackageUserComments.php │ │ │ ├── Packages.php │ │ │ ├── PaddingBits.php │ │ │ ├── Palette.php │ │ │ ├── PaletteLayout.php │ │ │ ├── PanScanInformation.php │ │ │ ├── ParameterDataType.php │ │ │ ├── ParameterDefinition.php │ │ │ ├── ParameterDefinitions.php │ │ │ ├── Parameters.php │ │ │ ├── ParentClass.php │ │ │ ├── ParticipantID.php │ │ │ ├── ParticipantOrganizationSets.php │ │ │ ├── PartitionMetadata.php │ │ │ ├── Password.php │ │ │ ├── PayeeAccountName.php │ │ │ ├── PayeeAccountNumber.php │ │ │ ├── PayeeAccountSortCode.php │ │ │ ├── PayerAccountName.php │ │ │ ├── PayerAccountNumber.php │ │ │ ├── PayerAccountSortCode.php │ │ │ ├── PaymentDueDateTime.php │ │ │ ├── PaymentsSets.php │ │ │ ├── PeakChannelCount.php │ │ │ ├── PeakEnvelope.php │ │ │ ├── PeakEnvelopeBlockSize.php │ │ │ ├── PeakEnvelopeData.php │ │ │ ├── PeakEnvelopeFormat.php │ │ │ ├── PeakEnvelopeTimestamp.php │ │ │ ├── PeakEnvelopeVersion.php │ │ │ ├── PeakFrameCount.php │ │ │ ├── PeakOfPeaksPosition.php │ │ │ ├── PerceivedDisplayFormatCode.php │ │ │ ├── PerceivedDisplayFormatName.php │ │ │ ├── PerforationsPerFrame.php │ │ │ ├── PersonDescription.php │ │ │ ├── PersonOrganizationSets.php │ │ │ ├── PersonSets.php │ │ │ ├── PhysicalInstanceKind.php │ │ │ ├── PhysicalMediaLength.php │ │ │ ├── PhysicalMediaLocation.php │ │ │ ├── PictureComponentSizing.php │ │ │ ├── PictureDisplayRate.php │ │ │ ├── PixelLayout.php │ │ │ ├── PlaceKeyword.php │ │ │ ├── PlaceName.php │ │ │ ├── PlaintextOffset.php │ │ │ ├── PlatformDesignation.php │ │ │ ├── PlatformHeadingAngle.php │ │ │ ├── PlatformModel.php │ │ │ ├── PlatformPitchAngle.php │ │ │ ├── PlatformRollAngle.php │ │ │ ├── PlatformSerialNumber.php │ │ │ ├── PlugInAPIID.php │ │ │ ├── PlugInCategoryID.php │ │ │ ├── PlugInDefinitions.php │ │ │ ├── PlugInEngineID.php │ │ │ ├── PlugInLocatorSet.php │ │ │ ├── PlugInPlatformID.php │ │ │ ├── PointsPerPeakValue.php │ │ │ ├── PolarCharacteristic.php │ │ │ ├── PosTableArray.php │ │ │ ├── PositionInSequence.php │ │ │ ├── PositionTable.php │ │ │ ├── PositionTableCount.php │ │ │ ├── PositionTableIndexing.php │ │ │ ├── PositionWithinViewportImageXCoordinate.php │ │ │ ├── PositionWithinViewportImageYCoordinate.php │ │ │ ├── PostCodeForPostbox.php │ │ │ ├── PostalCode.php │ │ │ ├── PostalTown.php │ │ │ ├── PostboxNumber.php │ │ │ ├── PresentationAspectRatio.php │ │ │ ├── PresentationGammaEquation.php │ │ │ ├── PresenterName.php │ │ │ ├── PreviousNumberInSequence.php │ │ │ ├── PreviousRepeatNumber.php │ │ │ ├── PrimaryExtendedSpokenLanguageCode.php │ │ │ ├── PrimaryOriginalLanguageCode.php │ │ │ ├── PrimaryPackage.php │ │ │ ├── PrimarySpokenLanguageCode.php │ │ │ ├── ProcessingSet.php │ │ │ ├── ProducerName.php │ │ │ ├── ProductFormat.php │ │ │ ├── ProductionOrganizationRole.php │ │ │ ├── ProductionScriptReference.php │ │ │ ├── ProductionSettingPeriodSets.php │ │ │ ├── ProfileAndLevel.php │ │ │ ├── ProgramAwardName.php │ │ │ ├── ProgramCommercialMaterialReference.php │ │ │ ├── ProgramIdentifier.php │ │ │ ├── ProgramIdentifierString.php │ │ │ ├── ProgramKind.php │ │ │ ├── ProgramMaterialClassificationCode.php │ │ │ ├── ProgramNumber.php │ │ │ ├── ProgramSupportMaterialReference.php │ │ │ ├── ProgrammingGroupKind.php │ │ │ ├── ProgrammingGroupTitle.php │ │ │ ├── ProjectName.php │ │ │ ├── ProjectNumber.php │ │ │ ├── ProjectSet.php │ │ │ ├── Properties.php │ │ │ ├── PropertyType.php │ │ │ ├── PublicationSets.php │ │ │ ├── PublishingMediumName.php │ │ │ ├── PublishingOrganizationName.php │ │ │ ├── PublishingRegionName.php │ │ │ ├── PublishingServiceName.php │ │ │ ├── PulldownFieldDominance.php │ │ │ ├── PulldownSequence.php │ │ │ ├── PurchaserAccountName.php │ │ │ ├── PurchaserAccountNumber.php │ │ │ ├── PurchaserIdentificationKind.php │ │ │ ├── PurchaserIdentificationValue.php │ │ │ ├── PurchasingDepartment.php │ │ │ ├── PurchasingOrganizationName.php │ │ │ ├── Purpose.php │ │ │ ├── QltyBasicData.php │ │ │ ├── QltyCueSheet.php │ │ │ ├── QltyEndOfModulation.php │ │ │ ├── QltyOperatorComment.php │ │ │ ├── QltyQualityEvent.php │ │ │ ├── QltyQualityParameter.php │ │ │ ├── QltyStartOfModulation.php │ │ │ ├── QualityFlag.php │ │ │ ├── QuantizationDefault.php │ │ │ ├── RIFFChunkData.php │ │ │ ├── RIFFChunkID.php │ │ │ ├── RIFFChunkLength.php │ │ │ ├── RP217DataStreamPID.php │ │ │ ├── RP217VideoStreamPID.php │ │ │ ├── RandomIndexMetadata.php │ │ │ ├── RandomIndexMetadataV10.php │ │ │ ├── Rating.php │ │ │ ├── RecordedFormat.php │ │ │ ├── RecordedTrackNumber.php │ │ │ ├── RecordingLabelName.php │ │ │ ├── ReelOrRollNumber.php │ │ │ ├── RegionCode.php │ │ │ ├── RegionName.php │ │ │ ├── RegisterAction.php │ │ │ ├── RegisterAdministrationArray.php │ │ │ ├── RegisterAdministrationNotes.php │ │ │ ├── RegisterAdministrationObject.php │ │ │ ├── RegisterApproverName.php │ │ │ ├── RegisterChildEntryArray.php │ │ │ ├── RegisterCreationTime.php │ │ │ ├── RegisterEditorName.php │ │ │ ├── RegisterEntryAdministrationObject.php │ │ │ ├── RegisterEntryArray.php │ │ │ ├── RegisterEntryStatus.php │ │ │ ├── RegisterItemDefiningDocumentName.php │ │ │ ├── RegisterItemDefinition.php │ │ │ ├── RegisterItemHierarchyLevel.php │ │ │ ├── RegisterItemIntroductionVersion.php │ │ │ ├── RegisterItemName.php │ │ │ ├── RegisterItemNotes.php │ │ │ ├── RegisterItemOriginatorName.php │ │ │ ├── RegisterItemStatusChangeDateTime.php │ │ │ ├── RegisterItemSymbol.php │ │ │ ├── RegisterItemUL.php │ │ │ ├── RegisterKind.php │ │ │ ├── RegisterReleaseDateTime.php │ │ │ ├── RegisterStatusKind.php │ │ │ ├── RegisterUserName.php │ │ │ ├── RegisterUserTime.php │ │ │ ├── RegisterVersion.php │ │ │ ├── RegistrantName.php │ │ │ ├── RelatedMaterialDescription.php │ │ │ ├── RelatedMaterialLocators.php │ │ │ ├── RelativePositionInSequenceName.php │ │ │ ├── RelativePositionInSequenceOffset.php │ │ │ ├── RelativeScope.php │ │ │ ├── RelativeTrack.php │ │ │ ├── ReleasableCountryCode.php │ │ │ ├── RenamedType.php │ │ │ ├── ResourceID.php │ │ │ ├── RestrictionsonUse.php │ │ │ ├── ReversePlay.php │ │ │ ├── ReversedByteOrder.php │ │ │ ├── RightsComment.php │ │ │ ├── RightsConditionDescription.php │ │ │ ├── RightsManagementAuthority.php │ │ │ ├── RightsSets.php │ │ │ ├── RightsStartDateTime.php │ │ │ ├── RightsStopDateTime.php │ │ │ ├── Rightsholder.php │ │ │ ├── RoleName.php │ │ │ ├── RoomNumber.php │ │ │ ├── RoomOrSuiteName.php │ │ │ ├── RootFormatVersion.php │ │ │ ├── RootMetaDictionary.php │ │ │ ├── RootObjectDirectory.php │ │ │ ├── RootPreface.php │ │ │ ├── RoundedCaptureFilmFrameRate.php │ │ │ ├── RoundedTimecodeTimebase.php │ │ │ ├── RoundingLaw.php │ │ │ ├── RoundingMethodCode.php │ │ │ ├── RoyaltyIncomeInformation.php │ │ │ ├── RoyaltyPaymentInformation.php │ │ │ ├── Rsiz.php │ │ │ ├── SDKVersion.php │ │ │ ├── SICI.php │ │ │ ├── SMPTE12MUserDateTime.php │ │ │ ├── SMPTE309MUserDateTime.php │ │ │ ├── SMPTE337MDataStreamNumber.php │ │ │ ├── SMPTEUL.php │ │ │ ├── SalesContractNumber.php │ │ │ ├── Salutation.php │ │ │ ├── SampleIndex.php │ │ │ ├── SampleRate.php │ │ │ ├── SampledHeight.php │ │ │ ├── SampledWidth.php │ │ │ ├── SampledXOffset.php │ │ │ ├── SampledYOffset.php │ │ │ ├── SamplingHierarchyCode.php │ │ │ ├── SamplingStructureCode.php │ │ │ ├── ScanningDirection.php │ │ │ ├── SceneNumber.php │ │ │ ├── SceneSettingPeriodSets.php │ │ │ ├── SceneShotSets.php │ │ │ ├── ScramblingKeyKind.php │ │ │ ├── ScramblingKeyValue.php │ │ │ ├── ScriptingKind.php │ │ │ ├── ScriptingLocators.php │ │ │ ├── ScriptingSets.php │ │ │ ├── ScriptingText.php │ │ │ ├── SeasonEpisodeNumber.php │ │ │ ├── SeasonEpisodeTitle.php │ │ │ ├── SecondGivenName.php │ │ │ ├── SecondaryExtendedSpokenLanguageCode.php │ │ │ ├── SecondaryOriginalExtendedSpokenLanguageCode.php │ │ │ ├── SecondaryOriginalLanguageCode.php │ │ │ ├── SecondarySpokenLanguageCode.php │ │ │ ├── SecondaryTitle.php │ │ │ ├── SectorSize.php │ │ │ ├── SecurityClassification.php │ │ │ ├── SecurityClassificationCaveats.php │ │ │ ├── Selected.php │ │ │ ├── SensorMode.php │ │ │ ├── SensorRollAngle.php │ │ │ ├── SensorSize.php │ │ │ ├── SensorType.php │ │ │ ├── SensorTypeCode.php │ │ │ ├── Sequence.php │ │ │ ├── SequenceOffset.php │ │ │ ├── SeriesNumber.php │ │ │ ├── SeriesinaSeriesGroupCount.php │ │ │ ├── SetElementType.php │ │ │ ├── SettingCityName.php │ │ │ ├── SettingCountryCode.php │ │ │ ├── SettingCountryName.php │ │ │ ├── SettingDateTime.php │ │ │ ├── SettingDescription.php │ │ │ ├── SettingPeriodDescription.php │ │ │ ├── SettingPostalCode.php │ │ │ ├── SettingRegionCode.php │ │ │ ├── SettingRegionName.php │ │ │ ├── SettingRoomNumber.php │ │ │ ├── SettingStateOrProvinceOrCountyName.php │ │ │ ├── SettingStreetName.php │ │ │ ├── SettingStreetNumberOrBuildingName.php │ │ │ ├── SettingTownName.php │ │ │ ├── ShimName.php │ │ │ ├── ShootingCountryCode.php │ │ │ ├── ShootingRegionCode.php │ │ │ ├── ShootingRegionName.php │ │ │ ├── ShotComment.php │ │ │ ├── ShotCommentKind.php │ │ │ ├── ShotCueWordsSet.php │ │ │ ├── ShotDescription.php │ │ │ ├── ShotDuration.php │ │ │ ├── ShotList.php │ │ │ ├── ShotLocationSets.php │ │ │ ├── ShotParticipantRoleSets.php │ │ │ ├── ShotPersonSets.php │ │ │ ├── ShotStartPosition.php │ │ │ ├── ShotTrackIDs.php │ │ │ ├── SideNumber.php │ │ │ ├── SignalFormCode.php │ │ │ ├── SignalStandard.php │ │ │ ├── SignalToNoiseRatio.php │ │ │ ├── SignatureTuneFlag.php │ │ │ ├── SimpleFlaggingCount.php │ │ │ ├── SingleSequenceFlag.php │ │ │ ├── Size.php │ │ │ ├── SlantRange.php │ │ │ ├── SlateInformation.php │ │ │ ├── SlateTitle.php │ │ │ ├── SliceCount.php │ │ │ ├── SliceNumber.php │ │ │ ├── SliceOffsetList.php │ │ │ ├── SoftwareOnlySupportFlag.php │ │ │ ├── SourceClip.php │ │ │ ├── SourceContainerFormat.php │ │ │ ├── SourceImageCenterXCoordinate.php │ │ │ ├── SourceImageCenterYCoordinate.php │ │ │ ├── SourceIndex.php │ │ │ ├── SourceKey.php │ │ │ ├── SourceLength.php │ │ │ ├── SourceOrganization.php │ │ │ ├── SourcePackageID.php │ │ │ ├── SourceSpecies.php │ │ │ ├── SourceTrackID.php │ │ │ ├── SourceTrackIDs.php │ │ │ ├── SourceValue.php │ │ │ ├── SpeedChangeEffectFlag.php │ │ │ ├── SplicingMetadata.php │ │ │ ├── StartTimeRelativeToReference.php │ │ │ ├── StartTimecode.php │ │ │ ├── StartTimecodeRelativeToReference.php │ │ │ ├── StateOrProvinceOrCountyName.php │ │ │ ├── StillFrame.php │ │ │ ├── StorageDeviceKind.php │ │ │ ├── StorageKind.php │ │ │ ├── StorageKindCode.php │ │ │ ├── StorageMediaID.php │ │ │ ├── StorageMediaKind.php │ │ │ ├── StoredANCLineNumber.php │ │ │ ├── StoredF2Offset.php │ │ │ ├── StoredVBILineNumber.php │ │ │ ├── StratumKind.php │ │ │ ├── StreamData.php │ │ │ ├── StreamElementType.php │ │ │ ├── StreamID.php │ │ │ ├── StreamOffset.php │ │ │ ├── StreamPositionIndicator.php │ │ │ ├── StreetName.php │ │ │ ├── StreetNumber.php │ │ │ ├── StringElementType.php │ │ │ ├── SubDescriptor.php │ │ │ ├── SubDescriptors.php │ │ │ ├── SubjectAbsoluteHeading.php │ │ │ ├── SubjectAbsoluteSpeed.php │ │ │ ├── SubjectDistance.php │ │ │ ├── SubjectName.php │ │ │ ├── SubjectRelativeHeading.php │ │ │ ├── SubjectRelativePositionalAccuracy.php │ │ │ ├── SubjectRelativeSpeed.php │ │ │ ├── SubtitleDatafileFlag.php │ │ │ ├── SubtitlesPresent.php │ │ │ ├── SupplementaryName.php │ │ │ ├── SupplementaryOrganizationName.php │ │ │ ├── SupplierAccountName.php │ │ │ ├── SupplierAccountNumber.php │ │ │ ├── SupplierIdentificationKind.php │ │ │ ├── SupplierIdentificationValue.php │ │ │ ├── SupplyContractNumber.php │ │ │ ├── SupplyingDepartmentName.php │ │ │ ├── SupportOrAdministrationStatus.php │ │ │ ├── SupportOrganizationRole.php │ │ │ ├── SystemNameOrNumber.php │ │ │ ├── TIFFSummary.php │ │ │ ├── TaggedValueDefinitions.php │ │ │ ├── TaggedValueParentProperties.php │ │ │ ├── TakeNumber.php │ │ │ ├── TapeBatchNumber.php │ │ │ ├── TapeCapacity.php │ │ │ ├── TapeFormat.php │ │ │ ├── TapeFormulation.php │ │ │ ├── TapeManufacturer.php │ │ │ ├── TapePartitionCapacity.php │ │ │ ├── TapeShellKind.php │ │ │ ├── TapeStock.php │ │ │ ├── TargetAudience.php │ │ │ ├── TargetClassOfStrongReference.php │ │ │ ├── TargetClassOfWeakReference.php │ │ │ ├── TargetSet.php │ │ │ ├── TargetWidth.php │ │ │ ├── TechnicalValue.php │ │ │ ├── TelephoneNumber.php │ │ │ ├── TeletextSubtitlesAvailable.php │ │ │ ├── TeletextSubtitlesFlag.php │ │ │ ├── TemporalOffset.php │ │ │ ├── TerminatingFillerData.php │ │ │ ├── TextlessBlackDuration.php │ │ │ ├── TextlessMaterial.php │ │ │ ├── TextualDescriptionKind.php │ │ │ ├── Theme.php │ │ │ ├── ThemeMusicFlag.php │ │ │ ├── ThesaurusName.php │ │ │ ├── ThirdGivenName.php │ │ │ ├── TimePeriodName.php │ │ │ ├── TimeSystemOffset.php │ │ │ ├── TimeUnitKind.php │ │ │ ├── TimebaseReferenceTrackID.php │ │ │ ├── TimecodeArray.php │ │ │ ├── TimecodeCreationDateTime.php │ │ │ ├── TimecodeEndDateTime.php │ │ │ ├── TimecodeEventEndDateTime.php │ │ │ ├── TimecodeEventStartDateTime.php │ │ │ ├── TimecodeKind.php │ │ │ ├── TimecodeLastModifyDate.php │ │ │ ├── TimecodeModifyDate.php │ │ │ ├── TimecodeSourceKind.php │ │ │ ├── TimecodeStartDateTime.php │ │ │ ├── TimecodeStreamData.php │ │ │ ├── TimecodeTimebase.php │ │ │ ├── TimecodeUserBitsFlag.php │ │ │ ├── TimepointValue.php │ │ │ ├── TimingBiasCorrection.php │ │ │ ├── TimingBiasCorrectionDescription.php │ │ │ ├── TitleKind.php │ │ │ ├── TitlesSets.php │ │ │ ├── ToleranceInterpolationMethod.php │ │ │ ├── ToleranceMode.php │ │ │ ├── ToleranceWindow.php │ │ │ ├── ToolkitVersion.php │ │ │ ├── TotalCurrencyAmount.php │ │ │ ├── TotalEpisodeCount.php │ │ │ ├── TotalIncome.php │ │ │ ├── TotalLinesperFrame.php │ │ │ ├── TotalNumberInSequence.php │ │ │ ├── TotalPayment.php │ │ │ ├── TotalSamplesperLine.php │ │ │ ├── TrackID.php │ │ │ ├── TrackName.php │ │ │ ├── TrackNumber.php │ │ │ ├── TrackNumberBatch.php │ │ │ ├── Tracks.php │ │ │ ├── TrafficID.php │ │ │ ├── TrailingLines.php │ │ │ ├── TranscriptReference.php │ │ │ ├── TransferFilmFrameRate.php │ │ │ ├── TransitionEffect.php │ │ │ ├── TransmissionID.php │ │ │ ├── TransportStreamID.php │ │ │ ├── TripletSequenceNumber.php │ │ │ ├── TypeDefinitionElementValueList.php │ │ │ ├── TypeDefinitionExtendibleElementValues.php │ │ │ ├── TypeDefinitions.php │ │ │ ├── UCSEncoding.php │ │ │ ├── UPID.php │ │ │ ├── UPN.php │ │ │ ├── URL.php │ │ │ ├── URN.php │ │ │ ├── UTCEndDateTime.php │ │ │ ├── UTCEventEndDateTime.php │ │ │ ├── UTCEventStartDateTime.php │ │ │ ├── UTCInstantDateTime.php │ │ │ ├── UTCLastModifyDate.php │ │ │ ├── UTCStartDateTime.php │ │ │ ├── UTCUserDateTime.php │ │ │ ├── UniformDataFlag.php │ │ │ ├── UnknownBWFChunks.php │ │ │ ├── UpstreamAudioCompressionAlgorithm.php │ │ │ ├── UseDefaultValue.php │ │ │ ├── UserDataMode.php │ │ │ ├── UserPosition.php │ │ │ ├── Username.php │ │ │ ├── V10IndexTableSegment.php │ │ │ ├── VBEEndOffset.php │ │ │ ├── VBILineCount.php │ │ │ ├── VBIPayloadByteArray.php │ │ │ ├── VBIPayloadSampleCoding.php │ │ │ ├── VBIPayloadSampleCount.php │ │ │ ├── VBIWrappingType.php │ │ │ ├── VC1AverageBitrate.php │ │ │ ├── VC1BPictureCount.php │ │ │ ├── VC1CodedContentType.php │ │ │ ├── VC1IdenticalGOP.php │ │ │ ├── VC1InitializationMetadata.php │ │ │ ├── VC1Level.php │ │ │ ├── VC1MaximumBitrate.php │ │ │ ├── VC1MaximumGOP.php │ │ │ ├── VC1Profile.php │ │ │ ├── VC1SingleSequence.php │ │ │ ├── Value.php │ │ │ ├── VariableArrayElementType.php │ │ │ ├── VersionNumber.php │ │ │ ├── VersionNumberString.php │ │ │ ├── VersionTitle.php │ │ │ ├── VerticalActionSafePercentage.php │ │ │ ├── VerticalDatum.php │ │ │ ├── VerticalGraphicsSafePercentage.php │ │ │ ├── VerticalSubSampling.php │ │ │ ├── VideoAndFilmFrameRelationship.php │ │ │ ├── VideoAverageBitrate.php │ │ │ ├── VideoClipDuration.php │ │ │ ├── VideoCodingSchemeID.php │ │ │ ├── VideoColorKind.php │ │ │ ├── VideoCompressionAlgorithm.php │ │ │ ├── VideoDeviceKind.php │ │ │ ├── VideoDeviceParameterName.php │ │ │ ├── VideoDeviceParameterSetting.php │ │ │ ├── VideoFixedBitrate.php │ │ │ ├── VideoIndexArray.php │ │ │ ├── VideoLineMap.php │ │ │ ├── VideoNoiseReductionAlgorithm.php │ │ │ ├── VideoOrImageCompressionAlgorithm.php │ │ │ ├── VideoPayloadIdentifier.php │ │ │ ├── VideoPayloadIdentifier2002.php │ │ │ ├── VideoTestParameter.php │ │ │ ├── VideoTestResult.php │ │ │ ├── VideoWatermarkKind.php │ │ │ ├── ViewportAspectRatio.php │ │ │ ├── ViewportHeight.php │ │ │ ├── ViewportImageCenterCCoordinate.php │ │ │ ├── ViewportImageCenterYCoordinate.php │ │ │ ├── ViewportWidth.php │ │ │ ├── VoiceTalentName.php │ │ │ ├── WAVESummary.php │ │ │ ├── Weighting.php │ │ │ ├── WhiteReferenceLevel.php │ │ │ ├── WorkInProgressFlag.php │ │ │ ├── WorkingTitle.php │ │ │ ├── XMLDocumentText.php │ │ │ ├── XOsiz.php │ │ │ ├── XTOsiz.php │ │ │ ├── XTsiz.php │ │ │ ├── Xsiz.php │ │ │ ├── YOsiz.php │ │ │ ├── YTOsiz.php │ │ │ ├── YTsiz.php │ │ │ └── Ysiz.php │ │ ├── MakerNotes │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewImageHeight.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageWidth.php │ │ │ └── SerialNumber.php │ │ ├── Matroska │ │ │ ├── AspectRatioType.php │ │ │ ├── AttachedFileData.php │ │ │ ├── AttachedFileDescription.php │ │ │ ├── AttachedFileMIMEType.php │ │ │ ├── AttachedFileName.php │ │ │ ├── AttachedFileReferral.php │ │ │ ├── AttachedFileUID.php │ │ │ ├── AudioBitsPerSample.php │ │ │ ├── AudioChannels.php │ │ │ ├── AudioCodecID.php │ │ │ ├── AudioCodecName.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── Block.php │ │ │ ├── BlockAddID.php │ │ │ ├── BlockAdditional.php │ │ │ ├── BlockAdditionalID.php │ │ │ ├── BlockDuration.php │ │ │ ├── BlockVirtual.php │ │ │ ├── CRC32.php │ │ │ ├── ChannelPositions.php │ │ │ ├── ChapterCountry.php │ │ │ ├── ChapterFlagEnabled.php │ │ │ ├── ChapterFlagHidden.php │ │ │ ├── ChapterLanguage.php │ │ │ ├── ChapterPhysicalEquivalent.php │ │ │ ├── ChapterProcessCodecID.php │ │ │ ├── ChapterProcessData.php │ │ │ ├── ChapterProcessPrivate.php │ │ │ ├── ChapterProcessTime.php │ │ │ ├── ChapterSegmentEditionUID.php │ │ │ ├── ChapterSegmentUID.php │ │ │ ├── ChapterString.php │ │ │ ├── ChapterTimeEnd.php │ │ │ ├── ChapterTimeStart.php │ │ │ ├── ChapterTrackNumber.php │ │ │ ├── ChapterTranslateCodec.php │ │ │ ├── ChapterTranslateEditionUID.php │ │ │ ├── ChapterTranslateID.php │ │ │ ├── ChapterUID.php │ │ │ ├── ClusterDuration.php │ │ │ ├── CodecDecodeAll.php │ │ │ ├── CodecDownloadURL.php │ │ │ ├── CodecID.php │ │ │ ├── CodecInfoURL.php │ │ │ ├── CodecName.php │ │ │ ├── CodecPrivate.php │ │ │ ├── CodecSettings.php │ │ │ ├── CodecState.php │ │ │ ├── ColorSpace.php │ │ │ ├── ContentCompressionAlgorithm.php │ │ │ ├── ContentCompressionSettings.php │ │ │ ├── ContentEncodingOrder.php │ │ │ ├── ContentEncodingScope.php │ │ │ ├── ContentEncodingType.php │ │ │ ├── ContentEncryptionAlgorithm.php │ │ │ ├── ContentEncryptionKeyID.php │ │ │ ├── ContentSignature.php │ │ │ ├── ContentSignatureAlgorithm.php │ │ │ ├── ContentSignatureHashAlgorithm.php │ │ │ ├── ContentSignatureKeyID.php │ │ │ ├── CropBottom.php │ │ │ ├── CropLeft.php │ │ │ ├── CropRight.php │ │ │ ├── CropTop.php │ │ │ ├── CueBlockNumber.php │ │ │ ├── CueClusterPosition.php │ │ │ ├── CueCodecState.php │ │ │ ├── CueRefCluster.php │ │ │ ├── CueRefCodecState.php │ │ │ ├── CueRefNumber.php │ │ │ ├── CueRefTime.php │ │ │ ├── CueTime.php │ │ │ ├── CueTrack.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DefaultDuration.php │ │ │ ├── Delay.php │ │ │ ├── DisplayHeight.php │ │ │ ├── DisplayUnit.php │ │ │ ├── DisplayWidth.php │ │ │ ├── DocType.php │ │ │ ├── DocTypeReadVersion.php │ │ │ ├── DocTypeVersion.php │ │ │ ├── Duration.php │ │ │ ├── EBMLMaxIDLength.php │ │ │ ├── EBMLMaxSizeLength.php │ │ │ ├── EBMLReadVersion.php │ │ │ ├── EBMLVersion.php │ │ │ ├── EditionFlagDefault.php │ │ │ ├── EditionFlagHidden.php │ │ │ ├── EditionFlagOrdered.php │ │ │ ├── EditionUID.php │ │ │ ├── EncryptedBlock.php │ │ │ ├── FrameNumber.php │ │ │ ├── FrameRate.php │ │ │ ├── Gamma.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── LaceNumber.php │ │ │ ├── MaxBlockAdditionID.php │ │ │ ├── MaxCache.php │ │ │ ├── MinCache.php │ │ │ ├── MuxingApp.php │ │ │ ├── NextFileName.php │ │ │ ├── NextUID.php │ │ │ ├── OutputAudioSampleRate.php │ │ │ ├── Position.php │ │ │ ├── PrevFileName.php │ │ │ ├── PrevSize.php │ │ │ ├── PrevUID.php │ │ │ ├── ReferenceBlock.php │ │ │ ├── ReferencePriority.php │ │ │ ├── ReferenceVirtual.php │ │ │ ├── SeekID.php │ │ │ ├── SeekPosition.php │ │ │ ├── SegmentFamily.php │ │ │ ├── SegmentFileName.php │ │ │ ├── SegmentUID.php │ │ │ ├── Signature.php │ │ │ ├── SignatureAlgo.php │ │ │ ├── SignatureHash.php │ │ │ ├── SignaturePublicKey.php │ │ │ ├── SignedElement.php │ │ │ ├── SilentTrackNumber.php │ │ │ ├── SimpleBlock.php │ │ │ ├── Stereo3DMode.php │ │ │ ├── TagAttachmentUID.php │ │ │ ├── TagBinary.php │ │ │ ├── TagChapterUID.php │ │ │ ├── TagDefault.php │ │ │ ├── TagEditionUID.php │ │ │ ├── TagLanguage.php │ │ │ ├── TagName.php │ │ │ ├── TagString.php │ │ │ ├── TagTrackUID.php │ │ │ ├── TargetType.php │ │ │ ├── TargetTypeValue.php │ │ │ ├── Timecode.php │ │ │ ├── TimecodeScale.php │ │ │ ├── Title.php │ │ │ ├── TrackAttachmentUID.php │ │ │ ├── TrackDefault.php │ │ │ ├── TrackForced.php │ │ │ ├── TrackLacing.php │ │ │ ├── TrackLanguage.php │ │ │ ├── TrackName.php │ │ │ ├── TrackNumber.php │ │ │ ├── TrackOffset.php │ │ │ ├── TrackOverlay.php │ │ │ ├── TrackTimecodeScale.php │ │ │ ├── TrackTranslateCodec.php │ │ │ ├── TrackTranslateEditionUID.php │ │ │ ├── TrackTranslateTrackID.php │ │ │ ├── TrackType.php │ │ │ ├── TrackUID.php │ │ │ ├── TrackUsed.php │ │ │ ├── VideoCodecID.php │ │ │ ├── VideoCodecName.php │ │ │ ├── VideoFrameRate.php │ │ │ ├── VideoScanType.php │ │ │ ├── Void.php │ │ │ └── WritingApp.php │ │ ├── MediaJukebox │ │ │ ├── Album.php │ │ │ ├── Caption.php │ │ │ ├── Date.php │ │ │ ├── Keywords.php │ │ │ ├── Name.php │ │ │ ├── People.php │ │ │ ├── Places.php │ │ │ ├── ToolName.php │ │ │ └── ToolVersion.php │ │ ├── MetaIFD │ │ │ ├── CameraOwner.php │ │ │ ├── CaptureConditionsPAR.php │ │ │ ├── CaptureDeviceFID.php │ │ │ ├── DealerIDNumber.php │ │ │ ├── EditTagArray.php │ │ │ ├── EnvelopeNumber.php │ │ │ ├── FilmCategory.php │ │ │ ├── FilmGencode.php │ │ │ ├── FilmProductCode.php │ │ │ ├── FilmSize.php │ │ │ ├── FrameNumber.php │ │ │ ├── ImagePrintStatus.php │ │ │ ├── ImageRotationStatus.php │ │ │ ├── ImageSourceEK.php │ │ │ ├── Magnification.php │ │ │ ├── MetadataNumber.php │ │ │ ├── ModelAndVersion.php │ │ │ ├── NativeResolutionUnit.php │ │ │ ├── NativeXResolution.php │ │ │ ├── NativeYResolution.php │ │ │ ├── PrintQuality.php │ │ │ ├── RollGuidElements.php │ │ │ ├── SBAExposureRecord.php │ │ │ ├── SBAInputImageBitDepth.php │ │ │ ├── SBAInputImageColorspace.php │ │ │ ├── SBARGBShifts.php │ │ │ ├── SerialNumber.php │ │ │ ├── SourceImageDirectory.php │ │ │ ├── SourceImageFileName.php │ │ │ ├── SourceImageVolumeName.php │ │ │ ├── UserAdjSBARGBShifts.php │ │ │ └── UserSelectGroupTitle.php │ │ ├── Microsoft │ │ │ ├── Abstract0.php │ │ │ ├── AccountName.php │ │ │ ├── AcquisitionTime.php │ │ │ ├── AcquisitionTimeDay.php │ │ │ ├── AcquisitionTimeMonth.php │ │ │ ├── AcquisitionTimeYear.php │ │ │ ├── AcquisitionTimeYearMonth.php │ │ │ ├── AcquisitionTimeYearMonthDay.php │ │ │ ├── AlbumArtist.php │ │ │ ├── AlbumArtistSortOrder.php │ │ │ ├── AlbumCoverURL.php │ │ │ ├── AlbumID.php │ │ │ ├── AlbumIDAlbumArtist.php │ │ │ ├── AlbumTitle.php │ │ │ ├── AlbumTitleSortOrder.php │ │ │ ├── AlternateSourceURL.php │ │ │ ├── Anniversary.php │ │ │ ├── Artist.php │ │ │ ├── AssistantsName.php │ │ │ ├── AssistantsPhone.php │ │ │ ├── Attachments.php │ │ │ ├── Attributes.php │ │ │ ├── AudioBitrate.php │ │ │ ├── AudioFormat.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── AudioSampleSize.php │ │ │ ├── Author.php │ │ │ ├── AuthorSortOrder.php │ │ │ ├── AutoSummary.php │ │ │ ├── AverageLevel.php │ │ │ ├── BccAddresses.php │ │ │ ├── BccNames.php │ │ │ ├── BeatsPerMinute.php │ │ │ ├── BillingInformation.php │ │ │ ├── Birthday.php │ │ │ ├── BitDepth.php │ │ │ ├── Bitrate.php │ │ │ ├── BroadcastDate.php │ │ │ ├── BusinessAddress.php │ │ │ ├── BusinessCity.php │ │ │ ├── BusinessCountryRegion.php │ │ │ ├── BusinessFax.php │ │ │ ├── BusinessHomePage.php │ │ │ ├── BusinessPOBox.php │ │ │ ├── BusinessPhone.php │ │ │ ├── BusinessPostalCode.php │ │ │ ├── BusinessStateOrProvince.php │ │ │ ├── BusinessStreet.php │ │ │ ├── BuyNow.php │ │ │ ├── BuyTickets.php │ │ │ ├── CDTrackEnabled.php │ │ │ ├── CallLetters.php │ │ │ ├── CallbackNumber.php │ │ │ ├── CameraMaker.php │ │ │ ├── CameraManufacturer.php │ │ │ ├── CameraModel.php │ │ │ ├── CarPhone.php │ │ │ ├── Category.php │ │ │ ├── CcAddresses.php │ │ │ ├── CcNames.php │ │ │ ├── CellPhone.php │ │ │ ├── ChannelNumber.php │ │ │ ├── Channels.php │ │ │ ├── ChapterNum.php │ │ │ ├── Children.php │ │ │ ├── City.php │ │ │ ├── ClientID.php │ │ │ ├── ClosedCaptioning.php │ │ │ ├── Color.php │ │ │ ├── Comment.php │ │ │ ├── Comments.php │ │ │ ├── Company.php │ │ │ ├── CompanyMainPhone.php │ │ │ ├── Complete.php │ │ │ ├── Composer.php │ │ │ ├── Composers.php │ │ │ ├── Computer.php │ │ │ ├── Conductor.php │ │ │ ├── Conductors.php │ │ │ ├── ContactNames.php │ │ │ ├── ContentDistributor.php │ │ │ ├── ContentDistributorDuration.php │ │ │ ├── ContentDistributorType.php │ │ │ ├── ContentGroupDescription.php │ │ │ ├── ContentType.php │ │ │ ├── Contributors.php │ │ │ ├── ConversationID.php │ │ │ ├── Copyright.php │ │ │ ├── Count.php │ │ │ ├── CountryRegion.php │ │ │ ├── Creator.php │ │ │ ├── CurrentBitrate.php │ │ │ ├── DLNAServerUDN.php │ │ │ ├── DLNASourceURI.php │ │ │ ├── DRMIndividualizedVersion.php │ │ │ ├── DRMKeyID.php │ │ │ ├── DTCPIPHost.php │ │ │ ├── DTCPIPPort.php │ │ │ ├── DVDID.php │ │ │ ├── DataRate.php │ │ │ ├── Date.php │ │ │ ├── DateAccessed.php │ │ │ ├── DateAcquired.php │ │ │ ├── DateArchived.php │ │ │ ├── DateCompleted.php │ │ │ ├── DateCreated.php │ │ │ ├── DateImported.php │ │ │ ├── DateLastSaved.php │ │ │ ├── DateModified.php │ │ │ ├── DatePictureTaken.php │ │ │ ├── DateReceived.php │ │ │ ├── DateReleased.php │ │ │ ├── DateSent.php │ │ │ ├── DateVisited.php │ │ │ ├── Department.php │ │ │ ├── Description.php │ │ │ ├── Dimensions.php │ │ │ ├── Director.php │ │ │ ├── Directors.php │ │ │ ├── DisplayArtist.php │ │ │ ├── Division.php │ │ │ ├── DocumentID.php │ │ │ ├── DueDate.php │ │ │ ├── Duration.php │ │ │ ├── EMail2.php │ │ │ ├── EMail3.php │ │ │ ├── EMailAddress.php │ │ │ ├── EMailDisplayName.php │ │ │ ├── EMailList.php │ │ │ ├── EXIFVersion.php │ │ │ ├── EncodedBy.php │ │ │ ├── EncodingTime.php │ │ │ ├── EndDate.php │ │ │ ├── EntryType.php │ │ │ ├── EpisodeName.php │ │ │ ├── Event.php │ │ │ ├── ExposureBias.php │ │ │ ├── ExposureProgram.php │ │ │ ├── ExposureTime.php │ │ │ ├── FStop.php │ │ │ ├── FileAs.php │ │ │ ├── FileCount.php │ │ │ ├── FileSize.php │ │ │ ├── FileType.php │ │ │ ├── FileVersion.php │ │ │ ├── FirstName.php │ │ │ ├── FlagColor.php │ │ │ ├── FlagStatus.php │ │ │ ├── FlashMode.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalLength35mm.php │ │ │ ├── Folder.php │ │ │ ├── FolderName.php │ │ │ ├── FolderPath.php │ │ │ ├── FormatTag.php │ │ │ ├── FourCC.php │ │ │ ├── FrameHeight.php │ │ │ ├── FrameRate.php │ │ │ ├── FrameWidth.php │ │ │ ├── FreeBusyStatus.php │ │ │ ├── Frequency.php │ │ │ ├── FromAddresses.php │ │ │ ├── FromNames.php │ │ │ ├── FullName.php │ │ │ ├── Gender.php │ │ │ ├── Genre.php │ │ │ ├── GenreID.php │ │ │ ├── GivenName.php │ │ │ ├── HasAttachments.php │ │ │ ├── HasFlag.php │ │ │ ├── Hobbies.php │ │ │ ├── HomeAddress.php │ │ │ ├── HomeCity.php │ │ │ ├── HomeCountryRegion.php │ │ │ ├── HomeFax.php │ │ │ ├── HomePOBox.php │ │ │ ├── HomePhone.php │ │ │ ├── HomePostalCode.php │ │ │ ├── HomeStateOrProvince.php │ │ │ ├── HomeStreet.php │ │ │ ├── HorizontalResolution.php │ │ │ ├── IMAddresses.php │ │ │ ├── ISOSpeed.php │ │ │ ├── Importance.php │ │ │ ├── Incomplete.php │ │ │ ├── InitialKey.php │ │ │ ├── Initials.php │ │ │ ├── IsAttachment.php │ │ │ ├── IsCompleted.php │ │ │ ├── IsDeleted.php │ │ │ ├── IsNetworkFeed.php │ │ │ ├── IsOnline.php │ │ │ ├── IsProtected.php │ │ │ ├── IsRecurring.php │ │ │ ├── IsVBR.php │ │ │ ├── JobTitle.php │ │ │ ├── Keywords.php │ │ │ ├── Kinds.php │ │ │ ├── Label.php │ │ │ ├── Language.php │ │ │ ├── LastName.php │ │ │ ├── LastPrinted.php │ │ │ ├── LeadPerformer.php │ │ │ ├── LegalTrademarks.php │ │ │ ├── LensMaker.php │ │ │ ├── LensModel.php │ │ │ ├── LibraryID.php │ │ │ ├── LibraryName.php │ │ │ ├── LightSource.php │ │ │ ├── LinkStatus.php │ │ │ ├── LinkTarget.php │ │ │ ├── Location.php │ │ │ ├── Lyrics.php │ │ │ ├── MCDI.php │ │ │ ├── MailingAddress.php │ │ │ ├── MaxAperture.php │ │ │ ├── MediaClassPrimaryID.php │ │ │ ├── MediaClassSecondaryID.php │ │ │ ├── MediaContentTypes.php │ │ │ ├── MediaCreated.php │ │ │ ├── MediaOriginalBroadcastDateTime.php │ │ │ ├── MediaOriginalChannel.php │ │ │ ├── MediaStationName.php │ │ │ ├── MediaType.php │ │ │ ├── MeteringMode.php │ │ │ ├── MiddleName.php │ │ │ ├── Mileage.php │ │ │ ├── ModifiedBy.php │ │ │ ├── Mood.php │ │ │ ├── MoreInfo.php │ │ │ ├── Name.php │ │ │ ├── Nickname.php │ │ │ ├── OfficeLocation.php │ │ │ ├── OfflineAvailability.php │ │ │ ├── OfflineStatus.php │ │ │ ├── OptionalAttendeeAddresses.php │ │ │ ├── OptionalAttendees.php │ │ │ ├── OrganizerAddress.php │ │ │ ├── OrganizerName.php │ │ │ ├── Orientation.php │ │ │ ├── OriginalAlbumTitle.php │ │ │ ├── OriginalArtist.php │ │ │ ├── OriginalLyricist.php │ │ │ ├── OtherAddress.php │ │ │ ├── OtherCity.php │ │ │ ├── OtherCountryRegion.php │ │ │ ├── OtherPOBox.php │ │ │ ├── OtherPostalCode.php │ │ │ ├── OtherStateOrProvince.php │ │ │ ├── OtherStreet.php │ │ │ ├── Owner.php │ │ │ ├── POBox.php │ │ │ ├── Pager.php │ │ │ ├── Pages.php │ │ │ ├── PanoramicStitchCameraMotion.php │ │ │ ├── PanoramicStitchMapType.php │ │ │ ├── PanoramicStitchPhi0.php │ │ │ ├── PanoramicStitchPhi1.php │ │ │ ├── PanoramicStitchTheta0.php │ │ │ ├── PanoramicStitchTheta1.php │ │ │ ├── PanoramicStitchVersion.php │ │ │ ├── ParentalRating.php │ │ │ ├── ParentalRatingReason.php │ │ │ ├── PartOfSet.php │ │ │ ├── Participants.php │ │ │ ├── Path.php │ │ │ ├── PeakValue.php │ │ │ ├── PerceivedType.php │ │ │ ├── Period.php │ │ │ ├── PersonalTitle.php │ │ │ ├── PixelAspectRatioX.php │ │ │ ├── PixelAspectRatioY.php │ │ │ ├── PlaylistIndex.php │ │ │ ├── PostalCode.php │ │ │ ├── PrimaryEMail.php │ │ │ ├── PrimaryPhone.php │ │ │ ├── Priority.php │ │ │ ├── Producer.php │ │ │ ├── Producers.php │ │ │ ├── ProductName.php │ │ │ ├── ProductVersion.php │ │ │ ├── Profession.php │ │ │ ├── ProgramDescription.php │ │ │ ├── ProgramMode.php │ │ │ ├── ProgramName.php │ │ │ ├── Project.php │ │ │ ├── Protected0.php │ │ │ ├── ProtectionType.php │ │ │ ├── Provider.php │ │ │ ├── ProviderLogoURL.php │ │ │ ├── ProviderRating.php │ │ │ ├── ProviderStyle.php │ │ │ ├── ProviderURL.php │ │ │ ├── Publisher.php │ │ │ ├── RadioBand.php │ │ │ ├── RadioFormat.php │ │ │ ├── Rating.php │ │ │ ├── RatingOrg.php │ │ │ ├── ReadStatus.php │ │ │ ├── RecordingTime.php │ │ │ ├── RecordingTimeDay.php │ │ │ ├── RecordingTimeMonth.php │ │ │ ├── RecordingTimeYear.php │ │ │ ├── RecordingTimeYearMonth.php │ │ │ ├── RecordingTimeYearMonthDay.php │ │ │ ├── ReleaseDate.php │ │ │ ├── ReleaseDateDay.php │ │ │ ├── ReleaseDateMonth.php │ │ │ ├── ReleaseDateYear.php │ │ │ ├── ReleaseDateYearMonth.php │ │ │ ├── ReleaseDateYearMonthDay.php │ │ │ ├── ReminderTime.php │ │ │ ├── RequestState.php │ │ │ ├── RequiredAttendeeAddresses.php │ │ │ ├── RequiredAttendees.php │ │ │ ├── Rerun.php │ │ │ ├── Resources.php │ │ │ ├── SAP.php │ │ │ ├── Saturation.php │ │ │ ├── SearchRanking.php │ │ │ ├── SenderAddress.php │ │ │ ├── SenderName.php │ │ │ ├── Sensitivity.php │ │ │ ├── ShadowFilePath.php │ │ │ ├── Shared.php │ │ │ ├── SharedUserRating.php │ │ │ ├── SharedWith.php │ │ │ ├── Size.php │ │ │ ├── Slides.php │ │ │ ├── Source.php │ │ │ ├── SourceURL.php │ │ │ ├── SpaceFree.php │ │ │ ├── SpaceUsed.php │ │ │ ├── Spouse.php │ │ │ ├── StartDate.php │ │ │ ├── StateOrProvince.php │ │ │ ├── StationCallSign.php │ │ │ ├── StationName.php │ │ │ ├── Status.php │ │ │ ├── Store.php │ │ │ ├── Street.php │ │ │ ├── SubTitle.php │ │ │ ├── SubTitleDescription.php │ │ │ ├── Subject.php │ │ │ ├── SubjectDistance.php │ │ │ ├── SubscriptionContentID.php │ │ │ ├── Suffix.php │ │ │ ├── Summary.php │ │ │ ├── Sync01.php │ │ │ ├── Sync02.php │ │ │ ├── Sync03.php │ │ │ ├── Sync04.php │ │ │ ├── Sync05.php │ │ │ ├── Sync06.php │ │ │ ├── Sync07.php │ │ │ ├── Sync08.php │ │ │ ├── Sync09.php │ │ │ ├── Sync10.php │ │ │ ├── Sync11.php │ │ │ ├── Sync12.php │ │ │ ├── Sync13.php │ │ │ ├── Sync14.php │ │ │ ├── Sync15.php │ │ │ ├── Sync16.php │ │ │ ├── SyncOnly.php │ │ │ ├── SyncState.php │ │ │ ├── TTYTTDPhone.php │ │ │ ├── TaskOwner.php │ │ │ ├── Telex.php │ │ │ ├── Temporary.php │ │ │ ├── Title.php │ │ │ ├── TitleNum.php │ │ │ ├── TitleSortOrder.php │ │ │ ├── ToAddresses.php │ │ │ ├── ToDoTitle.php │ │ │ ├── ToNames.php │ │ │ ├── TotalBitrate.php │ │ │ ├── TotalDuration.php │ │ │ ├── TotalEditingTime.php │ │ │ ├── TotalFileSize.php │ │ │ ├── TotalSize.php │ │ │ ├── TrackNumber.php │ │ │ ├── TrackingID.php │ │ │ ├── Type.php │ │ │ ├── URL.php │ │ │ ├── UniqueFileIdentifier.php │ │ │ ├── Untitled0.php │ │ │ ├── Untitled1.php │ │ │ ├── Untitled2.php │ │ │ ├── UserCustom1.php │ │ │ ├── UserCustom2.php │ │ │ ├── UserEffectiveRating.php │ │ │ ├── UserLastPlayedTime.php │ │ │ ├── UserPlayCount.php │ │ │ ├── UserPlaycountAfternoon.php │ │ │ ├── UserPlaycountEvening.php │ │ │ ├── UserPlaycountMorning.php │ │ │ ├── UserPlaycountNight.php │ │ │ ├── UserPlaycountWeekday.php │ │ │ ├── UserPlaycountWeekend.php │ │ │ ├── UserRating.php │ │ │ ├── UserServiceRating.php │ │ │ ├── UserWebURL.php │ │ │ ├── VerticalResolution.php │ │ │ ├── VideoBitrate.php │ │ │ ├── VideoCompression.php │ │ │ ├── VideoFormat.php │ │ │ ├── VideoFrameRate.php │ │ │ ├── VideoHeight.php │ │ │ ├── VideoWidth.php │ │ │ ├── WMCollectionGroupID.php │ │ │ ├── WMCollectionID.php │ │ │ ├── WMContentID.php │ │ │ ├── WMShadowFileSourceDRMType.php │ │ │ ├── WMShadowFileSourceFileType.php │ │ │ ├── Webpage.php │ │ │ ├── WhiteBalance.php │ │ │ ├── WindowsFileName.php │ │ │ ├── WordCount.php │ │ │ ├── Writer.php │ │ │ ├── Writers.php │ │ │ └── Year.php │ │ ├── Minolta │ │ │ ├── AELButton.php │ │ │ ├── AELExposureIndicator.php │ │ │ ├── AELock.php │ │ │ ├── AEMeteringSegments.php │ │ │ ├── AFAreaIllumination.php │ │ │ ├── AFAreaMode.php │ │ │ ├── AFAssist.php │ │ │ ├── AFMode.php │ │ │ ├── AFPoint.php │ │ │ ├── AFPointSelected.php │ │ │ ├── AFPoints.php │ │ │ ├── AFSensorActive.php │ │ │ ├── AFStatusActiveSensor.php │ │ │ ├── AFStatusBottom.php │ │ │ ├── AFStatusBottomLeft.php │ │ │ ├── AFStatusBottomRight.php │ │ │ ├── AFStatusCenterHorizontal.php │ │ │ ├── AFStatusCenterVertical.php │ │ │ ├── AFStatusLeft.php │ │ │ ├── AFStatusMiddleHorizontal.php │ │ │ ├── AFStatusRight.php │ │ │ ├── AFStatusTop.php │ │ │ ├── AFStatusTopLeft.php │ │ │ ├── AFStatusTopRight.php │ │ │ ├── ApertureSetting.php │ │ │ ├── AutoBracketOrder.php │ │ │ ├── AverageLV.php │ │ │ ├── BWFilter.php │ │ │ ├── BatteryState.php │ │ │ ├── BracketStep.php │ │ │ ├── Brightness.php │ │ │ ├── BrightnessValue.php │ │ │ ├── CardShutterLock.php │ │ │ ├── ColorBalanceBlue.php │ │ │ ├── ColorBalanceGreen.php │ │ │ ├── ColorBalanceRed.php │ │ │ ├── ColorCompensationFilter.php │ │ │ ├── ColorFilter.php │ │ │ ├── ColorMode.php │ │ │ ├── ColorProfile.php │ │ │ ├── ColorSpace.php │ │ │ ├── ColorTemperature.php │ │ │ ├── ColorTemperatureSetting.php │ │ │ ├── CompressedImageSize.php │ │ │ ├── ContinuousBracketing.php │ │ │ ├── Contrast.php │ │ │ ├── ControlDialSet.php │ │ │ ├── CustomWBBlueLevel.php │ │ │ ├── CustomWBError.php │ │ │ ├── CustomWBGreenLevel.php │ │ │ ├── CustomWBRedLevel.php │ │ │ ├── CustomWBSetting.php │ │ │ ├── DECPosition.php │ │ │ ├── DataImprint.php │ │ │ ├── DigitalZoom.php │ │ │ ├── DriveMode.php │ │ │ ├── DriveMode2.php │ │ │ ├── DynamicRangeOptimizer.php │ │ │ ├── DynamicRangeOptimizerMode.php │ │ │ ├── DynamicRangeOptimizerSetting.php │ │ │ ├── ExposureBracketShotNumber.php │ │ │ ├── ExposureBracketingIndicatorLast.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureCompensationMode.php │ │ │ ├── ExposureCompensationSetting.php │ │ │ ├── ExposureIndicator.php │ │ │ ├── ExposureMode.php │ │ │ ├── ExposureTime.php │ │ │ ├── EyeStartAF.php │ │ │ ├── FNumber.php │ │ │ ├── FileNumberMemory.php │ │ │ ├── Flash.php │ │ │ ├── FlashDefault.php │ │ │ ├── FlashExposureComp.php │ │ │ ├── FlashExposureCompSet.php │ │ │ ├── FlashExposureIndicator.php │ │ │ ├── FlashExposureIndicatorLast.php │ │ │ ├── FlashExposureIndicatorNext.php │ │ │ ├── FlashFired.php │ │ │ ├── FlashFunction.php │ │ │ ├── FlashMetering.php │ │ │ ├── FlashMode.php │ │ │ ├── FlashType.php │ │ │ ├── FocalLength.php │ │ │ ├── FocusArea.php │ │ │ ├── FocusDistance.php │ │ │ ├── FocusHoldButton.php │ │ │ ├── FocusLocked.php │ │ │ ├── FocusMode.php │ │ │ ├── FocusModeSwitch.php │ │ │ ├── FolderName.php │ │ │ ├── FrameNumber.php │ │ │ ├── FreeMemoryCardImages.php │ │ │ ├── HighSpeedSync.php │ │ │ ├── HueAdjustment.php │ │ │ ├── ISO.php │ │ │ ├── ISOSetting.php │ │ │ ├── ImageNumber.php │ │ │ ├── ImageNumber2.php │ │ │ ├── ImageStabilization.php │ │ │ ├── ImageStabilizationSetting.php │ │ │ ├── InstantPlaybackSetup.php │ │ │ ├── InstantPlaybackTime.php │ │ │ ├── InternalFlash.php │ │ │ ├── InternalSerialNumber.php │ │ │ ├── IntervalLength.php │ │ │ ├── IntervalMode.php │ │ │ ├── IntervalNumber.php │ │ │ ├── LastFileNumber.php │ │ │ ├── LensShutterLock.php │ │ │ ├── LensType.php │ │ │ ├── MacroMode.php │ │ │ ├── Make.php │ │ │ ├── MakerNoteVersion.php │ │ │ ├── MaxAperture.php │ │ │ ├── MeasuredLV.php │ │ │ ├── MeteringMode.php │ │ │ ├── MeteringOffScaleIndicator.php │ │ │ ├── MinoltaCameraSettings2.php │ │ │ ├── MinoltaDate.php │ │ │ ├── MinoltaImageSize.php │ │ │ ├── MinoltaModelID.php │ │ │ ├── MinoltaQuality.php │ │ │ ├── MinoltaTime.php │ │ │ ├── ModelType.php │ │ │ ├── MonitorDisplayOff.php │ │ │ ├── NoiseReduction.php │ │ │ ├── PictureFinish.php │ │ │ ├── PlayDisplay.php │ │ │ ├── PresetWhiteBalance.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── PrioritySetupShutterRelease.php │ │ │ ├── RawAndJpgRecording.php │ │ │ ├── RecordDisplay.php │ │ │ ├── RedEyeReduction.php │ │ │ ├── Rotation.php │ │ │ ├── Saturation.php │ │ │ ├── SceneMode.php │ │ │ ├── SelfTimerTime.php │ │ │ ├── Sharpness.php │ │ │ ├── ShutterSpeedSetting.php │ │ │ ├── SingleFrameBracketing.php │ │ │ ├── SoftwareVersion.php │ │ │ ├── SonyImageSize.php │ │ │ ├── SonyQuality.php │ │ │ ├── SpotFocusPointX.php │ │ │ ├── SpotFocusPointY.php │ │ │ ├── SubjectProgram.php │ │ │ ├── Teleconverter.php │ │ │ ├── TiffMeteringImage.php │ │ │ ├── WBBlueLevel3500K.php │ │ │ ├── WBBlueLevel6500K.php │ │ │ ├── WBBlueLevelCustom.php │ │ │ ├── WBBlueLevelsCloudy.php │ │ │ ├── WBBlueLevelsDaylight.php │ │ │ ├── WBBlueLevelsFlash.php │ │ │ ├── WBBlueLevelsFluorescent.php │ │ │ ├── WBBlueLevelsKelvin.php │ │ │ ├── WBBlueLevelsShade.php │ │ │ ├── WBBlueLevelsTungsten.php │ │ │ ├── WBBracketShotNumber.php │ │ │ ├── WBGBRGLevels.php │ │ │ ├── WBRBLevels3500K.php │ │ │ ├── WBRBLevels6500K.php │ │ │ ├── WBRBLevelsCloudy.php │ │ │ ├── WBRBLevelsCoolWhiteF.php │ │ │ ├── WBRBLevelsCustom.php │ │ │ ├── WBRBLevelsDaylight.php │ │ │ ├── WBRBLevelsFlash.php │ │ │ ├── WBRBLevelsShade.php │ │ │ ├── WBRBLevelsTungsten.php │ │ │ ├── WBRGBLevels.php │ │ │ ├── WBRedLevel3500K.php │ │ │ ├── WBRedLevel6500K.php │ │ │ ├── WBRedLevelCustom.php │ │ │ ├── WBRedLevelsCloudy.php │ │ │ ├── WBRedLevelsDaylight.php │ │ │ ├── WBRedLevelsFlash.php │ │ │ ├── WBRedLevelsFluorescent.php │ │ │ ├── WBRedLevelsKelvin.php │ │ │ ├── WBRedLevelsShade.php │ │ │ ├── WBRedLevelsTungsten.php │ │ │ ├── WhiteBalance.php │ │ │ ├── WhiteBalanceBracketing.php │ │ │ ├── WhiteBalanceFineTune.php │ │ │ ├── WhiteBalanceSetting.php │ │ │ ├── WideFocusZone.php │ │ │ ├── ZoneMatching.php │ │ │ ├── ZoneMatchingMode.php │ │ │ └── ZoneMatchingOn.php │ │ ├── MinoltaRaw │ │ │ ├── BWFilter.php │ │ │ ├── BayerPattern.php │ │ │ ├── BitDepth.php │ │ │ ├── ColorFilter.php │ │ │ ├── ColorMode.php │ │ │ ├── ColorTemperature.php │ │ │ ├── Contrast.php │ │ │ ├── FirmwareID.php │ │ │ ├── Hue.php │ │ │ ├── ISOSetting.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── ProgramMode.php │ │ │ ├── RawDataLength.php │ │ │ ├── RawDepth.php │ │ │ ├── Saturation.php │ │ │ ├── SensorHeight.php │ │ │ ├── SensorWidth.php │ │ │ ├── Sharpness.php │ │ │ ├── StorageMethod.php │ │ │ ├── WBGBRGLevels.php │ │ │ ├── WBMode.php │ │ │ ├── WBRBLevelsCloudy.php │ │ │ ├── WBRBLevelsCoolWhiteF.php │ │ │ ├── WBRBLevelsDayWhiteF.php │ │ │ ├── WBRBLevelsDaylight.php │ │ │ ├── WBRBLevelsDaylightF.php │ │ │ ├── WBRBLevelsFlash.php │ │ │ ├── WBRBLevelsShade.php │ │ │ ├── WBRBLevelsTungsten.php │ │ │ ├── WBRBLevelsUnknown.php │ │ │ ├── WBRBLevelsWhiteF.php │ │ │ ├── WBRGGBLevels.php │ │ │ ├── WBScale.php │ │ │ └── ZoneMatching.php │ │ ├── Motorola │ │ │ ├── ManufactureDate.php │ │ │ └── Sensor.php │ │ ├── NITF │ │ │ ├── BitDepth.php │ │ │ ├── BlocksPerColumn.php │ │ │ ├── BlocksPerRow.php │ │ │ ├── Flags.php │ │ │ ├── ImageClass.php │ │ │ ├── ImageColor.php │ │ │ ├── ImageFormat.php │ │ │ ├── JPEGProcess.php │ │ │ ├── NITFVersion.php │ │ │ ├── Quality.php │ │ │ ├── StreamBitDepth.php │ │ │ └── StreamColor.php │ │ ├── Nikon │ │ │ ├── AFAperture.php │ │ │ ├── AFAreaHeight.php │ │ │ ├── AFAreaMode.php │ │ │ ├── AFAreaWidth.php │ │ │ ├── AFAreaXPosition.php │ │ │ ├── AFAreaYPosition.php │ │ │ ├── AFFineTune.php │ │ │ ├── AFFineTuneAdj.php │ │ │ ├── AFFineTuneIndex.php │ │ │ ├── AFImageHeight.php │ │ │ ├── AFImageWidth.php │ │ │ ├── AFInfo2Version.php │ │ │ ├── AFPoint.php │ │ │ ├── AFPointsInFocus.php │ │ │ ├── AFPointsUsed.php │ │ │ ├── AFResponse.php │ │ │ ├── ActiveDLighting.php │ │ │ ├── Altitude.php │ │ │ ├── AudioBitsPerSample.php │ │ │ ├── AudioChannels.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── AutoDistortionControl.php │ │ │ ├── AuxiliaryLens.php │ │ │ ├── BarometerInfoVersion.php │ │ │ ├── BlackLevel.php │ │ │ ├── BlueBalance.php │ │ │ ├── Brightness.php │ │ │ ├── CCDSensitivity.php │ │ │ ├── ColorBalanceVersion.php │ │ │ ├── ColorHue.php │ │ │ ├── ColorMode.php │ │ │ ├── ColorSpace.php │ │ │ ├── Contrast.php │ │ │ ├── ContrastCurve.php │ │ │ ├── ContrastDetectAF.php │ │ │ ├── ContrastDetectAFInFocus.php │ │ │ ├── Converter.php │ │ │ ├── CountryCode.php │ │ │ ├── CreateDate.php │ │ │ ├── CropHiSpeed.php │ │ │ ├── CustomSettingsOffset.php │ │ │ ├── D810MeteringMode.php │ │ │ ├── DataDump.php │ │ │ ├── DateDisplayFormat.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DaylightSavings.php │ │ │ ├── DeletedImageCount.php │ │ │ ├── DigitalZoom.php │ │ │ ├── DirectoryNumber.php │ │ │ ├── DistortionControl.php │ │ │ ├── DistortionVersion.php │ │ │ ├── Duration.php │ │ │ ├── EffectiveMaxAperture.php │ │ │ ├── Equipment.php │ │ │ ├── ExitPupilPosition.php │ │ │ ├── ExposureBracketValue.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureDifference.php │ │ │ ├── ExposureProgram.php │ │ │ ├── ExposureTime.php │ │ │ ├── ExposureTuning.php │ │ │ ├── ExternalFlashCompensation.php │ │ │ ├── ExternalFlashExposureComp.php │ │ │ ├── ExternalFlashFirmware.php │ │ │ ├── ExternalFlashFlags.php │ │ │ ├── FNumber.php │ │ │ ├── Face10Position.php │ │ │ ├── Face11Position.php │ │ │ ├── Face12Position.php │ │ │ ├── Face1Position.php │ │ │ ├── Face2Position.php │ │ │ ├── Face3Position.php │ │ │ ├── Face4Position.php │ │ │ ├── Face5Position.php │ │ │ ├── Face6Position.php │ │ │ ├── Face7Position.php │ │ │ ├── Face8Position.php │ │ │ ├── Face9Position.php │ │ │ ├── FaceDetectFrameSize.php │ │ │ ├── FacesDetected.php │ │ │ ├── FileInfoVersion.php │ │ │ ├── FileNumber.php │ │ │ ├── FilterEffect.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── FlashColorFilter.php │ │ │ ├── FlashCommanderMode.php │ │ │ ├── FlashCompensation.php │ │ │ ├── FlashControlMode.php │ │ │ ├── FlashExposureBracketValue.php │ │ │ ├── FlashExposureComp.php │ │ │ ├── FlashExposureComp2.php │ │ │ ├── FlashExposureComp3.php │ │ │ ├── FlashExposureComp4.php │ │ │ ├── FlashFired.php │ │ │ ├── FlashFocalLength.php │ │ │ ├── FlashGNDistance.php │ │ │ ├── FlashGroupACompensation.php │ │ │ ├── FlashGroupAControlMode.php │ │ │ ├── FlashGroupAOutput.php │ │ │ ├── FlashGroupBCompensation.php │ │ │ ├── FlashGroupBControlMode.php │ │ │ ├── FlashGroupBOutput.php │ │ │ ├── FlashGroupCCompensation.php │ │ │ ├── FlashGroupCControlMode.php │ │ │ ├── FlashGroupCOutput.php │ │ │ ├── FlashInfoVersion.php │ │ │ ├── FlashMode.php │ │ │ ├── FlashOutput.php │ │ │ ├── FlashSetting.php │ │ │ ├── FlashSource.php │ │ │ ├── FlashType.php │ │ │ ├── FocalLength.php │ │ │ ├── Focus.php │ │ │ ├── FocusDistance.php │ │ │ ├── FocusMode.php │ │ │ ├── FocusPosition.php │ │ │ ├── FrameCount.php │ │ │ ├── FrameHeight.php │ │ │ ├── FrameRate.php │ │ │ ├── FrameWidth.php │ │ │ ├── HDR.php │ │ │ ├── HDRInfoVersion.php │ │ │ ├── HDRLevel.php │ │ │ ├── HDRLevel2.php │ │ │ ├── HDRSmoothing.php │ │ │ ├── HighISONoiseReduction.php │ │ │ ├── HueAdjustment.php │ │ │ ├── IFD0Offset.php │ │ │ ├── ISO.php │ │ │ ├── ISO2.php │ │ │ ├── ISOExpansion.php │ │ │ ├── ISOExpansion2.php │ │ │ ├── ISOSelection.php │ │ │ ├── ISOSetting.php │ │ │ ├── ImageAdjustment.php │ │ │ ├── ImageArea.php │ │ │ ├── ImageAuthentication.php │ │ │ ├── ImageBoundary.php │ │ │ ├── ImageCount.php │ │ │ ├── ImageDataSize.php │ │ │ ├── ImageOptimization.php │ │ │ ├── ImageProcessing.php │ │ │ ├── ImageQuality.php │ │ │ ├── ImageStabilization.php │ │ │ ├── Lens.php │ │ │ ├── LensDataVersion.php │ │ │ ├── LensFStops.php │ │ │ ├── LensIDNumber.php │ │ │ ├── LensModel.php │ │ │ ├── LensType.php │ │ │ ├── LightSource.php │ │ │ ├── Location.php │ │ │ ├── LocationInfoVersion.php │ │ │ ├── MCUVersion.php │ │ │ ├── Make.php │ │ │ ├── MakerNoteType.php │ │ │ ├── MakerNoteVersion.php │ │ │ ├── ManualFocusDistance.php │ │ │ ├── MaxApertureAtMaxFocal.php │ │ │ ├── MaxApertureAtMinFocal.php │ │ │ ├── MaxApertureValue.php │ │ │ ├── MaxFocalLength.php │ │ │ ├── MemoryCardNumber.php │ │ │ ├── MeteringMode.php │ │ │ ├── MinFocalLength.php │ │ │ ├── Model.php │ │ │ ├── MultiExposureAutoGain.php │ │ │ ├── MultiExposureMode.php │ │ │ ├── MultiExposureShots.php │ │ │ ├── MultiExposureVersion.php │ │ │ ├── NEFBitDepth.php │ │ │ ├── NEFCompression.php │ │ │ ├── NEFLinearizationTable.php │ │ │ ├── NRWData.php │ │ │ ├── NikonAVITags0x000d.php │ │ │ ├── NikonAVITags0x000e.php │ │ │ ├── NikonAVITags0x0015.php │ │ │ ├── NikonAVITags0x0017.php │ │ │ ├── NikonAVITags0x0019.php │ │ │ ├── NikonAVITags0x001c.php │ │ │ ├── NikonAVITags0x801a.php │ │ │ ├── NikonCaptureData.php │ │ │ ├── NikonCaptureEditVersions.php │ │ │ ├── NikonCaptureOutput.php │ │ │ ├── NikonCaptureVersion.php │ │ │ ├── NikonICCProfile.php │ │ │ ├── NikonImageSize.php │ │ │ ├── NoiseReduction.php │ │ │ ├── Orientation.php │ │ │ ├── OutputImageHeight.php │ │ │ ├── OutputImageWidth.php │ │ │ ├── OutputResolution.php │ │ │ ├── POILevel.php │ │ │ ├── PhaseDetectAF.php │ │ │ ├── PictureControlAdjust.php │ │ │ ├── PictureControlBase.php │ │ │ ├── PictureControlData.php │ │ │ ├── PictureControlName.php │ │ │ ├── PictureControlQuickAdjust.php │ │ │ ├── PictureControlVersion.php │ │ │ ├── PitchAngle.php │ │ │ ├── PowerUpTime.php │ │ │ ├── PreFlashReturnStrength.php │ │ │ ├── PreviewIFDOffset.php │ │ │ ├── PreviewImage.php │ │ │ ├── PrimaryAFPoint.php │ │ │ ├── ProgramShift.php │ │ │ ├── Quality.php │ │ │ ├── RawImageCenter.php │ │ │ ├── RedBalance.php │ │ │ ├── RepeatingFlashCount.php │ │ │ ├── RepeatingFlashCountBuiltIn.php │ │ │ ├── RepeatingFlashCountExternal.php │ │ │ ├── RepeatingFlashOutputExternal.php │ │ │ ├── RepeatingFlashRate.php │ │ │ ├── RepeatingFlashRateBuiltIn.php │ │ │ ├── RepeatingFlashRateExternal.php │ │ │ ├── ResolutionUnit.php │ │ │ ├── RetouchHistory.php │ │ │ ├── RetouchInfoVersion.php │ │ │ ├── RetouchNEFProcessing.php │ │ │ ├── RollAngle.php │ │ │ ├── Rotation.php │ │ │ ├── Saturation.php │ │ │ ├── SceneAssist.php │ │ │ ├── SceneMode.php │ │ │ ├── SensorPixelSize.php │ │ │ ├── SequenceNumber.php │ │ │ ├── SerialNumber.php │ │ │ ├── Sharpness.php │ │ │ ├── ShootingMode.php │ │ │ ├── ShotInfoVersion.php │ │ │ ├── ShutterCount.php │ │ │ ├── Software.php │ │ │ ├── SubIFDOffset.php │ │ │ ├── TextEncoding.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── Timezone.php │ │ │ ├── ToneComp.php │ │ │ ├── ToningEffect.php │ │ │ ├── ToningSaturation.php │ │ │ ├── UnknownInfo2Version.php │ │ │ ├── UnknownInfoVersion.php │ │ │ ├── VR0x66.php │ │ │ ├── VRInfoVersion.php │ │ │ ├── VRMode.php │ │ │ ├── VariProgram.php │ │ │ ├── VibrationReduction.php │ │ │ ├── VignetteControl.php │ │ │ ├── WBGRBGLevels.php │ │ │ ├── WBRBGGLevels.php │ │ │ ├── WBRBLevels.php │ │ │ ├── WBRGBGLevels.php │ │ │ ├── WBRGGBLevels.php │ │ │ ├── WhiteBalance.php │ │ │ ├── WhiteBalanceFineTune.php │ │ │ ├── XResolution.php │ │ │ ├── YResolution.php │ │ │ └── YawAngle.php │ │ ├── NikonCapture │ │ │ ├── ActiveDLighting.php │ │ │ ├── ActiveDLightingMode.php │ │ │ ├── AdvancedRaw.php │ │ │ ├── AutoRedEye.php │ │ │ ├── BrightnessAdj.php │ │ │ ├── ColorAberrationControl.php │ │ │ ├── ColorBalanceAdj.php │ │ │ ├── ColorBoostLevel.php │ │ │ ├── ColorBoostType.php │ │ │ ├── ColorBooster.php │ │ │ ├── ColorMoireReduction.php │ │ │ ├── ColorMoireReductionMode.php │ │ │ ├── ColorNoiseReductionIntensity.php │ │ │ ├── ColorNoiseReductionSharpness.php │ │ │ ├── ContrastAdj.php │ │ │ ├── CropBottom.php │ │ │ ├── CropLeft.php │ │ │ ├── CropOutputHeight.php │ │ │ ├── CropOutputHeightInches.php │ │ │ ├── CropOutputPixels.php │ │ │ ├── CropOutputResolution.php │ │ │ ├── CropOutputScale.php │ │ │ ├── CropOutputWidth.php │ │ │ ├── CropOutputWidthInches.php │ │ │ ├── CropRight.php │ │ │ ├── CropScaledResolution.php │ │ │ ├── CropSourceResolution.php │ │ │ ├── CropTop.php │ │ │ ├── Curves.php │ │ │ ├── DLightingHQ.php │ │ │ ├── DLightingHQColorBoost.php │ │ │ ├── DLightingHQHighlight.php │ │ │ ├── DLightingHQSelected.php │ │ │ ├── DLightingHQShadow.php │ │ │ ├── DLightingHS.php │ │ │ ├── DLightingHSAdjustment.php │ │ │ ├── DLightingHSColorBoost.php │ │ │ ├── EdgeNoiseReduction.php │ │ │ ├── EditVersionName.php │ │ │ ├── EnhanceDarkTones.php │ │ │ ├── ExposureAdj.php │ │ │ ├── ExposureAdj2.php │ │ │ ├── FlipHorizontal.php │ │ │ ├── HighlightProtection.php │ │ │ ├── HistogramXML.php │ │ │ ├── HueAdj.php │ │ │ ├── ImageDustOff.php │ │ │ ├── LCHEditor.php │ │ │ ├── NoiseReduction.php │ │ │ ├── NoiseReductionIntensity.php │ │ │ ├── NoiseReductionMethod.php │ │ │ ├── NoiseReductionSharpness.php │ │ │ ├── PhotoEffectHistoryXML.php │ │ │ ├── PhotoEffects.php │ │ │ ├── PhotoEffectsBlue.php │ │ │ ├── PhotoEffectsGreen.php │ │ │ ├── PhotoEffectsRed.php │ │ │ ├── PhotoEffectsType.php │ │ │ ├── PictureControl.php │ │ │ ├── PictureControlActive.php │ │ │ ├── PictureControlMode.php │ │ │ ├── QuickAdjust.php │ │ │ ├── QuickFix.php │ │ │ ├── RedEyeCorrection.php │ │ │ ├── Rotation.php │ │ │ ├── SaturationAdj.php │ │ │ ├── ShadowProtection.php │ │ │ ├── SharpeningAdj.php │ │ │ ├── StraightenAngle.php │ │ │ ├── Unsharp1Color.php │ │ │ ├── Unsharp1HaloWidth.php │ │ │ ├── Unsharp1Intensity.php │ │ │ ├── Unsharp1Threshold.php │ │ │ ├── Unsharp2Color.php │ │ │ ├── Unsharp2HaloWidth.php │ │ │ ├── Unsharp2Intensity.php │ │ │ ├── Unsharp2Threshold.php │ │ │ ├── Unsharp3Color.php │ │ │ ├── Unsharp3HaloWidth.php │ │ │ ├── Unsharp3Intensity.php │ │ │ ├── Unsharp3Threshold.php │ │ │ ├── Unsharp4Color.php │ │ │ ├── Unsharp4HaloWidth.php │ │ │ ├── Unsharp4Intensity.php │ │ │ ├── Unsharp4Threshold.php │ │ │ ├── UnsharpCount.php │ │ │ ├── UnsharpMask.php │ │ │ ├── VignetteControl.php │ │ │ ├── VignetteControlIntensity.php │ │ │ ├── WBAdjBlueBalance.php │ │ │ ├── WBAdjLighting.php │ │ │ ├── WBAdjMode.php │ │ │ ├── WBAdjRedBalance.php │ │ │ ├── WBAdjTemperature.php │ │ │ ├── WBAdjTint.php │ │ │ └── WhiteBalanceAdj.php │ │ ├── NikonCustom │ │ │ ├── AELock.php │ │ │ ├── AELockButton.php │ │ │ ├── AELockButtonPlusDials.php │ │ │ ├── AELockForMBD80.php │ │ │ ├── AFActivation.php │ │ │ ├── AFAreaIllumination.php │ │ │ ├── AFAreaModeSetting.php │ │ │ ├── AFAssist.php │ │ │ ├── AFCPrioritySelection.php │ │ │ ├── AFModeRestrictions.php │ │ │ ├── AFOnButton.php │ │ │ ├── AFOnForMBD10.php │ │ │ ├── AFOnForMBD11.php │ │ │ ├── AFOnForMBD12.php │ │ │ ├── AFPointBrightness.php │ │ │ ├── AFPointIllumination.php │ │ │ ├── AFPointSelection.php │ │ │ ├── AFSPrioritySelection.php │ │ │ ├── ApertureLock.php │ │ │ ├── AssignBktButton.php │ │ │ ├── AssignMovieRecordButton.php │ │ │ ├── AssignRemoteFnButton.php │ │ │ ├── AutoBracketModeM.php │ │ │ ├── AutoBracketOrder.php │ │ │ ├── AutoBracketSet.php │ │ │ ├── AutoBracketingMode.php │ │ │ ├── AutoBracketingSet.php │ │ │ ├── AutoFP.php │ │ │ ├── AutoISO.php │ │ │ ├── AutoISOMax.php │ │ │ ├── AutoISOMinShutterSpeed.php │ │ │ ├── BatteryOrder.php │ │ │ ├── Beep.php │ │ │ ├── BeepPitch.php │ │ │ ├── BeepVolume.php │ │ │ ├── CHModeShootingSpeed.php │ │ │ ├── CLModeShootingSpeed.php │ │ │ ├── CenterAFArea.php │ │ │ ├── CenterFocusPoint.php │ │ │ ├── CenterWeightedAreaSize.php │ │ │ ├── CommandDials.php │ │ │ ├── CommandDialsApertureSetting.php │ │ │ ├── CommandDialsChangeMainSub.php │ │ │ ├── CommandDialsMenuAndPlayback.php │ │ │ ├── CommandDialsReverseRotation.php │ │ │ ├── CommanderChannel.php │ │ │ ├── CommanderGroupAManualOutput.php │ │ │ ├── CommanderGroupAMode.php │ │ │ ├── CommanderGroupATTLAAComp.php │ │ │ ├── CommanderGroupATTLComp.php │ │ │ ├── CommanderGroupBManualOutput.php │ │ │ ├── CommanderGroupBMode.php │ │ │ ├── CommanderGroupBTTLAAComp.php │ │ │ ├── CommanderGroupBTTLComp.php │ │ │ ├── CommanderInternalFlash.php │ │ │ ├── CommanderInternalManualOutput.php │ │ │ ├── CommanderInternalTTLChannel.php │ │ │ ├── CommanderInternalTTLComp.php │ │ │ ├── CommanderInternalTTLCompBuiltin.php │ │ │ ├── CommanderInternalTTLCompGroupA.php │ │ │ ├── CommanderInternalTTLCompGroupB.php │ │ │ ├── CustomSettingsAllDefault.php │ │ │ ├── CustomSettingsBank.php │ │ │ ├── DateImprint.php │ │ │ ├── DynamicAFArea.php │ │ │ ├── DynamicAreaAFDisplay.php │ │ │ ├── EVStepSize.php │ │ │ ├── EasyExposureComp.php │ │ │ ├── EasyExposureCompensation.php │ │ │ ├── ElectronicFrontCurtainShutter.php │ │ │ ├── ExposureCompStepSize.php │ │ │ ├── ExposureControlStep.php │ │ │ ├── ExposureControlStepSize.php │ │ │ ├── ExposureDelayMode.php │ │ │ ├── FileNumberSequence.php │ │ │ ├── FineTuneOptCenterWeighted.php │ │ │ ├── FineTuneOptHighlightWeighted.php │ │ │ ├── FineTuneOptMatrixMetering.php │ │ │ ├── FineTuneOptSpotMetering.php │ │ │ ├── FlashControlBuiltIn.php │ │ │ ├── FlashExposureCompArea.php │ │ │ ├── FlashLevel.php │ │ │ ├── FlashShutterSpeed.php │ │ │ ├── FlashSyncSpeed.php │ │ │ ├── FlashWarning.php │ │ │ ├── FocusAreaSelection.php │ │ │ ├── FocusModeSetting.php │ │ │ ├── FocusPointWrap.php │ │ │ ├── FocusTrackingLockOn.php │ │ │ ├── FuncButton.php │ │ │ ├── FuncButtonPlusDials.php │ │ │ ├── FunctionButton.php │ │ │ ├── GridDisplay.php │ │ │ ├── GroupAreaAFIllumination.php │ │ │ ├── ISODisplay.php │ │ │ ├── ISOSensitivityStep.php │ │ │ ├── ISOStepSize.php │ │ │ ├── Illumination.php │ │ │ ├── ImageReview.php │ │ │ ├── ImageReviewMonitorOffTime.php │ │ │ ├── ImageReviewTime.php │ │ │ ├── InitialZoomLiveView.php │ │ │ ├── InitialZoomSetting.php │ │ │ ├── InternalFlash.php │ │ │ ├── LCDIllumination.php │ │ │ ├── LensFocusFunctionButtons.php │ │ │ ├── LightSwitch.php │ │ │ ├── LimitAFAreaModeSelection.php │ │ │ ├── LiveViewAF.php │ │ │ ├── LiveViewAFAreaMode.php │ │ │ ├── LiveViewAFMode.php │ │ │ ├── LiveViewButtonOptions.php │ │ │ ├── LiveViewMonitorOffTime.php │ │ │ ├── MBD10Batteries.php │ │ │ ├── MBD10BatteryType.php │ │ │ ├── MBD11BatteryType.php │ │ │ ├── MBD12BatteryType.php │ │ │ ├── MBD80Batteries.php │ │ │ ├── MBD80BatteryType.php │ │ │ ├── MainDialExposureComp.php │ │ │ ├── ManualFlashOutput.php │ │ │ ├── MatrixMetering.php │ │ │ ├── MaxContinuousRelease.php │ │ │ ├── MenuMonitorOffTime.php │ │ │ ├── Metering.php │ │ │ ├── MeteringTime.php │ │ │ ├── ModelingFlash.php │ │ │ ├── MonitorOffTime.php │ │ │ ├── MovieAELockButtonAssignment.php │ │ │ ├── MovieFunctionButton.php │ │ │ ├── MovieFunctionButtonPlusDials.php │ │ │ ├── MoviePreviewButton.php │ │ │ ├── MoviePreviewButtonPlusDials.php │ │ │ ├── MovieShutterButton.php │ │ │ ├── MovieSubSelectorAssignment.php │ │ │ ├── MovieSubSelectorAssignmentPlusDials.php │ │ │ ├── MultiSelector.php │ │ │ ├── MultiSelectorLiveView.php │ │ │ ├── MultiSelectorLiveViewMode.php │ │ │ ├── MultiSelectorPlaybackMode.php │ │ │ ├── MultiSelectorShootMode.php │ │ │ ├── NoMemoryCard.php │ │ │ ├── NumberOfFocusPoints.php │ │ │ ├── OKButton.php │ │ │ ├── PhotoInfoPlayback.php │ │ │ ├── Pitch.php │ │ │ ├── PlaybackMenusTime.php │ │ │ ├── PlaybackMonitorOffTime.php │ │ │ ├── PlaybackZoom.php │ │ │ ├── PreviewButton.php │ │ │ ├── PreviewButtonPlusDials.php │ │ │ ├── RangeFinder.php │ │ │ ├── RearDisplay.php │ │ │ ├── ReleaseButtonToUseDial.php │ │ │ ├── RemoteOnDuration.php │ │ │ ├── RepeatingFlashCount.php │ │ │ ├── RepeatingFlashOutput.php │ │ │ ├── RepeatingFlashRate.php │ │ │ ├── ReverseExposureCompDial.php │ │ │ ├── ReverseIndicators.php │ │ │ ├── ReverseShutterSpeedAperture.php │ │ │ ├── ScreenTips.php │ │ │ ├── SelfTimerInterval.php │ │ │ ├── SelfTimerShotCount.php │ │ │ ├── SelfTimerShotInterval.php │ │ │ ├── SelfTimerTime.php │ │ │ ├── ShootingInfoDisplay.php │ │ │ ├── ShootingInfoMonitorOffTime.php │ │ │ ├── ShootingModeSetting.php │ │ │ ├── ShutterReleaseButtonAEL.php │ │ │ ├── ShutterSpeedLock.php │ │ │ ├── StandbyTimer.php │ │ │ ├── StoreByOrientation.php │ │ │ ├── SubSelector.php │ │ │ ├── SubSelectorAssignment.php │ │ │ ├── SubSelectorPlusDials.php │ │ │ ├── TimerFunctionButton.php │ │ │ ├── VerticalAFOnButton.php │ │ │ ├── VerticalFuncButton.php │ │ │ ├── VerticalFuncButtonPlusDials.php │ │ │ ├── VerticalMultiSelector.php │ │ │ ├── ViewfinderDisplay.php │ │ │ └── ViewfinderWarning.php │ │ ├── NikonScan │ │ │ ├── BitDepth.php │ │ │ ├── ColorGain.php │ │ │ ├── DigitalDEEHighlightAdj.php │ │ │ ├── DigitalDEEShadowAdj.php │ │ │ ├── DigitalDEEThreshold.php │ │ │ ├── DigitalGEM.php │ │ │ ├── DigitalICE.php │ │ │ ├── DigitalROC.php │ │ │ ├── FilmType.php │ │ │ ├── MasterGain.php │ │ │ ├── MultiSample.php │ │ │ └── ScanImageEnhancer.php │ │ ├── Nintendo │ │ │ ├── Category.php │ │ │ ├── InternalSerialNumber.php │ │ │ ├── ModelID.php │ │ │ ├── Parallax.php │ │ │ └── TimeStamp.php │ │ ├── Ocad │ │ │ └── OcadRevision.php │ │ ├── Olympus │ │ │ ├── AELock.php │ │ │ ├── AFAreas.php │ │ │ ├── AFFineTune.php │ │ │ ├── AFFineTuneAdj.php │ │ │ ├── AFPoint.php │ │ │ ├── AFPointSelected.php │ │ │ ├── AFResult.php │ │ │ ├── AFSearch.php │ │ │ ├── ApertureValue.php │ │ │ ├── ArtFilter.php │ │ │ ├── ArtFilterEffect.php │ │ │ ├── AspectFrame.php │ │ │ ├── AspectRatio.php │ │ │ ├── AutoFocus.php │ │ │ ├── BWMode.php │ │ │ ├── BlackLevel.php │ │ │ ├── BlackLevel2.php │ │ │ ├── BlueBalance.php │ │ │ ├── BodyFirmwareVersion.php │ │ │ ├── BrightnessValue.php │ │ │ ├── CCDScanMode.php │ │ │ ├── CMContrast.php │ │ │ ├── CMExposureCompensation.php │ │ │ ├── CMHue.php │ │ │ ├── CMSaturation.php │ │ │ ├── CMSharpness.php │ │ │ ├── CMWhiteBalance.php │ │ │ ├── CMWhiteBalanceComp.php │ │ │ ├── CMWhiteBalanceGrayPoint.php │ │ │ ├── CameraID.php │ │ │ ├── CameraParameters.php │ │ │ ├── CameraSettingsVersion.php │ │ │ ├── CameraTemperature.php │ │ │ ├── CameraType.php │ │ │ ├── CameraType2.php │ │ │ ├── ColorControl.php │ │ │ ├── ColorMatrix.php │ │ │ ├── ColorMatrix2.php │ │ │ ├── ColorMatrixNumber.php │ │ │ ├── ColorSpace.php │ │ │ ├── ColorTemperatureBG.php │ │ │ ├── ColorTemperatureRG.php │ │ │ ├── Comment.php │ │ │ ├── CompressedImageSize.php │ │ │ ├── CompressionFactor.php │ │ │ ├── CompressionRatio.php │ │ │ ├── Contrast.php │ │ │ ├── ContrastSetting.php │ │ │ ├── ConversionLens.php │ │ │ ├── CoringFilter.php │ │ │ ├── CoringValues.php │ │ │ ├── CropHeight.php │ │ │ ├── CropLeft.php │ │ │ ├── CropTop.php │ │ │ ├── CropWidth.php │ │ │ ├── CustomSaturation.php │ │ │ ├── DataDump.php │ │ │ ├── DataDump2.php │ │ │ ├── DateTime1.php │ │ │ ├── DateTime2.php │ │ │ ├── DateTimeEnd.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DateTimeUTC.php │ │ │ ├── DecoderVersion.php │ │ │ ├── DigitalZoom.php │ │ │ ├── DistortionCorrection.php │ │ │ ├── DistortionCorrection2.php │ │ │ ├── DriveMode.php │ │ │ ├── Duration.php │ │ │ ├── EncoderVersion.php │ │ │ ├── EndTime.php │ │ │ ├── Enhancer.php │ │ │ ├── EnhancerValues.php │ │ │ ├── EpsonImageHeight.php │ │ │ ├── EpsonImageWidth.php │ │ │ ├── EpsonSoftware.php │ │ │ ├── EquipmentVersion.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureMode.php │ │ │ ├── ExposureShift.php │ │ │ ├── ExposureTime.php │ │ │ ├── ExposureUnknown.php │ │ │ ├── ExtendedWBDetect.php │ │ │ ├── Extender.php │ │ │ ├── ExtenderFirmwareVersion.php │ │ │ ├── ExtenderModel.php │ │ │ ├── ExtenderSerialNumber.php │ │ │ ├── ExternalFlash.php │ │ │ ├── ExternalFlashAE1.php │ │ │ ├── ExternalFlashAE10.php │ │ │ ├── ExternalFlashAE2.php │ │ │ ├── ExternalFlashAE20.php │ │ │ ├── ExternalFlashBounce.php │ │ │ ├── ExternalFlashGValue.php │ │ │ ├── ExternalFlashGuideNumber.php │ │ │ ├── ExternalFlashMode.php │ │ │ ├── ExternalFlashZoom.php │ │ │ ├── FNumber.php │ │ │ ├── FaceDetectArea.php │ │ │ ├── FaceDetectFrameCrop.php │ │ │ ├── FaceDetectFrameSize.php │ │ │ ├── FacesDetected.php │ │ │ ├── FieldCount.php │ │ │ ├── FileNumber.php │ │ │ ├── Firmware.php │ │ │ ├── FlashChargeLevel.php │ │ │ ├── FlashControlMode.php │ │ │ ├── FlashDevice.php │ │ │ ├── FlashExposureComp.php │ │ │ ├── FlashFirmwareVersion.php │ │ │ ├── FlashIntensity.php │ │ │ ├── FlashMode.php │ │ │ ├── FlashModel.php │ │ │ ├── FlashRemoteControl.php │ │ │ ├── FlashSerialNumber.php │ │ │ ├── FlashType.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalPlaneDiagonal.php │ │ │ ├── FocusDistance.php │ │ │ ├── FocusInfoVersion.php │ │ │ ├── FocusMode.php │ │ │ ├── FocusProcess.php │ │ │ ├── FocusRange.php │ │ │ ├── FocusStepCount.php │ │ │ ├── FocusStepInfinity.php │ │ │ ├── FocusStepNear.php │ │ │ ├── GainBase.php │ │ │ ├── Gradation.php │ │ │ ├── HueSetting.php │ │ │ ├── ISO.php │ │ │ ├── ISOValue.php │ │ │ ├── ImageProcessingVersion.php │ │ │ ├── ImageQuality2.php │ │ │ ├── ImageStabilization.php │ │ │ ├── Index01.php │ │ │ ├── Index02.php │ │ │ ├── Index03.php │ │ │ ├── Index04.php │ │ │ ├── Index05.php │ │ │ ├── Index06.php │ │ │ ├── Index07.php │ │ │ ├── Index08.php │ │ │ ├── Index09.php │ │ │ ├── Index10.php │ │ │ ├── Index11.php │ │ │ ├── Index12.php │ │ │ ├── Index13.php │ │ │ ├── Index14.php │ │ │ ├── Index15.php │ │ │ ├── Index16.php │ │ │ ├── InternalFlash.php │ │ │ ├── InternalFlashAE1.php │ │ │ ├── InternalFlashAE10.php │ │ │ ├── InternalFlashAE2.php │ │ │ ├── InternalFlashAE20.php │ │ │ ├── InternalFlashTable.php │ │ │ ├── InternalSerialNumber.php │ │ │ ├── LensDistortionParams.php │ │ │ ├── LensFirmwareVersion.php │ │ │ ├── LensModel.php │ │ │ ├── LensProperties.php │ │ │ ├── LensSerialNumber.php │ │ │ ├── LensTemperature.php │ │ │ ├── LensType.php │ │ │ ├── LightCondition.php │ │ │ ├── LightSource.php │ │ │ ├── LightValueCenter.php │ │ │ ├── LightValuePeriphery.php │ │ │ ├── Macro.php │ │ │ ├── MacroLED.php │ │ │ ├── MacroMode.php │ │ │ ├── MagicFilter.php │ │ │ ├── Make.php │ │ │ ├── MakerNoteVersion.php │ │ │ ├── ManometerPressure.php │ │ │ ├── ManometerReading.php │ │ │ ├── ManualFlash.php │ │ │ ├── ManualFlashStrength.php │ │ │ ├── ManualFocusDistance.php │ │ │ ├── MaxAperture.php │ │ │ ├── MaxApertureAtMaxFocal.php │ │ │ ├── MaxApertureAtMinFocal.php │ │ │ ├── MaxFaces.php │ │ │ ├── MaxFocalLength.php │ │ │ ├── MeteringMode.php │ │ │ ├── MinFocalLength.php │ │ │ ├── Model.php │ │ │ ├── ModifiedSaturation.php │ │ │ ├── MultipleExposureMode.php │ │ │ ├── NDFilter.php │ │ │ ├── NoiseFilter.php │ │ │ ├── NoiseReduction.php │ │ │ ├── NoiseReduction2.php │ │ │ ├── OlympusImageHeight.php │ │ │ ├── OlympusImageWidth.php │ │ │ ├── OneTouchWB.php │ │ │ ├── PanoramaMode.php │ │ │ ├── PictureMode.php │ │ │ ├── PictureModeBWFilter.php │ │ │ ├── PictureModeContrast.php │ │ │ ├── PictureModeEffect.php │ │ │ ├── PictureModeHue.php │ │ │ ├── PictureModeSaturation.php │ │ │ ├── PictureModeSharpness.php │ │ │ ├── PictureModeTone.php │ │ │ ├── PitchAngle.php │ │ │ ├── PreCaptureFrames.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewImageData.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── PreviewImageValid.php │ │ │ ├── Quality.php │ │ │ ├── RawDevArtFilter.php │ │ │ ├── RawDevAutoGradation.php │ │ │ ├── RawDevColorSpace.php │ │ │ ├── RawDevContrastValue.php │ │ │ ├── RawDevEditStatus.php │ │ │ ├── RawDevEngine.php │ │ │ ├── RawDevExposureBiasValue.php │ │ │ ├── RawDevGradation.php │ │ │ ├── RawDevGrayPoint.php │ │ │ ├── RawDevMemoryColorEmphasis.php │ │ │ ├── RawDevNoiseReduction.php │ │ │ ├── RawDevPMBWFilter.php │ │ │ ├── RawDevPMContrast.php │ │ │ ├── RawDevPMNoiseFilter.php │ │ │ ├── RawDevPMPictureTone.php │ │ │ ├── RawDevPMSaturation.php │ │ │ ├── RawDevPMSharpness.php │ │ │ ├── RawDevPictureMode.php │ │ │ ├── RawDevSaturation3.php │ │ │ ├── RawDevSaturationEmphasis.php │ │ │ ├── RawDevSettings.php │ │ │ ├── RawDevSharpnessValue.php │ │ │ ├── RawDevVersion.php │ │ │ ├── RawDevWBFineAdjustment.php │ │ │ ├── RawDevWhiteBalance.php │ │ │ ├── RawDevWhiteBalanceValue.php │ │ │ ├── RawInfoVersion.php │ │ │ ├── RecordingTime.php │ │ │ ├── RedBalance.php │ │ │ ├── Resolution.php │ │ │ ├── RollAngle.php │ │ │ ├── SaturationSetting.php │ │ │ ├── SceneArea.php │ │ │ ├── SceneDetect.php │ │ │ ├── SceneDetectData.php │ │ │ ├── SceneMode.php │ │ │ ├── SensorCalibration.php │ │ │ ├── SensorTemperature.php │ │ │ ├── SerialNumber.php │ │ │ ├── ShadingCompensation.php │ │ │ ├── ShadingCompensation2.php │ │ │ ├── Sharpness.php │ │ │ ├── SharpnessFactor.php │ │ │ ├── SharpnessSetting.php │ │ │ ├── ShutterSpeedValue.php │ │ │ ├── SpecialMode.php │ │ │ ├── StackedImage.php │ │ │ ├── StartTime.php │ │ │ ├── ThumbnailHeight.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── ThumbnailLength.php │ │ │ ├── ThumbnailOffset.php │ │ │ ├── ThumbnailWidth.php │ │ │ ├── ToneLevel.php │ │ │ ├── UnknownBlock1.php │ │ │ ├── UnknownBlock2.php │ │ │ ├── UnknownBlock3.php │ │ │ ├── UnknownBlock4.php │ │ │ ├── ValidBits.php │ │ │ ├── ValidPixelDepth.php │ │ │ ├── WBGLevel.php │ │ │ ├── WBGLevel3000K.php │ │ │ ├── WBGLevel3300K.php │ │ │ ├── WBGLevel3600K.php │ │ │ ├── WBGLevel3900K.php │ │ │ ├── WBGLevel4000K.php │ │ │ ├── WBGLevel4300K.php │ │ │ ├── WBGLevel4500K.php │ │ │ ├── WBGLevel4800K.php │ │ │ ├── WBGLevel5300K.php │ │ │ ├── WBGLevel6000K.php │ │ │ ├── WBGLevel6600K.php │ │ │ ├── WBGLevel7500K.php │ │ │ ├── WBMode.php │ │ │ ├── WBRBLevels.php │ │ │ ├── WBRBLevels3000K.php │ │ │ ├── WBRBLevels3300K.php │ │ │ ├── WBRBLevels3600K.php │ │ │ ├── WBRBLevels3900K.php │ │ │ ├── WBRBLevels4000K.php │ │ │ ├── WBRBLevels4300K.php │ │ │ ├── WBRBLevels4500K.php │ │ │ ├── WBRBLevels4800K.php │ │ │ ├── WBRBLevels5300K.php │ │ │ ├── WBRBLevels6000K.php │ │ │ ├── WBRBLevels6600K.php │ │ │ ├── WBRBLevels7500K.php │ │ │ ├── WBRBLevelsAuto.php │ │ │ ├── WBRBLevelsCWB1.php │ │ │ ├── WBRBLevelsCWB2.php │ │ │ ├── WBRBLevelsCWB3.php │ │ │ ├── WBRBLevelsCWB4.php │ │ │ ├── WBRBLevelsCloudy.php │ │ │ ├── WBRBLevelsCoolWhiteFluor.php │ │ │ ├── WBRBLevelsDayWhiteFluor.php │ │ │ ├── WBRBLevelsDaylightFluor.php │ │ │ ├── WBRBLevelsEveningSunlight.php │ │ │ ├── WBRBLevelsFineWeather.php │ │ │ ├── WBRBLevelsShade.php │ │ │ ├── WBRBLevelsTungsten.php │ │ │ ├── WBRBLevelsUsed.php │ │ │ ├── WBRBLevelsWhiteFluorescent.php │ │ │ ├── WhiteBalance2.php │ │ │ ├── WhiteBalanceBias.php │ │ │ ├── WhiteBalanceBracket.php │ │ │ ├── WhiteBalanceComp.php │ │ │ ├── WhiteBalanceTemperature.php │ │ │ ├── WhiteBoard.php │ │ │ ├── YCbCrCoefficients.php │ │ │ ├── ZoomStepCount.php │ │ │ ├── ZoomedPreviewLength.php │ │ │ ├── ZoomedPreviewSize.php │ │ │ └── ZoomedPreviewStart.php │ │ ├── OpenEXR │ │ │ ├── AdoptedNeutral.php │ │ │ ├── Aperture.php │ │ │ ├── Channels.php │ │ │ ├── Chromaticities.php │ │ │ ├── Comments.php │ │ │ ├── Compression.php │ │ │ ├── DataWindow.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DisplayWindow.php │ │ │ ├── EXRVersion.php │ │ │ ├── EnvironmentMap.php │ │ │ ├── ExposureTime.php │ │ │ ├── FocusDistance.php │ │ │ ├── FramesPerSecond.php │ │ │ ├── GPSAltitude.php │ │ │ ├── GPSLatitude.php │ │ │ ├── GPSLongitude.php │ │ │ ├── ISO.php │ │ │ ├── KeyCode.php │ │ │ ├── Layout.php │ │ │ ├── LineOrder.php │ │ │ ├── LookModTransform.php │ │ │ ├── MultiView.php │ │ │ ├── Owner.php │ │ │ ├── PixelAspectRatio.php │ │ │ ├── Preview.php │ │ │ ├── RenderingTransform.php │ │ │ ├── ScreenWindowCenter.php │ │ │ ├── ScreenWindowWidth.php │ │ │ ├── Tiles.php │ │ │ ├── TimeCode.php │ │ │ ├── TimeZone.php │ │ │ ├── WhiteLuminance.php │ │ │ ├── WorldToCamera.php │ │ │ ├── WorldToNDC.php │ │ │ ├── WrapModes.php │ │ │ └── XResolution.php │ │ ├── PDF │ │ │ ├── AnnotationUsageRights.php │ │ │ ├── AppleKeywords.php │ │ │ ├── AuthenticationTime.php │ │ │ ├── AuthenticationType.php │ │ │ ├── Author.php │ │ │ ├── ContainerVersion.php │ │ │ ├── CreateDate.php │ │ │ ├── Creator.php │ │ │ ├── CreatorVersion.php │ │ │ ├── DocumentUsageRights.php │ │ │ ├── EmbeddedFileUsageRights.php │ │ │ ├── EmbeddedImage.php │ │ │ ├── EmbeddedImageColorSpace.php │ │ │ ├── EmbeddedImageFilter.php │ │ │ ├── EmbeddedImageHeight.php │ │ │ ├── EmbeddedImageWidth.php │ │ │ ├── Encryption.php │ │ │ ├── FieldPermissions.php │ │ │ ├── FormExtraUsageRights.php │ │ │ ├── FormFields.php │ │ │ ├── FormUsageRights.php │ │ │ ├── HasXFA.php │ │ │ ├── Keywords.php │ │ │ ├── Language.php │ │ │ ├── Linearized.php │ │ │ ├── ModificationPermissions.php │ │ │ ├── ModifyDate.php │ │ │ ├── PDFVersion.php │ │ │ ├── PageCount.php │ │ │ ├── PageLayout.php │ │ │ ├── PageMode.php │ │ │ ├── Producer.php │ │ │ ├── RoundTripVersion.php │ │ │ ├── SignatureUsageRights.php │ │ │ ├── SignerContactInfo.php │ │ │ ├── SigningAuthority.php │ │ │ ├── SigningDate.php │ │ │ ├── SigningLocation.php │ │ │ ├── SigningReason.php │ │ │ ├── Subject.php │ │ │ ├── TaggedPDF.php │ │ │ ├── Title.php │ │ │ ├── Trapped.php │ │ │ ├── UsageRightsMessage.php │ │ │ └── UserAccess.php │ │ ├── PICT │ │ │ ├── BitsRect.php │ │ │ ├── BitsRgn.php │ │ │ ├── BkColor.php │ │ │ ├── BkPat.php │ │ │ ├── BkPixPat.php │ │ │ ├── ChExtra.php │ │ │ ├── ClipRgn.php │ │ │ ├── CompressedQuickTime.php │ │ │ ├── DHDVText.php │ │ │ ├── DHText.php │ │ │ ├── DVText.php │ │ │ ├── DefHilite.php │ │ │ ├── DirectBitsRect.php │ │ │ ├── DirectBitsRgn.php │ │ │ ├── EraseArc.php │ │ │ ├── EraseOval.php │ │ │ ├── ErasePoly.php │ │ │ ├── EraseRRect.php │ │ │ ├── EraseRect.php │ │ │ ├── EraseRgn.php │ │ │ ├── EraseSameArc.php │ │ │ ├── EraseSameOval.php │ │ │ ├── EraseSamePoly.php │ │ │ ├── EraseSameRRect.php │ │ │ ├── EraseSameRect.php │ │ │ ├── EraseSameRgn.php │ │ │ ├── FgColor.php │ │ │ ├── FillArc.php │ │ │ ├── FillOval.php │ │ │ ├── FillPat.php │ │ │ ├── FillPixPat.php │ │ │ ├── FillPoly.php │ │ │ ├── FillRRect.php │ │ │ ├── FillRect.php │ │ │ ├── FillRgn.php │ │ │ ├── FillSameArc.php │ │ │ ├── FillSameOval.php │ │ │ ├── FillSamePoly.php │ │ │ ├── FillSameRRect.php │ │ │ ├── FillSameRect.php │ │ │ ├── FillSameRgn.php │ │ │ ├── FontName.php │ │ │ ├── FrameArc.php │ │ │ ├── FrameOval.php │ │ │ ├── FramePoly.php │ │ │ ├── FrameRRect.php │ │ │ ├── FrameRect.php │ │ │ ├── FrameRgn.php │ │ │ ├── FrameSameArc.php │ │ │ ├── FrameSameOval.php │ │ │ ├── FrameSamePoly.php │ │ │ ├── FrameSameRRect.php │ │ │ ├── FrameSameRect.php │ │ │ ├── FrameSameRgn.php │ │ │ ├── GlyphState.php │ │ │ ├── HeaderOp.php │ │ │ ├── HiliteColor.php │ │ │ ├── HiliteMode.php │ │ │ ├── InvertArc.php │ │ │ ├── InvertOval.php │ │ │ ├── InvertPoly.php │ │ │ ├── InvertRRect.php │ │ │ ├── InvertRect.php │ │ │ ├── InvertRgn.php │ │ │ ├── InvertSameArc.php │ │ │ ├── InvertSameOval.php │ │ │ ├── InvertSamePoly.php │ │ │ ├── InvertSameRRect.php │ │ │ ├── InvertSameRect.php │ │ │ ├── InvertSameRgn.php │ │ │ ├── Line.php │ │ │ ├── LineFrom.php │ │ │ ├── LineJustify.php │ │ │ ├── LongText.php │ │ │ ├── Nop.php │ │ │ ├── OpColor.php │ │ │ ├── OpEndPic.php │ │ │ ├── Origin.php │ │ │ ├── OvSize.php │ │ │ ├── PackBitsRect.php │ │ │ ├── PackBitsRgn.php │ │ │ ├── PaintArc.php │ │ │ ├── PaintOval.php │ │ │ ├── PaintPoly.php │ │ │ ├── PaintRRect.php │ │ │ ├── PaintRect.php │ │ │ ├── PaintRgn.php │ │ │ ├── PaintSameArc.php │ │ │ ├── PaintSameOval.php │ │ │ ├── PaintSamePoly.php │ │ │ ├── PaintSameRRect.php │ │ │ ├── PaintSameRect.php │ │ │ ├── PaintSameRgn.php │ │ │ ├── PnLocHFrac.php │ │ │ ├── PnMode.php │ │ │ ├── PnPat.php │ │ │ ├── PnPixPat.php │ │ │ ├── PnSize.php │ │ │ ├── RGBBkCol.php │ │ │ ├── RGBFgCol.php │ │ │ ├── ShortComment.php │ │ │ ├── ShortLine.php │ │ │ ├── ShortLineFrom.php │ │ │ ├── SpExtra.php │ │ │ ├── TxFace.php │ │ │ ├── TxFont.php │ │ │ ├── TxMode.php │ │ │ ├── TxRatio.php │ │ │ ├── TxSize.php │ │ │ ├── UncompressedQuickTime.php │ │ │ ├── Version.php │ │ │ └── VersionOp.php │ │ ├── PNG │ │ │ ├── Artist.php │ │ │ ├── Author.php │ │ │ ├── BackgroundColor.php │ │ │ ├── BitDepth.php │ │ │ ├── BlueX.php │ │ │ ├── BlueY.php │ │ │ ├── ColorType.php │ │ │ ├── Comment.php │ │ │ ├── Compression.php │ │ │ ├── Copyright.php │ │ │ ├── CreateDate.php │ │ │ ├── CreationTime.php │ │ │ ├── Description.php │ │ │ ├── DigitalSignature.php │ │ │ ├── Disclaimer.php │ │ │ ├── Document.php │ │ │ ├── Filter.php │ │ │ ├── FractalParameters.php │ │ │ ├── GIFApplicationExtension.php │ │ │ ├── GIFGraphicControlExtension.php │ │ │ ├── GIFPlainTextExtension.php │ │ │ ├── Gamma.php │ │ │ ├── GreenX.php │ │ │ ├── GreenY.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageOffset.php │ │ │ ├── ImageWidth.php │ │ │ ├── Interlace.php │ │ │ ├── Label.php │ │ │ ├── Make.php │ │ │ ├── ModDate.php │ │ │ ├── Model.php │ │ │ ├── ModifyDate.php │ │ │ ├── PNGWarning.php │ │ │ ├── Palette.php │ │ │ ├── PaletteHistogram.php │ │ │ ├── PixelCalibration.php │ │ │ ├── ProfileName.php │ │ │ ├── RedX.php │ │ │ ├── RedY.php │ │ │ ├── SRGBRendering.php │ │ │ ├── SignificantBits.php │ │ │ ├── Software.php │ │ │ ├── Source.php │ │ │ ├── StereoMode.php │ │ │ ├── SubjectPixelHeight.php │ │ │ ├── SubjectPixelWidth.php │ │ │ ├── SubjectUnits.php │ │ │ ├── SuggestedPalette.php │ │ │ ├── TimeStamp.php │ │ │ ├── Title.php │ │ │ ├── Transparency.php │ │ │ ├── URL.php │ │ │ ├── VirtualImageHeight.php │ │ │ ├── VirtualImageWidth.php │ │ │ ├── VirtualPageUnits.php │ │ │ ├── WhitePointX.php │ │ │ └── WhitePointY.php │ │ ├── PNGPHYs │ │ │ ├── PixelUnits.php │ │ │ ├── PixelsPerUnitX.php │ │ │ └── PixelsPerUnitY.php │ │ ├── PSP │ │ │ ├── Artist.php │ │ │ ├── BitsPerSample.php │ │ │ ├── Compression.php │ │ │ ├── Copyright.php │ │ │ ├── CreateDate.php │ │ │ ├── CreatorAppID.php │ │ │ ├── CreatorAppVersion.php │ │ │ ├── Description.php │ │ │ ├── FileVersion.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageResolution.php │ │ │ ├── ImageWidth.php │ │ │ ├── ModifyDate.php │ │ │ ├── NumColors.php │ │ │ ├── Planes.php │ │ │ ├── ResolutionUnit.php │ │ │ └── Title.php │ │ ├── Palm │ │ │ ├── CreateDate.php │ │ │ ├── DatabaseName.php │ │ │ ├── LastBackupDate.php │ │ │ ├── ModificationNumber.php │ │ │ ├── ModifyDate.php │ │ │ └── PalmFileType.php │ │ ├── Panasonic │ │ │ ├── AFAreaMode.php │ │ │ ├── AFAssistLamp.php │ │ │ ├── AFPointPosition.php │ │ │ ├── AccelerometerX.php │ │ │ ├── AccelerometerY.php │ │ │ ├── AccelerometerZ.php │ │ │ ├── AccessorySerialNumber.php │ │ │ ├── AccessoryType.php │ │ │ ├── AdvancedSceneType.php │ │ │ ├── Audio.php │ │ │ ├── BabyAge.php │ │ │ ├── BabyName.php │ │ │ ├── BracketSettings.php │ │ │ ├── BurstMode.php │ │ │ ├── BurstSpeed.php │ │ │ ├── CameraOrientation.php │ │ │ ├── City.php │ │ │ ├── City2.php │ │ │ ├── ClearRetouch.php │ │ │ ├── ClearRetouchValue.php │ │ │ ├── ColorEffect.php │ │ │ ├── ColorMode.php │ │ │ ├── ColorTempKelvin.php │ │ │ ├── Contrast.php │ │ │ ├── ContrastMode.php │ │ │ ├── ConversionLens.php │ │ │ ├── Country.php │ │ │ ├── DataDump.php │ │ │ ├── Face1Position.php │ │ │ ├── Face2Position.php │ │ │ ├── Face3Position.php │ │ │ ├── Face4Position.php │ │ │ ├── Face5Position.php │ │ │ ├── FacesDetected.php │ │ │ ├── FacesRecognized.php │ │ │ ├── FilmMode.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── FlashBias.php │ │ │ ├── FlashCurtain.php │ │ │ ├── FlashFired.php │ │ │ ├── FlashWarning.php │ │ │ ├── FocusMode.php │ │ │ ├── Gain.php │ │ │ ├── HDR.php │ │ │ ├── ImageQuality.php │ │ │ ├── ImageStabilization.php │ │ │ ├── IntelligentDRange.php │ │ │ ├── IntelligentExposure.php │ │ │ ├── IntelligentResolution.php │ │ │ ├── InternalNDFilter.php │ │ │ ├── InternalSerialNumber.php │ │ │ ├── Landmark.php │ │ │ ├── LensFirmwareVersion.php │ │ │ ├── LensSerialNumber.php │ │ │ ├── LensType.php │ │ │ ├── Location.php │ │ │ ├── LongExposureNoiseReduction.php │ │ │ ├── MacroMode.php │ │ │ ├── Make.php │ │ │ ├── MakerNoteType.php │ │ │ ├── MakerNoteVersion.php │ │ │ ├── ManometerPressure.php │ │ │ ├── Model.php │ │ │ ├── NoiseReduction.php │ │ │ ├── NumFacePositions.php │ │ │ ├── OpticalZoomMode.php │ │ │ ├── PanasonicExifVersion.php │ │ │ ├── PanasonicImageHeight.php │ │ │ ├── PanasonicImageWidth.php │ │ │ ├── PhotoStyle.php │ │ │ ├── PitchAngle.php │ │ │ ├── ProgramISO.php │ │ │ ├── RecognizedFace1Age.php │ │ │ ├── RecognizedFace1Name.php │ │ │ ├── RecognizedFace1Position.php │ │ │ ├── RecognizedFace2Age.php │ │ │ ├── RecognizedFace2Name.php │ │ │ ├── RecognizedFace2Position.php │ │ │ ├── RecognizedFace3Age.php │ │ │ ├── RecognizedFace3Name.php │ │ │ ├── RecognizedFace3Position.php │ │ │ ├── RecognizedFaceFlags.php │ │ │ ├── RollAngle.php │ │ │ ├── Rotation.php │ │ │ ├── Saturation.php │ │ │ ├── SceneMode.php │ │ │ ├── SelfTimer.php │ │ │ ├── SequenceNumber.php │ │ │ ├── ShadingCompensation.php │ │ │ ├── Sharpness.php │ │ │ ├── ShootingMode.php │ │ │ ├── ShutterType.php │ │ │ ├── State.php │ │ │ ├── SweepPanoramaDirection.php │ │ │ ├── SweepPanoramaFieldOfView.php │ │ │ ├── TextStamp.php │ │ │ ├── ThumbnailHeight.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── ThumbnailLength.php │ │ │ ├── ThumbnailTest.php │ │ │ ├── ThumbnailWidth.php │ │ │ ├── TimeSincePowerOn.php │ │ │ ├── TimerRecording.php │ │ │ ├── Title.php │ │ │ ├── TouchAE.php │ │ │ ├── Transform.php │ │ │ ├── TravelDay.php │ │ │ ├── Version1.php │ │ │ ├── Version2.php │ │ │ ├── WBBlueLevel.php │ │ │ ├── WBGreenLevel.php │ │ │ ├── WBRedLevel.php │ │ │ ├── WBShiftAB.php │ │ │ ├── WBShiftGM.php │ │ │ ├── WhiteBalance.php │ │ │ ├── WhiteBalanceBias.php │ │ │ └── WorldTimeLocation.php │ │ ├── PanasonicRaw │ │ │ ├── DistortionCorrection.php │ │ │ ├── DistortionN.php │ │ │ ├── DistortionParam02.php │ │ │ ├── DistortionParam04.php │ │ │ ├── DistortionParam08.php │ │ │ ├── DistortionParam09.php │ │ │ ├── DistortionParam11.php │ │ │ ├── DistortionScale.php │ │ │ ├── NumWBEntries.php │ │ │ ├── WBRBLevels1.php │ │ │ ├── WBRBLevels2.php │ │ │ ├── WBRBLevels3.php │ │ │ ├── WBRBLevels4.php │ │ │ ├── WBRBLevels5.php │ │ │ ├── WBRBLevels6.php │ │ │ ├── WBRBLevels7.php │ │ │ ├── WBRGBLevels1.php │ │ │ ├── WBRGBLevels2.php │ │ │ ├── WBRGBLevels3.php │ │ │ ├── WBRGBLevels4.php │ │ │ ├── WBRGBLevels5.php │ │ │ ├── WBRGBLevels6.php │ │ │ ├── WBRGBLevels7.php │ │ │ ├── WBType1.php │ │ │ ├── WBType2.php │ │ │ ├── WBType3.php │ │ │ ├── WBType4.php │ │ │ ├── WBType5.php │ │ │ ├── WBType6.php │ │ │ └── WBType7.php │ │ ├── Pentax │ │ │ ├── AEAperture.php │ │ │ ├── AEApertureSteps.php │ │ │ ├── AEBXv.php │ │ │ ├── AEError.php │ │ │ ├── AEExposureTime.php │ │ │ ├── AEFlags.php │ │ │ ├── AEISO.php │ │ │ ├── AELock.php │ │ │ ├── AEMaxAperture.php │ │ │ ├── AEMaxAperture2.php │ │ │ ├── AEMeteringMode.php │ │ │ ├── AEMeteringMode2.php │ │ │ ├── AEMeteringSegments.php │ │ │ ├── AEMinAperture.php │ │ │ ├── AEMinExposureTime.php │ │ │ ├── AEProgramMode.php │ │ │ ├── AEWhiteBalance.php │ │ │ ├── AEXv.php │ │ │ ├── AFAdjustment.php │ │ │ ├── AFDefocus.php │ │ │ ├── AFHold.php │ │ │ ├── AFIntegrationTime.php │ │ │ ├── AFPointMode.php │ │ │ ├── AFPointSelected.php │ │ │ ├── AFPointSelected2.php │ │ │ ├── AFPointsInFocus.php │ │ │ ├── AFPointsUnknown1.php │ │ │ ├── AFPointsUnknown2.php │ │ │ ├── AFPredictor.php │ │ │ ├── ApertureRingUse.php │ │ │ ├── Artist.php │ │ │ ├── AspectRatio.php │ │ │ ├── AudioCodecID.php │ │ │ ├── AutoAperture.php │ │ │ ├── AutoBracketing.php │ │ │ ├── AvApertureSetting.php │ │ │ ├── BaseExposureCompensation.php │ │ │ ├── BlackPoint.php │ │ │ ├── BleachBypassToning.php │ │ │ ├── BlueBalance.php │ │ │ ├── BlurControl.php │ │ │ ├── BodyBatteryADLoad.php │ │ │ ├── BodyBatteryADNoLoad.php │ │ │ ├── BodyBatteryState.php │ │ │ ├── BodyBatteryVoltage1.php │ │ │ ├── BodyBatteryVoltage2.php │ │ │ ├── BodyBatteryVoltage3.php │ │ │ ├── BodyBatteryVoltage4.php │ │ │ ├── BracketShotNumber.php │ │ │ ├── CPUFirmwareVersion.php │ │ │ ├── CameraOrientation.php │ │ │ ├── CameraTemperature.php │ │ │ ├── CameraTemperature4.php │ │ │ ├── CameraTemperature5.php │ │ │ ├── ChromaticAberrationCorrection.php │ │ │ ├── ColorFilter.php │ │ │ ├── ColorMatrixA.php │ │ │ ├── ColorMatrixB.php │ │ │ ├── ColorSpace.php │ │ │ ├── ColorTempCloudy.php │ │ │ ├── ColorTempDaylight.php │ │ │ ├── ColorTempFlash.php │ │ │ ├── ColorTempFluorescentD.php │ │ │ ├── ColorTempFluorescentN.php │ │ │ ├── ColorTempFluorescentW.php │ │ │ ├── ColorTempShade.php │ │ │ ├── ColorTempTungsten.php │ │ │ ├── ColorTemperature.php │ │ │ ├── CompositionAdjust.php │ │ │ ├── CompositionAdjustRotation.php │ │ │ ├── CompositionAdjustX.php │ │ │ ├── CompositionAdjustY.php │ │ │ ├── Contrast.php │ │ │ ├── ContrastDetectAFArea.php │ │ │ ├── ContrastHighlight.php │ │ │ ├── ContrastHighlightShadowAdj.php │ │ │ ├── ContrastShadow.php │ │ │ ├── Copyright.php │ │ │ ├── CrossProcess.php │ │ │ ├── CrossProcessParams.php │ │ │ ├── DSPFirmwareVersion.php │ │ │ ├── DataDump.php │ │ │ ├── DataScaling.php │ │ │ ├── Date.php │ │ │ ├── DateTime1.php │ │ │ ├── DateTime2.php │ │ │ ├── DestinationCity.php │ │ │ ├── DestinationCityCode.php │ │ │ ├── DestinationDST.php │ │ │ ├── DiffractionCorrection.php │ │ │ ├── DigitalFilter01.php │ │ │ ├── DigitalFilter02.php │ │ │ ├── DigitalFilter03.php │ │ │ ├── DigitalFilter04.php │ │ │ ├── DigitalFilter05.php │ │ │ ├── DigitalFilter06.php │ │ │ ├── DigitalFilter07.php │ │ │ ├── DigitalFilter08.php │ │ │ ├── DigitalFilter09.php │ │ │ ├── DigitalFilter10.php │ │ │ ├── DigitalFilter11.php │ │ │ ├── DigitalFilter12.php │ │ │ ├── DigitalFilter13.php │ │ │ ├── DigitalFilter14.php │ │ │ ├── DigitalFilter15.php │ │ │ ├── DigitalFilter16.php │ │ │ ├── DigitalFilter17.php │ │ │ ├── DigitalFilter18.php │ │ │ ├── DigitalFilter19.php │ │ │ ├── DigitalFilter20.php │ │ │ ├── DigitalZoom.php │ │ │ ├── DistortionCorrection.php │ │ │ ├── DriveMode.php │ │ │ ├── DriveMode2.php │ │ │ ├── DynamicRangeExpansion.php │ │ │ ├── EDialInProgram.php │ │ │ ├── EVSteps.php │ │ │ ├── EffectiveLV.php │ │ │ ├── ExposureBracketStepSize.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureTime.php │ │ │ ├── ExtenderStatus.php │ │ │ ├── ExternalFlashBounce.php │ │ │ ├── ExternalFlashExposureComp.php │ │ │ ├── ExternalFlashGuideNumber.php │ │ │ ├── ExternalFlashMode.php │ │ │ ├── FNumber.php │ │ │ ├── Face10Position.php │ │ │ ├── Face10Size.php │ │ │ ├── Face11Position.php │ │ │ ├── Face11Size.php │ │ │ ├── Face12Position.php │ │ │ ├── Face12Size.php │ │ │ ├── Face13Position.php │ │ │ ├── Face13Size.php │ │ │ ├── Face14Position.php │ │ │ ├── Face14Size.php │ │ │ ├── Face15Position.php │ │ │ ├── Face15Size.php │ │ │ ├── Face16Position.php │ │ │ ├── Face16Size.php │ │ │ ├── Face17Position.php │ │ │ ├── Face17Size.php │ │ │ ├── Face18Position.php │ │ │ ├── Face18Size.php │ │ │ ├── Face19Position.php │ │ │ ├── Face19Size.php │ │ │ ├── Face1Position.php │ │ │ ├── Face1Size.php │ │ │ ├── Face20Position.php │ │ │ ├── Face20Size.php │ │ │ ├── Face21Position.php │ │ │ ├── Face21Size.php │ │ │ ├── Face22Position.php │ │ │ ├── Face22Size.php │ │ │ ├── Face23Position.php │ │ │ ├── Face23Size.php │ │ │ ├── Face24Position.php │ │ │ ├── Face24Size.php │ │ │ ├── Face25Position.php │ │ │ ├── Face25Size.php │ │ │ ├── Face26Position.php │ │ │ ├── Face26Size.php │ │ │ ├── Face27Position.php │ │ │ ├── Face27Size.php │ │ │ ├── Face28Position.php │ │ │ ├── Face28Size.php │ │ │ ├── Face29Position.php │ │ │ ├── Face29Size.php │ │ │ ├── Face2Position.php │ │ │ ├── Face2Size.php │ │ │ ├── Face30Position.php │ │ │ ├── Face30Size.php │ │ │ ├── Face31Position.php │ │ │ ├── Face31Size.php │ │ │ ├── Face32Position.php │ │ │ ├── Face32Size.php │ │ │ ├── Face3Position.php │ │ │ ├── Face3Size.php │ │ │ ├── Face4Position.php │ │ │ ├── Face4Size.php │ │ │ ├── Face5Position.php │ │ │ ├── Face5Size.php │ │ │ ├── Face6Position.php │ │ │ ├── Face6Size.php │ │ │ ├── Face7Position.php │ │ │ ├── Face7Size.php │ │ │ ├── Face8Position.php │ │ │ ├── Face8Size.php │ │ │ ├── Face9Position.php │ │ │ ├── Face9Size.php │ │ │ ├── FaceDetect.php │ │ │ ├── FaceDetectFrameSize.php │ │ │ ├── FacePosition.php │ │ │ ├── FacesDetected.php │ │ │ ├── FineSharpness.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── FlashExposureComp.php │ │ │ ├── FlashExposureCompSet.php │ │ │ ├── FlashMeteringSegments.php │ │ │ ├── FlashMode.php │ │ │ ├── FlashOptions.php │ │ │ ├── FlashOptions2.php │ │ │ ├── FlashStatus.php │ │ │ ├── FocalLength.php │ │ │ ├── FocusMode.php │ │ │ ├── FocusMode2.php │ │ │ ├── FocusPosition.php │ │ │ ├── FocusRangeIndex.php │ │ │ ├── FrameNumber.php │ │ │ ├── GripBatteryADLoad.php │ │ │ ├── GripBatteryADNoLoad.php │ │ │ ├── GripBatteryState.php │ │ │ ├── HDR.php │ │ │ ├── HighISONoiseReduction.php │ │ │ ├── HighLowKeyAdj.php │ │ │ ├── HometownCity.php │ │ │ ├── HometownCityCode.php │ │ │ ├── HometownDST.php │ │ │ ├── Hue.php │ │ │ ├── HuffmanTable.php │ │ │ ├── ISO.php │ │ │ ├── ISOAuto.php │ │ │ ├── ISOAutoParameters.php │ │ │ ├── ISOFloor.php │ │ │ ├── ISOSetting.php │ │ │ ├── ImageAreaOffset.php │ │ │ ├── ImageEditCount.php │ │ │ ├── ImageEditing.php │ │ │ ├── ImageTone.php │ │ │ ├── InternalFlashMode.php │ │ │ ├── InternalFlashStrength.php │ │ │ ├── InternalSerialNumber.php │ │ │ ├── JpgRecordedPixels.php │ │ │ ├── KelvinWB01.php │ │ │ ├── KelvinWB02.php │ │ │ ├── KelvinWB03.php │ │ │ ├── KelvinWB04.php │ │ │ ├── KelvinWB05.php │ │ │ ├── KelvinWB06.php │ │ │ ├── KelvinWB07.php │ │ │ ├── KelvinWB08.php │ │ │ ├── KelvinWB09.php │ │ │ ├── KelvinWB10.php │ │ │ ├── KelvinWB11.php │ │ │ ├── KelvinWB12.php │ │ │ ├── KelvinWB13.php │ │ │ ├── KelvinWB14.php │ │ │ ├── KelvinWB15.php │ │ │ ├── KelvinWB16.php │ │ │ ├── KelvinWBDaylight.php │ │ │ ├── LC1.php │ │ │ ├── LC10.php │ │ │ ├── LC11.php │ │ │ ├── LC12.php │ │ │ ├── LC14.php │ │ │ ├── LC15.php │ │ │ ├── LC3.php │ │ │ ├── LC4.php │ │ │ ├── LC5.php │ │ │ ├── LC6.php │ │ │ ├── LC7.php │ │ │ ├── LC8.php │ │ │ ├── LensFStops.php │ │ │ ├── LensFocalLength.php │ │ │ ├── LensInfo.php │ │ │ ├── LensKind.php │ │ │ ├── LensModel.php │ │ │ ├── LensType.php │ │ │ ├── LevelIndicator.php │ │ │ ├── LevelOrientation.php │ │ │ ├── LightReading.php │ │ │ ├── LinkAEToAFPoint.php │ │ │ ├── Make.php │ │ │ ├── MakerNoteVersion.php │ │ │ ├── ManufactureDate.php │ │ │ ├── MaxAperture.php │ │ │ ├── MeteringMode.php │ │ │ ├── MeteringMode2.php │ │ │ ├── MeteringMode3.php │ │ │ ├── MinAperture.php │ │ │ ├── MinFocusDistance.php │ │ │ ├── Model.php │ │ │ ├── MonochromeFilterEffect.php │ │ │ ├── MonochromeToning.php │ │ │ ├── MultipleExposureSet.php │ │ │ ├── NeutralDensityFilter.php │ │ │ ├── NewLensDataHook.php │ │ │ ├── NoiseReduction.php │ │ │ ├── NominalMaxAperture.php │ │ │ ├── NominalMinAperture.php │ │ │ ├── PentaxImageSize.php │ │ │ ├── PentaxModelID.php │ │ │ ├── PentaxModelType.php │ │ │ ├── PentaxVersion.php │ │ │ ├── PeripheralIlluminationCorr.php │ │ │ ├── PictureMode.php │ │ │ ├── PictureMode2.php │ │ │ ├── PitchAngle.php │ │ │ ├── PixelShiftResolution.php │ │ │ ├── PowerSource.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewImageBorders.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageSize.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── ProductionCode.php │ │ │ ├── ProgramLine.php │ │ │ ├── Quality.php │ │ │ ├── RawAndJpgRecording.php │ │ │ ├── RawDevelopmentProcess.php │ │ │ ├── RawImageSize.php │ │ │ ├── RecordingMode.php │ │ │ ├── RedBalance.php │ │ │ ├── RollAngle.php │ │ │ ├── Rotation.php │ │ │ ├── SRActive.php │ │ │ ├── SRFocalLength.php │ │ │ ├── SRHalfPressTime.php │ │ │ ├── SRResult.php │ │ │ ├── Saturation.php │ │ │ ├── SaturationInfo.php │ │ │ ├── SceneMode.php │ │ │ ├── SensitivityAdjust.php │ │ │ ├── SensitivitySteps.php │ │ │ ├── SensorSize.php │ │ │ ├── SensorTemperature.php │ │ │ ├── SensorTemperature2.php │ │ │ ├── SerialNumber.php │ │ │ ├── ShadowCorrection.php │ │ │ ├── ShakeReduction.php │ │ │ ├── Sharpness.php │ │ │ ├── ShutterCount.php │ │ │ ├── SlaveFlashMeteringSegments.php │ │ │ ├── SourceDirectoryIndex.php │ │ │ ├── SourceFileIndex.php │ │ │ ├── SvISOSetting.php │ │ │ ├── TTLDAADown.php │ │ │ ├── TTLDAAUp.php │ │ │ ├── TTLDABDown.php │ │ │ ├── TTLDABUp.php │ │ │ ├── ThumbnailHeight.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── ThumbnailLength.php │ │ │ ├── ThumbnailWidth.php │ │ │ ├── Time.php │ │ │ ├── ToneCurve.php │ │ │ ├── ToneCurves.php │ │ │ ├── TungstenAWB.php │ │ │ ├── TvExposureTimeSetting.php │ │ │ ├── UnknownBlock.php │ │ │ ├── WBRGGBLevelsCloudy.php │ │ │ ├── WBRGGBLevelsDaylight.php │ │ │ ├── WBRGGBLevelsFlash.php │ │ │ ├── WBRGGBLevelsFluorescentD.php │ │ │ ├── WBRGGBLevelsFluorescentL.php │ │ │ ├── WBRGGBLevelsFluorescentN.php │ │ │ ├── WBRGGBLevelsFluorescentW.php │ │ │ ├── WBRGGBLevelsShade.php │ │ │ ├── WBRGGBLevelsTungsten.php │ │ │ ├── WBRGGBLevelsUnknown.php │ │ │ ├── WBRGGBLevelsUserSelected.php │ │ │ ├── WBShiftAB.php │ │ │ ├── WBShiftGM.php │ │ │ ├── WhiteBalance.php │ │ │ ├── WhiteBalanceAutoAdjustment.php │ │ │ ├── WhiteBalanceMode.php │ │ │ ├── WhiteBalanceSet.php │ │ │ ├── WhiteLevel.php │ │ │ ├── WhitePoint.php │ │ │ └── WorldTimeLocation.php │ │ ├── PhaseOne │ │ │ ├── AllColorFlatField1.php │ │ │ ├── AllColorFlatField2.php │ │ │ ├── AllColorFlatField3.php │ │ │ ├── ApertureValue.php │ │ │ ├── BlackLevel.php │ │ │ ├── BlackLevelData.php │ │ │ ├── CameraModel.php │ │ │ ├── CameraOrientation.php │ │ │ ├── ColorMatrix1.php │ │ │ ├── ColorMatrix2.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── FirmwareVersions.php │ │ │ ├── FocalLength.php │ │ │ ├── ISO.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageNumber.php │ │ │ ├── ImageWidth.php │ │ │ ├── LensModel.php │ │ │ ├── LinearizationCoefficients1.php │ │ │ ├── LinearizationCoefficients2.php │ │ │ ├── MaxApertureValue.php │ │ │ ├── MinApertureValue.php │ │ │ ├── PhaseOne0x0225.php │ │ │ ├── PhaseOne0x022b.php │ │ │ ├── PhaseOne0x0258.php │ │ │ ├── PhaseOne0x025a.php │ │ │ ├── RawData.php │ │ │ ├── RawFormat.php │ │ │ ├── RedBlueFlatField.php │ │ │ ├── SensorCalibration0x0404.php │ │ │ ├── SensorCalibration0x0405.php │ │ │ ├── SensorCalibration0x0406.php │ │ │ ├── SensorCalibration0x0408.php │ │ │ ├── SensorCalibration0x040f.php │ │ │ ├── SensorCalibration0x0413.php │ │ │ ├── SensorCalibration0x0414.php │ │ │ ├── SensorCalibration0x0418.php │ │ │ ├── SensorCalibration0x041c.php │ │ │ ├── SensorCalibration0x041e.php │ │ │ ├── SensorDefects.php │ │ │ ├── SensorHeight.php │ │ │ ├── SensorLeftMargin.php │ │ │ ├── SensorTemperature.php │ │ │ ├── SensorTemperature2.php │ │ │ ├── SensorTopMargin.php │ │ │ ├── SensorWidth.php │ │ │ ├── SerialNumber.php │ │ │ ├── ShutterSpeedValue.php │ │ │ ├── Software.php │ │ │ ├── SplitColumn.php │ │ │ ├── StripOffsets.php │ │ │ ├── System.php │ │ │ ├── UnknownDate.php │ │ │ └── WBRGBLevels.php │ │ ├── PhotoCD │ │ │ ├── AuthoringSoftwareRelease.php │ │ │ ├── CharacterEscapeSequence.php │ │ │ ├── CharacterSet.php │ │ │ ├── CompressionClass.php │ │ │ ├── CopyrightFileName.php │ │ │ ├── CopyrightStatus.php │ │ │ ├── CreateDate.php │ │ │ ├── HasSBA.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageMagnificationDescriptor.php │ │ │ ├── ImageMedium.php │ │ │ ├── ImageWidth.php │ │ │ ├── ImageWorkstationMake.php │ │ │ ├── ModifyDate.php │ │ │ ├── Orientation.php │ │ │ ├── PhotoFinisherName.php │ │ │ ├── ProductType.php │ │ │ ├── ScannerFirmwareDate.php │ │ │ ├── ScannerFirmwareVersion.php │ │ │ ├── ScannerPixelSize.php │ │ │ ├── ScannerProductID.php │ │ │ ├── ScannerSerialNumber.php │ │ │ ├── ScannerVendorID.php │ │ │ ├── SceneBalanceAlgorithmCommand.php │ │ │ ├── SceneBalanceAlgorithmFilmID.php │ │ │ ├── SceneBalanceAlgorithmRevision.php │ │ │ └── SpecificationVersion.php │ │ ├── PhotoMechanic │ │ │ ├── ColorClass.php │ │ │ ├── ConstrainedCropHeight.php │ │ │ ├── ConstrainedCropWidth.php │ │ │ ├── CropBottom.php │ │ │ ├── CropLeft.php │ │ │ ├── CropRight.php │ │ │ ├── CropTop.php │ │ │ ├── FrameNum.php │ │ │ ├── PreviewCropBottom.php │ │ │ ├── PreviewCropLeft.php │ │ │ ├── PreviewCropRight.php │ │ │ ├── PreviewCropTop.php │ │ │ ├── Rating.php │ │ │ ├── RawCropBottom.php │ │ │ ├── RawCropLeft.php │ │ │ ├── RawCropRight.php │ │ │ ├── RawCropTop.php │ │ │ ├── Rotation.php │ │ │ └── Tagged.php │ │ ├── Photoshop │ │ │ ├── AlphaChannelsNames.php │ │ │ ├── AlphaIdentifiers.php │ │ │ ├── AlternateDuotoneColors.php │ │ │ ├── AlternateSpotColors.php │ │ │ ├── AutoSaveFilePath.php │ │ │ ├── AutoSaveFormat.php │ │ │ ├── BWHalftoningInfo.php │ │ │ ├── BWTransferFunc.php │ │ │ ├── BackgroundColor.php │ │ │ ├── BitDepth.php │ │ │ ├── BorderInformation.php │ │ │ ├── ClippingPathName.php │ │ │ ├── ColorHalftoningInfo.php │ │ │ ├── ColorMode.php │ │ │ ├── ColorSamplersResource.php │ │ │ ├── ColorSamplersResource2.php │ │ │ ├── ColorTransferFuncs.php │ │ │ ├── CopyrightFlag.php │ │ │ ├── CountInfo.php │ │ │ ├── DisplayInfo.php │ │ │ ├── DisplayedUnitsX.php │ │ │ ├── DisplayedUnitsY.php │ │ │ ├── DuotoneHalftoningInfo.php │ │ │ ├── DuotoneImageInfo.php │ │ │ ├── DuotoneTransferFuncs.php │ │ │ ├── EPSOptions.php │ │ │ ├── EffectiveBW.php │ │ │ ├── EffectsVisible.php │ │ │ ├── ExifInfo2.php │ │ │ ├── GlobalAltitude.php │ │ │ ├── GlobalAngle.php │ │ │ ├── GridGuidesInfo.php │ │ │ ├── HDRToningInfo.php │ │ │ ├── HasRealMergedData.php │ │ │ ├── ICCUntagged.php │ │ │ ├── IDsBaseValue.php │ │ │ ├── IPTCDigest.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageReadyDataSets.php │ │ │ ├── ImageReadyVariables.php │ │ │ ├── ImageWidth.php │ │ │ ├── IndexedColourTableCount.php │ │ │ ├── JumpToXPEP.php │ │ │ ├── LayerComps.php │ │ │ ├── LayerGroupsEnabledID.php │ │ │ ├── LayerSelectionIDs.php │ │ │ ├── LayersGroupInfo.php │ │ │ ├── LightroomWorkflow.php │ │ │ ├── MacintoshNSPrintInfo.php │ │ │ ├── MacintoshPrintInfo.php │ │ │ ├── MeasurementScale.php │ │ │ ├── NumChannels.php │ │ │ ├── ObsoletePhotoshopTag1.php │ │ │ ├── ObsoletePhotoshopTag2.php │ │ │ ├── ObsoletePhotoshopTag3.php │ │ │ ├── OnionSkins.php │ │ │ ├── OriginPathInfo.php │ │ │ ├── PStringCaption.php │ │ │ ├── PathSelectionState.php │ │ │ ├── Photoshop2ColorTable.php │ │ │ ├── Photoshop2Info.php │ │ │ ├── PhotoshopBGRThumbnail.php │ │ │ ├── PhotoshopFormat.php │ │ │ ├── PhotoshopQuality.php │ │ │ ├── PhotoshopThumbnail.php │ │ │ ├── PixelAspectRatio.php │ │ │ ├── PrintFlags.php │ │ │ ├── PrintFlagsInfo.php │ │ │ ├── PrintInfo.php │ │ │ ├── PrintInfo2.php │ │ │ ├── PrintScale.php │ │ │ ├── PrintStyle.php │ │ │ ├── ProgressiveScans.php │ │ │ ├── QuickMaskInfo.php │ │ │ ├── RawImageMode.php │ │ │ ├── ReaderName.php │ │ │ ├── SheetDisclosure.php │ │ │ ├── Slices.php │ │ │ ├── SpotHalftone.php │ │ │ ├── TargetLayerID.php │ │ │ ├── TimelineInfo.php │ │ │ ├── TransparentIndex.php │ │ │ ├── URL.php │ │ │ ├── URLList.php │ │ │ ├── UnicodeAlphaNames.php │ │ │ ├── Watermark.php │ │ │ ├── WindowsDEVMODE.php │ │ │ ├── WorkflowURL.php │ │ │ ├── WorkingPath.php │ │ │ ├── WriterName.php │ │ │ ├── XMLData.php │ │ │ ├── XResolution.php │ │ │ └── YResolution.php │ │ ├── PictureInfo │ │ │ ├── Aperture.php │ │ │ ├── CameraType.php │ │ │ ├── ColorMode.php │ │ │ ├── ConTake.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── Flash.php │ │ │ ├── FocusMode.php │ │ │ ├── FocusPos.php │ │ │ ├── ID.php │ │ │ ├── ImageSize.php │ │ │ ├── LightS.php │ │ │ ├── Macro.php │ │ │ ├── Protect.php │ │ │ ├── Quality.php │ │ │ ├── Resolution.php │ │ │ ├── SerialNumber.php │ │ │ ├── StrobeTime.php │ │ │ ├── Version.php │ │ │ ├── YLevel.php │ │ │ ├── YTarget.php │ │ │ ├── Zoom.php │ │ │ └── ZoomPos.php │ │ ├── PostScript │ │ │ ├── Author.php │ │ │ ├── BoundingBox.php │ │ │ ├── Copyright.php │ │ │ ├── CreateDate.php │ │ │ ├── Creator.php │ │ │ ├── EmbeddedFileName.php │ │ │ ├── For0.php │ │ │ ├── ImageData.php │ │ │ ├── Keywords.php │ │ │ ├── ModifyDate.php │ │ │ ├── Pages.php │ │ │ ├── Routing.php │ │ │ ├── Subject.php │ │ │ ├── TIFFPreview.php │ │ │ ├── Title.php │ │ │ └── Version.php │ │ ├── PreviewIFD │ │ │ ├── Compression.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── ResolutionUnit.php │ │ │ ├── SubfileType.php │ │ │ ├── XResolution.php │ │ │ ├── YCbCrPositioning.php │ │ │ └── YResolution.php │ │ ├── PrintIM │ │ │ └── PrintIMVersion.php │ │ ├── Qualcomm │ │ │ ├── AECAggressiveness.php │ │ │ ├── AECCurrentExpIndex.php │ │ │ ├── AECCurrentSensorLuma.php │ │ │ ├── AECEnable.php │ │ │ ├── AECExposureIndexAdjStep.php │ │ │ ├── AECHighLumaRegionCount.php │ │ │ ├── AECHighLumaRegionThreshold.php │ │ │ ├── AECIndoorIdx.php │ │ │ ├── AECLumaTarget.php │ │ │ ├── AECLumaTolerance.php │ │ │ ├── AECMode.php │ │ │ ├── AECOdoorIdx.php │ │ │ ├── AECOutdoorBrightDiscarded.php │ │ │ ├── AECOutdoorBrightEnable.php │ │ │ ├── AECOutdoorBrightReduction.php │ │ │ ├── AECOutdoorBrightThresholdHI.php │ │ │ ├── AECOutdoorBrightThresholdLO.php │ │ │ ├── AECOutdoorGammaIndex.php │ │ │ ├── AECSnapshotDigitalGain.php │ │ │ ├── AECSnapshotExposureTimeMs.php │ │ │ ├── AECSnapshotLineCount.php │ │ │ ├── AECSnapshotSensorGain.php │ │ │ ├── AECVfeLuma.php │ │ │ ├── AFBoundary.php │ │ │ ├── AFCollectEndStat.php │ │ │ ├── AFEnable.php │ │ │ ├── AFFarEnd.php │ │ │ ├── AFFineSrchPoints.php │ │ │ ├── AFFineStep.php │ │ │ ├── AFFocusTime.php │ │ │ ├── AFGrossStep.php │ │ │ ├── AFMode.php │ │ │ ├── AFNearEnd.php │ │ │ ├── AFPosDefMacro.php │ │ │ ├── AFPosDefNorm.php │ │ │ ├── AFPosition.php │ │ │ ├── AFProcess.php │ │ │ ├── AFREnable.php │ │ │ ├── AFRFaster0ExpMod.php │ │ │ ├── AFRFaster0Trigger.php │ │ │ ├── AFRFaster1ExpMod.php │ │ │ ├── AFRFaster1Trigger.php │ │ │ ├── AFRFaster2ExpMod.php │ │ │ ├── AFRFaster2Trigger.php │ │ │ ├── AFRFaster3ExpMod.php │ │ │ ├── AFRFaster3Trigger.php │ │ │ ├── AFRFaster4ExpMod.php │ │ │ ├── AFRFaster4Trigger.php │ │ │ ├── AFRPossibleFrameCnt.php │ │ │ ├── AFRSlower0ExpMod.php │ │ │ ├── AFRSlower0Trigger.php │ │ │ ├── AFRSlower1ExpMod.php │ │ │ ├── AFRSlower1Trigger.php │ │ │ ├── AFRSlower2ExpMod.php │ │ │ ├── AFRSlower2Trigger.php │ │ │ ├── AFRSlower3ExpMod.php │ │ │ ├── AFRSlower3Trigger.php │ │ │ ├── AFRSlower4ExpMod.php │ │ │ ├── AFRSlower4Trigger.php │ │ │ ├── AFResetLensAfterSnap.php │ │ │ ├── AFStepsNearFar.php │ │ │ ├── AFStepsNearInfinity.php │ │ │ ├── AFTestMode.php │ │ │ ├── AFTracePositions00.php │ │ │ ├── AFTracePositions01.php │ │ │ ├── AFTracePositions02.php │ │ │ ├── AFTracePositions03.php │ │ │ ├── AFTracePositions04.php │ │ │ ├── AFTracePositions05.php │ │ │ ├── AFTracePositions06.php │ │ │ ├── AFTracePositions07.php │ │ │ ├── AFTracePositions08.php │ │ │ ├── AFTracePositions09.php │ │ │ ├── AFTracePositions10.php │ │ │ ├── AFTracePositions11.php │ │ │ ├── AFTracePositions12.php │ │ │ ├── AFTracePositions13.php │ │ │ ├── AFTracePositions14.php │ │ │ ├── AFTracePositions15.php │ │ │ ├── AFTracePositions16.php │ │ │ ├── AFTracePositions17.php │ │ │ ├── AFTracePositions18.php │ │ │ ├── AFTracePositions19.php │ │ │ ├── AFTracePositions20.php │ │ │ ├── AFTracePositions21.php │ │ │ ├── AFTracePositions22.php │ │ │ ├── AFTracePositions23.php │ │ │ ├── AFTracePositions24.php │ │ │ ├── AFTracePositions25.php │ │ │ ├── AFTracePositions26.php │ │ │ ├── AFTracePositions27.php │ │ │ ├── AFTracePositions28.php │ │ │ ├── AFTracePositions29.php │ │ │ ├── AFTracePositions30.php │ │ │ ├── AFTracePositions31.php │ │ │ ├── AFTracePositions32.php │ │ │ ├── AFTracePositions33.php │ │ │ ├── AFTracePositions34.php │ │ │ ├── AFTracePositions35.php │ │ │ ├── AFTracePositions36.php │ │ │ ├── AFTracePositions37.php │ │ │ ├── AFTracePositions38.php │ │ │ ├── AFTracePositions39.php │ │ │ ├── AFTracePositions40.php │ │ │ ├── AFTracePositions41.php │ │ │ ├── AFTracePositions42.php │ │ │ ├── AFTracePositions43.php │ │ │ ├── AFTracePositions44.php │ │ │ ├── AFTracePositions45.php │ │ │ ├── AFTracePositions46.php │ │ │ ├── AFTracePositions47.php │ │ │ ├── AFTracePositions48.php │ │ │ ├── AFTracePositions49.php │ │ │ ├── AFTraceStats00.php │ │ │ ├── AFTraceStats01.php │ │ │ ├── AFTraceStats02.php │ │ │ ├── AFTraceStats03.php │ │ │ ├── AFTraceStats04.php │ │ │ ├── AFTraceStats05.php │ │ │ ├── AFTraceStats06.php │ │ │ ├── AFTraceStats07.php │ │ │ ├── AFTraceStats08.php │ │ │ ├── AFTraceStats09.php │ │ │ ├── AFTraceStats10.php │ │ │ ├── AFTraceStats11.php │ │ │ ├── AFTraceStats12.php │ │ │ ├── AFTraceStats13.php │ │ │ ├── AFTraceStats14.php │ │ │ ├── AFTraceStats15.php │ │ │ ├── AFTraceStats16.php │ │ │ ├── AFTraceStats17.php │ │ │ ├── AFTraceStats18.php │ │ │ ├── AFTraceStats19.php │ │ │ ├── AFTraceStats20.php │ │ │ ├── AFTraceStats21.php │ │ │ ├── AFTraceStats22.php │ │ │ ├── AFTraceStats23.php │ │ │ ├── AFTraceStats24.php │ │ │ ├── AFTraceStats25.php │ │ │ ├── AFTraceStats26.php │ │ │ ├── AFTraceStats27.php │ │ │ ├── AFTraceStats28.php │ │ │ ├── AFTraceStats29.php │ │ │ ├── AFTraceStats30.php │ │ │ ├── AFTraceStats31.php │ │ │ ├── AFTraceStats32.php │ │ │ ├── AFTraceStats33.php │ │ │ ├── AFTraceStats34.php │ │ │ ├── AFTraceStats35.php │ │ │ ├── AFTraceStats36.php │ │ │ ├── AFTraceStats37.php │ │ │ ├── AFTraceStats38.php │ │ │ ├── AFTraceStats39.php │ │ │ ├── AFTraceStats40.php │ │ │ ├── AFTraceStats41.php │ │ │ ├── AFTraceStats42.php │ │ │ ├── AFTraceStats43.php │ │ │ ├── AFTraceStats44.php │ │ │ ├── AFTraceStats45.php │ │ │ ├── AFTraceStats46.php │ │ │ ├── AFTraceStats47.php │ │ │ ├── AFTraceStats48.php │ │ │ ├── AFTraceStats49.php │ │ │ ├── AFUndershootProtect.php │ │ │ ├── AFVfeHorzOffset.php │ │ │ ├── AFVfeHorzWidth.php │ │ │ ├── AFVfeMetricMax.php │ │ │ ├── AFVfeVertHeight.php │ │ │ ├── AFVfeVertOffset.php │ │ │ ├── ASF3EdgeDetect.php │ │ │ ├── ASF3EdgeFilterA11.php │ │ │ ├── ASF3EdgeFilterA12.php │ │ │ ├── ASF3EdgeFilterA13.php │ │ │ ├── ASF3EdgeFilterA21.php │ │ │ ├── ASF3EdgeFilterA22.php │ │ │ ├── ASF3EdgeFilterA23.php │ │ │ ├── ASF3EdgeFilterA31.php │ │ │ ├── ASF3EdgeFilterA32.php │ │ │ ├── ASF3EdgeFilterA33.php │ │ │ ├── ASF3Enable.php │ │ │ ├── ASF3LowerThreshold.php │ │ │ ├── ASF3NoiseFilterA11.php │ │ │ ├── ASF3NoiseFilterA12.php │ │ │ ├── ASF3NoiseFilterA13.php │ │ │ ├── ASF3NoiseFilterA21.php │ │ │ ├── ASF3NoiseFilterA22.php │ │ │ ├── ASF3NoiseFilterA23.php │ │ │ ├── ASF3NoiseFilterA31.php │ │ │ ├── ASF3NoiseFilterA32.php │ │ │ ├── ASF3NoiseFilterA33.php │ │ │ ├── ASF3UpperThreshold.php │ │ │ ├── ASF5BrtLoThres.php │ │ │ ├── ASF5BrtShrpDegF1.php │ │ │ ├── ASF5BrtShrpDegF2.php │ │ │ ├── ASF5BrtSmthPercent.php │ │ │ ├── ASF5BrtUpThres.php │ │ │ ├── ASF5Enable.php │ │ │ ├── ASF5ExposureIndex1.php │ │ │ ├── ASF5ExposureIndex2.php │ │ │ ├── ASF5Filter1A11.php │ │ │ ├── ASF5Filter1A12.php │ │ │ ├── ASF5Filter1A13.php │ │ │ ├── ASF5Filter1A14.php │ │ │ ├── ASF5Filter1A15.php │ │ │ ├── ASF5Filter1A21.php │ │ │ ├── ASF5Filter1A22.php │ │ │ ├── ASF5Filter1A23.php │ │ │ ├── ASF5Filter1A24.php │ │ │ ├── ASF5Filter1A25.php │ │ │ ├── ASF5Filter1A31.php │ │ │ ├── ASF5Filter1A32.php │ │ │ ├── ASF5Filter1A33.php │ │ │ ├── ASF5Filter1A34.php │ │ │ ├── ASF5Filter1A35.php │ │ │ ├── ASF5Filter1A41.php │ │ │ ├── ASF5Filter1A42.php │ │ │ ├── ASF5Filter1A43.php │ │ │ ├── ASF5Filter1A44.php │ │ │ ├── ASF5Filter1A45.php │ │ │ ├── ASF5Filter1A51.php │ │ │ ├── ASF5Filter1A52.php │ │ │ ├── ASF5Filter1A53.php │ │ │ ├── ASF5Filter1A54.php │ │ │ ├── ASF5Filter1A55.php │ │ │ ├── ASF5Filter2A11.php │ │ │ ├── ASF5Filter2A12.php │ │ │ ├── ASF5Filter2A13.php │ │ │ ├── ASF5Filter2A14.php │ │ │ ├── ASF5Filter2A15.php │ │ │ ├── ASF5Filter2A21.php │ │ │ ├── ASF5Filter2A22.php │ │ │ ├── ASF5Filter2A23.php │ │ │ ├── ASF5Filter2A24.php │ │ │ ├── ASF5Filter2A25.php │ │ │ ├── ASF5Filter2A31.php │ │ │ ├── ASF5Filter2A32.php │ │ │ ├── ASF5Filter2A33.php │ │ │ ├── ASF5Filter2A34.php │ │ │ ├── ASF5Filter2A35.php │ │ │ ├── ASF5Filter2A41.php │ │ │ ├── ASF5Filter2A42.php │ │ │ ├── ASF5Filter2A43.php │ │ │ ├── ASF5Filter2A44.php │ │ │ ├── ASF5Filter2A45.php │ │ │ ├── ASF5Filter2A51.php │ │ │ ├── ASF5Filter2A52.php │ │ │ ├── ASF5Filter2A53.php │ │ │ ├── ASF5Filter2A54.php │ │ │ ├── ASF5Filter2A55.php │ │ │ ├── ASF5FilterMode.php │ │ │ ├── ASF5LowLoThres.php │ │ │ ├── ASF5LowShrpDegF1.php │ │ │ ├── ASF5LowShrpDegF2.php │ │ │ ├── ASF5LowSmthPrcnt.php │ │ │ ├── ASF5LowUpThres.php │ │ │ ├── ASF5LumaFilter00.php │ │ │ ├── ASF5LumaFilter01.php │ │ │ ├── ASF5LumaFilter02.php │ │ │ ├── ASF5LumaFilter03.php │ │ │ ├── ASF5LumaFilter04.php │ │ │ ├── ASF5LumaFilter05.php │ │ │ ├── ASF5LumaFilter06.php │ │ │ ├── ASF5LumaFilter07.php │ │ │ ├── ASF5LumaFilter08.php │ │ │ ├── ASF5MaxExposureIndex.php │ │ │ ├── ASF5NrmLoThres.php │ │ │ ├── ASF5NrmShrpDegF1.php │ │ │ ├── ASF5NrmShrpDegF2.php │ │ │ ├── ASF5NrmSmthPrcnt.php │ │ │ ├── ASF5NrmUpThres.php │ │ │ ├── ASF5NrmizeFactor1.php │ │ │ ├── ASF5NrmizeFactor2.php │ │ │ ├── AWBAggressiveness.php │ │ │ ├── AWBAgwGridDist2Thresh.php │ │ │ ├── AWBAlgorithm.php │ │ │ ├── AWBAveBgRatio.php │ │ │ ├── AWBAveRgRatio.php │ │ │ ├── AWBBlueGainAdjRef1.php │ │ │ ├── AWBBlueGainAdjRef2.php │ │ │ ├── AWBBlueGainAdjRef3.php │ │ │ ├── AWBBlueGainAdjRef4.php │ │ │ ├── AWBBlueGainAdjRef5.php │ │ │ ├── AWBBlueGainAdjRef6.php │ │ │ ├── AWBBlueGainAdjRef7.php │ │ │ ├── AWBBlueGainAdjRef8.php │ │ │ ├── AWBBlueGainRef1.php │ │ │ ├── AWBBlueGainRef2.php │ │ │ ├── AWBBlueGainRef3.php │ │ │ ├── AWBBlueGainRef4.php │ │ │ ├── AWBBlueGainRef5.php │ │ │ ├── AWBBlueGainRef6.php │ │ │ ├── AWBBlueGainRef7.php │ │ │ ├── AWBBlueGainRef8.php │ │ │ ├── AWBCcBias.php │ │ │ ├── AWBCompactClusterR2.php │ │ │ ├── AWBEnable.php │ │ │ ├── AWBGreenOffsetBg.php │ │ │ ├── AWBGreenOffsetRg.php │ │ │ ├── AWBIndoorSampleInfluence.php │ │ │ ├── AWBLoVfeC1.php │ │ │ ├── AWBLoVfeC2.php │ │ │ ├── AWBLoVfeC3.php │ │ │ ├── AWBLoVfeC4.php │ │ │ ├── AWBLoVfeM1.php │ │ │ ├── AWBLoVfeM2.php │ │ │ ├── AWBLoVfeM3.php │ │ │ ├── AWBLoVfeM4.php │ │ │ ├── AWBLoVfeMaxY.php │ │ │ ├── AWBLoVfeMinY.php │ │ │ ├── AWBLowLigColCorEna.php │ │ │ ├── AWBMaxBGain.php │ │ │ ├── AWBMaxGGain.php │ │ │ ├── AWBMaxRGain.php │ │ │ ├── AWBMinBGain.php │ │ │ ├── AWBMinGGain.php │ │ │ ├── AWBMinRGain.php │ │ │ ├── AWBNormVfeC1.php │ │ │ ├── AWBNormVfeC2.php │ │ │ ├── AWBNormVfeC3.php │ │ │ ├── AWBNormVfeC4.php │ │ │ ├── AWBNormVfeM1.php │ │ │ ├── AWBNormVfeM2.php │ │ │ ├── AWBNormVfeM3.php │ │ │ ├── AWBNormVfeM4.php │ │ │ ├── AWBNormVfeMaxY.php │ │ │ ├── AWBNormVfeMinY.php │ │ │ ├── AWBOudorVfeC1.php │ │ │ ├── AWBOudorVfeC2.php │ │ │ ├── AWBOudorVfeC3.php │ │ │ ├── AWBOudorVfeC4.php │ │ │ ├── AWBOudorVfeM1.php │ │ │ ├── AWBOudorVfeM2.php │ │ │ ├── AWBOudorVfeM3.php │ │ │ ├── AWBOudorVfeM4.php │ │ │ ├── AWBOudorVfeMaxY.php │ │ │ ├── AWBOudorVfeMinY.php │ │ │ ├── AWBOutdoorSampleInfluence.php │ │ │ ├── AWBPrevWbBgain.php │ │ │ ├── AWBPrevWbGgain.php │ │ │ ├── AWBPrevWbRgain.php │ │ │ ├── AWBRedGainAdjRef1.php │ │ │ ├── AWBRedGainAdjRef2.php │ │ │ ├── AWBRedGainAdjRef3.php │ │ │ ├── AWBRedGainAdjRef4.php │ │ │ ├── AWBRedGainAdjRef5.php │ │ │ ├── AWBRedGainAdjRef6.php │ │ │ ├── AWBRedGainAdjRef7.php │ │ │ ├── AWBRedGainAdjRef8.php │ │ │ ├── AWBRedGainRef1.php │ │ │ ├── AWBRedGainRef2.php │ │ │ ├── AWBRedGainRef3.php │ │ │ ├── AWBRedGainRef4.php │ │ │ ├── AWBRedGainRef5.php │ │ │ ├── AWBRedGainRef6.php │ │ │ ├── AWBRedGainRef7.php │ │ │ ├── AWBRedGainRef8.php │ │ │ ├── AWBSampleDecision.php │ │ │ ├── AWBSnapshotBGain.php │ │ │ ├── AWBSnapshotRGain.php │ │ │ ├── AntiBadingPixelClk.php │ │ │ ├── AntiBadingPixelClkPerLine.php │ │ │ ├── AntibandingEnable.php │ │ │ ├── BlckLvlEvenCols.php │ │ │ ├── BlckLvlOddCols.php │ │ │ ├── CamMclkHz.php │ │ │ ├── ChroSupChroThres1.php │ │ │ ├── ChroSupChroThres2.php │ │ │ ├── ChroSupLumaThres1.php │ │ │ ├── ChroSupLumaThres2.php │ │ │ ├── ChroSupLumaThres3.php │ │ │ ├── ChroSupLumaThres4.php │ │ │ ├── ChromSupress.php │ │ │ ├── ClipToAfRato.php │ │ │ ├── CurrResol.php │ │ │ ├── DayltConvChrmAM.php │ │ │ ├── DayltConvChrmAP.php │ │ │ ├── DayltConvChrmBM.php │ │ │ ├── DayltConvChrmBP.php │ │ │ ├── DayltConvChrmCM.php │ │ │ ├── DayltConvChrmCP.php │ │ │ ├── DayltConvChrmDM.php │ │ │ ├── DayltConvChrmDP.php │ │ │ ├── DayltConvChrmKCb.php │ │ │ ├── DayltConvChrmKCr.php │ │ │ ├── DayltConvLumaK.php │ │ │ ├── DayltConvLumaV0.php │ │ │ ├── DayltConvLumaV1.php │ │ │ ├── DayltConvLumaV2.php │ │ │ ├── DefConvChrmAM.php │ │ │ ├── DefConvChrmAP.php │ │ │ ├── DefConvChrmBM.php │ │ │ ├── DefConvChrmBP.php │ │ │ ├── DefConvChrmCM.php │ │ │ ├── DefConvChrmCP.php │ │ │ ├── DefConvChrmDM.php │ │ │ ├── DefConvChrmDP.php │ │ │ ├── DefConvChrmKCb.php │ │ │ ├── DefConvChrmKCr.php │ │ │ ├── DefConvLumaK.php │ │ │ ├── DefConvLumaV0.php │ │ │ ├── DefConvLumaV1.php │ │ │ ├── DefConvLumaV2.php │ │ │ ├── DefCorC0.php │ │ │ ├── DefCorC1.php │ │ │ ├── DefCorC2.php │ │ │ ├── DefCorC3.php │ │ │ ├── DefCorC4.php │ │ │ ├── DefCorC5.php │ │ │ ├── DefCorC6.php │ │ │ ├── DefCorC7.php │ │ │ ├── DefCorC8.php │ │ │ ├── DefCorK0.php │ │ │ ├── DefCorK1.php │ │ │ ├── DefCorK2.php │ │ │ ├── DefLumaGammaMode.php │ │ │ ├── DefRgbGammaMode.php │ │ │ ├── DefectPixCorEnable.php │ │ │ ├── DefectPixMaxThresh.php │ │ │ ├── DefectPixMinThresh.php │ │ │ ├── DiscardFrstFrm.php │ │ │ ├── FrmSkipPttrn.php │ │ │ ├── GammaEnable.php │ │ │ ├── HJREnable.php │ │ │ ├── HJRMaxNumFrames.php │ │ │ ├── HJRNReductionFlat.php │ │ │ ├── HJRNReductionTexture.php │ │ │ ├── HJROneToTwoOffset.php │ │ │ ├── HJRTextureThreshold.php │ │ │ ├── IncandConvChrmAM.php │ │ │ ├── IncandConvChrmAP.php │ │ │ ├── IncandConvChrmBM.php │ │ │ ├── IncandConvChrmBP.php │ │ │ ├── IncandConvChrmCM.php │ │ │ ├── IncandConvChrmCP.php │ │ │ ├── IncandConvChrmDM.php │ │ │ ├── IncandConvChrmDP.php │ │ │ ├── IncandConvChrmKCb.php │ │ │ ├── IncandConvChrmKCr.php │ │ │ ├── IncandConvLumaK.php │ │ │ ├── IncandConvLumaV0.php │ │ │ ├── IncandConvLumaV1.php │ │ │ ├── IncandConvLumaV2.php │ │ │ ├── LADetect.php │ │ │ ├── LAEnable.php │ │ │ ├── MaxPrviewFps.php │ │ │ ├── MaxVideoFps.php │ │ │ ├── NghtshtFps.php │ │ │ ├── NightshotMode.php │ │ │ ├── OutlierDistance.php │ │ │ ├── PclkInvert.php │ │ │ ├── PrviewFps.php │ │ │ ├── PrviewResol.php │ │ │ ├── R2ABlueCtbl00.php │ │ │ ├── R2ABlueCtbl01.php │ │ │ ├── R2ABlueCtbl02.php │ │ │ ├── R2ABlueCtbl03.php │ │ │ ├── R2ABlueCtbl04.php │ │ │ ├── R2ABlueCtbl05.php │ │ │ ├── R2ABlueCtbl06.php │ │ │ ├── R2ABlueCtbl07.php │ │ │ ├── R2ABlueCtbl08.php │ │ │ ├── R2ABlueCtbl09.php │ │ │ ├── R2ABlueCtbl10.php │ │ │ ├── R2ABlueCtbl11.php │ │ │ ├── R2ABlueCtbl12.php │ │ │ ├── R2ABlueCtbl13.php │ │ │ ├── R2ABlueCtbl14.php │ │ │ ├── R2ABlueCtbl15.php │ │ │ ├── R2ABlueCtbl16.php │ │ │ ├── R2ABlueCtbl17.php │ │ │ ├── R2ABlueCtbl18.php │ │ │ ├── R2ABlueCtbl19.php │ │ │ ├── R2ABlueCtbl20.php │ │ │ ├── R2ABlueCtbl21.php │ │ │ ├── R2ABlueCtbl22.php │ │ │ ├── R2ABlueCtbl23.php │ │ │ ├── R2ABlueCtbl24.php │ │ │ ├── R2ABlueCtbl25.php │ │ │ ├── R2ABlueCtbl26.php │ │ │ ├── R2ABlueCtbl27.php │ │ │ ├── R2ABlueCtbl28.php │ │ │ ├── R2ABlueCtbl29.php │ │ │ ├── R2ABlueCtbl30.php │ │ │ ├── R2ABlueCtbl31.php │ │ │ ├── R2ABlueStbl00.php │ │ │ ├── R2ABlueStbl01.php │ │ │ ├── R2ABlueStbl02.php │ │ │ ├── R2ABlueStbl03.php │ │ │ ├── R2ABlueStbl04.php │ │ │ ├── R2ABlueStbl05.php │ │ │ ├── R2ABlueStbl06.php │ │ │ ├── R2ABlueStbl07.php │ │ │ ├── R2ABlueStbl08.php │ │ │ ├── R2ABlueStbl09.php │ │ │ ├── R2ABlueStbl10.php │ │ │ ├── R2ABlueStbl11.php │ │ │ ├── R2ABlueStbl12.php │ │ │ ├── R2ABlueStbl13.php │ │ │ ├── R2ABlueStbl14.php │ │ │ ├── R2ABlueStbl15.php │ │ │ ├── R2ABlueStbl16.php │ │ │ ├── R2ABlueStbl17.php │ │ │ ├── R2ABlueStbl18.php │ │ │ ├── R2ABlueStbl19.php │ │ │ ├── R2ABlueStbl20.php │ │ │ ├── R2ABlueStbl21.php │ │ │ ├── R2ABlueStbl22.php │ │ │ ├── R2ABlueStbl23.php │ │ │ ├── R2ABlueStbl24.php │ │ │ ├── R2ABlueStbl25.php │ │ │ ├── R2ABlueStbl26.php │ │ │ ├── R2ABlueStbl27.php │ │ │ ├── R2ABlueStbl28.php │ │ │ ├── R2ABlueStbl29.php │ │ │ ├── R2ABlueStbl30.php │ │ │ ├── R2ABlueStbl31.php │ │ │ ├── R2ACx.php │ │ │ ├── R2ACy.php │ │ │ ├── R2AGreenCtbl00.php │ │ │ ├── R2AGreenCtbl01.php │ │ │ ├── R2AGreenCtbl02.php │ │ │ ├── R2AGreenCtbl03.php │ │ │ ├── R2AGreenCtbl04.php │ │ │ ├── R2AGreenCtbl05.php │ │ │ ├── R2AGreenCtbl06.php │ │ │ ├── R2AGreenCtbl07.php │ │ │ ├── R2AGreenCtbl08.php │ │ │ ├── R2AGreenCtbl09.php │ │ │ ├── R2AGreenCtbl10.php │ │ │ ├── R2AGreenCtbl11.php │ │ │ ├── R2AGreenCtbl12.php │ │ │ ├── R2AGreenCtbl13.php │ │ │ ├── R2AGreenCtbl14.php │ │ │ ├── R2AGreenCtbl15.php │ │ │ ├── R2AGreenCtbl16.php │ │ │ ├── R2AGreenCtbl17.php │ │ │ ├── R2AGreenCtbl18.php │ │ │ ├── R2AGreenCtbl19.php │ │ │ ├── R2AGreenCtbl20.php │ │ │ ├── R2AGreenCtbl21.php │ │ │ ├── R2AGreenCtbl22.php │ │ │ ├── R2AGreenCtbl23.php │ │ │ ├── R2AGreenCtbl24.php │ │ │ ├── R2AGreenCtbl25.php │ │ │ ├── R2AGreenCtbl26.php │ │ │ ├── R2AGreenCtbl27.php │ │ │ ├── R2AGreenCtbl28.php │ │ │ ├── R2AGreenCtbl29.php │ │ │ ├── R2AGreenCtbl30.php │ │ │ ├── R2AGreenCtbl31.php │ │ │ ├── R2AGreenStbl00.php │ │ │ ├── R2AGreenStbl01.php │ │ │ ├── R2AGreenStbl02.php │ │ │ ├── R2AGreenStbl03.php │ │ │ ├── R2AGreenStbl04.php │ │ │ ├── R2AGreenStbl05.php │ │ │ ├── R2AGreenStbl06.php │ │ │ ├── R2AGreenStbl07.php │ │ │ ├── R2AGreenStbl08.php │ │ │ ├── R2AGreenStbl09.php │ │ │ ├── R2AGreenStbl10.php │ │ │ ├── R2AGreenStbl11.php │ │ │ ├── R2AGreenStbl12.php │ │ │ ├── R2AGreenStbl13.php │ │ │ ├── R2AGreenStbl14.php │ │ │ ├── R2AGreenStbl15.php │ │ │ ├── R2AGreenStbl16.php │ │ │ ├── R2AGreenStbl17.php │ │ │ ├── R2AGreenStbl18.php │ │ │ ├── R2AGreenStbl19.php │ │ │ ├── R2AGreenStbl20.php │ │ │ ├── R2AGreenStbl21.php │ │ │ ├── R2AGreenStbl22.php │ │ │ ├── R2AGreenStbl23.php │ │ │ ├── R2AGreenStbl24.php │ │ │ ├── R2AGreenStbl25.php │ │ │ ├── R2AGreenStbl26.php │ │ │ ├── R2AGreenStbl27.php │ │ │ ├── R2AGreenStbl28.php │ │ │ ├── R2AGreenStbl29.php │ │ │ ├── R2AGreenStbl30.php │ │ │ ├── R2AGreenStbl31.php │ │ │ ├── R2AHeight.php │ │ │ ├── R2AIntervals.php │ │ │ ├── R2ARedCtbl00.php │ │ │ ├── R2ARedCtbl01.php │ │ │ ├── R2ARedCtbl02.php │ │ │ ├── R2ARedCtbl03.php │ │ │ ├── R2ARedCtbl04.php │ │ │ ├── R2ARedCtbl05.php │ │ │ ├── R2ARedCtbl06.php │ │ │ ├── R2ARedCtbl07.php │ │ │ ├── R2ARedCtbl08.php │ │ │ ├── R2ARedCtbl09.php │ │ │ ├── R2ARedCtbl10.php │ │ │ ├── R2ARedCtbl11.php │ │ │ ├── R2ARedCtbl12.php │ │ │ ├── R2ARedCtbl13.php │ │ │ ├── R2ARedCtbl14.php │ │ │ ├── R2ARedCtbl15.php │ │ │ ├── R2ARedCtbl16.php │ │ │ ├── R2ARedCtbl17.php │ │ │ ├── R2ARedCtbl18.php │ │ │ ├── R2ARedCtbl19.php │ │ │ ├── R2ARedCtbl20.php │ │ │ ├── R2ARedCtbl21.php │ │ │ ├── R2ARedCtbl22.php │ │ │ ├── R2ARedCtbl23.php │ │ │ ├── R2ARedCtbl24.php │ │ │ ├── R2ARedCtbl25.php │ │ │ ├── R2ARedCtbl26.php │ │ │ ├── R2ARedCtbl27.php │ │ │ ├── R2ARedCtbl28.php │ │ │ ├── R2ARedCtbl29.php │ │ │ ├── R2ARedCtbl30.php │ │ │ ├── R2ARedCtbl31.php │ │ │ ├── R2ARedStbl00.php │ │ │ ├── R2ARedStbl01.php │ │ │ ├── R2ARedStbl02.php │ │ │ ├── R2ARedStbl03.php │ │ │ ├── R2ARedStbl04.php │ │ │ ├── R2ARedStbl05.php │ │ │ ├── R2ARedStbl06.php │ │ │ ├── R2ARedStbl07.php │ │ │ ├── R2ARedStbl08.php │ │ │ ├── R2ARedStbl09.php │ │ │ ├── R2ARedStbl10.php │ │ │ ├── R2ARedStbl11.php │ │ │ ├── R2ARedStbl12.php │ │ │ ├── R2ARedStbl13.php │ │ │ ├── R2ARedStbl14.php │ │ │ ├── R2ARedStbl15.php │ │ │ ├── R2ARedStbl16.php │ │ │ ├── R2ARedStbl17.php │ │ │ ├── R2ARedStbl18.php │ │ │ ├── R2ARedStbl19.php │ │ │ ├── R2ARedStbl20.php │ │ │ ├── R2ARedStbl21.php │ │ │ ├── R2ARedStbl22.php │ │ │ ├── R2ARedStbl23.php │ │ │ ├── R2ARedStbl24.php │ │ │ ├── R2ARedStbl25.php │ │ │ ├── R2ARedStbl26.php │ │ │ ├── R2ARedStbl27.php │ │ │ ├── R2ARedStbl28.php │ │ │ ├── R2ARedStbl29.php │ │ │ ├── R2ARedStbl30.php │ │ │ ├── R2ARedStbl31.php │ │ │ ├── R2ATbl00.php │ │ │ ├── R2ATbl01.php │ │ │ ├── R2ATbl02.php │ │ │ ├── R2ATbl03.php │ │ │ ├── R2ATbl04.php │ │ │ ├── R2ATbl05.php │ │ │ ├── R2ATbl06.php │ │ │ ├── R2ATbl07.php │ │ │ ├── R2ATbl08.php │ │ │ ├── R2ATbl09.php │ │ │ ├── R2ATbl10.php │ │ │ ├── R2ATbl11.php │ │ │ ├── R2ATbl12.php │ │ │ ├── R2ATbl13.php │ │ │ ├── R2ATbl14.php │ │ │ ├── R2ATbl15.php │ │ │ ├── R2ATbl16.php │ │ │ ├── R2ATbl17.php │ │ │ ├── R2ATbl18.php │ │ │ ├── R2ATbl19.php │ │ │ ├── R2ATbl20.php │ │ │ ├── R2ATbl21.php │ │ │ ├── R2ATbl22.php │ │ │ ├── R2ATbl23.php │ │ │ ├── R2ATbl24.php │ │ │ ├── R2ATbl25.php │ │ │ ├── R2ATbl26.php │ │ │ ├── R2ATbl27.php │ │ │ ├── R2ATbl28.php │ │ │ ├── R2ATbl29.php │ │ │ ├── R2ATbl30.php │ │ │ ├── R2ATbl31.php │ │ │ ├── R2AWidth.php │ │ │ ├── R2D65BlueCtbl00.php │ │ │ ├── R2D65BlueCtbl01.php │ │ │ ├── R2D65BlueCtbl02.php │ │ │ ├── R2D65BlueCtbl03.php │ │ │ ├── R2D65BlueCtbl04.php │ │ │ ├── R2D65BlueCtbl05.php │ │ │ ├── R2D65BlueCtbl06.php │ │ │ ├── R2D65BlueCtbl07.php │ │ │ ├── R2D65BlueCtbl08.php │ │ │ ├── R2D65BlueCtbl09.php │ │ │ ├── R2D65BlueCtbl10.php │ │ │ ├── R2D65BlueCtbl11.php │ │ │ ├── R2D65BlueCtbl12.php │ │ │ ├── R2D65BlueCtbl13.php │ │ │ ├── R2D65BlueCtbl14.php │ │ │ ├── R2D65BlueCtbl15.php │ │ │ ├── R2D65BlueCtbl16.php │ │ │ ├── R2D65BlueCtbl17.php │ │ │ ├── R2D65BlueCtbl18.php │ │ │ ├── R2D65BlueCtbl19.php │ │ │ ├── R2D65BlueCtbl20.php │ │ │ ├── R2D65BlueCtbl21.php │ │ │ ├── R2D65BlueCtbl22.php │ │ │ ├── R2D65BlueCtbl23.php │ │ │ ├── R2D65BlueCtbl24.php │ │ │ ├── R2D65BlueCtbl25.php │ │ │ ├── R2D65BlueCtbl26.php │ │ │ ├── R2D65BlueCtbl27.php │ │ │ ├── R2D65BlueCtbl28.php │ │ │ ├── R2D65BlueCtbl29.php │ │ │ ├── R2D65BlueCtbl30.php │ │ │ ├── R2D65BlueCtbl31.php │ │ │ ├── R2D65BlueStbl00.php │ │ │ ├── R2D65BlueStbl01.php │ │ │ ├── R2D65BlueStbl02.php │ │ │ ├── R2D65BlueStbl03.php │ │ │ ├── R2D65BlueStbl04.php │ │ │ ├── R2D65BlueStbl05.php │ │ │ ├── R2D65BlueStbl06.php │ │ │ ├── R2D65BlueStbl07.php │ │ │ ├── R2D65BlueStbl08.php │ │ │ ├── R2D65BlueStbl09.php │ │ │ ├── R2D65BlueStbl10.php │ │ │ ├── R2D65BlueStbl11.php │ │ │ ├── R2D65BlueStbl12.php │ │ │ ├── R2D65BlueStbl13.php │ │ │ ├── R2D65BlueStbl14.php │ │ │ ├── R2D65BlueStbl15.php │ │ │ ├── R2D65BlueStbl16.php │ │ │ ├── R2D65BlueStbl17.php │ │ │ ├── R2D65BlueStbl18.php │ │ │ ├── R2D65BlueStbl19.php │ │ │ ├── R2D65BlueStbl20.php │ │ │ ├── R2D65BlueStbl21.php │ │ │ ├── R2D65BlueStbl22.php │ │ │ ├── R2D65BlueStbl23.php │ │ │ ├── R2D65BlueStbl24.php │ │ │ ├── R2D65BlueStbl25.php │ │ │ ├── R2D65BlueStbl26.php │ │ │ ├── R2D65BlueStbl27.php │ │ │ ├── R2D65BlueStbl28.php │ │ │ ├── R2D65BlueStbl29.php │ │ │ ├── R2D65BlueStbl30.php │ │ │ ├── R2D65BlueStbl31.php │ │ │ ├── R2D65Cx.php │ │ │ ├── R2D65Cy.php │ │ │ ├── R2D65GreenCtbl00.php │ │ │ ├── R2D65GreenCtbl01.php │ │ │ ├── R2D65GreenCtbl02.php │ │ │ ├── R2D65GreenCtbl03.php │ │ │ ├── R2D65GreenCtbl04.php │ │ │ ├── R2D65GreenCtbl05.php │ │ │ ├── R2D65GreenCtbl06.php │ │ │ ├── R2D65GreenCtbl07.php │ │ │ ├── R2D65GreenCtbl08.php │ │ │ ├── R2D65GreenCtbl09.php │ │ │ ├── R2D65GreenCtbl10.php │ │ │ ├── R2D65GreenCtbl11.php │ │ │ ├── R2D65GreenCtbl12.php │ │ │ ├── R2D65GreenCtbl13.php │ │ │ ├── R2D65GreenCtbl14.php │ │ │ ├── R2D65GreenCtbl15.php │ │ │ ├── R2D65GreenCtbl16.php │ │ │ ├── R2D65GreenCtbl17.php │ │ │ ├── R2D65GreenCtbl18.php │ │ │ ├── R2D65GreenCtbl19.php │ │ │ ├── R2D65GreenCtbl20.php │ │ │ ├── R2D65GreenCtbl21.php │ │ │ ├── R2D65GreenCtbl22.php │ │ │ ├── R2D65GreenCtbl23.php │ │ │ ├── R2D65GreenCtbl24.php │ │ │ ├── R2D65GreenCtbl25.php │ │ │ ├── R2D65GreenCtbl26.php │ │ │ ├── R2D65GreenCtbl27.php │ │ │ ├── R2D65GreenCtbl28.php │ │ │ ├── R2D65GreenCtbl29.php │ │ │ ├── R2D65GreenCtbl30.php │ │ │ ├── R2D65GreenCtbl31.php │ │ │ ├── R2D65GreenStbl00.php │ │ │ ├── R2D65GreenStbl01.php │ │ │ ├── R2D65GreenStbl02.php │ │ │ ├── R2D65GreenStbl03.php │ │ │ ├── R2D65GreenStbl04.php │ │ │ ├── R2D65GreenStbl05.php │ │ │ ├── R2D65GreenStbl06.php │ │ │ ├── R2D65GreenStbl07.php │ │ │ ├── R2D65GreenStbl08.php │ │ │ ├── R2D65GreenStbl09.php │ │ │ ├── R2D65GreenStbl10.php │ │ │ ├── R2D65GreenStbl11.php │ │ │ ├── R2D65GreenStbl12.php │ │ │ ├── R2D65GreenStbl13.php │ │ │ ├── R2D65GreenStbl14.php │ │ │ ├── R2D65GreenStbl15.php │ │ │ ├── R2D65GreenStbl16.php │ │ │ ├── R2D65GreenStbl17.php │ │ │ ├── R2D65GreenStbl18.php │ │ │ ├── R2D65GreenStbl19.php │ │ │ ├── R2D65GreenStbl20.php │ │ │ ├── R2D65GreenStbl21.php │ │ │ ├── R2D65GreenStbl22.php │ │ │ ├── R2D65GreenStbl23.php │ │ │ ├── R2D65GreenStbl24.php │ │ │ ├── R2D65GreenStbl25.php │ │ │ ├── R2D65GreenStbl26.php │ │ │ ├── R2D65GreenStbl27.php │ │ │ ├── R2D65GreenStbl28.php │ │ │ ├── R2D65GreenStbl29.php │ │ │ ├── R2D65GreenStbl30.php │ │ │ ├── R2D65GreenStbl31.php │ │ │ ├── R2D65Height.php │ │ │ ├── R2D65Intervals.php │ │ │ ├── R2D65RedCtbl00.php │ │ │ ├── R2D65RedCtbl01.php │ │ │ ├── R2D65RedCtbl02.php │ │ │ ├── R2D65RedCtbl03.php │ │ │ ├── R2D65RedCtbl04.php │ │ │ ├── R2D65RedCtbl05.php │ │ │ ├── R2D65RedCtbl06.php │ │ │ ├── R2D65RedCtbl07.php │ │ │ ├── R2D65RedCtbl08.php │ │ │ ├── R2D65RedCtbl09.php │ │ │ ├── R2D65RedCtbl10.php │ │ │ ├── R2D65RedCtbl11.php │ │ │ ├── R2D65RedCtbl12.php │ │ │ ├── R2D65RedCtbl13.php │ │ │ ├── R2D65RedCtbl14.php │ │ │ ├── R2D65RedCtbl15.php │ │ │ ├── R2D65RedCtbl16.php │ │ │ ├── R2D65RedCtbl17.php │ │ │ ├── R2D65RedCtbl18.php │ │ │ ├── R2D65RedCtbl19.php │ │ │ ├── R2D65RedCtbl20.php │ │ │ ├── R2D65RedCtbl21.php │ │ │ ├── R2D65RedCtbl22.php │ │ │ ├── R2D65RedCtbl23.php │ │ │ ├── R2D65RedCtbl24.php │ │ │ ├── R2D65RedCtbl25.php │ │ │ ├── R2D65RedCtbl26.php │ │ │ ├── R2D65RedCtbl27.php │ │ │ ├── R2D65RedCtbl28.php │ │ │ ├── R2D65RedCtbl29.php │ │ │ ├── R2D65RedCtbl30.php │ │ │ ├── R2D65RedCtbl31.php │ │ │ ├── R2D65RedStbl00.php │ │ │ ├── R2D65RedStbl01.php │ │ │ ├── R2D65RedStbl02.php │ │ │ ├── R2D65RedStbl03.php │ │ │ ├── R2D65RedStbl04.php │ │ │ ├── R2D65RedStbl05.php │ │ │ ├── R2D65RedStbl06.php │ │ │ ├── R2D65RedStbl07.php │ │ │ ├── R2D65RedStbl08.php │ │ │ ├── R2D65RedStbl09.php │ │ │ ├── R2D65RedStbl10.php │ │ │ ├── R2D65RedStbl11.php │ │ │ ├── R2D65RedStbl12.php │ │ │ ├── R2D65RedStbl13.php │ │ │ ├── R2D65RedStbl14.php │ │ │ ├── R2D65RedStbl15.php │ │ │ ├── R2D65RedStbl16.php │ │ │ ├── R2D65RedStbl17.php │ │ │ ├── R2D65RedStbl18.php │ │ │ ├── R2D65RedStbl19.php │ │ │ ├── R2D65RedStbl20.php │ │ │ ├── R2D65RedStbl21.php │ │ │ ├── R2D65RedStbl22.php │ │ │ ├── R2D65RedStbl23.php │ │ │ ├── R2D65RedStbl24.php │ │ │ ├── R2D65RedStbl25.php │ │ │ ├── R2D65RedStbl26.php │ │ │ ├── R2D65RedStbl27.php │ │ │ ├── R2D65RedStbl28.php │ │ │ ├── R2D65RedStbl29.php │ │ │ ├── R2D65RedStbl30.php │ │ │ ├── R2D65RedStbl31.php │ │ │ ├── R2D65Tbl00.php │ │ │ ├── R2D65Tbl01.php │ │ │ ├── R2D65Tbl02.php │ │ │ ├── R2D65Tbl03.php │ │ │ ├── R2D65Tbl04.php │ │ │ ├── R2D65Tbl05.php │ │ │ ├── R2D65Tbl06.php │ │ │ ├── R2D65Tbl07.php │ │ │ ├── R2D65Tbl08.php │ │ │ ├── R2D65Tbl09.php │ │ │ ├── R2D65Tbl10.php │ │ │ ├── R2D65Tbl11.php │ │ │ ├── R2D65Tbl12.php │ │ │ ├── R2D65Tbl13.php │ │ │ ├── R2D65Tbl14.php │ │ │ ├── R2D65Tbl15.php │ │ │ ├── R2D65Tbl16.php │ │ │ ├── R2D65Tbl17.php │ │ │ ├── R2D65Tbl18.php │ │ │ ├── R2D65Tbl19.php │ │ │ ├── R2D65Tbl20.php │ │ │ ├── R2D65Tbl21.php │ │ │ ├── R2D65Tbl22.php │ │ │ ├── R2D65Tbl23.php │ │ │ ├── R2D65Tbl24.php │ │ │ ├── R2D65Tbl25.php │ │ │ ├── R2D65Tbl26.php │ │ │ ├── R2D65Tbl27.php │ │ │ ├── R2D65Tbl28.php │ │ │ ├── R2D65Tbl29.php │ │ │ ├── R2D65Tbl30.php │ │ │ ├── R2D65Tbl31.php │ │ │ ├── R2D65Width.php │ │ │ ├── R2TL84BlueCtbl00.php │ │ │ ├── R2TL84BlueCtbl01.php │ │ │ ├── R2TL84BlueCtbl02.php │ │ │ ├── R2TL84BlueCtbl03.php │ │ │ ├── R2TL84BlueCtbl04.php │ │ │ ├── R2TL84BlueCtbl05.php │ │ │ ├── R2TL84BlueCtbl06.php │ │ │ ├── R2TL84BlueCtbl07.php │ │ │ ├── R2TL84BlueCtbl08.php │ │ │ ├── R2TL84BlueCtbl09.php │ │ │ ├── R2TL84BlueCtbl10.php │ │ │ ├── R2TL84BlueCtbl11.php │ │ │ ├── R2TL84BlueCtbl12.php │ │ │ ├── R2TL84BlueCtbl13.php │ │ │ ├── R2TL84BlueCtbl14.php │ │ │ ├── R2TL84BlueCtbl15.php │ │ │ ├── R2TL84BlueCtbl16.php │ │ │ ├── R2TL84BlueCtbl17.php │ │ │ ├── R2TL84BlueCtbl18.php │ │ │ ├── R2TL84BlueCtbl19.php │ │ │ ├── R2TL84BlueCtbl20.php │ │ │ ├── R2TL84BlueCtbl21.php │ │ │ ├── R2TL84BlueCtbl22.php │ │ │ ├── R2TL84BlueCtbl23.php │ │ │ ├── R2TL84BlueCtbl24.php │ │ │ ├── R2TL84BlueCtbl25.php │ │ │ ├── R2TL84BlueCtbl26.php │ │ │ ├── R2TL84BlueCtbl27.php │ │ │ ├── R2TL84BlueCtbl28.php │ │ │ ├── R2TL84BlueCtbl29.php │ │ │ ├── R2TL84BlueCtbl30.php │ │ │ ├── R2TL84BlueCtbl31.php │ │ │ ├── R2TL84BlueStbl00.php │ │ │ ├── R2TL84BlueStbl01.php │ │ │ ├── R2TL84BlueStbl02.php │ │ │ ├── R2TL84BlueStbl03.php │ │ │ ├── R2TL84BlueStbl04.php │ │ │ ├── R2TL84BlueStbl05.php │ │ │ ├── R2TL84BlueStbl06.php │ │ │ ├── R2TL84BlueStbl07.php │ │ │ ├── R2TL84BlueStbl08.php │ │ │ ├── R2TL84BlueStbl09.php │ │ │ ├── R2TL84BlueStbl10.php │ │ │ ├── R2TL84BlueStbl11.php │ │ │ ├── R2TL84BlueStbl12.php │ │ │ ├── R2TL84BlueStbl13.php │ │ │ ├── R2TL84BlueStbl14.php │ │ │ ├── R2TL84BlueStbl15.php │ │ │ ├── R2TL84BlueStbl16.php │ │ │ ├── R2TL84BlueStbl17.php │ │ │ ├── R2TL84BlueStbl18.php │ │ │ ├── R2TL84BlueStbl19.php │ │ │ ├── R2TL84BlueStbl20.php │ │ │ ├── R2TL84BlueStbl21.php │ │ │ ├── R2TL84BlueStbl22.php │ │ │ ├── R2TL84BlueStbl23.php │ │ │ ├── R2TL84BlueStbl24.php │ │ │ ├── R2TL84BlueStbl25.php │ │ │ ├── R2TL84BlueStbl26.php │ │ │ ├── R2TL84BlueStbl27.php │ │ │ ├── R2TL84BlueStbl28.php │ │ │ ├── R2TL84BlueStbl29.php │ │ │ ├── R2TL84BlueStbl30.php │ │ │ ├── R2TL84BlueStbl31.php │ │ │ ├── R2TL84Cx.php │ │ │ ├── R2TL84Cy.php │ │ │ ├── R2TL84GreenCtbl00.php │ │ │ ├── R2TL84GreenCtbl01.php │ │ │ ├── R2TL84GreenCtbl02.php │ │ │ ├── R2TL84GreenCtbl03.php │ │ │ ├── R2TL84GreenCtbl04.php │ │ │ ├── R2TL84GreenCtbl05.php │ │ │ ├── R2TL84GreenCtbl06.php │ │ │ ├── R2TL84GreenCtbl07.php │ │ │ ├── R2TL84GreenCtbl08.php │ │ │ ├── R2TL84GreenCtbl09.php │ │ │ ├── R2TL84GreenCtbl10.php │ │ │ ├── R2TL84GreenCtbl11.php │ │ │ ├── R2TL84GreenCtbl12.php │ │ │ ├── R2TL84GreenCtbl13.php │ │ │ ├── R2TL84GreenCtbl14.php │ │ │ ├── R2TL84GreenCtbl15.php │ │ │ ├── R2TL84GreenCtbl16.php │ │ │ ├── R2TL84GreenCtbl17.php │ │ │ ├── R2TL84GreenCtbl18.php │ │ │ ├── R2TL84GreenCtbl19.php │ │ │ ├── R2TL84GreenCtbl20.php │ │ │ ├── R2TL84GreenCtbl21.php │ │ │ ├── R2TL84GreenCtbl22.php │ │ │ ├── R2TL84GreenCtbl23.php │ │ │ ├── R2TL84GreenCtbl24.php │ │ │ ├── R2TL84GreenCtbl25.php │ │ │ ├── R2TL84GreenCtbl26.php │ │ │ ├── R2TL84GreenCtbl27.php │ │ │ ├── R2TL84GreenCtbl28.php │ │ │ ├── R2TL84GreenCtbl29.php │ │ │ ├── R2TL84GreenCtbl30.php │ │ │ ├── R2TL84GreenCtbl31.php │ │ │ ├── R2TL84GreenStbl00.php │ │ │ ├── R2TL84GreenStbl01.php │ │ │ ├── R2TL84GreenStbl02.php │ │ │ ├── R2TL84GreenStbl03.php │ │ │ ├── R2TL84GreenStbl04.php │ │ │ ├── R2TL84GreenStbl05.php │ │ │ ├── R2TL84GreenStbl06.php │ │ │ ├── R2TL84GreenStbl07.php │ │ │ ├── R2TL84GreenStbl08.php │ │ │ ├── R2TL84GreenStbl09.php │ │ │ ├── R2TL84GreenStbl10.php │ │ │ ├── R2TL84GreenStbl11.php │ │ │ ├── R2TL84GreenStbl12.php │ │ │ ├── R2TL84GreenStbl13.php │ │ │ ├── R2TL84GreenStbl14.php │ │ │ ├── R2TL84GreenStbl15.php │ │ │ ├── R2TL84GreenStbl16.php │ │ │ ├── R2TL84GreenStbl17.php │ │ │ ├── R2TL84GreenStbl18.php │ │ │ ├── R2TL84GreenStbl19.php │ │ │ ├── R2TL84GreenStbl20.php │ │ │ ├── R2TL84GreenStbl21.php │ │ │ ├── R2TL84GreenStbl22.php │ │ │ ├── R2TL84GreenStbl23.php │ │ │ ├── R2TL84GreenStbl24.php │ │ │ ├── R2TL84GreenStbl25.php │ │ │ ├── R2TL84GreenStbl26.php │ │ │ ├── R2TL84GreenStbl27.php │ │ │ ├── R2TL84GreenStbl28.php │ │ │ ├── R2TL84GreenStbl29.php │ │ │ ├── R2TL84GreenStbl30.php │ │ │ ├── R2TL84GreenStbl31.php │ │ │ ├── R2TL84Height.php │ │ │ ├── R2TL84Intervals.php │ │ │ ├── R2TL84RedCtbl00.php │ │ │ ├── R2TL84RedCtbl01.php │ │ │ ├── R2TL84RedCtbl02.php │ │ │ ├── R2TL84RedCtbl03.php │ │ │ ├── R2TL84RedCtbl04.php │ │ │ ├── R2TL84RedCtbl05.php │ │ │ ├── R2TL84RedCtbl06.php │ │ │ ├── R2TL84RedCtbl07.php │ │ │ ├── R2TL84RedCtbl08.php │ │ │ ├── R2TL84RedCtbl09.php │ │ │ ├── R2TL84RedCtbl10.php │ │ │ ├── R2TL84RedCtbl11.php │ │ │ ├── R2TL84RedCtbl12.php │ │ │ ├── R2TL84RedCtbl13.php │ │ │ ├── R2TL84RedCtbl14.php │ │ │ ├── R2TL84RedCtbl15.php │ │ │ ├── R2TL84RedCtbl16.php │ │ │ ├── R2TL84RedCtbl17.php │ │ │ ├── R2TL84RedCtbl18.php │ │ │ ├── R2TL84RedCtbl19.php │ │ │ ├── R2TL84RedCtbl20.php │ │ │ ├── R2TL84RedCtbl21.php │ │ │ ├── R2TL84RedCtbl22.php │ │ │ ├── R2TL84RedCtbl23.php │ │ │ ├── R2TL84RedCtbl24.php │ │ │ ├── R2TL84RedCtbl25.php │ │ │ ├── R2TL84RedCtbl26.php │ │ │ ├── R2TL84RedCtbl27.php │ │ │ ├── R2TL84RedCtbl28.php │ │ │ ├── R2TL84RedCtbl29.php │ │ │ ├── R2TL84RedCtbl30.php │ │ │ ├── R2TL84RedCtbl31.php │ │ │ ├── R2TL84RedStbl00.php │ │ │ ├── R2TL84RedStbl01.php │ │ │ ├── R2TL84RedStbl02.php │ │ │ ├── R2TL84RedStbl03.php │ │ │ ├── R2TL84RedStbl04.php │ │ │ ├── R2TL84RedStbl05.php │ │ │ ├── R2TL84RedStbl06.php │ │ │ ├── R2TL84RedStbl07.php │ │ │ ├── R2TL84RedStbl08.php │ │ │ ├── R2TL84RedStbl09.php │ │ │ ├── R2TL84RedStbl10.php │ │ │ ├── R2TL84RedStbl11.php │ │ │ ├── R2TL84RedStbl12.php │ │ │ ├── R2TL84RedStbl13.php │ │ │ ├── R2TL84RedStbl14.php │ │ │ ├── R2TL84RedStbl15.php │ │ │ ├── R2TL84RedStbl16.php │ │ │ ├── R2TL84RedStbl17.php │ │ │ ├── R2TL84RedStbl18.php │ │ │ ├── R2TL84RedStbl19.php │ │ │ ├── R2TL84RedStbl20.php │ │ │ ├── R2TL84RedStbl21.php │ │ │ ├── R2TL84RedStbl22.php │ │ │ ├── R2TL84RedStbl23.php │ │ │ ├── R2TL84RedStbl24.php │ │ │ ├── R2TL84RedStbl25.php │ │ │ ├── R2TL84RedStbl26.php │ │ │ ├── R2TL84RedStbl27.php │ │ │ ├── R2TL84RedStbl28.php │ │ │ ├── R2TL84RedStbl29.php │ │ │ ├── R2TL84RedStbl30.php │ │ │ ├── R2TL84RedStbl31.php │ │ │ ├── R2TL84Tbl00.php │ │ │ ├── R2TL84Tbl01.php │ │ │ ├── R2TL84Tbl02.php │ │ │ ├── R2TL84Tbl03.php │ │ │ ├── R2TL84Tbl04.php │ │ │ ├── R2TL84Tbl05.php │ │ │ ├── R2TL84Tbl06.php │ │ │ ├── R2TL84Tbl07.php │ │ │ ├── R2TL84Tbl08.php │ │ │ ├── R2TL84Tbl09.php │ │ │ ├── R2TL84Tbl10.php │ │ │ ├── R2TL84Tbl11.php │ │ │ ├── R2TL84Tbl12.php │ │ │ ├── R2TL84Tbl13.php │ │ │ ├── R2TL84Tbl14.php │ │ │ ├── R2TL84Tbl15.php │ │ │ ├── R2TL84Tbl16.php │ │ │ ├── R2TL84Tbl17.php │ │ │ ├── R2TL84Tbl18.php │ │ │ ├── R2TL84Tbl19.php │ │ │ ├── R2TL84Tbl20.php │ │ │ ├── R2TL84Tbl21.php │ │ │ ├── R2TL84Tbl22.php │ │ │ ├── R2TL84Tbl23.php │ │ │ ├── R2TL84Tbl24.php │ │ │ ├── R2TL84Tbl25.php │ │ │ ├── R2TL84Tbl26.php │ │ │ ├── R2TL84Tbl27.php │ │ │ ├── R2TL84Tbl28.php │ │ │ ├── R2TL84Tbl29.php │ │ │ ├── R2TL84Tbl30.php │ │ │ ├── R2TL84Tbl31.php │ │ │ ├── R2TL84Width.php │ │ │ ├── RolloffEnable.php │ │ │ ├── SensorFmt.php │ │ │ ├── SensorType.php │ │ │ ├── SensrFulHght.php │ │ │ ├── SensrFulWdth.php │ │ │ ├── SensrQtrHght.php │ │ │ ├── SensrQtrWdth.php │ │ │ ├── SnapshotResol.php │ │ │ ├── TL84ConvChrmAM.php │ │ │ ├── TL84ConvChrmAP.php │ │ │ ├── TL84ConvChrmBM.php │ │ │ ├── TL84ConvChrmBP.php │ │ │ ├── TL84ConvChrmCM.php │ │ │ ├── TL84ConvChrmCP.php │ │ │ ├── TL84ConvChrmDM.php │ │ │ ├── TL84ConvChrmDP.php │ │ │ ├── TL84ConvChrmKCb.php │ │ │ ├── TL84ConvChrmKCr.php │ │ │ ├── TL84ConvLumaK.php │ │ │ ├── TL84ConvLumaV0.php │ │ │ ├── TL84ConvLumaV1.php │ │ │ ├── TL84ConvLumaV2.php │ │ │ ├── VideoFps.php │ │ │ ├── YhiYloConvChrmAM.php │ │ │ ├── YhiYloConvChrmAP.php │ │ │ ├── YhiYloConvChrmBM.php │ │ │ ├── YhiYloConvChrmBP.php │ │ │ ├── YhiYloConvChrmCM.php │ │ │ ├── YhiYloConvChrmCP.php │ │ │ ├── YhiYloConvChrmDM.php │ │ │ ├── YhiYloConvChrmDP.php │ │ │ ├── YhiYloConvChrmKCb.php │ │ │ ├── YhiYloConvChrmKCr.php │ │ │ ├── YhiYloConvLumaK.php │ │ │ ├── YhiYloConvLumaV0.php │ │ │ ├── YhiYloConvLumaV1.php │ │ │ ├── YhiYloConvLumaV2.php │ │ │ ├── YhiYloCorC0.php │ │ │ ├── YhiYloCorC1.php │ │ │ ├── YhiYloCorC2.php │ │ │ ├── YhiYloCorC3.php │ │ │ ├── YhiYloCorC4.php │ │ │ ├── YhiYloCorC5.php │ │ │ ├── YhiYloCorC6.php │ │ │ ├── YhiYloCorC7.php │ │ │ ├── YhiYloCorC8.php │ │ │ ├── YhiYloCorK0.php │ │ │ ├── YhiYloCorK1.php │ │ │ └── YhiYloCorK2.php │ │ ├── QuickTime │ │ │ ├── ARDroneFile.php │ │ │ ├── ARDroneTelemetry.php │ │ │ ├── Album.php │ │ │ ├── AlbumArtist.php │ │ │ ├── AlbumTitleID.php │ │ │ ├── ApertureMode.php │ │ │ ├── AppleStoreAccount.php │ │ │ ├── AppleStoreAccountType.php │ │ │ ├── AppleStoreCatalogID.php │ │ │ ├── AppleStoreCountry.php │ │ │ ├── Arranger.php │ │ │ ├── ArrangerKeywords.php │ │ │ ├── Artist.php │ │ │ ├── Artwork.php │ │ │ ├── AudioAttributes.php │ │ │ ├── AudioAvailableBitRateRange.php │ │ │ ├── AudioAvailableNumberChannels.php │ │ │ ├── AudioAvgBitrate.php │ │ │ ├── AudioBitRateControlMode.php │ │ │ ├── AudioBitsPerSample.php │ │ │ ├── AudioChannels.php │ │ │ ├── AudioCodec.php │ │ │ ├── AudioCodecInfo.php │ │ │ ├── AudioCodecPrimeMethod.php │ │ │ ├── AudioComponentVersion.php │ │ │ ├── AudioCurrentTargetBitRate.php │ │ │ ├── AudioDoesSampleRateConversion.php │ │ │ ├── AudioEncodingParamsVersion.php │ │ │ ├── AudioExtendFrequencies.php │ │ │ ├── AudioFormat.php │ │ │ ├── AudioGain.php │ │ │ ├── AudioHasVariablePacketByteSizes.php │ │ │ ├── AudioInputBufferSize.php │ │ │ ├── AudioIsInitialized.php │ │ │ ├── AudioMaxBitrate.php │ │ │ ├── AudioMaximumPacketByteSize.php │ │ │ ├── AudioMinimumDelayMode.php │ │ │ ├── AudioMinimumNumberInputPackets.php │ │ │ ├── AudioMinimumNumberOutputPackets.php │ │ │ ├── AudioOutputPrecedence.php │ │ │ ├── AudioPacketFrameSize.php │ │ │ ├── AudioProfileVersion.php │ │ │ ├── AudioQualitySetting.php │ │ │ ├── AudioRequiresPacketDescription.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── AudioTrackID.php │ │ │ ├── AudioUseRecommendedSampleRate.php │ │ │ ├── AudioUsedInputBufferSize.php │ │ │ ├── AudioVBRQuality.php │ │ │ ├── AudioVendorID.php │ │ │ ├── AudioZeroFramesPadded.php │ │ │ ├── Author.php │ │ │ ├── AverageBitrate.php │ │ │ ├── AvgBitrate.php │ │ │ ├── AvgPDUSize.php │ │ │ ├── BackgroundColor.php │ │ │ ├── Balance.php │ │ │ ├── Bass.php │ │ │ ├── BeatsPerMinute.php │ │ │ ├── BinaryXML.php │ │ │ ├── BitDepth.php │ │ │ ├── Brightness.php │ │ │ ├── BufferSize.php │ │ │ ├── CDDB1Info.php │ │ │ ├── CDDBTrackNumber.php │ │ │ ├── CameraAngle.php │ │ │ ├── CameraDirection.php │ │ │ ├── CameraID.php │ │ │ ├── CameraIdentifier.php │ │ │ ├── CameraMotion.php │ │ │ ├── Category.php │ │ │ ├── Certificate.php │ │ │ ├── ChapterList.php │ │ │ ├── ChunkOffset.php │ │ │ ├── ChunkOffset64.php │ │ │ ├── Classification.php │ │ │ ├── CleanApertureHeight.php │ │ │ ├── CleanApertureOffsetX.php │ │ │ ├── CleanApertureOffsetY.php │ │ │ ├── CleanApertureWidth.php │ │ │ ├── ClipFileName.php │ │ │ ├── ClipID.php │ │ │ ├── CodeVersion.php │ │ │ ├── CollectionName.php │ │ │ ├── Color.php │ │ │ ├── ColorRepresentation.php │ │ │ ├── Comment.php │ │ │ ├── CompactSampleSizes.php │ │ │ ├── CompatibleBrands.php │ │ │ ├── Compilation.php │ │ │ ├── Composer.php │ │ │ ├── ComposerKeywords.php │ │ │ ├── CompositionTimeToSample.php │ │ │ ├── CompositionToDecodeTimelineMapping.php │ │ │ ├── Compression.php │ │ │ ├── CompressorID.php │ │ │ ├── CompressorName.php │ │ │ ├── CompressorVersion.php │ │ │ ├── ContentCreateDate.php │ │ │ ├── ContentDistributorID.php │ │ │ ├── ContentID.php │ │ │ ├── ContentRating.php │ │ │ ├── Contrast.php │ │ │ ├── Copyright.php │ │ │ ├── CoverArt.php │ │ │ ├── CoverURI.php │ │ │ ├── CreateDate.php │ │ │ ├── CreationDate.php │ │ │ ├── CurrentTime.php │ │ │ ├── Data.php │ │ │ ├── DataInformation.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── Description.php │ │ │ ├── Director.php │ │ │ ├── DiscNumber.php │ │ │ ├── DiskNumber.php │ │ │ ├── DisplaySize.php │ │ │ ├── Duration.php │ │ │ ├── Edit1.php │ │ │ ├── Edit2.php │ │ │ ├── Edit3.php │ │ │ ├── Edit4.php │ │ │ ├── Edit5.php │ │ │ ├── Edit6.php │ │ │ ├── Edit7.php │ │ │ ├── Edit8.php │ │ │ ├── Edit9.php │ │ │ ├── EncodedBy.php │ │ │ ├── EncodedWith.php │ │ │ ├── Encoder.php │ │ │ ├── EncoderVendor.php │ │ │ ├── EncoderVersion.php │ │ │ ├── EpisodeGlobalUniqueID.php │ │ │ ├── FileFunctionFlags.php │ │ │ ├── FileProfileVersion.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── FontName.php │ │ │ ├── FontTable.php │ │ │ ├── Format.php │ │ │ ├── FrameReadoutTime.php │ │ │ ├── Free.php │ │ │ ├── GPSCoordinates.php │ │ │ ├── GUID.php │ │ │ ├── Gamma.php │ │ │ ├── GenBalance.php │ │ │ ├── GenFlags.php │ │ │ ├── GenGraphicsMode.php │ │ │ ├── GenMediaVersion.php │ │ │ ├── GenOpColor.php │ │ │ ├── Genre.php │ │ │ ├── GenreID.php │ │ │ ├── GoProType.php │ │ │ ├── GoogleHostHeader.php │ │ │ ├── GooglePingMessage.php │ │ │ ├── GooglePingURL.php │ │ │ ├── GoogleSourceData.php │ │ │ ├── GoogleStartTime.php │ │ │ ├── GoogleTrackDuration.php │ │ │ ├── GraphicsMode.php │ │ │ ├── Grouping.php │ │ │ ├── HDVideo.php │ │ │ ├── HandlerClass.php │ │ │ ├── HandlerDescription.php │ │ │ ├── HandlerType.php │ │ │ ├── HandlerVendorID.php │ │ │ ├── HintFormat.php │ │ │ ├── HintTrackVersion.php │ │ │ ├── HintVersion.php │ │ │ ├── IPMPControl.php │ │ │ ├── ISRCCode.php │ │ │ ├── ITunSMPB.php │ │ │ ├── ITunTool.php │ │ │ ├── ITunesU.php │ │ │ ├── IconURI.php │ │ │ ├── IdependentAndDisposableSamples.php │ │ │ ├── ImageData.php │ │ │ ├── ImmediateDataBytes.php │ │ │ ├── InfoURL.php │ │ │ ├── Information.php │ │ │ ├── InitialObjectDescriptor.php │ │ │ ├── InitializationVector.php │ │ │ ├── ItemID.php │ │ │ ├── ItemInformation.php │ │ │ ├── ItemLocation.php │ │ │ ├── ItemProtection.php │ │ │ ├── ItemTool.php │ │ │ ├── ItemVendorID.php │ │ │ ├── Junk.php │ │ │ ├── KeyID.php │ │ │ ├── Keyword.php │ │ │ ├── Keywords.php │ │ │ ├── LargestPacketDuration.php │ │ │ ├── LargestPacketSize.php │ │ │ ├── LocationBody.php │ │ │ ├── LocationDate.php │ │ │ ├── LocationInformation.php │ │ │ ├── LocationName.php │ │ │ ├── LocationNote.php │ │ │ ├── LocationRole.php │ │ │ ├── LongDescription.php │ │ │ ├── LoopStyle.php │ │ │ ├── Lyrics.php │ │ │ ├── LyricsURI.php │ │ │ ├── MajorBrand.php │ │ │ ├── Make.php │ │ │ ├── MakerNotePentaxUnknown.php │ │ │ ├── MakerURL.php │ │ │ ├── MatrixStructure.php │ │ │ ├── MaxBitrate.php │ │ │ ├── MaxDataRate.php │ │ │ ├── MaxPDUSize.php │ │ │ ├── MaxPacketSize.php │ │ │ ├── MaxTransmissionTime.php │ │ │ ├── Mean.php │ │ │ ├── MediaFlags.php │ │ │ ├── MediaTrackBytes.php │ │ │ ├── MediaType.php │ │ │ ├── MinTransmissionTime.php │ │ │ ├── MinorVersion.php │ │ │ ├── ModeFlags.php │ │ │ ├── Model.php │ │ │ ├── ModifyDate.php │ │ │ ├── MovieData.php │ │ │ ├── MovieDataOffset.php │ │ │ ├── MovieDataSize.php │ │ │ ├── MovieHeaderVersion.php │ │ │ ├── Mute.php │ │ │ ├── Name.php │ │ │ ├── Narrator.php │ │ │ ├── NextTrackID.php │ │ │ ├── NumPackets.php │ │ │ ├── OpColor.php │ │ │ ├── OriginalFormat.php │ │ │ ├── OtherFormat.php │ │ │ ├── ParentProductID.php │ │ │ ├── ParentShortTitle.php │ │ │ ├── ParentTitle.php │ │ │ ├── PartialSyncSamples.php │ │ │ ├── PayloadType.php │ │ │ ├── Performer.php │ │ │ ├── PerformerKeywords.php │ │ │ ├── PerformerURL.php │ │ │ ├── Performers.php │ │ │ ├── PitchShift.php │ │ │ ├── PixelAspectRatio.php │ │ │ ├── Platform.php │ │ │ ├── PlayAllFrames.php │ │ │ ├── PlayGap.php │ │ │ ├── PlayListID.php │ │ │ ├── PlayMode.php │ │ │ ├── PlaySelection.php │ │ │ ├── PlayerVersion.php │ │ │ ├── Podcast.php │ │ │ ├── PodcastURL.php │ │ │ ├── Popularimeter.php │ │ │ ├── PosterTime.php │ │ │ ├── PreferredRate.php │ │ │ ├── PreferredVolume.php │ │ │ ├── PreviewAtomIndex.php │ │ │ ├── PreviewAtomType.php │ │ │ ├── PreviewDate.php │ │ │ ├── PreviewDuration.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewPICT.php │ │ │ ├── PreviewTime.php │ │ │ ├── PreviewVersion.php │ │ │ ├── PrimaryItemReference.php │ │ │ ├── Producer.php │ │ │ ├── ProducerKeywords.php │ │ │ ├── Product.php │ │ │ ├── ProductID.php │ │ │ ├── ProductVersion.php │ │ │ ├── ProductionDate.php │ │ │ ├── Publisher.php │ │ │ ├── PurchaseDate.php │ │ │ ├── PurchaseFileFormat.php │ │ │ ├── RTPTimeScale.php │ │ │ ├── Rating.php │ │ │ ├── RatingPercent.php │ │ │ ├── RealtimeStreamingProtocol.php │ │ │ ├── RecordLabelName.php │ │ │ ├── RecordLabelURL.php │ │ │ ├── RecordingCopyright.php │ │ │ ├── ReelName.php │ │ │ ├── ReleaseDate.php │ │ │ ├── RepeatedDataBytes.php │ │ │ ├── Requirements.php │ │ │ ├── SampleDegradationPriority.php │ │ │ ├── SampleGroupDescription.php │ │ │ ├── SamplePaddingBits.php │ │ │ ├── SampleSizes.php │ │ │ ├── SampleToChunk.php │ │ │ ├── SampleToGroup.php │ │ │ ├── Scene.php │ │ │ ├── SchemeType.php │ │ │ ├── SchemeURL.php │ │ │ ├── SchemeVersion.php │ │ │ ├── SelectionDuration.php │ │ │ ├── SelectionTime.php │ │ │ ├── SequenceNumberRandomOffset.php │ │ │ ├── SerialNumber.php │ │ │ ├── ShadowSyncSampleTable.php │ │ │ ├── ShortTitle.php │ │ │ ├── ShotName.php │ │ │ ├── Skip.php │ │ │ ├── SlideShow.php │ │ │ ├── Software.php │ │ │ ├── SoftwareVersion.php │ │ │ ├── SongWriter.php │ │ │ ├── SongWriterKeywords.php │ │ │ ├── SortAlbum.php │ │ │ ├── SortAlbumArtist.php │ │ │ ├── SortArtist.php │ │ │ ├── SortComposer.php │ │ │ ├── SortName.php │ │ │ ├── SortShow.php │ │ │ ├── SourceCredits.php │ │ │ ├── SourceImageHeight.php │ │ │ ├── SourceImageWidth.php │ │ │ ├── StreamingDataProtocol.php │ │ │ ├── SubSampleInformation.php │ │ │ ├── Subtitle.php │ │ │ ├── SubtitleKeywords.php │ │ │ ├── SyncSampleTable.php │ │ │ ├── TVEpisode.php │ │ │ ├── TVEpisodeID.php │ │ │ ├── TVNetworkName.php │ │ │ ├── TVSeason.php │ │ │ ├── TVShow.php │ │ │ ├── Text.php │ │ │ ├── TextColor.php │ │ │ ├── TextFace.php │ │ │ ├── TextFont.php │ │ │ ├── TextSize.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── ThumbnailPNG.php │ │ │ ├── TimeScale.php │ │ │ ├── TimeToSampleTable.php │ │ │ ├── TimeZone.php │ │ │ ├── TimestampRandomOffset.php │ │ │ ├── Tint.php │ │ │ ├── Title.php │ │ │ ├── TotalBytes.php │ │ │ ├── TotalBytesNoRTPHeaders.php │ │ │ ├── Track.php │ │ │ ├── TrackNumber.php │ │ │ ├── TrackProperty.php │ │ │ ├── TrackType.php │ │ │ ├── TransactionID.php │ │ │ ├── Trebel.php │ │ │ ├── URL.php │ │ │ ├── URN.php │ │ │ ├── UUIDUnknown.php │ │ │ ├── UnknownAACR.php │ │ │ ├── UnknownAdzc.php │ │ │ ├── UnknownAdze.php │ │ │ ├── UnknownAdzm.php │ │ │ ├── UnknownCDEK.php │ │ │ ├── UnknownCDET.php │ │ │ ├── UnknownSlmt.php │ │ │ ├── UnknownTags.php │ │ │ ├── UnknownThumbnail.php │ │ │ ├── UserCollection.php │ │ │ ├── UserDataDji.php │ │ │ ├── UserDataRes.php │ │ │ ├── UserDataUid.php │ │ │ ├── UserID.php │ │ │ ├── UserName.php │ │ │ ├── UserRating.php │ │ │ ├── Vendor.php │ │ │ ├── VendorID.php │ │ │ ├── Version.php │ │ │ ├── VersionRestrictions.php │ │ │ ├── VideoAttributes.php │ │ │ ├── VideoAvgBitrate.php │ │ │ ├── VideoAvgFrameRate.php │ │ │ ├── VideoCodec.php │ │ │ ├── VideoCodecInfo.php │ │ │ ├── VideoFieldOrder.php │ │ │ ├── VideoFrameRate.php │ │ │ ├── VideoMaxBitrate.php │ │ │ ├── VideoMaxFrameRate.php │ │ │ ├── VideoProfileVersion.php │ │ │ ├── VideoSize.php │ │ │ ├── VideoTrackID.php │ │ │ ├── VolumeNormalization.php │ │ │ ├── Wide.php │ │ │ ├── WindowLocation.php │ │ │ ├── XResolution.php │ │ │ ├── YResolution.php │ │ │ └── Year.php │ │ ├── RAF │ │ │ ├── FujiLayout.php │ │ │ ├── RawExposureBias.php │ │ │ ├── RawImageSize.php │ │ │ ├── WBGRGBLevels.php │ │ │ ├── WBGRGBLevelsAuto.php │ │ │ ├── WBGRGBLevelsCloudy.php │ │ │ ├── WBGRGBLevelsDayWhiteFluor.php │ │ │ ├── WBGRGBLevelsDaylight.php │ │ │ ├── WBGRGBLevelsDaylightFluor.php │ │ │ ├── WBGRGBLevelsLivingRoomWarmWhiteFluor.php │ │ │ ├── WBGRGBLevelsTungsten.php │ │ │ ├── WBGRGBLevelsWarmWhiteFluor.php │ │ │ ├── WBGRGBLevelsWhiteFluorescent.php │ │ │ └── XTransLayout.php │ │ ├── RAF2 │ │ │ └── RawImageFullSize.php │ │ ├── RIFF │ │ │ ├── Afsp.php │ │ │ ├── AlphaCompression.php │ │ │ ├── AlphaFiltering.php │ │ │ ├── AlphaPreprocessing.php │ │ │ ├── AnimationLoopCount.php │ │ │ ├── ArchivalLocation.php │ │ │ ├── Artist.php │ │ │ ├── AudioCodec.php │ │ │ ├── AudioSampleCount.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── AvgBytesPerSec.php │ │ │ ├── BWFVersion.php │ │ │ ├── BackgroundColor.php │ │ │ ├── BaseURL.php │ │ │ ├── BitsPerSample.php │ │ │ ├── Cinematographer.php │ │ │ ├── Codec.php │ │ │ ├── CodingHistory.php │ │ │ ├── Comment.php │ │ │ ├── Comments.php │ │ │ ├── Commissioned.php │ │ │ ├── Copyright.php │ │ │ ├── CostumeDesigner.php │ │ │ ├── Country.php │ │ │ ├── Cropped.php │ │ │ ├── CuePoints.php │ │ │ ├── DateCreated.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DefaultAudioStream.php │ │ │ ├── Description.php │ │ │ ├── Dimensions.php │ │ │ ├── Directory.php │ │ │ ├── DistributedBy.php │ │ │ ├── DotsPerInch.php │ │ │ ├── Duration.php │ │ │ ├── EditedBy.php │ │ │ ├── EighthLanguage.php │ │ │ ├── EncodedBy.php │ │ │ ├── Encoding.php │ │ │ ├── EndTimecode.php │ │ │ ├── Engineer.php │ │ │ ├── ExifVersion.php │ │ │ ├── FifthLanguage.php │ │ │ ├── FirstLanguage.php │ │ │ ├── FourthLanguage.php │ │ │ ├── FrameCount.php │ │ │ ├── FrameRate.php │ │ │ ├── Genre.php │ │ │ ├── HorizontalScale.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── Keywords.php │ │ │ ├── Language.php │ │ │ ├── Length.php │ │ │ ├── Lightness.php │ │ │ ├── Location.php │ │ │ ├── LogoIconURL.php │ │ │ ├── LogoURL.php │ │ │ ├── Make.php │ │ │ ├── MakerNotes.php │ │ │ ├── MaxDataRate.php │ │ │ ├── Medium.php │ │ │ ├── Model.php │ │ │ ├── MoreInfoBannerImage.php │ │ │ ├── MoreInfoBannerURL.php │ │ │ ├── MoreInfoText.php │ │ │ ├── MoreInfoURL.php │ │ │ ├── MusicBy.php │ │ │ ├── NinthLanguage.php │ │ │ ├── NumChannels.php │ │ │ ├── NumColors.php │ │ │ ├── NumberOfParts.php │ │ │ ├── NumberOfSamples.php │ │ │ ├── OldXMP.php │ │ │ ├── Organization.php │ │ │ ├── Originator.php │ │ │ ├── OriginatorReference.php │ │ │ ├── Part.php │ │ │ ├── ProducedBy.php │ │ │ ├── Product.php │ │ │ ├── ProductionDesigner.php │ │ │ ├── ProductionStudio.php │ │ │ ├── Quality.php │ │ │ ├── Rate.php │ │ │ ├── Rated.php │ │ │ ├── Rating.php │ │ │ ├── RelatedImageFile.php │ │ │ ├── RippedBy.php │ │ │ ├── SampleRate.php │ │ │ ├── SampleSize.php │ │ │ ├── SecondLanguage.php │ │ │ ├── SecondaryGenre.php │ │ │ ├── SeventhLanguage.php │ │ │ ├── Sharpness.php │ │ │ ├── SixthLanguage.php │ │ │ ├── Software.php │ │ │ ├── SoundSchemeTitle.php │ │ │ ├── Source.php │ │ │ ├── SourceForm.php │ │ │ ├── Starring.php │ │ │ ├── StartTimecode.php │ │ │ ├── Statistics.php │ │ │ ├── StreamCount.php │ │ │ ├── StreamName.php │ │ │ ├── StreamSampleCount.php │ │ │ ├── StreamSampleRate.php │ │ │ ├── StreamType.php │ │ │ ├── Subject.php │ │ │ ├── TapeName.php │ │ │ ├── Technician.php │ │ │ ├── TextJunk.php │ │ │ ├── ThirdLanguage.php │ │ │ ├── TimeCreated.php │ │ │ ├── TimeReference.php │ │ │ ├── Timecode.php │ │ │ ├── Title.php │ │ │ ├── TotalFrameCount.php │ │ │ ├── TrackNumber.php │ │ │ ├── URL.php │ │ │ ├── UnknownData.php │ │ │ ├── UserComment.php │ │ │ ├── VP8Version.php │ │ │ ├── VegasVersionMajor.php │ │ │ ├── VegasVersionMinor.php │ │ │ ├── VendorName.php │ │ │ ├── Version.php │ │ │ ├── VerticalScale.php │ │ │ ├── VideoCodec.php │ │ │ ├── VideoFrameCount.php │ │ │ ├── VideoFrameRate.php │ │ │ ├── WatermarkURL.php │ │ │ ├── WrittenBy.php │ │ │ └── Year.php │ │ ├── RMETA │ │ │ ├── Azimuth.php │ │ │ ├── Condition.php │ │ │ ├── Lit.php │ │ │ ├── Location.php │ │ │ ├── SignType.php │ │ │ └── SoundFile.php │ │ ├── RSRC │ │ │ ├── ApplicationMissingMsg.php │ │ │ ├── ApplicationVersion.php │ │ │ ├── CreatorApplication.php │ │ │ ├── Description.php │ │ │ ├── Keywords.php │ │ │ └── OpenWithApplication.php │ │ ├── RTF │ │ │ ├── Author.php │ │ │ ├── BackupTime.php │ │ │ ├── Category.php │ │ │ ├── Characters.php │ │ │ ├── CharactersWithSpaces.php │ │ │ ├── Comment.php │ │ │ ├── Comments.php │ │ │ ├── Company.php │ │ │ ├── Copyright.php │ │ │ ├── CreateDate.php │ │ │ ├── HyperlinkBase.php │ │ │ ├── InternalIDNumber.php │ │ │ ├── InternalVersionNumber.php │ │ │ ├── Keywords.php │ │ │ ├── LastModifiedBy.php │ │ │ ├── LastPrinted.php │ │ │ ├── Manager.php │ │ │ ├── ModifyDate.php │ │ │ ├── Pages.php │ │ │ ├── RevisionNumber.php │ │ │ ├── Subject.php │ │ │ ├── Title.php │ │ │ ├── TotalEditTime.php │ │ │ └── Words.php │ │ ├── Radiance │ │ │ ├── ColorCorrection.php │ │ │ ├── ColorPrimaries.php │ │ │ ├── Command.php │ │ │ ├── Exposure.php │ │ │ ├── Format.php │ │ │ ├── Gamma.php │ │ │ ├── Orientation.php │ │ │ ├── PixelAspectRatio.php │ │ │ ├── Software.php │ │ │ └── View.php │ │ ├── Rawzor │ │ │ ├── CompressionFactor.php │ │ │ ├── OriginalFileSize.php │ │ │ ├── OriginalFileType.php │ │ │ ├── RawzorCreatorVersion.php │ │ │ └── RawzorRequiredVersion.php │ │ ├── Real │ │ │ ├── Text.php │ │ │ └── URL.php │ │ ├── RealCONT │ │ │ ├── Author.php │ │ │ ├── AuthorLen.php │ │ │ ├── Comment.php │ │ │ ├── CommentLen.php │ │ │ ├── Copyright.php │ │ │ ├── CopyrightLen.php │ │ │ ├── Title.php │ │ │ └── TitleLen.php │ │ ├── RealMDPR │ │ │ ├── Audiences.php │ │ │ ├── AudioFormat.php │ │ │ ├── AudioMode.php │ │ │ ├── ContentRating.php │ │ │ ├── CreateDate.php │ │ │ ├── DataOffsets.php │ │ │ ├── Description.php │ │ │ ├── FileID.php │ │ │ ├── FileInfoLen.php │ │ │ ├── FileInfoLen2.php │ │ │ ├── FileInfoVersion.php │ │ │ ├── Indexable.php │ │ │ ├── Keywords.php │ │ │ ├── ModifyDate.php │ │ │ ├── NumProperties.php │ │ │ ├── NumRules.php │ │ │ ├── PhysicalStreamNumberMap.php │ │ │ ├── PhysicalStreamNumbers.php │ │ │ ├── PhysicalStreams.php │ │ │ ├── Software.php │ │ │ ├── StreamAvgBitrate.php │ │ │ ├── StreamAvgPacketSize.php │ │ │ ├── StreamDuration.php │ │ │ ├── StreamMaxBitrate.php │ │ │ ├── StreamMaxPacketSize.php │ │ │ ├── StreamMimeLen.php │ │ │ ├── StreamMimeType.php │ │ │ ├── StreamName.php │ │ │ ├── StreamNameLen.php │ │ │ ├── StreamNumber.php │ │ │ ├── StreamPreroll.php │ │ │ ├── StreamStartTime.php │ │ │ ├── TargetAudiences.php │ │ │ ├── VideoMode.php │ │ │ └── VideoQuality.php │ │ ├── RealPROP │ │ │ ├── AvgBitrate.php │ │ │ ├── AvgPacketSize.php │ │ │ ├── DataOffset.php │ │ │ ├── Duration.php │ │ │ ├── Flags.php │ │ │ ├── IndexOffset.php │ │ │ ├── MaxBitrate.php │ │ │ ├── MaxPacketSize.php │ │ │ ├── NumPackets.php │ │ │ ├── NumStreams.php │ │ │ └── Preroll.php │ │ ├── RealRA3 │ │ │ ├── Artist.php │ │ │ ├── ArtistLen.php │ │ │ ├── AudioBytes.php │ │ │ ├── BytesPerMinute.php │ │ │ ├── Channels.php │ │ │ ├── Comment.php │ │ │ ├── CommentLen.php │ │ │ ├── Copyright.php │ │ │ ├── CopyrightLen.php │ │ │ ├── Title.php │ │ │ ├── TitleLen.php │ │ │ └── Unknown.php │ │ ├── RealRA4 │ │ │ ├── Artist.php │ │ │ ├── ArtistLen.php │ │ │ ├── AudioBytes.php │ │ │ ├── AudioFileSize.php │ │ │ ├── AudioFrameSize.php │ │ │ ├── BitsPerSample.php │ │ │ ├── BytesPerMinute.php │ │ │ ├── Channels.php │ │ │ ├── CodecFlavorID.php │ │ │ ├── CodedFrameSize.php │ │ │ ├── Comment.php │ │ │ ├── CommentLen.php │ │ │ ├── Copyright.php │ │ │ ├── CopyrightLen.php │ │ │ ├── FourCC1.php │ │ │ ├── FourCC2.php │ │ │ ├── FourCC2Len.php │ │ │ ├── FourCC3.php │ │ │ ├── FourCC3Len.php │ │ │ ├── HeaderSize.php │ │ │ ├── SampleRate.php │ │ │ ├── SubPacketH.php │ │ │ ├── SubPacketSize.php │ │ │ ├── Title.php │ │ │ ├── TitleLen.php │ │ │ ├── Unknown.php │ │ │ └── Version2.php │ │ ├── RealRA5 │ │ │ ├── AudioBytes.php │ │ │ ├── AudioFileSize.php │ │ │ ├── BitsPerSample.php │ │ │ ├── BytesPerMinute.php │ │ │ ├── Channels.php │ │ │ ├── CodecFlavorID.php │ │ │ ├── CodedFrameSize.php │ │ │ ├── FourCC1.php │ │ │ ├── FourCC3.php │ │ │ ├── FrameSize.php │ │ │ ├── Genr.php │ │ │ ├── HeaderSize.php │ │ │ ├── SampleRate.php │ │ │ ├── SampleRate2.php │ │ │ ├── SubPacketH.php │ │ │ ├── SubPacketSize.php │ │ │ ├── Unknown.php │ │ │ └── Version2.php │ │ ├── RealRJMD │ │ │ ├── AlbumName.php │ │ │ ├── TrackCategory.php │ │ │ ├── TrackComments.php │ │ │ └── TrackLyrics.php │ │ ├── Reconyx │ │ │ ├── AmbientTemperature.php │ │ │ ├── AmbientTemperatureFahrenheit.php │ │ │ ├── BatteryVoltage.php │ │ │ ├── Brightness.php │ │ │ ├── Contrast.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── EventNumber.php │ │ │ ├── FirmwareDate.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── InfraredIlluminator.php │ │ │ ├── MakerNoteVersion.php │ │ │ ├── MoonPhase.php │ │ │ ├── MotionSensitivity.php │ │ │ ├── Saturation.php │ │ │ ├── Sequence.php │ │ │ ├── SerialNumber.php │ │ │ ├── Sharpness.php │ │ │ ├── TriggerMode.php │ │ │ └── UserLabel.php │ │ ├── Ricoh │ │ │ ├── AFAreaMode.php │ │ │ ├── AFAreaXPosition.php │ │ │ ├── AFAreaXPosition1.php │ │ │ ├── AFAreaYPosition.php │ │ │ ├── AFAreaYPosition1.php │ │ │ ├── AFStatus.php │ │ │ ├── Accelerometer.php │ │ │ ├── AutoBracketing.php │ │ │ ├── BlueGain.php │ │ │ ├── BodyFirmware.php │ │ │ ├── BodySerialNumber.php │ │ │ ├── ColorTempKelvin.php │ │ │ ├── ColorTemperature.php │ │ │ ├── Comment.php │ │ │ ├── Compass.php │ │ │ ├── Contrast.php │ │ │ ├── CropMode35mm.php │ │ │ ├── CroppedImageHeight.php │ │ │ ├── CroppedImageWidth.php │ │ │ ├── DriveMode.php │ │ │ ├── DynamicRangeExpansion.php │ │ │ ├── ExposureProgram.php │ │ │ ├── Face1Position.php │ │ │ ├── Face2Position.php │ │ │ ├── Face3Position.php │ │ │ ├── Face4Position.php │ │ │ ├── Face5Position.php │ │ │ ├── Face6Position.php │ │ │ ├── Face7Position.php │ │ │ ├── Face8Position.php │ │ │ ├── FaceDetectFrameSize.php │ │ │ ├── FacesDetected.php │ │ │ ├── FirmwareRevision.php │ │ │ ├── FirmwareRevision2.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── FlashExposureComp.php │ │ │ ├── FlashMode.php │ │ │ ├── FocalLength.php │ │ │ ├── FocusMode.php │ │ │ ├── FullPressSnap.php │ │ │ ├── GreenGain.php │ │ │ ├── HueAdjust.php │ │ │ ├── ISOSetting.php │ │ │ ├── ImageEffects.php │ │ │ ├── InternalSerialNumber.php │ │ │ ├── LensFirmware.php │ │ │ ├── LensSerialNumber.php │ │ │ ├── Macro.php │ │ │ ├── MacroMode.php │ │ │ ├── MakerNoteType.php │ │ │ ├── ManualFlashOutput.php │ │ │ ├── ManufactureDate1.php │ │ │ ├── ManufactureDate2.php │ │ │ ├── NDFilter.php │ │ │ ├── NoiseReduction.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── RecordingFormat.php │ │ │ ├── RedGain.php │ │ │ ├── RicohDate.php │ │ │ ├── RicohImageHeight.php │ │ │ ├── RicohImageWidth.php │ │ │ ├── RicohMake.php │ │ │ ├── RicohModel.php │ │ │ ├── RicohRDC2.php │ │ │ ├── Saturation.php │ │ │ ├── SensorHeight.php │ │ │ ├── SensorWidth.php │ │ │ ├── SerialNumber.php │ │ │ ├── Sharpness.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── TimeZone.php │ │ │ ├── ToningEffect.php │ │ │ ├── Vignetting.php │ │ │ ├── WBBracketShotNumber.php │ │ │ ├── WhiteBalance.php │ │ │ ├── WhiteBalanceFineTune.php │ │ │ └── WideAdapter.php │ │ ├── SPIFF │ │ │ ├── BitsPerSample.php │ │ │ ├── ColorComponents.php │ │ │ ├── ColorSpace.php │ │ │ ├── Compression.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── ProfileID.php │ │ │ ├── ResolutionUnit.php │ │ │ ├── SPIFFVersion.php │ │ │ ├── XResolution.php │ │ │ └── YResolution.php │ │ ├── SR2 │ │ │ ├── SR2SubIFDKey.php │ │ │ ├── SR2SubIFDLength.php │ │ │ └── SR2SubIFDOffset.php │ │ ├── SR2DataIFD │ │ │ └── ColorMode.php │ │ ├── SR2SubIFD │ │ │ ├── BlackLevel.php │ │ │ ├── ChromaticAberrationCorrParams.php │ │ │ ├── ColorMatrix.php │ │ │ ├── DistortionCorrParams.php │ │ │ ├── MaxApertureAtMaxFocal.php │ │ │ ├── MaxApertureAtMinFocal.php │ │ │ ├── MaxFocalLength.php │ │ │ ├── MinFocalLength.php │ │ │ ├── WBGRBGLevels.php │ │ │ ├── WBGRBGLevelsAuto.php │ │ │ ├── WBRGBLevels2500K.php │ │ │ ├── WBRGBLevels3200K.php │ │ │ ├── WBRGBLevels4500K.php │ │ │ ├── WBRGBLevels6000K.php │ │ │ ├── WBRGBLevels8500K.php │ │ │ ├── WBRGBLevelsCloudy.php │ │ │ ├── WBRGBLevelsDaylight.php │ │ │ ├── WBRGBLevelsFlash.php │ │ │ ├── WBRGBLevelsFluorescent.php │ │ │ ├── WBRGBLevelsFluorescentM1.php │ │ │ ├── WBRGBLevelsFluorescentP1.php │ │ │ ├── WBRGBLevelsFluorescentP2.php │ │ │ ├── WBRGBLevelsShade.php │ │ │ ├── WBRGBLevelsTungsten.php │ │ │ ├── WBRGGBLevels.php │ │ │ └── WhiteLevel.php │ │ ├── SRF │ │ │ ├── DataKey.php │ │ │ ├── MaxApertureAtMaxFocal.php │ │ │ ├── MaxApertureAtMinFocal.php │ │ │ ├── MaxFocalLength.php │ │ │ ├── MinFocalLength.php │ │ │ ├── RawDataLength.php │ │ │ ├── RawDataOffset.php │ │ │ ├── SRF2Key.php │ │ │ ├── SRF6Offset.php │ │ │ ├── SRFDataOffset.php │ │ │ ├── WBBlueAsShot.php │ │ │ ├── WBBlueCloudy.php │ │ │ ├── WBBlueDaylight.php │ │ │ ├── WBBlueFlash.php │ │ │ ├── WBBlueTungsten.php │ │ │ ├── WBGreenAsShot.php │ │ │ ├── WBGreenCloudy.php │ │ │ ├── WBGreenDaylight.php │ │ │ ├── WBGreenFlash.php │ │ │ ├── WBGreenTungsten.php │ │ │ ├── WBRedAsShot.php │ │ │ ├── WBRedCloudy.php │ │ │ ├── WBRedDaylight.php │ │ │ ├── WBRedFlash.php │ │ │ └── WBRedTungsten.php │ │ ├── SVG │ │ │ ├── ID.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── MetadataID.php │ │ │ └── SVGVersion.php │ │ ├── Samsung │ │ │ ├── CameraTemperature.php │ │ │ ├── CbCrGain.php │ │ │ ├── CbCrGainDefault.php │ │ │ ├── CbCrMatrix.php │ │ │ ├── CbCrMatrixDefault.php │ │ │ ├── ChromaticAberration.php │ │ │ ├── ColorMatrix.php │ │ │ ├── ColorMatrixAdobeRGB.php │ │ │ ├── ColorMatrixSRGB.php │ │ │ ├── ColorSpace.php │ │ │ ├── DeviceType.php │ │ │ ├── Distortion.php │ │ │ ├── Effect.php │ │ │ ├── EmbeddedAudioFile.php │ │ │ ├── EmbeddedAudioFileName.php │ │ │ ├── EmbeddedImage.php │ │ │ ├── EmbeddedImageName.php │ │ │ ├── EncryptionKey.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── FaceDetect.php │ │ │ ├── FaceName.php │ │ │ ├── FaceRecognition.php │ │ │ ├── FirmwareName.php │ │ │ ├── FocalLengthIn35mmFormat.php │ │ │ ├── ISO.php │ │ │ ├── InternalLensSerialNumber.php │ │ │ ├── LensFirmware.php │ │ │ ├── LensType.php │ │ │ ├── LocalLocationName.php │ │ │ ├── LocationName.php │ │ │ ├── Make.php │ │ │ ├── MakerNoteVersion.php │ │ │ ├── Model.php │ │ │ ├── PictureWizard.php │ │ │ ├── PictureWizardColor.php │ │ │ ├── PictureWizardContrast.php │ │ │ ├── PictureWizardMode.php │ │ │ ├── PictureWizardSaturation.php │ │ │ ├── PictureWizardSharpness.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── Quality.php │ │ │ ├── RawCompressionMode.php │ │ │ ├── RawData.php │ │ │ ├── SamsungModelID.php │ │ │ ├── SamsungType20xa055.php │ │ │ ├── SamsungType20xa056.php │ │ │ ├── SamsungType20xa057.php │ │ │ ├── SensorAreas.php │ │ │ ├── SmartRange.php │ │ │ ├── Software.php │ │ │ ├── ThumbnailHeight.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── ThumbnailLength.php │ │ │ ├── ThumbnailOffset.php │ │ │ ├── ThumbnailWidth.php │ │ │ ├── ToneCurveAdobeRGB.php │ │ │ ├── ToneCurveAdobeRGBDefault.php │ │ │ ├── ToneCurveSRGB.php │ │ │ ├── ToneCurveSRGBDefault.php │ │ │ ├── Vignetting.php │ │ │ ├── VignettingCorrection.php │ │ │ ├── VignettingSetting.php │ │ │ ├── WBRGGBLevelsAuto.php │ │ │ ├── WBRGGBLevelsBlack.php │ │ │ ├── WBRGGBLevelsIlluminator1.php │ │ │ ├── WBRGGBLevelsIlluminator2.php │ │ │ └── WBRGGBLevelsUncorrected.php │ │ ├── Sanyo │ │ │ ├── CameraID.php │ │ │ ├── ColorAdjustmentMode.php │ │ │ ├── DataDump.php │ │ │ ├── DigitalZoom.php │ │ │ ├── DigitalZoomOn.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── FacePosition.php │ │ │ ├── FacesDetected.php │ │ │ ├── FlashMode.php │ │ │ ├── FlickerReduce.php │ │ │ ├── FocalLength.php │ │ │ ├── ISO.php │ │ │ ├── LightSourceSpecial.php │ │ │ ├── Macro.php │ │ │ ├── Make.php │ │ │ ├── MakerNoteOffset.php │ │ │ ├── ManualFocusDistance.php │ │ │ ├── Model.php │ │ │ ├── OpticalZoomOn.php │ │ │ ├── PictInfo.php │ │ │ ├── QuickShot.php │ │ │ ├── RecordShutterRelease.php │ │ │ ├── Resaved.php │ │ │ ├── SanyoQuality.php │ │ │ ├── SanyoThumbnail.php │ │ │ ├── SceneSelect.php │ │ │ ├── SelfTimer.php │ │ │ ├── SequenceShotInterval.php │ │ │ ├── SequentialShot.php │ │ │ ├── Software.php │ │ │ ├── SoftwareVersion.php │ │ │ ├── SpecialMode.php │ │ │ ├── ThumbnailHeight.php │ │ │ ├── ThumbnailLength.php │ │ │ ├── ThumbnailOffset.php │ │ │ ├── ThumbnailWidth.php │ │ │ ├── VoiceMemo.php │ │ │ ├── WhiteBalance.php │ │ │ └── WideRange.php │ │ ├── Scalado │ │ │ ├── DataLength.php │ │ │ ├── PreviewImageHeight.php │ │ │ ├── PreviewImageWidth.php │ │ │ └── PreviewQuality.php │ │ ├── Sigma │ │ │ ├── AFMode.php │ │ │ ├── AFPoint.php │ │ │ ├── AdjustmentMode.php │ │ │ ├── AutoBracket.php │ │ │ ├── BurstShot.php │ │ │ ├── Calibration.php │ │ │ ├── ChrominanceNoiseReduction.php │ │ │ ├── ColorAdjustment.php │ │ │ ├── ColorMode.php │ │ │ ├── ColorSpace.php │ │ │ ├── Contrast.php │ │ │ ├── DigitalFilter.php │ │ │ ├── DriveMode.php │ │ │ ├── ExposureAdjust.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureMode.php │ │ │ ├── ExposureTime.php │ │ │ ├── ExposureTime2.php │ │ │ ├── FNumber.php │ │ │ ├── FileFormat.php │ │ │ ├── Firmware.php │ │ │ ├── FlashExposureComp.php │ │ │ ├── FocusSetting.php │ │ │ ├── Highlight.php │ │ │ ├── LensApertureRange.php │ │ │ ├── LensFocalRange.php │ │ │ ├── LensMaxApertureRange.php │ │ │ ├── LensType.php │ │ │ ├── LuminanceNoiseReduction.php │ │ │ ├── MakerNoteVersion.php │ │ │ ├── MeteringMode.php │ │ │ ├── PictureMode.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageSize.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── Quality.php │ │ │ ├── ResolutionMode.php │ │ │ ├── Saturation.php │ │ │ ├── SensorTemperature.php │ │ │ ├── SerialNumber.php │ │ │ ├── Shadow.php │ │ │ ├── Sharpness.php │ │ │ ├── Software.php │ │ │ ├── WhiteBalance.php │ │ │ └── X3FillLight.php │ │ ├── SigmaRaw │ │ │ ├── AFArea.php │ │ │ ├── AFInFocus.php │ │ │ ├── ApertureDisplayed.php │ │ │ ├── BlueAdjust.php │ │ │ ├── BracketShot.php │ │ │ ├── BurstShot.php │ │ │ ├── CameraName.php │ │ │ ├── ColorSpace.php │ │ │ ├── Contrast.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DriveMode.php │ │ │ ├── EvalState.php │ │ │ ├── ExposureAdjust.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureProgram.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── FileVersion.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── FlashExpComp.php │ │ │ ├── FlashMode.php │ │ │ ├── FlashPower.php │ │ │ ├── FlashTTLMode.php │ │ │ ├── FlashType.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalLengthIn35mmFormat.php │ │ │ ├── Focus.php │ │ │ ├── FocusMode.php │ │ │ ├── GreenAdjust.php │ │ │ ├── Highlight.php │ │ │ ├── ISO.php │ │ │ ├── ImageBoardID.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageUniqueID.php │ │ │ ├── ImageWidth.php │ │ │ ├── ImagerBoardID.php │ │ │ ├── IntegrationTime.php │ │ │ ├── JpgFromRaw.php │ │ │ ├── LensApertureRange.php │ │ │ ├── LensFocalRange.php │ │ │ ├── LensType.php │ │ │ ├── Make.php │ │ │ ├── MarkBits.php │ │ │ ├── MeteringMode.php │ │ │ ├── Model.php │ │ │ ├── NetExposureCompensation.php │ │ │ ├── PreviewImage.php │ │ │ ├── Quality.php │ │ │ ├── RedAdjust.php │ │ │ ├── Rotation.php │ │ │ ├── Saturation.php │ │ │ ├── SceneCaptureType.php │ │ │ ├── SensorID.php │ │ │ ├── SensorTemperature.php │ │ │ ├── SerialNumber.php │ │ │ ├── Shadow.php │ │ │ ├── Sharpness.php │ │ │ ├── ShutterSpeedDisplayed.php │ │ │ ├── Unused.php │ │ │ ├── VersionBF.php │ │ │ ├── WhiteBalance.php │ │ │ └── X3FillLight.php │ │ ├── Sony │ │ │ ├── AELock.php │ │ │ ├── AFAreaMode.php │ │ │ ├── AFAreaModeSetting.php │ │ │ ├── AFButtonPressed.php │ │ │ ├── AFIlluminator.php │ │ │ ├── AFMicroAdj.php │ │ │ ├── AFMicroAdjMode.php │ │ │ ├── AFMicroAdjRegisteredLenses.php │ │ │ ├── AFMicroAdjValue.php │ │ │ ├── AFPoint.php │ │ │ ├── AFPointAtShutterRelease.php │ │ │ ├── AFPointInFocus.php │ │ │ ├── AFPointSelected.php │ │ │ ├── AFPointSetting.php │ │ │ ├── AFPointsSelected.php │ │ │ ├── AFPointsUsed.php │ │ │ ├── AFStatus00B4.php │ │ │ ├── AFStatus01C4.php │ │ │ ├── AFStatus02D4.php │ │ │ ├── AFStatus03E4.php │ │ │ ├── AFStatus04F4.php │ │ │ ├── AFStatus05G4.php │ │ │ ├── AFStatus06H4.php │ │ │ ├── AFStatus07B3.php │ │ │ ├── AFStatus08C3.php │ │ │ ├── AFStatus09D3.php │ │ │ ├── AFStatus10E3.php │ │ │ ├── AFStatus11F3.php │ │ │ ├── AFStatus12G3.php │ │ │ ├── AFStatus13H3.php │ │ │ ├── AFStatus14B2.php │ │ │ ├── AFStatus15C2.php │ │ │ ├── AFStatus16D2.php │ │ │ ├── AFStatus17E2.php │ │ │ ├── AFStatus18F2.php │ │ │ ├── AFStatus19G2.php │ │ │ ├── AFStatus20H2.php │ │ │ ├── AFStatus21C1.php │ │ │ ├── AFStatus22D1.php │ │ │ ├── AFStatus23E1.php │ │ │ ├── AFStatus24F1.php │ │ │ ├── AFStatus25G1.php │ │ │ ├── AFStatus26A7Vertical.php │ │ │ ├── AFStatus27A6Vertical.php │ │ │ ├── AFStatus28A5Vertical.php │ │ │ ├── AFStatus29C7Vertical.php │ │ │ ├── AFStatus30C6Vertical.php │ │ │ ├── AFStatus31C5Vertical.php │ │ │ ├── AFStatus32E7Vertical.php │ │ │ ├── AFStatus33E6CenterVertical.php │ │ │ ├── AFStatus34E5Vertical.php │ │ │ ├── AFStatus35G7Vertical.php │ │ │ ├── AFStatus36G6Vertical.php │ │ │ ├── AFStatus37G5Vertical.php │ │ │ ├── AFStatus38I7Vertical.php │ │ │ ├── AFStatus39I6Vertical.php │ │ │ ├── AFStatus40I5Vertical.php │ │ │ ├── AFStatus41A7.php │ │ │ ├── AFStatus42B7.php │ │ │ ├── AFStatus43C7.php │ │ │ ├── AFStatus44D7.php │ │ │ ├── AFStatus45E7.php │ │ │ ├── AFStatus46F7.php │ │ │ ├── AFStatus47G7.php │ │ │ ├── AFStatus48H7.php │ │ │ ├── AFStatus49I7.php │ │ │ ├── AFStatus50A6.php │ │ │ ├── AFStatus51B6.php │ │ │ ├── AFStatus52C6.php │ │ │ ├── AFStatus53D6.php │ │ │ ├── AFStatus54E6Center.php │ │ │ ├── AFStatus55F6.php │ │ │ ├── AFStatus56G6.php │ │ │ ├── AFStatus57H6.php │ │ │ ├── AFStatus58I6.php │ │ │ ├── AFStatus59A5.php │ │ │ ├── AFStatus60B5.php │ │ │ ├── AFStatus61C5.php │ │ │ ├── AFStatus62D5.php │ │ │ ├── AFStatus63E5.php │ │ │ ├── AFStatus64F5.php │ │ │ ├── AFStatus65G5.php │ │ │ ├── AFStatus66H5.php │ │ │ ├── AFStatus67I5.php │ │ │ ├── AFStatus68C11.php │ │ │ ├── AFStatus69D11.php │ │ │ ├── AFStatus70E11.php │ │ │ ├── AFStatus71F11.php │ │ │ ├── AFStatus72G11.php │ │ │ ├── AFStatus73B10.php │ │ │ ├── AFStatus74C10.php │ │ │ ├── AFStatus75D10.php │ │ │ ├── AFStatus76E10.php │ │ │ ├── AFStatus77F10.php │ │ │ ├── AFStatus78G10.php │ │ │ ├── AFStatus79H10.php │ │ │ ├── AFStatus80B9.php │ │ │ ├── AFStatus81C9.php │ │ │ ├── AFStatus82D9.php │ │ │ ├── AFStatus83E9.php │ │ │ ├── AFStatus84F9.php │ │ │ ├── AFStatus85G9.php │ │ │ ├── AFStatus86H9.php │ │ │ ├── AFStatus87B8.php │ │ │ ├── AFStatus88C8.php │ │ │ ├── AFStatus89D8.php │ │ │ ├── AFStatus90E8.php │ │ │ ├── AFStatus91F8.php │ │ │ ├── AFStatus92G8.php │ │ │ ├── AFStatus93H8.php │ │ │ ├── AFStatus94E6CenterF28.php │ │ │ ├── AFStatusActiveSensor.php │ │ │ ├── AFStatusBottom.php │ │ │ ├── AFStatusBottomAssistLeft.php │ │ │ ├── AFStatusBottomAssistRight.php │ │ │ ├── AFStatusBottomHorizontal.php │ │ │ ├── AFStatusBottomLeft.php │ │ │ ├── AFStatusBottomRight.php │ │ │ ├── AFStatusBottomVertical.php │ │ │ ├── AFStatusCenter10.php │ │ │ ├── AFStatusCenter11.php │ │ │ ├── AFStatusCenter12.php │ │ │ ├── AFStatusCenter14.php │ │ │ ├── AFStatusCenter7.php │ │ │ ├── AFStatusCenter9.php │ │ │ ├── AFStatusCenterF28.php │ │ │ ├── AFStatusCenterHorizontal.php │ │ │ ├── AFStatusCenterVertical.php │ │ │ ├── AFStatusFarLeft.php │ │ │ ├── AFStatusFarLeftHorizontal.php │ │ │ ├── AFStatusFarLeftVertical.php │ │ │ ├── AFStatusFarRight.php │ │ │ ├── AFStatusFarRightHorizontal.php │ │ │ ├── AFStatusFarRightVertical.php │ │ │ ├── AFStatusLeft.php │ │ │ ├── AFStatusLeftHorizontal.php │ │ │ ├── AFStatusLeftVertical.php │ │ │ ├── AFStatusLowerFarLeft.php │ │ │ ├── AFStatusLowerFarRight.php │ │ │ ├── AFStatusLowerLeft.php │ │ │ ├── AFStatusLowerLeftHorizontal.php │ │ │ ├── AFStatusLowerLeftVertical.php │ │ │ ├── AFStatusLowerMiddle.php │ │ │ ├── AFStatusLowerRight.php │ │ │ ├── AFStatusLowerRightHorizontal.php │ │ │ ├── AFStatusLowerRightVertical.php │ │ │ ├── AFStatusMiddleHorizontal.php │ │ │ ├── AFStatusNearLeft.php │ │ │ ├── AFStatusNearRight.php │ │ │ ├── AFStatusRight.php │ │ │ ├── AFStatusRightHorizontal.php │ │ │ ├── AFStatusRightVertical.php │ │ │ ├── AFStatusTop.php │ │ │ ├── AFStatusTopAssistLeft.php │ │ │ ├── AFStatusTopAssistRight.php │ │ │ ├── AFStatusTopHorizontal.php │ │ │ ├── AFStatusTopLeft.php │ │ │ ├── AFStatusTopRight.php │ │ │ ├── AFStatusTopVertical.php │ │ │ ├── AFStatusUpperFarLeft.php │ │ │ ├── AFStatusUpperFarRight.php │ │ │ ├── AFStatusUpperLeft.php │ │ │ ├── AFStatusUpperLeftHorizontal.php │ │ │ ├── AFStatusUpperLeftVertical.php │ │ │ ├── AFStatusUpperMiddle.php │ │ │ ├── AFStatusUpperRight.php │ │ │ ├── AFStatusUpperRightHorizontal.php │ │ │ ├── AFStatusUpperRightVertical.php │ │ │ ├── AFType.php │ │ │ ├── AFWithShutter.php │ │ │ ├── AFZoneSelected.php │ │ │ ├── AmbientTemperature.php │ │ │ ├── AntiBlur.php │ │ │ ├── ApertureSetting.php │ │ │ ├── AspectRatio.php │ │ │ ├── AutoPortraitFramed.php │ │ │ ├── Barcode.php │ │ │ ├── BaseISO.php │ │ │ ├── BatteryLevel.php │ │ │ ├── BatteryLevelGrip1.php │ │ │ ├── BatteryLevelGrip2.php │ │ │ ├── BatteryState.php │ │ │ ├── BatteryTemperature.php │ │ │ ├── BatteryUnknown.php │ │ │ ├── BatteryVoltage.php │ │ │ ├── BatteryVoltage1.php │ │ │ ├── BatteryVoltage2.php │ │ │ ├── BoardTemperature.php │ │ │ ├── BracketShotNumber.php │ │ │ ├── BracketShotNumber2.php │ │ │ ├── Brightness.php │ │ │ ├── BrightnessValue.php │ │ │ ├── CameraEMountVersion.php │ │ │ ├── CameraOrientation.php │ │ │ ├── CameraTemperature.php │ │ │ ├── ColorCompensationFilter.php │ │ │ ├── ColorCompensationFilterCustom.php │ │ │ ├── ColorCompensationFilterSet.php │ │ │ ├── ColorMode.php │ │ │ ├── ColorSpace.php │ │ │ ├── ColorTemperature.php │ │ │ ├── ColorTemperatureCustom.php │ │ │ ├── ColorTemperatureSet.php │ │ │ ├── ColorTemperatureSetting.php │ │ │ ├── Comment.php │ │ │ ├── Contrast.php │ │ │ ├── ContrastSetting.php │ │ │ ├── CreativeStyle.php │ │ │ ├── CreativeStyleSetting.php │ │ │ ├── CustomWBRBLevels.php │ │ │ ├── CustomWBRGBLevels.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DigitalZoom.php │ │ │ ├── DigitalZoomRatio.php │ │ │ ├── DistortionCorrection.php │ │ │ ├── DistortionCorrectionSetting.php │ │ │ ├── DriveMode.php │ │ │ ├── DriveMode2.php │ │ │ ├── DriveModeSetting.php │ │ │ ├── DynamicRangeOptimizer.php │ │ │ ├── DynamicRangeOptimizerBracket.php │ │ │ ├── DynamicRangeOptimizerLevel.php │ │ │ ├── DynamicRangeOptimizerMode.php │ │ │ ├── DynamicRangeOptimizerSetting.php │ │ │ ├── ExposureBracketShotNumber.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureCompensation2.php │ │ │ ├── ExposureCompensationSet.php │ │ │ ├── ExposureLevelIncrements.php │ │ │ ├── ExposureMode.php │ │ │ ├── ExposureProgram.php │ │ │ ├── ExposureTime.php │ │ │ ├── ExtraInfoVersion.php │ │ │ ├── FNumber.php │ │ │ ├── Face1Position.php │ │ │ ├── Face2Position.php │ │ │ ├── Face3Position.php │ │ │ ├── Face4Position.php │ │ │ ├── Face5Position.php │ │ │ ├── Face6Position.php │ │ │ ├── Face7Position.php │ │ │ ├── Face8Position.php │ │ │ ├── FaceDetection.php │ │ │ ├── FaceInfoLength.php │ │ │ ├── FaceInfoOffset.php │ │ │ ├── FaceTest2.php │ │ │ ├── FaceTest8.php │ │ │ ├── FacesDetected.php │ │ │ ├── FileFormat.php │ │ │ ├── FirmwareVersion.php │ │ │ ├── Flash.php │ │ │ ├── FlashAction.php │ │ │ ├── FlashAction2.php │ │ │ ├── FlashActionExternal.php │ │ │ ├── FlashControl.php │ │ │ ├── FlashExposureComp.php │ │ │ ├── FlashExposureCompSet.php │ │ │ ├── FlashExposureCompSet2.php │ │ │ ├── FlashLevel.php │ │ │ ├── FlashMode.php │ │ │ ├── FlashStatus.php │ │ │ ├── FlashStatusBuiltIn.php │ │ │ ├── FlashStatusExternal.php │ │ │ ├── FlexibleSpotPosition.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalLength2.php │ │ │ ├── FocalLengthTeleZoom.php │ │ │ ├── FocalPlaneAFPointsUsed.php │ │ │ ├── FocusMode.php │ │ │ ├── FocusMode2.php │ │ │ ├── FocusModeSetting.php │ │ │ ├── FocusModeSwitch.php │ │ │ ├── FocusPosition.php │ │ │ ├── FocusPosition2.php │ │ │ ├── FocusStatus.php │ │ │ ├── FolderNumber.php │ │ │ ├── FullImageSize.php │ │ │ ├── HDR.php │ │ │ ├── HDRLevel.php │ │ │ ├── HDRSetting.php │ │ │ ├── HighISONoiseReduction.php │ │ │ ├── HighISONoiseReduction2.php │ │ │ ├── HighSpeedSync.php │ │ │ ├── ISO.php │ │ │ ├── ISOSetting.php │ │ │ ├── ImageCount.php │ │ │ ├── ImageCount2.php │ │ │ ├── ImageCount3.php │ │ │ ├── ImageNumber.php │ │ │ ├── ImageQuality.php │ │ │ ├── ImageStabilization.php │ │ │ ├── ImageStabilization2.php │ │ │ ├── ImageStabilizationSetting.php │ │ │ ├── ImageStyle.php │ │ │ ├── IntelligentAuto.php │ │ │ ├── InternalSerialNumber.php │ │ │ ├── JPEGQuality.php │ │ │ ├── JpgFromRawLength.php │ │ │ ├── JpgFromRawStart.php │ │ │ ├── LateralChromaticAberration.php │ │ │ ├── LensEMountVersion.php │ │ │ ├── LensFirmwareVersion.php │ │ │ ├── LensFormat.php │ │ │ ├── LensMount.php │ │ │ ├── LensMount2.php │ │ │ ├── LensParameters.php │ │ │ ├── LensSpec.php │ │ │ ├── LensSpecFeatures.php │ │ │ ├── LensType.php │ │ │ ├── LensType2.php │ │ │ ├── LensType3.php │ │ │ ├── LensZoomPosition.php │ │ │ ├── LiveViewAFMethod.php │ │ │ ├── LiveViewAFSetting.php │ │ │ ├── LiveViewFocusMode.php │ │ │ ├── LiveViewMetering.php │ │ │ ├── LongExposureNoiseReduction.php │ │ │ ├── Macro.php │ │ │ ├── MakerNoteVersion.php │ │ │ ├── MaxAperture.php │ │ │ ├── MaxFocalLength.php │ │ │ ├── MemoryCardConfiguration.php │ │ │ ├── MetaVersion.php │ │ │ ├── MeterInfo1Row1.php │ │ │ ├── MeterInfo1Row2.php │ │ │ ├── MeterInfo1Row3.php │ │ │ ├── MeterInfo1Row4.php │ │ │ ├── MeterInfo1Row5.php │ │ │ ├── MeterInfo1Row6.php │ │ │ ├── MeterInfo1Row7.php │ │ │ ├── MeterInfo2Row1.php │ │ │ ├── MeterInfo2Row2.php │ │ │ ├── MeterInfo2Row3.php │ │ │ ├── MeterInfo2Row4.php │ │ │ ├── MeterInfo2Row5.php │ │ │ ├── MeterInfo2Row6.php │ │ │ ├── MeterInfo2Row7.php │ │ │ ├── MeterInfo2Row8.php │ │ │ ├── MeterInfo2Row9.php │ │ │ ├── MeteringMode.php │ │ │ ├── MinAperture.php │ │ │ ├── MinFocalLength.php │ │ │ ├── ModeDialPosition.php │ │ │ ├── ModelReleaseYear.php │ │ │ ├── ModifyDate.php │ │ │ ├── MultiBurstImageHeight.php │ │ │ ├── MultiBurstImageWidth.php │ │ │ ├── MultiBurstMode.php │ │ │ ├── MultiFrameNoiseReduction.php │ │ │ ├── Orientation.php │ │ │ ├── Orientation2.php │ │ │ ├── PanoramaCropBottom.php │ │ │ ├── PanoramaCropLeft.php │ │ │ ├── PanoramaCropRight.php │ │ │ ├── PanoramaCropTop.php │ │ │ ├── PanoramaDirection.php │ │ │ ├── PanoramaFrameHeight.php │ │ │ ├── PanoramaFrameWidth.php │ │ │ ├── PanoramaFullHeight.php │ │ │ ├── PanoramaFullWidth.php │ │ │ ├── PanoramaSize3D.php │ │ │ ├── PanoramaSourceHeight.php │ │ │ ├── PanoramaSourceWidth.php │ │ │ ├── PictureEffect.php │ │ │ ├── PictureEffect2.php │ │ │ ├── PictureProfile.php │ │ │ ├── PotentialFace1Position.php │ │ │ ├── PotentialFace2Position.php │ │ │ ├── PotentialFace3Position.php │ │ │ ├── PotentialFace4Position.php │ │ │ ├── PotentialFace5Position.php │ │ │ ├── PotentialFace6Position.php │ │ │ ├── PotentialFace7Position.php │ │ │ ├── PotentialFace8Position.php │ │ │ ├── PreviewImage.php │ │ │ ├── PreviewImageLength.php │ │ │ ├── PreviewImageSize.php │ │ │ ├── PreviewImageStart.php │ │ │ ├── PrioritySetupShutterRelease.php │ │ │ ├── Quality.php │ │ │ ├── Quality2.php │ │ │ ├── RAWFileType.php │ │ │ ├── Rating.php │ │ │ ├── RedEyeReduction.php │ │ │ ├── ReleaseMode.php │ │ │ ├── ReleaseMode2.php │ │ │ ├── ReleaseMode3.php │ │ │ ├── Rotation.php │ │ │ ├── Saturation.php │ │ │ ├── SaturationSetting.php │ │ │ ├── SceneMode.php │ │ │ ├── SelfTimer.php │ │ │ ├── SensorTemperature.php │ │ │ ├── SequenceFileNumber.php │ │ │ ├── SequenceImageNumber.php │ │ │ ├── SequenceLength.php │ │ │ ├── SequenceNumber.php │ │ │ ├── Sharpness.php │ │ │ ├── SharpnessSetting.php │ │ │ ├── ShotNumberSincePowerUp.php │ │ │ ├── ShotNumberSincePowerUp2.php │ │ │ ├── ShutterCount.php │ │ │ ├── ShutterSpeedSetting.php │ │ │ ├── SmileShutter.php │ │ │ ├── SmileShutterMode.php │ │ │ ├── SoftSkinEffect.php │ │ │ ├── Sony0x9400.php │ │ │ ├── Sony0x9401.php │ │ │ ├── Sony0x9402.php │ │ │ ├── Sony0x9404.php │ │ │ ├── Sony0x9405.php │ │ │ ├── Sony0x9406.php │ │ │ ├── Sony0x9407.php │ │ │ ├── Sony0x9408.php │ │ │ ├── Sony0x9409.php │ │ │ ├── Sony0x940a.php │ │ │ ├── Sony0x940b.php │ │ │ ├── Sony0x940c.php │ │ │ ├── Sony0x940d.php │ │ │ ├── Sony0x940e.php │ │ │ ├── Sony0x940f.php │ │ │ ├── Sony0x9411.php │ │ │ ├── SonyDateTime.php │ │ │ ├── SonyDateTime2.php │ │ │ ├── SonyExposureTime.php │ │ │ ├── SonyExposureTime2.php │ │ │ ├── SonyFNumber.php │ │ │ ├── SonyISO.php │ │ │ ├── SonyImageHeight.php │ │ │ ├── SonyImageSize.php │ │ │ ├── SonyImageWidth.php │ │ │ ├── SonyMaxApertureValue.php │ │ │ ├── SonyModelID.php │ │ │ ├── StopsAboveBaseISO.php │ │ │ ├── SweepPanoramaDirection.php │ │ │ ├── SweepPanoramaSize.php │ │ │ ├── Tag0x2010.php │ │ │ ├── Teleconverter.php │ │ │ ├── TempTest1.php │ │ │ ├── TempTest2.php │ │ │ ├── TextInfo1.php │ │ │ ├── TextInfo2.php │ │ │ ├── TiffMeteringImage.php │ │ │ ├── TiffMeteringImageHeight.php │ │ │ ├── TiffMeteringImageWidth.php │ │ │ ├── VariableLowPassFilter.php │ │ │ ├── VibrationReduction.php │ │ │ ├── ViewingMode.php │ │ │ ├── ViewingMode2.php │ │ │ ├── VignettingCorrection.php │ │ │ ├── WBRGBLevels.php │ │ │ ├── WBShiftABGM.php │ │ │ ├── WBShiftABGMPrecise.php │ │ │ ├── WhiteBalance.php │ │ │ ├── WhiteBalanceBracketing.php │ │ │ ├── WhiteBalanceFineTune.php │ │ │ ├── WhiteBalanceSetting.php │ │ │ ├── ZoneMatching.php │ │ │ └── ZoneMatchingValue.php │ │ ├── SonyIDC │ │ │ ├── BrightnessAdj.php │ │ │ ├── ColorCorrection.php │ │ │ ├── ColorNoiseReduction.php │ │ │ ├── ColorTemperatureAdj.php │ │ │ ├── ContrastAdj.php │ │ │ ├── CreativeStyleWasChanged.php │ │ │ ├── CurrentVersion.php │ │ │ ├── DRangeOptimizerHighlight.php │ │ │ ├── DRangeOptimizerMode.php │ │ │ ├── DRangeOptimizerShadow.php │ │ │ ├── DRangeOptimizerValue.php │ │ │ ├── EdgeNoiseReduction.php │ │ │ ├── GrayPoint.php │ │ │ ├── HighlightColorDistortReduct.php │ │ │ ├── HueAdj.php │ │ │ ├── IDCCreativeStyle.php │ │ │ ├── IDCPreviewLength.php │ │ │ ├── IDCPreviewStart.php │ │ │ ├── NoiseReductionMode.php │ │ │ ├── NoiseReductionValue.php │ │ │ ├── PeripheralIllumCentralRadius.php │ │ │ ├── PeripheralIllumCentralValue.php │ │ │ ├── PeripheralIllumPeriphValue.php │ │ │ ├── PresetWhiteBalance.php │ │ │ ├── PresetWhiteBalanceAdj.php │ │ │ ├── SaturationAdj.php │ │ │ ├── SharpnessAdj.php │ │ │ ├── SharpnessOvershoot.php │ │ │ ├── SharpnessThreshold.php │ │ │ ├── SharpnessUndershoot.php │ │ │ ├── ToneCurveBlueX.php │ │ │ ├── ToneCurveBlueY.php │ │ │ ├── ToneCurveBrightnessX.php │ │ │ ├── ToneCurveBrightnessY.php │ │ │ ├── ToneCurveGreenX.php │ │ │ ├── ToneCurveGreenY.php │ │ │ ├── ToneCurveRedX.php │ │ │ ├── ToneCurveRedY.php │ │ │ ├── VersionCreateDate.php │ │ │ └── VersionModifyDate.php │ │ ├── Stim │ │ │ ├── ApplicationData.php │ │ │ ├── AssumedDisplaySize.php │ │ │ ├── AssumedDistanceView.php │ │ │ ├── CameraArrangementInterval.php │ │ │ ├── ConvergenceBaseImage.php │ │ │ ├── ConvergenceDistance.php │ │ │ ├── CropXCommonOffset.php │ │ │ ├── CropXOffset.php │ │ │ ├── CropXOffset2.php │ │ │ ├── CropXSize.php │ │ │ ├── CropXViewpointNumber.php │ │ │ ├── CropXViewpointNumber2.php │ │ │ ├── CropYCommonOffset.php │ │ │ ├── CropYOffset.php │ │ │ ├── CropYOffset2.php │ │ │ ├── CropYSize.php │ │ │ ├── CropYViewpointNumber.php │ │ │ ├── CropYViewpointNumber2.php │ │ │ ├── ImageArrangement.php │ │ │ ├── ImageRotation.php │ │ │ ├── InitialDisplayEffect.php │ │ │ ├── RepresentativeDisparityFar.php │ │ │ ├── RepresentativeDisparityNear.php │ │ │ ├── RepresentativeImage.php │ │ │ ├── ScalingFactor.php │ │ │ ├── ShootingCount.php │ │ │ ├── StimVersion.php │ │ │ └── ViewType.php │ │ ├── SubIFD │ │ │ ├── ActiveArea.php │ │ │ ├── AntiAliasStrength.php │ │ │ ├── BayerGreenSplit.php │ │ │ ├── BestQualityScale.php │ │ │ ├── BlackLevel.php │ │ │ ├── BlackLevelDeltaH.php │ │ │ ├── BlackLevelDeltaV.php │ │ │ ├── BlackLevelRepeatDim.php │ │ │ ├── CFAPattern2.php │ │ │ ├── CFARepeatPatternDim.php │ │ │ ├── ChromaBlurRadius.php │ │ │ ├── DefaultCropOrigin.php │ │ │ ├── DefaultCropSize.php │ │ │ ├── DefaultScale.php │ │ │ ├── DefaultUserCrop.php │ │ │ ├── JpgFromRawLength.php │ │ │ ├── JpgFromRawStart.php │ │ │ ├── LinearizationTable.php │ │ │ ├── MaskedAreas.php │ │ │ ├── NoiseProfile.php │ │ │ ├── NoiseReductionApplied.php │ │ │ ├── ThumbnailLength.php │ │ │ ├── ThumbnailOffset.php │ │ │ └── WhiteLevel.php │ │ ├── SubIFD1 │ │ │ ├── OtherImageLength.php │ │ │ ├── OtherImageStart.php │ │ │ ├── PreviewImageLength.php │ │ │ └── PreviewImageStart.php │ │ ├── SubIFD2 │ │ │ ├── JpgFromRawLength.php │ │ │ ├── JpgFromRawStart.php │ │ │ ├── OtherImageLength.php │ │ │ └── OtherImageStart.php │ │ ├── System │ │ │ ├── Directory.php │ │ │ ├── FileAccessDate.php │ │ │ ├── FileAttributes.php │ │ │ ├── FileBlockCount.php │ │ │ ├── FileBlockSize.php │ │ │ ├── FileCreateDate.php │ │ │ ├── FileDeviceID.php │ │ │ ├── FileDeviceNumber.php │ │ │ ├── FileGroupID.php │ │ │ ├── FileHardLinks.php │ │ │ ├── FileInodeChangeDate.php │ │ │ ├── FileInodeNumber.php │ │ │ ├── FileModifyDate.php │ │ │ ├── FileName.php │ │ │ ├── FilePath.php │ │ │ ├── FilePermissions.php │ │ │ ├── FileSize.php │ │ │ ├── FileUserID.php │ │ │ ├── MDItemTags.php │ │ │ └── ResourceForkSize.php │ │ ├── Theora │ │ │ ├── ColorSpace.php │ │ │ ├── FrameRate.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── NominalVideoBitrate.php │ │ │ ├── PixelAspectRatio.php │ │ │ ├── PixelFormat.php │ │ │ ├── Quality.php │ │ │ ├── TheoraVersion.php │ │ │ ├── XOffset.php │ │ │ └── YOffset.php │ │ ├── Torrent │ │ │ ├── Announce.php │ │ │ ├── AnnounceList1.php │ │ │ ├── Comment.php │ │ │ ├── CreateDate.php │ │ │ ├── Creator.php │ │ │ ├── Encoding.php │ │ │ ├── File1Duration.php │ │ │ ├── File1Length.php │ │ │ ├── File1MD5Sum.php │ │ │ ├── File1Media.php │ │ │ ├── File1Path.php │ │ │ ├── File1PathUTF8.php │ │ │ ├── Length.php │ │ │ ├── MD5Sum.php │ │ │ ├── Name.php │ │ │ ├── NameUTF8.php │ │ │ ├── PieceLength.php │ │ │ ├── Pieces.php │ │ │ ├── Private0.php │ │ │ ├── Profile1AudioCodec.php │ │ │ ├── Profile1Height.php │ │ │ ├── Profile1VideoCodec.php │ │ │ ├── Profile1Width.php │ │ │ └── URLList1.php │ │ ├── Track │ │ │ ├── ChapterListTrackID.php │ │ │ ├── CleanApertureDimensions.php │ │ │ ├── ElementaryStreamTrack.php │ │ │ ├── EncodedPixelsDimensions.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── MatrixStructure.php │ │ │ ├── MediaCreateDate.php │ │ │ ├── MediaDuration.php │ │ │ ├── MediaHeaderVersion.php │ │ │ ├── MediaLanguageCode.php │ │ │ ├── MediaModifyDate.php │ │ │ ├── MediaTimeScale.php │ │ │ ├── NullMediaHeader.php │ │ │ ├── ProductionApertureDimensions.php │ │ │ ├── TimeCode.php │ │ │ ├── TrackCreateDate.php │ │ │ ├── TrackDuration.php │ │ │ ├── TrackHeaderVersion.php │ │ │ ├── TrackID.php │ │ │ ├── TrackLayer.php │ │ │ ├── TrackModifyDate.php │ │ │ ├── TrackVolume.php │ │ │ └── UUIDUnknown.php │ │ ├── VCalendar │ │ │ ├── Acknowledged.php │ │ │ ├── Action.php │ │ │ ├── Attachment.php │ │ │ ├── Attendee.php │ │ │ ├── CalendarScale.php │ │ │ ├── Categories.php │ │ │ ├── Classification.php │ │ │ ├── Comment.php │ │ │ ├── Contact.php │ │ │ ├── DateCreated.php │ │ │ ├── DateTimeCompleted.php │ │ │ ├── DateTimeDue.php │ │ │ ├── DateTimeEnd.php │ │ │ ├── DateTimeStamp.php │ │ │ ├── DateTimeStart.php │ │ │ ├── Description.php │ │ │ ├── Duration.php │ │ │ ├── ExceptionDateTimes.php │ │ │ ├── FreeBusyTime.php │ │ │ ├── Geolocation.php │ │ │ ├── Location.php │ │ │ ├── Method.php │ │ │ ├── ModifyDate.php │ │ │ ├── Organizer.php │ │ │ ├── PercentComplete.php │ │ │ ├── Priority.php │ │ │ ├── RecurrenceDateTimes.php │ │ │ ├── RecurrenceID.php │ │ │ ├── RecurrenceRule.php │ │ │ ├── RelatedTo.php │ │ │ ├── Repeat.php │ │ │ ├── RequestStatus.php │ │ │ ├── Resources.php │ │ │ ├── SequenceNumber.php │ │ │ ├── Software.php │ │ │ ├── Status.php │ │ │ ├── Summary.php │ │ │ ├── TimeTransparency.php │ │ │ ├── TimeZoneURL.php │ │ │ ├── TimezoneID.php │ │ │ ├── TimezoneName.php │ │ │ ├── TimezoneOffsetFrom.php │ │ │ ├── TimezoneOffsetTo.php │ │ │ ├── Trigger.php │ │ │ ├── UID.php │ │ │ ├── URL.php │ │ │ └── VCalendarVersion.php │ │ ├── VCard │ │ │ ├── ABDate.php │ │ │ ├── ABLabel.php │ │ │ ├── ABRelatedNames.php │ │ │ ├── ABUID.php │ │ │ ├── AIM.php │ │ │ ├── Address.php │ │ │ ├── Anniversary.php │ │ │ ├── Birthday.php │ │ │ ├── Email.php │ │ │ ├── FormattedName.php │ │ │ ├── Gender.php │ │ │ ├── Geolocation.php │ │ │ ├── ICQ.php │ │ │ ├── IMPP.php │ │ │ ├── JobTitle.php │ │ │ ├── Language.php │ │ │ ├── Logo.php │ │ │ ├── Name.php │ │ │ ├── Nickname.php │ │ │ ├── Note.php │ │ │ ├── Organization.php │ │ │ ├── Photo.php │ │ │ ├── Revision.php │ │ │ ├── SocialProfile.php │ │ │ ├── Software.php │ │ │ ├── Sound.php │ │ │ ├── Telephone.php │ │ │ ├── TimeZone.php │ │ │ ├── UID.php │ │ │ ├── URL.php │ │ │ └── VCardVersion.php │ │ ├── Vorbis │ │ │ ├── Actor.php │ │ │ ├── Album.php │ │ │ ├── Artist.php │ │ │ ├── AudioChannels.php │ │ │ ├── Comment.php │ │ │ ├── Composer.php │ │ │ ├── Contact.php │ │ │ ├── Copyright.php │ │ │ ├── CoverArt.php │ │ │ ├── CoverArtMIMEType.php │ │ │ ├── Date.php │ │ │ ├── Description.php │ │ │ ├── Director.php │ │ │ ├── EncodedBy.php │ │ │ ├── EncodedUsing.php │ │ │ ├── Genre.php │ │ │ ├── ISRCNumber.php │ │ │ ├── License.php │ │ │ ├── Location.php │ │ │ ├── MaximumBitrate.php │ │ │ ├── MinimumBitrate.php │ │ │ ├── NominalBitrate.php │ │ │ ├── Organization.php │ │ │ ├── Performer.php │ │ │ ├── Producer.php │ │ │ ├── ReplayGainAlbumGain.php │ │ │ ├── ReplayGainAlbumPeak.php │ │ │ ├── ReplayGainTrackGain.php │ │ │ ├── ReplayGainTrackPeak.php │ │ │ ├── SampleRate.php │ │ │ ├── Title.php │ │ │ ├── TrackNumber.php │ │ │ ├── Vendor.php │ │ │ ├── Version.php │ │ │ └── VorbisVersion.php │ │ ├── XML │ │ │ ├── AppVersion.php │ │ │ ├── Application.php │ │ │ ├── Author.php │ │ │ ├── Cast.php │ │ │ ├── Category.php │ │ │ ├── Characters.php │ │ │ ├── CharactersWithSpaces.php │ │ │ ├── CheckedBy.php │ │ │ ├── Client.php │ │ │ ├── Codirectors.php │ │ │ ├── Comment.php │ │ │ ├── Company.php │ │ │ ├── Copyright.php │ │ │ ├── CreateDate.php │ │ │ ├── CreatedType.php │ │ │ ├── DateCompleted.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── Department.php │ │ │ ├── Destination.php │ │ │ ├── Directors.php │ │ │ ├── Disposition.php │ │ │ ├── Division.php │ │ │ ├── DocSecurity.php │ │ │ ├── DocumentNumber.php │ │ │ ├── Duration.php │ │ │ ├── Editor.php │ │ │ ├── ForwardTo.php │ │ │ ├── GPSLatitude.php │ │ │ ├── GPSLongitude.php │ │ │ ├── GPSMapDatum.php │ │ │ ├── Group.php │ │ │ ├── HeadingPairs.php │ │ │ ├── HiddenSlides.php │ │ │ ├── HyperlinkBase.php │ │ │ ├── HyperlinksChanged.php │ │ │ ├── Keywords.php │ │ │ ├── Language.php │ │ │ ├── LastModifiedBy.php │ │ │ ├── LastPrinted.php │ │ │ ├── LastUpdate.php │ │ │ ├── Lines.php │ │ │ ├── LinksUpToDate.php │ │ │ ├── MMClips.php │ │ │ ├── Mailstop.php │ │ │ ├── Manager.php │ │ │ ├── Matter.php │ │ │ ├── ModifiedType.php │ │ │ ├── ModifyDate.php │ │ │ ├── Notes.php │ │ │ ├── Office.php │ │ │ ├── Owner.php │ │ │ ├── Pages.php │ │ │ ├── Paragraphs.php │ │ │ ├── PresentationFormat.php │ │ │ ├── Producers.php │ │ │ ├── Project.php │ │ │ ├── Projects.php │ │ │ ├── Publisher.php │ │ │ ├── Purpose.php │ │ │ ├── ReceivedFrom.php │ │ │ ├── RecordedBy.php │ │ │ ├── RecordedDate.php │ │ │ ├── Reference.php │ │ │ ├── RevisionNumber.php │ │ │ ├── ScaleCrop.php │ │ │ ├── Screenwriters.php │ │ │ ├── SharedDoc.php │ │ │ ├── Slides.php │ │ │ ├── Source.php │ │ │ ├── Status.php │ │ │ ├── Studio.php │ │ │ ├── TelephoneNumber.php │ │ │ ├── Template.php │ │ │ ├── Title.php │ │ │ ├── TitlesOfParts.php │ │ │ ├── TotalEditTime.php │ │ │ ├── Typist.php │ │ │ ├── Words.php │ │ │ └── XMLFileType.php │ │ ├── XMP │ │ │ └── XMP.php │ │ ├── XMPAas │ │ │ ├── AffineA.php │ │ │ ├── AffineB.php │ │ │ ├── AffineC.php │ │ │ ├── AffineD.php │ │ │ ├── AffineX.php │ │ │ ├── AffineY.php │ │ │ ├── CropH.php │ │ │ ├── CropW.php │ │ │ ├── CropX.php │ │ │ ├── CropY.php │ │ │ ├── Curve0x.php │ │ │ ├── Curve0y.php │ │ │ ├── Curve1x.php │ │ │ ├── Curve1y.php │ │ │ ├── Curve2x.php │ │ │ ├── Curve2y.php │ │ │ ├── Curve3x.php │ │ │ ├── Curve3y.php │ │ │ ├── Curve4x.php │ │ │ ├── Curve4y.php │ │ │ ├── Highlights.php │ │ │ ├── Shadows.php │ │ │ └── Vibrance.php │ │ ├── XMPAcdsee │ │ │ ├── Author.php │ │ │ ├── Caption.php │ │ │ ├── Categories.php │ │ │ ├── Collections.php │ │ │ ├── DPP.php │ │ │ ├── DateTime.php │ │ │ ├── EditStatus.php │ │ │ ├── FixtureIdentifier.php │ │ │ ├── Keywords.php │ │ │ ├── Notes.php │ │ │ ├── ObjectCycle.php │ │ │ ├── OriginatingProgram.php │ │ │ ├── RPP.php │ │ │ ├── Rating.php │ │ │ ├── Rawrppused.php │ │ │ ├── ReleaseDate.php │ │ │ ├── ReleaseTime.php │ │ │ ├── Snapshots.php │ │ │ └── Tagged.php │ │ ├── XMPAlbum │ │ │ └── Notes.php │ │ ├── XMPAppleFi │ │ │ ├── AngleInfoRoll.php │ │ │ ├── AngleInfoYaw.php │ │ │ ├── ConfidenceLevel.php │ │ │ ├── FaceID.php │ │ │ └── TimeStamp.php │ │ ├── XMPAux │ │ │ ├── ApproximateFocusDistance.php │ │ │ ├── DistortionCorrectionAlreadyApplied.php │ │ │ ├── Firmware.php │ │ │ ├── FlashCompensation.php │ │ │ ├── ImageNumber.php │ │ │ ├── IsMergedHDR.php │ │ │ ├── IsMergedPanorama.php │ │ │ ├── LateralChromaticAberrationCorrectionAlreadyApplied.php │ │ │ ├── Lens.php │ │ │ ├── LensID.php │ │ │ ├── LensInfo.php │ │ │ ├── LensSerialNumber.php │ │ │ ├── OwnerName.php │ │ │ ├── SerialNumber.php │ │ │ └── VignetteCorrectionAlreadyApplied.php │ │ ├── XMPCc │ │ │ ├── AttributionName.php │ │ │ ├── AttributionURL.php │ │ │ ├── DeprecatedOn.php │ │ │ ├── Jurisdiction.php │ │ │ ├── LegalCode.php │ │ │ ├── License.php │ │ │ ├── MorePermissions.php │ │ │ ├── Permits.php │ │ │ ├── Prohibits.php │ │ │ ├── Requires.php │ │ │ └── UseGuidelines.php │ │ ├── XMPCell │ │ │ ├── CellGlobalID.php │ │ │ ├── CellR.php │ │ │ ├── CellTowerID.php │ │ │ ├── LocationAreaCode.php │ │ │ ├── MobileCountryCode.php │ │ │ └── MobileNetworkCode.php │ │ ├── XMPCreatorAtom │ │ │ ├── AeProjectLink.php │ │ │ ├── AeProjectLinkCompositionID.php │ │ │ ├── AeProjectLinkFullPath.php │ │ │ ├── AeProjectLinkRenderOutputModuleIndex.php │ │ │ ├── AeProjectLinkRenderQueueItemID.php │ │ │ ├── AeProjectLinkRenderTimeStamp.php │ │ │ ├── MacAtom.php │ │ │ ├── MacAtomApplicationCode.php │ │ │ ├── MacAtomInvocationAppleEvent.php │ │ │ ├── MacAtomPosixProjectPath.php │ │ │ ├── WindowsAtom.php │ │ │ ├── WindowsAtomExtension.php │ │ │ ├── WindowsAtomInvocationFlags.php │ │ │ └── WindowsAtomUncProjectPath.php │ │ ├── XMPCrs │ │ │ ├── AlreadyApplied.php │ │ │ ├── AutoBrightness.php │ │ │ ├── AutoContrast.php │ │ │ ├── AutoExposure.php │ │ │ ├── AutoLateralCA.php │ │ │ ├── AutoShadows.php │ │ │ ├── AutoWhiteVersion.php │ │ │ ├── Blacks2012.php │ │ │ ├── BlueHue.php │ │ │ ├── BlueSaturation.php │ │ │ ├── Brightness.php │ │ │ ├── CameraProfile.php │ │ │ ├── CameraProfileDigest.php │ │ │ ├── ChromaticAberrationB.php │ │ │ ├── ChromaticAberrationR.php │ │ │ ├── CircGradBasedCorrActive.php │ │ │ ├── CircGradBasedCorrAmount.php │ │ │ ├── CircGradBasedCorrBrightness.php │ │ │ ├── CircGradBasedCorrClarity.php │ │ │ ├── CircGradBasedCorrClarity2012.php │ │ │ ├── CircGradBasedCorrContrast.php │ │ │ ├── CircGradBasedCorrContrast2012.php │ │ │ ├── CircGradBasedCorrDefringe.php │ │ │ ├── CircGradBasedCorrExposure.php │ │ │ ├── CircGradBasedCorrExposure2012.php │ │ │ ├── CircGradBasedCorrHighlights2012.php │ │ │ ├── CircGradBasedCorrHue.php │ │ │ ├── CircGradBasedCorrLuminanceNoise.php │ │ │ ├── CircGradBasedCorrMaskAlpha.php │ │ │ ├── CircGradBasedCorrMaskAngle.php │ │ │ ├── CircGradBasedCorrMaskBottom.php │ │ │ ├── CircGradBasedCorrMaskCenterValue.php │ │ │ ├── CircGradBasedCorrMaskCenterWeight.php │ │ │ ├── CircGradBasedCorrMaskDabs.php │ │ │ ├── CircGradBasedCorrMaskFeather.php │ │ │ ├── CircGradBasedCorrMaskFlipped.php │ │ │ ├── CircGradBasedCorrMaskFlow.php │ │ │ ├── CircGradBasedCorrMaskFullX.php │ │ │ ├── CircGradBasedCorrMaskFullY.php │ │ │ ├── CircGradBasedCorrMaskLeft.php │ │ │ ├── CircGradBasedCorrMaskMidpoint.php │ │ │ ├── CircGradBasedCorrMaskPerimeterValue.php │ │ │ ├── CircGradBasedCorrMaskRadius.php │ │ │ ├── CircGradBasedCorrMaskRight.php │ │ │ ├── CircGradBasedCorrMaskRoundness.php │ │ │ ├── CircGradBasedCorrMaskSizeX.php │ │ │ ├── CircGradBasedCorrMaskSizeY.php │ │ │ ├── CircGradBasedCorrMaskTop.php │ │ │ ├── CircGradBasedCorrMaskValue.php │ │ │ ├── CircGradBasedCorrMaskVersion.php │ │ │ ├── CircGradBasedCorrMaskWhat.php │ │ │ ├── CircGradBasedCorrMaskX.php │ │ │ ├── CircGradBasedCorrMaskY.php │ │ │ ├── CircGradBasedCorrMaskZeroX.php │ │ │ ├── CircGradBasedCorrMaskZeroY.php │ │ │ ├── CircGradBasedCorrMasks.php │ │ │ ├── CircGradBasedCorrMoire.php │ │ │ ├── CircGradBasedCorrSaturation.php │ │ │ ├── CircGradBasedCorrShadows2012.php │ │ │ ├── CircGradBasedCorrSharpness.php │ │ │ ├── CircGradBasedCorrTemperature.php │ │ │ ├── CircGradBasedCorrTint.php │ │ │ ├── CircGradBasedCorrWhat.php │ │ │ ├── CircularGradientBasedCorrections.php │ │ │ ├── Clarity.php │ │ │ ├── Clarity2012.php │ │ │ ├── ColorNoiseReduction.php │ │ │ ├── ColorNoiseReductionDetail.php │ │ │ ├── ColorNoiseReductionSmoothness.php │ │ │ ├── ColorTemperature.php │ │ │ ├── Contrast.php │ │ │ ├── Contrast2012.php │ │ │ ├── ConvertToGrayscale.php │ │ │ ├── Converter.php │ │ │ ├── CropAngle.php │ │ │ ├── CropBottom.php │ │ │ ├── CropConstrainToWarp.php │ │ │ ├── CropHeight.php │ │ │ ├── CropLeft.php │ │ │ ├── CropRight.php │ │ │ ├── CropTop.php │ │ │ ├── CropUnit.php │ │ │ ├── CropUnits.php │ │ │ ├── CropWidth.php │ │ │ ├── DNGIgnoreSidecars.php │ │ │ ├── DefaultAutoGray.php │ │ │ ├── DefaultAutoTone.php │ │ │ ├── DefaultsSpecificToISO.php │ │ │ ├── DefaultsSpecificToSerial.php │ │ │ ├── Defringe.php │ │ │ ├── DefringeGreenAmount.php │ │ │ ├── DefringeGreenHueHi.php │ │ │ ├── DefringeGreenHueLo.php │ │ │ ├── DefringePurpleAmount.php │ │ │ ├── DefringePurpleHueHi.php │ │ │ ├── DefringePurpleHueLo.php │ │ │ ├── Exposure.php │ │ │ ├── Exposure2012.php │ │ │ ├── FillLight.php │ │ │ ├── GradientBasedCorrActive.php │ │ │ ├── GradientBasedCorrAmount.php │ │ │ ├── GradientBasedCorrBrightness.php │ │ │ ├── GradientBasedCorrClarity.php │ │ │ ├── GradientBasedCorrClarity2012.php │ │ │ ├── GradientBasedCorrContrast.php │ │ │ ├── GradientBasedCorrContrast2012.php │ │ │ ├── GradientBasedCorrDefringe.php │ │ │ ├── GradientBasedCorrExposure.php │ │ │ ├── GradientBasedCorrExposure2012.php │ │ │ ├── GradientBasedCorrHighlights2012.php │ │ │ ├── GradientBasedCorrHue.php │ │ │ ├── GradientBasedCorrLuminanceNoise.php │ │ │ ├── GradientBasedCorrMaskAlpha.php │ │ │ ├── GradientBasedCorrMaskAngle.php │ │ │ ├── GradientBasedCorrMaskBottom.php │ │ │ ├── GradientBasedCorrMaskCenterValue.php │ │ │ ├── GradientBasedCorrMaskCenterWeight.php │ │ │ ├── GradientBasedCorrMaskDabs.php │ │ │ ├── GradientBasedCorrMaskFeather.php │ │ │ ├── GradientBasedCorrMaskFlipped.php │ │ │ ├── GradientBasedCorrMaskFlow.php │ │ │ ├── GradientBasedCorrMaskFullX.php │ │ │ ├── GradientBasedCorrMaskFullY.php │ │ │ ├── GradientBasedCorrMaskLeft.php │ │ │ ├── GradientBasedCorrMaskMidpoint.php │ │ │ ├── GradientBasedCorrMaskPerimeterValue.php │ │ │ ├── GradientBasedCorrMaskRadius.php │ │ │ ├── GradientBasedCorrMaskRight.php │ │ │ ├── GradientBasedCorrMaskRoundness.php │ │ │ ├── GradientBasedCorrMaskSizeX.php │ │ │ ├── GradientBasedCorrMaskSizeY.php │ │ │ ├── GradientBasedCorrMaskTop.php │ │ │ ├── GradientBasedCorrMaskValue.php │ │ │ ├── GradientBasedCorrMaskVersion.php │ │ │ ├── GradientBasedCorrMaskWhat.php │ │ │ ├── GradientBasedCorrMaskX.php │ │ │ ├── GradientBasedCorrMaskY.php │ │ │ ├── GradientBasedCorrMaskZeroX.php │ │ │ ├── GradientBasedCorrMaskZeroY.php │ │ │ ├── GradientBasedCorrMasks.php │ │ │ ├── GradientBasedCorrMoire.php │ │ │ ├── GradientBasedCorrSaturation.php │ │ │ ├── GradientBasedCorrShadows2012.php │ │ │ ├── GradientBasedCorrSharpness.php │ │ │ ├── GradientBasedCorrTemperature.php │ │ │ ├── GradientBasedCorrTint.php │ │ │ ├── GradientBasedCorrWhat.php │ │ │ ├── GradientBasedCorrections.php │ │ │ ├── GrainAmount.php │ │ │ ├── GrainFrequency.php │ │ │ ├── GrainSize.php │ │ │ ├── GrayMixerAqua.php │ │ │ ├── GrayMixerBlue.php │ │ │ ├── GrayMixerGreen.php │ │ │ ├── GrayMixerMagenta.php │ │ │ ├── GrayMixerOrange.php │ │ │ ├── GrayMixerPurple.php │ │ │ ├── GrayMixerRed.php │ │ │ ├── GrayMixerYellow.php │ │ │ ├── GreenHue.php │ │ │ ├── GreenSaturation.php │ │ │ ├── HasCrop.php │ │ │ ├── HasSettings.php │ │ │ ├── HighlightRecovery.php │ │ │ ├── Highlights2012.php │ │ │ ├── HueAdjustmentAqua.php │ │ │ ├── HueAdjustmentBlue.php │ │ │ ├── HueAdjustmentGreen.php │ │ │ ├── HueAdjustmentMagenta.php │ │ │ ├── HueAdjustmentOrange.php │ │ │ ├── HueAdjustmentPurple.php │ │ │ ├── HueAdjustmentRed.php │ │ │ ├── HueAdjustmentYellow.php │ │ │ ├── IncrementalTemperature.php │ │ │ ├── IncrementalTint.php │ │ │ ├── JPEGHandling.php │ │ │ ├── LensManualDistortionAmount.php │ │ │ ├── LensProfileChromaticAberrationScale.php │ │ │ ├── LensProfileDigest.php │ │ │ ├── LensProfileDistortionScale.php │ │ │ ├── LensProfileEnable.php │ │ │ ├── LensProfileFilename.php │ │ │ ├── LensProfileMatchKeyCameraModelName.php │ │ │ ├── LensProfileMatchKeyExifMake.php │ │ │ ├── LensProfileMatchKeyExifModel.php │ │ │ ├── LensProfileMatchKeyIsRaw.php │ │ │ ├── LensProfileMatchKeyLensID.php │ │ │ ├── LensProfileMatchKeyLensInfo.php │ │ │ ├── LensProfileMatchKeyLensName.php │ │ │ ├── LensProfileMatchKeySensorFormatFactor.php │ │ │ ├── LensProfileName.php │ │ │ ├── LensProfileSetup.php │ │ │ ├── LensProfileVignettingScale.php │ │ │ ├── LuminanceAdjustmentAqua.php │ │ │ ├── LuminanceAdjustmentBlue.php │ │ │ ├── LuminanceAdjustmentGreen.php │ │ │ ├── LuminanceAdjustmentMagenta.php │ │ │ ├── LuminanceAdjustmentOrange.php │ │ │ ├── LuminanceAdjustmentPurple.php │ │ │ ├── LuminanceAdjustmentRed.php │ │ │ ├── LuminanceAdjustmentYellow.php │ │ │ ├── LuminanceNoiseReductionContrast.php │ │ │ ├── LuminanceNoiseReductionDetail.php │ │ │ ├── LuminanceSmoothing.php │ │ │ ├── MoireFilter.php │ │ │ ├── NegativeCacheLargePreviewSize.php │ │ │ ├── NegativeCacheMaximumSize.php │ │ │ ├── NegativeCachePath.php │ │ │ ├── PaintBasedCorrectionMasks.php │ │ │ ├── PaintBasedCorrections.php │ │ │ ├── PaintCorrectionActive.php │ │ │ ├── PaintCorrectionAmount.php │ │ │ ├── PaintCorrectionBrightness.php │ │ │ ├── PaintCorrectionClarity.php │ │ │ ├── PaintCorrectionClarity2012.php │ │ │ ├── PaintCorrectionContrast.php │ │ │ ├── PaintCorrectionContrast2012.php │ │ │ ├── PaintCorrectionDefringe.php │ │ │ ├── PaintCorrectionExposure.php │ │ │ ├── PaintCorrectionExposure2012.php │ │ │ ├── PaintCorrectionHighlights2012.php │ │ │ ├── PaintCorrectionHue.php │ │ │ ├── PaintCorrectionLuminanceNoise.php │ │ │ ├── PaintCorrectionMaskAlpha.php │ │ │ ├── PaintCorrectionMaskAngle.php │ │ │ ├── PaintCorrectionMaskBottom.php │ │ │ ├── PaintCorrectionMaskCenterValue.php │ │ │ ├── PaintCorrectionMaskCenterWeight.php │ │ │ ├── PaintCorrectionMaskDabs.php │ │ │ ├── PaintCorrectionMaskFeather.php │ │ │ ├── PaintCorrectionMaskFlipped.php │ │ │ ├── PaintCorrectionMaskFlow.php │ │ │ ├── PaintCorrectionMaskFullX.php │ │ │ ├── PaintCorrectionMaskFullY.php │ │ │ ├── PaintCorrectionMaskLeft.php │ │ │ ├── PaintCorrectionMaskMidpoint.php │ │ │ ├── PaintCorrectionMaskPerimeterValue.php │ │ │ ├── PaintCorrectionMaskRadius.php │ │ │ ├── PaintCorrectionMaskRight.php │ │ │ ├── PaintCorrectionMaskRoundness.php │ │ │ ├── PaintCorrectionMaskSizeX.php │ │ │ ├── PaintCorrectionMaskSizeY.php │ │ │ ├── PaintCorrectionMaskTop.php │ │ │ ├── PaintCorrectionMaskValue.php │ │ │ ├── PaintCorrectionMaskVersion.php │ │ │ ├── PaintCorrectionMaskWhat.php │ │ │ ├── PaintCorrectionMaskX.php │ │ │ ├── PaintCorrectionMaskY.php │ │ │ ├── PaintCorrectionMaskZeroX.php │ │ │ ├── PaintCorrectionMaskZeroY.php │ │ │ ├── PaintCorrectionMoire.php │ │ │ ├── PaintCorrectionSaturation.php │ │ │ ├── PaintCorrectionShadows2012.php │ │ │ ├── PaintCorrectionSharpness.php │ │ │ ├── PaintCorrectionTemperature.php │ │ │ ├── PaintCorrectionTint.php │ │ │ ├── PaintCorrectionWhat.php │ │ │ ├── ParametricDarks.php │ │ │ ├── ParametricHighlightSplit.php │ │ │ ├── ParametricHighlights.php │ │ │ ├── ParametricLights.php │ │ │ ├── ParametricMidtoneSplit.php │ │ │ ├── ParametricShadowSplit.php │ │ │ ├── ParametricShadows.php │ │ │ ├── PerspectiveAspect.php │ │ │ ├── PerspectiveHorizontal.php │ │ │ ├── PerspectiveRotate.php │ │ │ ├── PerspectiveScale.php │ │ │ ├── PerspectiveUpright.php │ │ │ ├── PerspectiveVertical.php │ │ │ ├── PostCropVignetteAmount.php │ │ │ ├── PostCropVignetteFeather.php │ │ │ ├── PostCropVignetteHighlightContrast.php │ │ │ ├── PostCropVignetteMidpoint.php │ │ │ ├── PostCropVignetteRoundness.php │ │ │ ├── PostCropVignetteStyle.php │ │ │ ├── ProcessVersion.php │ │ │ ├── RawFileName.php │ │ │ ├── RedEyeInfo.php │ │ │ ├── RedHue.php │ │ │ ├── RedSaturation.php │ │ │ ├── RetouchAreaFeather.php │ │ │ ├── RetouchAreaMaskAlpha.php │ │ │ ├── RetouchAreaMaskAngle.php │ │ │ ├── RetouchAreaMaskBottom.php │ │ │ ├── RetouchAreaMaskCenterValue.php │ │ │ ├── RetouchAreaMaskCenterWeight.php │ │ │ ├── RetouchAreaMaskDabs.php │ │ │ ├── RetouchAreaMaskFeather.php │ │ │ ├── RetouchAreaMaskFlipped.php │ │ │ ├── RetouchAreaMaskFlow.php │ │ │ ├── RetouchAreaMaskFullX.php │ │ │ ├── RetouchAreaMaskFullY.php │ │ │ ├── RetouchAreaMaskLeft.php │ │ │ ├── RetouchAreaMaskMidpoint.php │ │ │ ├── RetouchAreaMaskPerimeterValue.php │ │ │ ├── RetouchAreaMaskRadius.php │ │ │ ├── RetouchAreaMaskRight.php │ │ │ ├── RetouchAreaMaskRoundness.php │ │ │ ├── RetouchAreaMaskSizeX.php │ │ │ ├── RetouchAreaMaskSizeY.php │ │ │ ├── RetouchAreaMaskTop.php │ │ │ ├── RetouchAreaMaskValue.php │ │ │ ├── RetouchAreaMaskVersion.php │ │ │ ├── RetouchAreaMaskWhat.php │ │ │ ├── RetouchAreaMaskX.php │ │ │ ├── RetouchAreaMaskY.php │ │ │ ├── RetouchAreaMaskZeroX.php │ │ │ ├── RetouchAreaMaskZeroY.php │ │ │ ├── RetouchAreaMasks.php │ │ │ ├── RetouchAreaMethod.php │ │ │ ├── RetouchAreaOffsetY.php │ │ │ ├── RetouchAreaOpacity.php │ │ │ ├── RetouchAreaSeed.php │ │ │ ├── RetouchAreaSourceState.php │ │ │ ├── RetouchAreaSourceX.php │ │ │ ├── RetouchAreaSpotType.php │ │ │ ├── RetouchAreas.php │ │ │ ├── RetouchInfo.php │ │ │ ├── Saturation.php │ │ │ ├── SaturationAdjustmentAqua.php │ │ │ ├── SaturationAdjustmentBlue.php │ │ │ ├── SaturationAdjustmentGreen.php │ │ │ ├── SaturationAdjustmentMagenta.php │ │ │ ├── SaturationAdjustmentOrange.php │ │ │ ├── SaturationAdjustmentPurple.php │ │ │ ├── SaturationAdjustmentRed.php │ │ │ ├── SaturationAdjustmentYellow.php │ │ │ ├── ShadowTint.php │ │ │ ├── Shadows.php │ │ │ ├── Shadows2012.php │ │ │ ├── SharpenDetail.php │ │ │ ├── SharpenEdgeMasking.php │ │ │ ├── SharpenRadius.php │ │ │ ├── Sharpness.php │ │ │ ├── Smoothness.php │ │ │ ├── SplitToningBalance.php │ │ │ ├── SplitToningHighlightHue.php │ │ │ ├── SplitToningHighlightSaturation.php │ │ │ ├── SplitToningShadowHue.php │ │ │ ├── SplitToningShadowSaturation.php │ │ │ ├── TIFFHandling.php │ │ │ ├── Tint.php │ │ │ ├── ToneCurve.php │ │ │ ├── ToneCurveBlue.php │ │ │ ├── ToneCurveGreen.php │ │ │ ├── ToneCurveName.php │ │ │ ├── ToneCurveName2012.php │ │ │ ├── ToneCurvePV2012.php │ │ │ ├── ToneCurvePV2012Blue.php │ │ │ ├── ToneCurvePV2012Green.php │ │ │ ├── ToneCurvePV2012Red.php │ │ │ ├── ToneCurveRed.php │ │ │ ├── UprightCenterMode.php │ │ │ ├── UprightCenterNormX.php │ │ │ ├── UprightCenterNormY.php │ │ │ ├── UprightDependentDigest.php │ │ │ ├── UprightFocalLength35mm.php │ │ │ ├── UprightFocalMode.php │ │ │ ├── UprightPreview.php │ │ │ ├── UprightTransform0.php │ │ │ ├── UprightTransform1.php │ │ │ ├── UprightTransform2.php │ │ │ ├── UprightTransform3.php │ │ │ ├── UprightTransform4.php │ │ │ ├── UprightTransformCount.php │ │ │ ├── UprightVersion.php │ │ │ ├── Version.php │ │ │ ├── Vibrance.php │ │ │ ├── VignetteAmount.php │ │ │ ├── VignetteMidpoint.php │ │ │ ├── What.php │ │ │ ├── WhiteBalance.php │ │ │ └── Whites2012.php │ │ ├── XMPDICOM │ │ │ ├── EquipmentInstitution.php │ │ │ ├── EquipmentManufacturer.php │ │ │ ├── PatientBirthDate.php │ │ │ ├── PatientID.php │ │ │ ├── PatientName.php │ │ │ ├── PatientSex.php │ │ │ ├── SeriesDateTime.php │ │ │ ├── SeriesDescription.php │ │ │ ├── SeriesModality.php │ │ │ ├── SeriesNumber.php │ │ │ ├── StudyDateTime.php │ │ │ ├── StudyDescription.php │ │ │ ├── StudyID.php │ │ │ └── StudyPhysician.php │ │ ├── XMPDc │ │ │ ├── Contributor.php │ │ │ ├── Coverage.php │ │ │ ├── Creator.php │ │ │ ├── Date.php │ │ │ ├── Description.php │ │ │ ├── Format.php │ │ │ ├── Identifier.php │ │ │ ├── Language.php │ │ │ ├── Publisher.php │ │ │ ├── Relation.php │ │ │ ├── Rights.php │ │ │ ├── Source.php │ │ │ ├── Subject.php │ │ │ ├── Title.php │ │ │ └── Type.php │ │ ├── XMPDex │ │ │ ├── CRC32.php │ │ │ ├── FFID.php │ │ │ ├── LicenseType.php │ │ │ ├── OS.php │ │ │ ├── Rating.php │ │ │ ├── Revision.php │ │ │ ├── ShortDescription.php │ │ │ └── Source.php │ │ ├── XMPDigiKam │ │ │ ├── CaptionsAuthorNames.php │ │ │ ├── CaptionsDateTimeStamps.php │ │ │ ├── ColorLabel.php │ │ │ ├── ImageHistory.php │ │ │ ├── LensCorrectionSettings.php │ │ │ ├── PickLabel.php │ │ │ └── TagsList.php │ │ ├── XMPDwc │ │ │ ├── DCContinent.php │ │ │ ├── DCCoordinatePrecision.php │ │ │ ├── DCCoordinateUncertaintyInMeters.php │ │ │ ├── DCCountry.php │ │ │ ├── DCCountryCode.php │ │ │ ├── DCCounty.php │ │ │ ├── DCDecimalLatitude.php │ │ │ ├── DCDecimalLongitude.php │ │ │ ├── DCEvent.php │ │ │ ├── DCFootprintSRS.php │ │ │ ├── DCFootprintSpatialFit.php │ │ │ ├── DCFootprintWKT.php │ │ │ ├── DCGeodeticDatum.php │ │ │ ├── DCGeoreferenceProtocol.php │ │ │ ├── DCGeoreferenceRemarks.php │ │ │ ├── DCGeoreferenceSources.php │ │ │ ├── DCGeoreferenceVerificationStatus.php │ │ │ ├── DCGeoreferencedBy.php │ │ │ ├── DCGeoreferencedDate.php │ │ │ ├── DCHigherGeography.php │ │ │ ├── DCHigherGeographyID.php │ │ │ ├── DCIsland.php │ │ │ ├── DCIslandGroup.php │ │ │ ├── DCLocality.php │ │ │ ├── DCLocationAccordingTo.php │ │ │ ├── DCLocationID.php │ │ │ ├── DCLocationRemarks.php │ │ │ ├── DCMaximumDepthInMeters.php │ │ │ ├── DCMaximumDistanceAboveSurfaceInMeters.php │ │ │ ├── DCMaximumElevationInMeters.php │ │ │ ├── DCMinimumDepthInMeters.php │ │ │ ├── DCMinimumDistanceAboveSurfaceInMeters.php │ │ │ ├── DCMinimumElevationInMeters.php │ │ │ ├── DCMunicipality.php │ │ │ ├── DCPointRadiusSpatialFit.php │ │ │ ├── DCStateProvince.php │ │ │ ├── DCTermsLocation.php │ │ │ ├── DCVerbatimCoordinateSystem.php │ │ │ ├── DCVerbatimCoordinates.php │ │ │ ├── DCVerbatimDepth.php │ │ │ ├── DCVerbatimElevation.php │ │ │ ├── DCVerbatimLatitude.php │ │ │ ├── DCVerbatimLocality.php │ │ │ ├── DCVerbatimLongitude.php │ │ │ ├── DCVerbatimSRS.php │ │ │ ├── DCWaterBody.php │ │ │ ├── DateIdentified.php │ │ │ ├── EarliestAgeOrLowestStage.php │ │ │ ├── EarliestEonOrLowestEonothem.php │ │ │ ├── EarliestEpochOrLowestSeries.php │ │ │ ├── EarliestEraOrLowestErathem.php │ │ │ ├── EarliestPeriodOrLowestSystem.php │ │ │ ├── EventDay.php │ │ │ ├── EventEarliestDate.php │ │ │ ├── EventEndDayOfYear.php │ │ │ ├── EventFieldNotes.php │ │ │ ├── EventFieldNumber.php │ │ │ ├── EventHabitat.php │ │ │ ├── EventID.php │ │ │ ├── EventLatestDate.php │ │ │ ├── EventMonth.php │ │ │ ├── EventRemarks.php │ │ │ ├── EventSamplingEffort.php │ │ │ ├── EventSamplingProtocol.php │ │ │ ├── EventStartDayOfYear.php │ │ │ ├── EventTime.php │ │ │ ├── EventVerbatimEventDate.php │ │ │ ├── EventYear.php │ │ │ ├── GeologicalContext.php │ │ │ ├── GeologicalContextBed.php │ │ │ ├── GeologicalContextFormation.php │ │ │ ├── GeologicalContextGroup.php │ │ │ ├── GeologicalContextID.php │ │ │ ├── GeologicalContextMember.php │ │ │ ├── HighestBiostratigraphicZone.php │ │ │ ├── Identification.php │ │ │ ├── IdentificationID.php │ │ │ ├── IdentificationQualifier.php │ │ │ ├── IdentificationReferences.php │ │ │ ├── IdentificationRemarks.php │ │ │ ├── IdentificationVerificationStatus.php │ │ │ ├── IdentifiedBy.php │ │ │ ├── LatestAgeOrHighestStage.php │ │ │ ├── LatestEonOrHighestEonothem.php │ │ │ ├── LatestEpochOrHighestSeries.php │ │ │ ├── LatestEraOrHighestErathem.php │ │ │ ├── LatestPeriodOrHighestSystem.php │ │ │ ├── LithostratigraphicTerms.php │ │ │ ├── LowestBiostratigraphicZone.php │ │ │ ├── MeasurementAccuracy.php │ │ │ ├── MeasurementDeterminedBy.php │ │ │ ├── MeasurementDeterminedDate.php │ │ │ ├── MeasurementID.php │ │ │ ├── MeasurementMethod.php │ │ │ ├── MeasurementOrFact.php │ │ │ ├── MeasurementRemarks.php │ │ │ ├── MeasurementType.php │ │ │ ├── MeasurementUnit.php │ │ │ ├── MeasurementValue.php │ │ │ ├── Occurrence.php │ │ │ ├── OccurrenceAssociatedMedia.php │ │ │ ├── OccurrenceAssociatedOccurrences.php │ │ │ ├── OccurrenceAssociatedReferences.php │ │ │ ├── OccurrenceAssociatedSequences.php │ │ │ ├── OccurrenceAssociatedTaxa.php │ │ │ ├── OccurrenceBehavior.php │ │ │ ├── OccurrenceCatalogNumber.php │ │ │ ├── OccurrenceDetails.php │ │ │ ├── OccurrenceDisposition.php │ │ │ ├── OccurrenceEstablishmentMeans.php │ │ │ ├── OccurrenceID.php │ │ │ ├── OccurrenceIndividualCount.php │ │ │ ├── OccurrenceIndividualID.php │ │ │ ├── OccurrenceLifeStage.php │ │ │ ├── OccurrenceOtherCatalogNumbers.php │ │ │ ├── OccurrencePreparations.php │ │ │ ├── OccurrencePreviousIdentifications.php │ │ │ ├── OccurrenceRecordNumber.php │ │ │ ├── OccurrenceRecordedBy.php │ │ │ ├── OccurrenceRemarks.php │ │ │ ├── OccurrenceReproductiveCondition.php │ │ │ ├── OccurrenceSex.php │ │ │ ├── OccurrenceStatus.php │ │ │ ├── Record.php │ │ │ ├── RecordBasisOfRecord.php │ │ │ ├── RecordCollectionCode.php │ │ │ ├── RecordCollectionID.php │ │ │ ├── RecordDataGeneralizations.php │ │ │ ├── RecordDatasetID.php │ │ │ ├── RecordDatasetName.php │ │ │ ├── RecordDynamicProperties.php │ │ │ ├── RecordInformationWithheld.php │ │ │ ├── RecordInstitutionCode.php │ │ │ ├── RecordInstitutionID.php │ │ │ ├── RecordOwnerInstitutionCode.php │ │ │ ├── RelatedResourceID.php │ │ │ ├── RelationshipAccordingTo.php │ │ │ ├── RelationshipEstablishedDate.php │ │ │ ├── RelationshipOfResource.php │ │ │ ├── RelationshipRemarks.php │ │ │ ├── ResourceID.php │ │ │ ├── ResourceRelationship.php │ │ │ ├── ResourceRelationshipID.php │ │ │ ├── Taxon.php │ │ │ ├── TaxonAcceptedNameUsage.php │ │ │ ├── TaxonAcceptedNameUsageID.php │ │ │ ├── TaxonClass.php │ │ │ ├── TaxonConceptID.php │ │ │ ├── TaxonFamily.php │ │ │ ├── TaxonGenus.php │ │ │ ├── TaxonHigherClassification.php │ │ │ ├── TaxonID.php │ │ │ ├── TaxonInfraspecificEpithet.php │ │ │ ├── TaxonKingdom.php │ │ │ ├── TaxonNameAccordingTo.php │ │ │ ├── TaxonNameAccordingToID.php │ │ │ ├── TaxonNamePublishedIn.php │ │ │ ├── TaxonNamePublishedInID.php │ │ │ ├── TaxonNamePublishedInYear.php │ │ │ ├── TaxonNomenclaturalCode.php │ │ │ ├── TaxonNomenclaturalStatus.php │ │ │ ├── TaxonOrder.php │ │ │ ├── TaxonOriginalNameUsage.php │ │ │ ├── TaxonOriginalNameUsageID.php │ │ │ ├── TaxonParentNameUsage.php │ │ │ ├── TaxonParentNameUsageID.php │ │ │ ├── TaxonPhylum.php │ │ │ ├── TaxonRank.php │ │ │ ├── TaxonRemarks.php │ │ │ ├── TaxonScientificName.php │ │ │ ├── TaxonScientificNameAuthorship.php │ │ │ ├── TaxonScientificNameID.php │ │ │ ├── TaxonSpecificEpithet.php │ │ │ ├── TaxonSubgenus.php │ │ │ ├── TaxonTaxonomicStatus.php │ │ │ ├── TaxonVerbatimTaxonRank.php │ │ │ ├── TaxonVernacularName.php │ │ │ └── TypeStatus.php │ │ ├── XMPExif │ │ │ ├── ApertureValue.php │ │ │ ├── BrightnessValue.php │ │ │ ├── CFAPattern.php │ │ │ ├── CFAPatternColumns.php │ │ │ ├── CFAPatternRows.php │ │ │ ├── CFAPatternValues.php │ │ │ ├── ColorSpace.php │ │ │ ├── ComponentsConfiguration.php │ │ │ ├── CompressedBitsPerPixel.php │ │ │ ├── Contrast.php │ │ │ ├── CustomRendered.php │ │ │ ├── DateTimeDigitized.php │ │ │ ├── DateTimeOriginal.php │ │ │ ├── DeviceSettingDescription.php │ │ │ ├── DeviceSettingDescriptionColumns.php │ │ │ ├── DeviceSettingDescriptionRows.php │ │ │ ├── DeviceSettingDescriptionSettings.php │ │ │ ├── DigitalZoomRatio.php │ │ │ ├── ExifImageHeight.php │ │ │ ├── ExifImageWidth.php │ │ │ ├── ExifVersion.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── ExposureIndex.php │ │ │ ├── ExposureMode.php │ │ │ ├── ExposureProgram.php │ │ │ ├── ExposureTime.php │ │ │ ├── FNumber.php │ │ │ ├── FileSource.php │ │ │ ├── Flash.php │ │ │ ├── FlashEnergy.php │ │ │ ├── FlashFired.php │ │ │ ├── FlashFunction.php │ │ │ ├── FlashMode.php │ │ │ ├── FlashRedEyeMode.php │ │ │ ├── FlashReturn.php │ │ │ ├── FlashpixVersion.php │ │ │ ├── FocalLength.php │ │ │ ├── FocalLengthIn35mmFormat.php │ │ │ ├── FocalPlaneResolutionUnit.php │ │ │ ├── FocalPlaneXResolution.php │ │ │ ├── FocalPlaneYResolution.php │ │ │ ├── GPSAltitude.php │ │ │ ├── GPSAltitudeRef.php │ │ │ ├── GPSAreaInformation.php │ │ │ ├── GPSDOP.php │ │ │ ├── GPSDateTime.php │ │ │ ├── GPSDestBearing.php │ │ │ ├── GPSDestBearingRef.php │ │ │ ├── GPSDestDistance.php │ │ │ ├── GPSDestDistanceRef.php │ │ │ ├── GPSDestLatitude.php │ │ │ ├── GPSDestLongitude.php │ │ │ ├── GPSDifferential.php │ │ │ ├── GPSHPositioningError.php │ │ │ ├── GPSImgDirection.php │ │ │ ├── GPSImgDirectionRef.php │ │ │ ├── GPSLatitude.php │ │ │ ├── GPSLongitude.php │ │ │ ├── GPSMapDatum.php │ │ │ ├── GPSMeasureMode.php │ │ │ ├── GPSProcessingMethod.php │ │ │ ├── GPSSatellites.php │ │ │ ├── GPSSpeed.php │ │ │ ├── GPSSpeedRef.php │ │ │ ├── GPSStatus.php │ │ │ ├── GPSTrack.php │ │ │ ├── GPSTrackRef.php │ │ │ ├── GPSVersionID.php │ │ │ ├── GainControl.php │ │ │ ├── ISO.php │ │ │ ├── ImageUniqueID.php │ │ │ ├── LightSource.php │ │ │ ├── MakerNote.php │ │ │ ├── MaxApertureValue.php │ │ │ ├── MeteringMode.php │ │ │ ├── NativeDigest.php │ │ │ ├── OECFColumns.php │ │ │ ├── OECFNames.php │ │ │ ├── OECFRows.php │ │ │ ├── OECFValues.php │ │ │ ├── OptoElectricConvFactor.php │ │ │ ├── RelatedSoundFile.php │ │ │ ├── Saturation.php │ │ │ ├── SceneCaptureType.php │ │ │ ├── SceneType.php │ │ │ ├── SensingMethod.php │ │ │ ├── Sharpness.php │ │ │ ├── ShutterSpeedValue.php │ │ │ ├── SpatialFrequencyResponse.php │ │ │ ├── SpatialFrequencyResponseColumns.php │ │ │ ├── SpatialFrequencyResponseNames.php │ │ │ ├── SpatialFrequencyResponseRows.php │ │ │ ├── SpatialFrequencyResponseValues.php │ │ │ ├── SpectralSensitivity.php │ │ │ ├── SubjectArea.php │ │ │ ├── SubjectDistance.php │ │ │ ├── SubjectDistanceRange.php │ │ │ ├── SubjectLocation.php │ │ │ ├── UserComment.php │ │ │ └── WhiteBalance.php │ │ ├── XMPExifEX │ │ │ ├── Gamma.php │ │ │ ├── ISOSpeed.php │ │ │ ├── ISOSpeedLatitudeyyy.php │ │ │ ├── ISOSpeedLatitudezzz.php │ │ │ ├── InteropIndex.php │ │ │ ├── LensInfo.php │ │ │ ├── LensMake.php │ │ │ ├── LensModel.php │ │ │ ├── LensSerialNumber.php │ │ │ ├── OwnerName.php │ │ │ ├── PhotographicSensitivity.php │ │ │ ├── RecommendedExposureIndex.php │ │ │ ├── SensitivityType.php │ │ │ ├── SerialNumber.php │ │ │ └── StandardOutputSensitivity.php │ │ ├── XMPExpressionmedia │ │ │ ├── CatalogSets.php │ │ │ ├── Event.php │ │ │ ├── People.php │ │ │ └── Status.php │ │ ├── XMPExtensis │ │ │ ├── Approved.php │ │ │ ├── ApprovedBy.php │ │ │ ├── ClientName.php │ │ │ ├── JobName.php │ │ │ ├── JobStatus.php │ │ │ ├── RoutedTo.php │ │ │ ├── RoutingNotes.php │ │ │ └── WorkToDo.php │ │ ├── XMPFpv │ │ │ └── RichTextComment.php │ │ ├── XMPGPano │ │ │ ├── CaptureSoftware.php │ │ │ ├── CroppedAreaImageHeightPixels.php │ │ │ ├── CroppedAreaImageWidthPixels.php │ │ │ ├── CroppedAreaLeftPixels.php │ │ │ ├── CroppedAreaTopPixels.php │ │ │ ├── ExposureLockUsed.php │ │ │ ├── FirstPhotoDate.php │ │ │ ├── FullPanoHeightPixels.php │ │ │ ├── FullPanoWidthPixels.php │ │ │ ├── InitialHorizontalFOVDegrees.php │ │ │ ├── InitialViewHeadingDegrees.php │ │ │ ├── InitialViewPitchDegrees.php │ │ │ ├── InitialViewRollDegrees.php │ │ │ ├── LargestValidInteriorRectHeight.php │ │ │ ├── LargestValidInteriorRectLeft.php │ │ │ ├── LargestValidInteriorRectTop.php │ │ │ ├── LargestValidInteriorRectWidth.php │ │ │ ├── LastPhotoDate.php │ │ │ ├── PoseHeadingDegrees.php │ │ │ ├── PosePitchDegrees.php │ │ │ ├── PoseRollDegrees.php │ │ │ ├── ProjectionType.php │ │ │ ├── SourcePhotosCount.php │ │ │ ├── StitchingSoftware.php │ │ │ └── UsePanoramaViewer.php │ │ ├── XMPGetty │ │ │ ├── OriginalFilename.php │ │ │ ├── ParentMEID.php │ │ │ └── Personality.php │ │ ├── XMPIcs │ │ │ ├── ImageRef.php │ │ │ ├── LabelName1.php │ │ │ ├── LabelName2.php │ │ │ ├── LabelName3.php │ │ │ ├── LabelName4.php │ │ │ ├── LabelName5.php │ │ │ ├── LabelName6.php │ │ │ ├── ParentReference1.php │ │ │ ├── ParentReference2.php │ │ │ ├── ParentReference3.php │ │ │ ├── ParentReference4.php │ │ │ ├── ParentReference5.php │ │ │ ├── ParentReference6.php │ │ │ ├── Reference1.php │ │ │ ├── Reference2.php │ │ │ ├── Reference3.php │ │ │ ├── Reference4.php │ │ │ ├── Reference5.php │ │ │ ├── Reference6.php │ │ │ ├── SubLabels4.php │ │ │ ├── SubLabels5.php │ │ │ ├── SubLables1.php │ │ │ ├── SubLables2.php │ │ │ ├── SubLables3.php │ │ │ ├── SubVersionFileName.php │ │ │ ├── SubVersionReference.php │ │ │ ├── SubVersions.php │ │ │ └── TagStructure.php │ │ ├── XMPIptcCore │ │ │ ├── CountryCode.php │ │ │ ├── CreatorAddress.php │ │ │ ├── CreatorCity.php │ │ │ ├── CreatorContactInfo.php │ │ │ ├── CreatorCountry.php │ │ │ ├── CreatorPostalCode.php │ │ │ ├── CreatorRegion.php │ │ │ ├── CreatorWorkEmail.php │ │ │ ├── CreatorWorkTelephone.php │ │ │ ├── CreatorWorkURL.php │ │ │ ├── IntellectualGenre.php │ │ │ ├── Location.php │ │ │ ├── Scene.php │ │ │ └── SubjectCode.php │ │ ├── XMPIptcExt │ │ │ ├── AboutCvTerm.php │ │ │ ├── AboutCvTermCvId.php │ │ │ ├── AboutCvTermId.php │ │ │ ├── AboutCvTermName.php │ │ │ ├── AboutCvTermRefinedAbout.php │ │ │ ├── AdditionalModelInformation.php │ │ │ ├── ArtworkCircaDateCreated.php │ │ │ ├── ArtworkContributionDescription.php │ │ │ ├── ArtworkCopyrightNotice.php │ │ │ ├── ArtworkCopyrightOwnerID.php │ │ │ ├── ArtworkCopyrightOwnerName.php │ │ │ ├── ArtworkCreator.php │ │ │ ├── ArtworkCreatorID.php │ │ │ ├── ArtworkDateCreated.php │ │ │ ├── ArtworkLicensorID.php │ │ │ ├── ArtworkLicensorName.php │ │ │ ├── ArtworkOrObject.php │ │ │ ├── ArtworkPhysicalDescription.php │ │ │ ├── ArtworkSContentDescription.php │ │ │ ├── ArtworkSource.php │ │ │ ├── ArtworkSourceInvURL.php │ │ │ ├── ArtworkSourceInventoryNo.php │ │ │ ├── ArtworkStylePeriod.php │ │ │ ├── ArtworkTitle.php │ │ │ ├── ControlledVocabularyTerm.php │ │ │ ├── DigitalImageGUID.php │ │ │ ├── DigitalSourceFileType.php │ │ │ ├── DigitalSourceType.php │ │ │ ├── EmbdEncRightsExpr.php │ │ │ ├── EmbeddedEncodedRightsExpr.php │ │ │ ├── EmbeddedEncodedRightsExprLangID.php │ │ │ ├── EmbeddedEncodedRightsExprType.php │ │ │ ├── Event.php │ │ │ ├── IPTCLastEdited.php │ │ │ ├── LinkedEncRightsExpr.php │ │ │ ├── LinkedEncodedRightsExpr.php │ │ │ ├── LinkedEncodedRightsExprLangID.php │ │ │ ├── LinkedEncodedRightsExprType.php │ │ │ ├── LocationCreated.php │ │ │ ├── LocationCreatedCity.php │ │ │ ├── LocationCreatedCountryCode.php │ │ │ ├── LocationCreatedCountryName.php │ │ │ ├── LocationCreatedLocationId.php │ │ │ ├── LocationCreatedProvinceState.php │ │ │ ├── LocationCreatedSublocation.php │ │ │ ├── LocationCreatedWorldRegion.php │ │ │ ├── LocationShown.php │ │ │ ├── LocationShownCity.php │ │ │ ├── LocationShownCountryCode.php │ │ │ ├── LocationShownCountryName.php │ │ │ ├── LocationShownLocationId.php │ │ │ ├── LocationShownProvinceState.php │ │ │ ├── LocationShownSublocation.php │ │ │ ├── LocationShownWorldRegion.php │ │ │ ├── MaxAvailHeight.php │ │ │ ├── MaxAvailWidth.php │ │ │ ├── ModelAge.php │ │ │ ├── OrganisationInImageCode.php │ │ │ ├── OrganisationInImageName.php │ │ │ ├── PersonInImage.php │ │ │ ├── PersonInImageCharacteristic.php │ │ │ ├── PersonInImageCvTermCvId.php │ │ │ ├── PersonInImageCvTermId.php │ │ │ ├── PersonInImageCvTermName.php │ │ │ ├── PersonInImageCvTermRefinedAbout.php │ │ │ ├── PersonInImageDescription.php │ │ │ ├── PersonInImageId.php │ │ │ ├── PersonInImageName.php │ │ │ ├── PersonInImageWDetails.php │ │ │ ├── ProductInImage.php │ │ │ ├── ProductInImageDescription.php │ │ │ ├── ProductInImageGTIN.php │ │ │ ├── ProductInImageName.php │ │ │ ├── RegistryID.php │ │ │ ├── RegistryItemID.php │ │ │ └── RegistryOrganisationID.php │ │ ├── XMPLr │ │ │ ├── HierarchicalSubject.php │ │ │ └── PrivateRTKInfo.php │ │ ├── XMPMP │ │ │ ├── RegionInfoDateRegionsValid.php │ │ │ ├── RegionInfoMP.php │ │ │ ├── RegionInfoRegions.php │ │ │ ├── RegionPersonDisplayName.php │ │ │ ├── RegionPersonEmailDigest.php │ │ │ ├── RegionPersonLiveIdCID.php │ │ │ ├── RegionPersonSourceID.php │ │ │ └── RegionRectangle.php │ │ ├── XMPMP1 │ │ │ ├── Brightness.php │ │ │ ├── CameraModelID.php │ │ │ ├── Contrast.php │ │ │ ├── ExposureCompensation.php │ │ │ ├── PanoramicStitchCameraMotion.php │ │ │ ├── PanoramicStitchMapType.php │ │ │ ├── PanoramicStitchPhi0.php │ │ │ ├── PanoramicStitchPhi1.php │ │ │ ├── PanoramicStitchTheta0.php │ │ │ ├── PanoramicStitchTheta1.php │ │ │ ├── PipelineVersion.php │ │ │ ├── StreamType.php │ │ │ ├── WhiteBalance0.php │ │ │ ├── WhiteBalance1.php │ │ │ └── WhiteBalance2.php │ │ ├── XMPMediapro │ │ │ ├── CatalogSets.php │ │ │ ├── Event.php │ │ │ ├── Location.php │ │ │ ├── People.php │ │ │ ├── Status.php │ │ │ └── UserFields.php │ │ ├── XMPMicrosoft │ │ │ ├── CameraSerialNumber.php │ │ │ ├── CreatorAppID.php │ │ │ ├── CreatorOpenWithUIOptions.php │ │ │ ├── DateAcquired.php │ │ │ ├── FlashManufacturer.php │ │ │ ├── FlashModel.php │ │ │ ├── LastKeywordIPTC.php │ │ │ ├── LastKeywordXMP.php │ │ │ ├── LensManufacturer.php │ │ │ ├── LensModel.php │ │ │ └── RatingPercent.php │ │ ├── XMPMwgColl │ │ │ ├── CollectionName.php │ │ │ ├── CollectionURI.php │ │ │ └── Collections.php │ │ ├── XMPMwgKw │ │ │ ├── HierarchicalKeywords.php │ │ │ ├── HierarchicalKeywords1.php │ │ │ ├── HierarchicalKeywords1Applied.php │ │ │ ├── HierarchicalKeywords1Children.php │ │ │ ├── HierarchicalKeywords2.php │ │ │ ├── HierarchicalKeywords2Applied.php │ │ │ ├── HierarchicalKeywords2Children.php │ │ │ ├── HierarchicalKeywords3.php │ │ │ ├── HierarchicalKeywords3Applied.php │ │ │ ├── HierarchicalKeywords3Children.php │ │ │ ├── HierarchicalKeywords4.php │ │ │ ├── HierarchicalKeywords4Applied.php │ │ │ ├── HierarchicalKeywords4Children.php │ │ │ ├── HierarchicalKeywords5.php │ │ │ ├── HierarchicalKeywords5Applied.php │ │ │ ├── HierarchicalKeywords5Children.php │ │ │ ├── HierarchicalKeywords6.php │ │ │ ├── HierarchicalKeywords6Applied.php │ │ │ └── KeywordInfo.php │ │ ├── XMPMwgRs │ │ │ ├── RegionAppliedToDimensions.php │ │ │ ├── RegionAppliedToDimensionsH.php │ │ │ ├── RegionAppliedToDimensionsUnit.php │ │ │ ├── RegionAppliedToDimensionsW.php │ │ │ ├── RegionArea.php │ │ │ ├── RegionAreaD.php │ │ │ ├── RegionAreaH.php │ │ │ ├── RegionAreaUnit.php │ │ │ ├── RegionAreaW.php │ │ │ ├── RegionAreaX.php │ │ │ ├── RegionAreaY.php │ │ │ ├── RegionBarCodeValue.php │ │ │ ├── RegionDescription.php │ │ │ ├── RegionExtensions.php │ │ │ ├── RegionFocusUsage.php │ │ │ ├── RegionInfo.php │ │ │ ├── RegionList.php │ │ │ ├── RegionName.php │ │ │ ├── RegionRotation.php │ │ │ ├── RegionSeeAlso.php │ │ │ └── RegionType.php │ │ ├── XMPPdf │ │ │ ├── Author.php │ │ │ ├── Copyright.php │ │ │ ├── CreationDate.php │ │ │ ├── Creator.php │ │ │ ├── Keywords.php │ │ │ ├── Marked.php │ │ │ ├── ModDate.php │ │ │ ├── PDFVersion.php │ │ │ ├── Producer.php │ │ │ ├── Subject.php │ │ │ ├── Title.php │ │ │ └── Trapped.php │ │ ├── XMPPhotomech │ │ │ ├── ColorClass.php │ │ │ ├── CountryCode.php │ │ │ ├── EditStatus.php │ │ │ ├── PMVersion.php │ │ │ ├── Prefs.php │ │ │ ├── Tagged.php │ │ │ └── TimeCreated.php │ │ ├── XMPPhotoshop │ │ │ ├── AuthorsPosition.php │ │ │ ├── CaptionWriter.php │ │ │ ├── Category.php │ │ │ ├── City.php │ │ │ ├── ColorMode.php │ │ │ ├── Country.php │ │ │ ├── Credit.php │ │ │ ├── DateCreated.php │ │ │ ├── DocumentAncestors.php │ │ │ ├── EmbeddedXMPDigest.php │ │ │ ├── Headline.php │ │ │ ├── History.php │ │ │ ├── ICCProfileName.php │ │ │ ├── Instructions.php │ │ │ ├── LegacyIPTCDigest.php │ │ │ ├── SidecarForExtension.php │ │ │ ├── Source.php │ │ │ ├── State.php │ │ │ ├── SupplementalCategories.php │ │ │ ├── TextLayerName.php │ │ │ ├── TextLayerText.php │ │ │ ├── TextLayers.php │ │ │ ├── TransmissionReference.php │ │ │ └── Urgency.php │ │ ├── XMPPixelLive │ │ │ ├── Author.php │ │ │ ├── Comments.php │ │ │ ├── Copyright.php │ │ │ ├── Date.php │ │ │ ├── Genre.php │ │ │ └── Title.php │ │ ├── XMPPlus │ │ │ ├── AdultContentWarning.php │ │ │ ├── CopyrightOwner.php │ │ │ ├── CopyrightOwnerID.php │ │ │ ├── CopyrightOwnerImageID.php │ │ │ ├── CopyrightOwnerName.php │ │ │ ├── CopyrightRegistrationNumber.php │ │ │ ├── CopyrightStatus.php │ │ │ ├── CreditLineRequired.php │ │ │ ├── Custom1.php │ │ │ ├── Custom10.php │ │ │ ├── Custom2.php │ │ │ ├── Custom3.php │ │ │ ├── Custom4.php │ │ │ ├── Custom5.php │ │ │ ├── Custom6.php │ │ │ ├── Custom7.php │ │ │ ├── Custom8.php │ │ │ ├── Custom9.php │ │ │ ├── EndUser.php │ │ │ ├── EndUserID.php │ │ │ ├── EndUserName.php │ │ │ ├── FileNameAsDelivered.php │ │ │ ├── FirstPublicationDate.php │ │ │ ├── ImageAlterationConstraints.php │ │ │ ├── ImageCreator.php │ │ │ ├── ImageCreatorID.php │ │ │ ├── ImageCreatorImageID.php │ │ │ ├── ImageCreatorName.php │ │ │ ├── ImageDuplicationConstraints.php │ │ │ ├── ImageFileConstraints.php │ │ │ ├── ImageFileFormatAsDelivered.php │ │ │ ├── ImageFileSizeAsDelivered.php │ │ │ ├── ImageSupplier.php │ │ │ ├── ImageSupplierID.php │ │ │ ├── ImageSupplierImageID.php │ │ │ ├── ImageSupplierName.php │ │ │ ├── ImageType.php │ │ │ ├── LicenseEndDate.php │ │ │ ├── LicenseID.php │ │ │ ├── LicenseStartDate.php │ │ │ ├── LicenseTransactionDate.php │ │ │ ├── Licensee.php │ │ │ ├── LicenseeID.php │ │ │ ├── LicenseeImageID.php │ │ │ ├── LicenseeImageNotes.php │ │ │ ├── LicenseeName.php │ │ │ ├── LicenseeProjectReference.php │ │ │ ├── LicenseeTransactionID.php │ │ │ ├── Licensor.php │ │ │ ├── LicensorCity.php │ │ │ ├── LicensorCountry.php │ │ │ ├── LicensorEmail.php │ │ │ ├── LicensorExtendedAddress.php │ │ │ ├── LicensorID.php │ │ │ ├── LicensorImageID.php │ │ │ ├── LicensorName.php │ │ │ ├── LicensorNotes.php │ │ │ ├── LicensorPostalCode.php │ │ │ ├── LicensorRegion.php │ │ │ ├── LicensorStreetAddress.php │ │ │ ├── LicensorTelephone1.php │ │ │ ├── LicensorTelephone2.php │ │ │ ├── LicensorTelephoneType1.php │ │ │ ├── LicensorTelephoneType2.php │ │ │ ├── LicensorTransactionID.php │ │ │ ├── LicensorURL.php │ │ │ ├── MediaConstraints.php │ │ │ ├── MediaSummaryCode.php │ │ │ ├── MinorModelAgeDisclosure.php │ │ │ ├── ModelReleaseID.php │ │ │ ├── ModelReleaseStatus.php │ │ │ ├── OtherConditions.php │ │ │ ├── OtherConstraints.php │ │ │ ├── OtherImageInfo.php │ │ │ ├── OtherLicenseDocuments.php │ │ │ ├── OtherLicenseInfo.php │ │ │ ├── OtherLicenseRequirements.php │ │ │ ├── PLUSVersion.php │ │ │ ├── ProductOrServiceConstraints.php │ │ │ ├── PropertyReleaseID.php │ │ │ ├── PropertyReleaseStatus.php │ │ │ ├── RegionConstraints.php │ │ │ ├── Reuse.php │ │ │ ├── TermsAndConditionsText.php │ │ │ └── TermsAndConditionsURL.php │ │ ├── XMPPmi │ │ │ ├── Color.php │ │ │ ├── ContactInfo.php │ │ │ ├── DisplayName.php │ │ │ ├── DistributorProductID.php │ │ │ ├── EventAlias.php │ │ │ ├── EventEnd.php │ │ │ ├── EventStart.php │ │ │ ├── EventSubtype.php │ │ │ ├── EventType.php │ │ │ ├── Field.php │ │ │ ├── Framing.php │ │ │ ├── Location.php │ │ │ ├── Make.php │ │ │ ├── Manufacturer.php │ │ │ ├── Model.php │ │ │ ├── ModelYear.php │ │ │ ├── ObjectDescription.php │ │ │ ├── ObjectSubtype.php │ │ │ ├── ObjectType.php │ │ │ ├── Orientation.php │ │ │ ├── PositionDescriptor.php │ │ │ ├── ProductID.php │ │ │ ├── ProductIDType.php │ │ │ ├── Season.php │ │ │ ├── SequenceName.php │ │ │ ├── SequenceNumber.php │ │ │ ├── SequenceTotalNumber.php │ │ │ ├── Setting.php │ │ │ ├── ShootID.php │ │ │ ├── SlideshowName.php │ │ │ ├── SlideshowNumber.php │ │ │ ├── SlideshowTotalNumber.php │ │ │ ├── Viewpoint.php │ │ │ └── VisualTechnique.php │ │ ├── XMPPrism │ │ │ ├── AcedemicField.php │ │ │ ├── AggregateIssueNumber.php │ │ │ ├── AggregationType.php │ │ │ ├── AlternateTitle.php │ │ │ ├── AlternateTitleALang.php │ │ │ ├── AlternateTitleAPlatform.php │ │ │ ├── AlternateTitleText.php │ │ │ ├── BlogTitle.php │ │ │ ├── BlogURL.php │ │ │ ├── BookEdition.php │ │ │ ├── ByteCount.php │ │ │ ├── Channel.php │ │ │ ├── ChannelALang.php │ │ │ ├── ChannelChannel.php │ │ │ ├── ChannelSubchannel1.php │ │ │ ├── ChannelSubchannel2.php │ │ │ ├── ChannelSubchannel3.php │ │ │ ├── ChannelSubchannel4.php │ │ │ ├── ComplianceProfile.php │ │ │ ├── ContentType.php │ │ │ ├── CopyrightYear.php │ │ │ ├── CorporateEntity.php │ │ │ ├── CoverDate.php │ │ │ ├── CoverDisplayDate.php │ │ │ ├── CreationDate.php │ │ │ ├── DOI.php │ │ │ ├── DateRecieved.php │ │ │ ├── Device.php │ │ │ ├── Distributor.php │ │ │ ├── EIssn.php │ │ │ ├── Edition.php │ │ │ ├── EndingPage.php │ │ │ ├── Event.php │ │ │ ├── Genre.php │ │ │ ├── HasAlternative.php │ │ │ ├── HasCorrection.php │ │ │ ├── HasCorrectionALang.php │ │ │ ├── HasCorrectionAPlatform.php │ │ │ ├── HasCorrectionText.php │ │ │ ├── HasTranslation.php │ │ │ ├── ISBN.php │ │ │ ├── ISSN.php │ │ │ ├── Industry.php │ │ │ ├── IsAlternativeOf.php │ │ │ ├── IsCorrectionOf.php │ │ │ ├── IsTranslationOf.php │ │ │ ├── IssueIdentifier.php │ │ │ ├── IssueName.php │ │ │ ├── IssueTeaser.php │ │ │ ├── IssueType.php │ │ │ ├── Keyword.php │ │ │ ├── KillDate.php │ │ │ ├── KillDateAPlatform.php │ │ │ ├── KillDateDate.php │ │ │ ├── Link.php │ │ │ ├── Location.php │ │ │ ├── ModificationDate.php │ │ │ ├── NationalCatalogNumber.php │ │ │ ├── Number.php │ │ │ ├── Object0.php │ │ │ ├── OffSaleDate.php │ │ │ ├── OffSaleDateAPlatform.php │ │ │ ├── OffSaleDateDate.php │ │ │ ├── OnSaleDate.php │ │ │ ├── OnSaleDateAPlatform.php │ │ │ ├── OnSaleDateDate.php │ │ │ ├── OnSaleDay.php │ │ │ ├── OnSaleDayAPlatform.php │ │ │ ├── OnSaleDayDay.php │ │ │ ├── Organization.php │ │ │ ├── OriginPlatform.php │ │ │ ├── PageCount.php │ │ │ ├── PageProgressionDirection.php │ │ │ ├── PageRange.php │ │ │ ├── Person.php │ │ │ ├── Platform.php │ │ │ ├── ProductCode.php │ │ │ ├── Profession.php │ │ │ ├── PublicationDate.php │ │ │ ├── PublicationDateAPlatform.php │ │ │ ├── PublicationDateDate.php │ │ │ ├── PublicationDisplayDate.php │ │ │ ├── PublicationDisplayDateAPlatform.php │ │ │ ├── PublicationDisplayDateDate.php │ │ │ ├── PublicationName.php │ │ │ ├── PublishingFrequency.php │ │ │ ├── Rating.php │ │ │ ├── SamplePageRange.php │ │ │ ├── Section.php │ │ │ ├── SellingAgency.php │ │ │ ├── SeriesNumber.php │ │ │ ├── SeriesTitle.php │ │ │ ├── Sport.php │ │ │ ├── StartingPage.php │ │ │ ├── Subsection1.php │ │ │ ├── Subsection2.php │ │ │ ├── Subsection3.php │ │ │ ├── Subsection4.php │ │ │ ├── Subtitle.php │ │ │ ├── SupplementDisplayID.php │ │ │ ├── SupplementStartingPage.php │ │ │ ├── SupplementTitle.php │ │ │ ├── Teaser.php │ │ │ ├── Ticker.php │ │ │ ├── TimePeriod.php │ │ │ ├── URL.php │ │ │ ├── URLAPlatform.php │ │ │ ├── URLUrl.php │ │ │ ├── UspsNumber.php │ │ │ ├── VersionIdentifier.php │ │ │ ├── Volume.php │ │ │ └── WordCount.php │ │ ├── XMPPrl │ │ │ ├── Geography.php │ │ │ ├── Industry.php │ │ │ └── Usage.php │ │ ├── XMPPrm │ │ │ ├── CookingEquipment.php │ │ │ ├── CookingMethod.php │ │ │ ├── Course.php │ │ │ ├── Cuisine.php │ │ │ ├── DietaryNeeds.php │ │ │ ├── DishType.php │ │ │ ├── Duration.php │ │ │ ├── IngredientExclusion.php │ │ │ ├── MainIngredient.php │ │ │ ├── Meal.php │ │ │ ├── RecipeEndingPage.php │ │ │ ├── RecipePageRange.php │ │ │ ├── RecipeSource.php │ │ │ ├── RecipeStartingPage.php │ │ │ ├── RecipeTitle.php │ │ │ ├── ServingSize.php │ │ │ ├── SkillLevel.php │ │ │ ├── SpecialOccasion.php │ │ │ └── Yield0.php │ │ ├── XMPPur │ │ │ ├── AdultContentWarning.php │ │ │ ├── Agreement.php │ │ │ ├── Copyright.php │ │ │ ├── CreditLine.php │ │ │ ├── EmbargoDate.php │ │ │ ├── ExclusivityEndDate.php │ │ │ ├── ExpirationDate.php │ │ │ ├── ImageSizeRestriction.php │ │ │ ├── OptionEndDate.php │ │ │ ├── Permissions.php │ │ │ ├── Restrictions.php │ │ │ ├── ReuseProhibited.php │ │ │ ├── RightsAgent.php │ │ │ └── RightsOwner.php │ │ ├── XMPRdf │ │ │ └── About.php │ │ ├── XMPSwf │ │ │ ├── BackgroundAlpha.php │ │ │ ├── ForwardLock.php │ │ │ ├── MaxStorage.php │ │ │ └── Type.php │ │ ├── XMPTiff │ │ │ ├── Artist.php │ │ │ ├── BitsPerSample.php │ │ │ ├── Compression.php │ │ │ ├── Copyright.php │ │ │ ├── DateTime.php │ │ │ ├── ImageDescription.php │ │ │ ├── ImageHeight.php │ │ │ ├── ImageWidth.php │ │ │ ├── Make.php │ │ │ ├── Model.php │ │ │ ├── NativeDigest.php │ │ │ ├── Orientation.php │ │ │ ├── PhotometricInterpretation.php │ │ │ ├── PlanarConfiguration.php │ │ │ ├── PrimaryChromaticities.php │ │ │ ├── ReferenceBlackWhite.php │ │ │ ├── ResolutionUnit.php │ │ │ ├── SamplesPerPixel.php │ │ │ ├── Software.php │ │ │ ├── TransferFunction.php │ │ │ ├── WhitePoint.php │ │ │ ├── XResolution.php │ │ │ ├── YCbCrCoefficients.php │ │ │ ├── YCbCrPositioning.php │ │ │ ├── YCbCrSubSampling.php │ │ │ └── YResolution.php │ │ ├── XMPX │ │ │ └── XMPToolkit.php │ │ ├── XMPXmp │ │ │ ├── Advisory.php │ │ │ ├── Author.php │ │ │ ├── BaseURL.php │ │ │ ├── CreateDate.php │ │ │ ├── CreatorTool.php │ │ │ ├── Description.php │ │ │ ├── Format.php │ │ │ ├── Identifier.php │ │ │ ├── Keywords.php │ │ │ ├── Label.php │ │ │ ├── MetadataDate.php │ │ │ ├── ModifyDate.php │ │ │ ├── Nickname.php │ │ │ ├── PageImage.php │ │ │ ├── PageImageFormat.php │ │ │ ├── PageImageHeight.php │ │ │ ├── PageImagePageNumber.php │ │ │ ├── PageImageWidth.php │ │ │ ├── PageInfo.php │ │ │ ├── Rating.php │ │ │ ├── ThumbnailFormat.php │ │ │ ├── ThumbnailHeight.php │ │ │ ├── ThumbnailImage.php │ │ │ ├── ThumbnailWidth.php │ │ │ ├── Thumbnails.php │ │ │ └── Title.php │ │ ├── XMPXmpBJ │ │ │ ├── JobRef.php │ │ │ ├── JobRefId.php │ │ │ ├── JobRefName.php │ │ │ └── JobRefUrl.php │ │ ├── XMPXmpDM │ │ │ ├── AbsPeakAudioFilePath.php │ │ │ ├── Album.php │ │ │ ├── AltTapeName.php │ │ │ ├── AltTimecode.php │ │ │ ├── AltTimecodeTimeFormat.php │ │ │ ├── AltTimecodeTimeValue.php │ │ │ ├── AltTimecodeValue.php │ │ │ ├── Artist.php │ │ │ ├── AudioChannelType.php │ │ │ ├── AudioCompressor.php │ │ │ ├── AudioModDate.php │ │ │ ├── AudioSampleRate.php │ │ │ ├── AudioSampleType.php │ │ │ ├── BeatSpliceParams.php │ │ │ ├── BeatSpliceParamsRiseInDecibel.php │ │ │ ├── BeatSpliceParamsRiseInTimeDuration.php │ │ │ ├── BeatSpliceParamsRiseInTimeDurationScale.php │ │ │ ├── BeatSpliceParamsRiseInTimeDurationValue.php │ │ │ ├── BeatSpliceParamsUseFileBeatsMarker.php │ │ │ ├── CameraAngle.php │ │ │ ├── CameraLabel.php │ │ │ ├── CameraModel.php │ │ │ ├── CameraMove.php │ │ │ ├── Client.php │ │ │ ├── Composer.php │ │ │ ├── ContributedMedia.php │ │ │ ├── ContributedMediaDuration.php │ │ │ ├── ContributedMediaDurationScale.php │ │ │ ├── ContributedMediaDurationValue.php │ │ │ ├── ContributedMediaManaged.php │ │ │ ├── ContributedMediaPath.php │ │ │ ├── ContributedMediaStartTime.php │ │ │ ├── ContributedMediaStartTimeScale.php │ │ │ ├── ContributedMediaStartTimeValue.php │ │ │ ├── ContributedMediaTrack.php │ │ │ ├── ContributedMediaWebStatement.php │ │ │ ├── Copyright.php │ │ │ ├── DMComment.php │ │ │ ├── Director.php │ │ │ ├── DirectorPhotography.php │ │ │ ├── DiscNumber.php │ │ │ ├── Duration.php │ │ │ ├── DurationScale.php │ │ │ ├── DurationValue.php │ │ │ ├── Engineer.php │ │ │ ├── FileDataRate.php │ │ │ ├── Genre.php │ │ │ ├── Good.php │ │ │ ├── Instrument.php │ │ │ ├── IntroTime.php │ │ │ ├── IntroTimeScale.php │ │ │ ├── IntroTimeValue.php │ │ │ ├── Key.php │ │ │ ├── LogComment.php │ │ │ ├── Loop.php │ │ │ ├── Lyrics.php │ │ │ ├── Markers.php │ │ │ ├── MarkersComment.php │ │ │ ├── MarkersCuePointParams.php │ │ │ ├── MarkersCuePointParamsKey.php │ │ │ ├── MarkersCuePointParamsValue.php │ │ │ ├── MarkersCuePointType.php │ │ │ ├── MarkersDuration.php │ │ │ ├── MarkersLocation.php │ │ │ ├── MarkersName.php │ │ │ ├── MarkersProbability.php │ │ │ ├── MarkersSpeaker.php │ │ │ ├── MarkersStartTime.php │ │ │ ├── MarkersTarget.php │ │ │ ├── MarkersType.php │ │ │ ├── MetadataModDate.php │ │ │ ├── NumberOfBeats.php │ │ │ ├── OutCue.php │ │ │ ├── OutCueScale.php │ │ │ ├── OutCueValue.php │ │ │ ├── PartOfCompilation.php │ │ │ ├── ProjectName.php │ │ │ ├── ProjectRef.php │ │ │ ├── ProjectRefPath.php │ │ │ ├── ProjectRefType.php │ │ │ ├── PullDown.php │ │ │ ├── RelativePeakAudioFilePath.php │ │ │ ├── RelativeTimestamp.php │ │ │ ├── RelativeTimestampScale.php │ │ │ ├── RelativeTimestampValue.php │ │ │ ├── ReleaseDate.php │ │ │ ├── ResampleParams.php │ │ │ ├── ResampleParamsQuality.php │ │ │ ├── ScaleType.php │ │ │ ├── Scene.php │ │ │ ├── ShotDate.php │ │ │ ├── ShotDay.php │ │ │ ├── ShotLocation.php │ │ │ ├── ShotName.php │ │ │ ├── ShotNumber.php │ │ │ ├── ShotSize.php │ │ │ ├── SpeakerPlacement.php │ │ │ ├── StartTimeSampleSize.php │ │ │ ├── StartTimeScale.php │ │ │ ├── StartTimecode.php │ │ │ ├── StartTimecodeTimeFormat.php │ │ │ ├── StartTimecodeTimeValue.php │ │ │ ├── StartTimecodeValue.php │ │ │ ├── StretchMode.php │ │ │ ├── TakeNumber.php │ │ │ ├── TapeName.php │ │ │ ├── Tempo.php │ │ │ ├── TimeScaleParams.php │ │ │ ├── TimeScaleParamsFrameOverlappingPercentage.php │ │ │ ├── TimeScaleParamsFrameSize.php │ │ │ ├── TimeScaleParamsQuality.php │ │ │ ├── TimeSignature.php │ │ │ ├── TrackNumber.php │ │ │ ├── Tracks.php │ │ │ ├── TracksFrameRate.php │ │ │ ├── TracksMarkers.php │ │ │ ├── TracksMarkersComment.php │ │ │ ├── TracksMarkersCuePointParams.php │ │ │ ├── TracksMarkersCuePointParamsKey.php │ │ │ ├── TracksMarkersCuePointParamsValue.php │ │ │ ├── TracksMarkersCuePointType.php │ │ │ ├── TracksMarkersDuration.php │ │ │ ├── TracksMarkersLocation.php │ │ │ ├── TracksMarkersName.php │ │ │ ├── TracksMarkersProbability.php │ │ │ ├── TracksMarkersSpeaker.php │ │ │ ├── TracksMarkersStartTime.php │ │ │ ├── TracksMarkersTarget.php │ │ │ ├── TracksMarkersType.php │ │ │ ├── TracksTrackName.php │ │ │ ├── TracksTrackType.php │ │ │ ├── VideoAlphaMode.php │ │ │ ├── VideoAlphaPremultipleColor.php │ │ │ ├── VideoAlphaPremultipleColorA.php │ │ │ ├── VideoAlphaPremultipleColorB.php │ │ │ ├── VideoAlphaPremultipleColorBlack.php │ │ │ ├── VideoAlphaPremultipleColorBlue.php │ │ │ ├── VideoAlphaPremultipleColorCyan.php │ │ │ ├── VideoAlphaPremultipleColorGreen.php │ │ │ ├── VideoAlphaPremultipleColorL.php │ │ │ ├── VideoAlphaPremultipleColorMagenta.php │ │ │ ├── VideoAlphaPremultipleColorMode.php │ │ │ ├── VideoAlphaPremultipleColorRed.php │ │ │ ├── VideoAlphaPremultipleColorSwatchName.php │ │ │ ├── VideoAlphaPremultipleColorTint.php │ │ │ ├── VideoAlphaPremultipleColorType.php │ │ │ ├── VideoAlphaPremultipleColorYellow.php │ │ │ ├── VideoAlphaUnityIsTransparent.php │ │ │ ├── VideoColorSpace.php │ │ │ ├── VideoCompressor.php │ │ │ ├── VideoFieldOrder.php │ │ │ ├── VideoFrameRate.php │ │ │ ├── VideoFrameSize.php │ │ │ ├── VideoFrameSizeH.php │ │ │ ├── VideoFrameSizeUnit.php │ │ │ ├── VideoFrameSizeW.php │ │ │ ├── VideoModDate.php │ │ │ ├── VideoPixelAspectRatio.php │ │ │ └── VideoPixelDepth.php │ │ ├── XMPXmpMM │ │ │ ├── DerivedFrom.php │ │ │ ├── DerivedFromAlternatePaths.php │ │ │ ├── DerivedFromDocumentID.php │ │ │ ├── DerivedFromFilePath.php │ │ │ ├── DerivedFromFromPart.php │ │ │ ├── DerivedFromInstanceID.php │ │ │ ├── DerivedFromLastModifyDate.php │ │ │ ├── DerivedFromManageTo.php │ │ │ ├── DerivedFromManageUI.php │ │ │ ├── DerivedFromManager.php │ │ │ ├── DerivedFromManagerVariant.php │ │ │ ├── DerivedFromMaskMarkers.php │ │ │ ├── DerivedFromOriginalDocumentID.php │ │ │ ├── DerivedFromPartMapping.php │ │ │ ├── DerivedFromRenditionClass.php │ │ │ ├── DerivedFromRenditionParams.php │ │ │ ├── DerivedFromToPart.php │ │ │ ├── DerivedFromVersionID.php │ │ │ ├── DocumentID.php │ │ │ ├── History.php │ │ │ ├── HistoryAction.php │ │ │ ├── HistoryChanged.php │ │ │ ├── HistoryInstanceID.php │ │ │ ├── HistoryParameters.php │ │ │ ├── HistorySoftwareAgent.php │ │ │ ├── HistoryWhen.php │ │ │ ├── Ingredients.php │ │ │ ├── IngredientsAlternatePaths.php │ │ │ ├── IngredientsDocumentID.php │ │ │ ├── IngredientsFilePath.php │ │ │ ├── IngredientsFromPart.php │ │ │ ├── IngredientsInstanceID.php │ │ │ ├── IngredientsLastModifyDate.php │ │ │ ├── IngredientsManageTo.php │ │ │ ├── IngredientsManageUI.php │ │ │ ├── IngredientsManager.php │ │ │ ├── IngredientsManagerVariant.php │ │ │ ├── IngredientsMaskMarkers.php │ │ │ ├── IngredientsOriginalDocumentID.php │ │ │ ├── IngredientsPartMapping.php │ │ │ ├── IngredientsRenditionClass.php │ │ │ ├── IngredientsRenditionParams.php │ │ │ ├── IngredientsToPart.php │ │ │ ├── IngredientsVersionID.php │ │ │ ├── InstanceID.php │ │ │ ├── LastURL.php │ │ │ ├── ManageTo.php │ │ │ ├── ManageUI.php │ │ │ ├── ManagedFrom.php │ │ │ ├── ManagedFromAlternatePaths.php │ │ │ ├── ManagedFromDocumentID.php │ │ │ ├── ManagedFromFilePath.php │ │ │ ├── ManagedFromFromPart.php │ │ │ ├── ManagedFromInstanceID.php │ │ │ ├── ManagedFromLastModifyDate.php │ │ │ ├── ManagedFromManageTo.php │ │ │ ├── ManagedFromManageUI.php │ │ │ ├── ManagedFromManager.php │ │ │ ├── ManagedFromManagerVariant.php │ │ │ ├── ManagedFromMaskMarkers.php │ │ │ ├── ManagedFromOriginalDocumentID.php │ │ │ ├── ManagedFromPartMapping.php │ │ │ ├── ManagedFromRenditionClass.php │ │ │ ├── ManagedFromRenditionParams.php │ │ │ ├── ManagedFromToPart.php │ │ │ ├── ManagedFromVersionID.php │ │ │ ├── Manager.php │ │ │ ├── ManagerVariant.php │ │ │ ├── Manifest.php │ │ │ ├── ManifestLinkForm.php │ │ │ ├── ManifestPlacedResolutionUnit.php │ │ │ ├── ManifestPlacedXResolution.php │ │ │ ├── ManifestPlacedYResolution.php │ │ │ ├── ManifestReference.php │ │ │ ├── ManifestReferenceAlternatePaths.php │ │ │ ├── ManifestReferenceDocumentID.php │ │ │ ├── ManifestReferenceFilePath.php │ │ │ ├── ManifestReferenceFromPart.php │ │ │ ├── ManifestReferenceInstanceID.php │ │ │ ├── ManifestReferenceLastModifyDate.php │ │ │ ├── ManifestReferenceManageTo.php │ │ │ ├── ManifestReferenceManageUI.php │ │ │ ├── ManifestReferenceManager.php │ │ │ ├── ManifestReferenceManagerVariant.php │ │ │ ├── ManifestReferenceMaskMarkers.php │ │ │ ├── ManifestReferenceOriginalDocumentID.php │ │ │ ├── ManifestReferencePartMapping.php │ │ │ ├── ManifestReferenceRenditionClass.php │ │ │ ├── ManifestReferenceRenditionParams.php │ │ │ ├── ManifestReferenceToPart.php │ │ │ ├── ManifestReferenceVersionID.php │ │ │ ├── OriginalDocumentID.php │ │ │ ├── Pantry.php │ │ │ ├── PreservedFileName.php │ │ │ ├── RenditionClass.php │ │ │ ├── RenditionOf.php │ │ │ ├── RenditionOfAlternatePaths.php │ │ │ ├── RenditionOfDocumentID.php │ │ │ ├── RenditionOfFilePath.php │ │ │ ├── RenditionOfFromPart.php │ │ │ ├── RenditionOfInstanceID.php │ │ │ ├── RenditionOfLastModifyDate.php │ │ │ ├── RenditionOfManageTo.php │ │ │ ├── RenditionOfManageUI.php │ │ │ ├── RenditionOfManager.php │ │ │ ├── RenditionOfManagerVariant.php │ │ │ ├── RenditionOfMaskMarkers.php │ │ │ ├── RenditionOfOriginalDocumentID.php │ │ │ ├── RenditionOfPartMapping.php │ │ │ ├── RenditionOfRenditionClass.php │ │ │ ├── RenditionOfRenditionParams.php │ │ │ ├── RenditionOfToPart.php │ │ │ ├── RenditionOfVersionID.php │ │ │ ├── RenditionParams.php │ │ │ ├── SaveID.php │ │ │ ├── Subject.php │ │ │ ├── VersionID.php │ │ │ ├── Versions.php │ │ │ ├── VersionsComments.php │ │ │ ├── VersionsEvent.php │ │ │ ├── VersionsEventAction.php │ │ │ ├── VersionsEventChanged.php │ │ │ ├── VersionsEventInstanceID.php │ │ │ ├── VersionsEventParameters.php │ │ │ ├── VersionsEventSoftwareAgent.php │ │ │ ├── VersionsEventWhen.php │ │ │ ├── VersionsModifier.php │ │ │ ├── VersionsModifyDate.php │ │ │ └── VersionsVersion.php │ │ ├── XMPXmpNote │ │ │ └── HasExtendedXMP.php │ │ ├── XMPXmpPLUS │ │ │ ├── CreditLineReq.php │ │ │ └── ReuseAllowed.php │ │ ├── XMPXmpRights │ │ │ ├── Certificate.php │ │ │ ├── Marked.php │ │ │ ├── Owner.php │ │ │ ├── UsageTerms.php │ │ │ └── WebStatement.php │ │ ├── XMPXmpTPg │ │ │ ├── ChildFontFiles.php │ │ │ ├── ColorantA.php │ │ │ ├── ColorantB.php │ │ │ ├── ColorantBlack.php │ │ │ ├── ColorantBlue.php │ │ │ ├── ColorantCyan.php │ │ │ ├── ColorantGreen.php │ │ │ ├── ColorantL.php │ │ │ ├── ColorantMagenta.php │ │ │ ├── ColorantMode.php │ │ │ ├── ColorantRed.php │ │ │ ├── ColorantSwatchName.php │ │ │ ├── ColorantTint.php │ │ │ ├── ColorantType.php │ │ │ ├── ColorantYellow.php │ │ │ ├── Colorants.php │ │ │ ├── FontComposite.php │ │ │ ├── FontFace.php │ │ │ ├── FontFamily.php │ │ │ ├── FontFileName.php │ │ │ ├── FontName.php │ │ │ ├── FontType.php │ │ │ ├── FontVersion.php │ │ │ ├── Fonts.php │ │ │ ├── MaxPageSize.php │ │ │ ├── MaxPageSizeH.php │ │ │ ├── MaxPageSizeUnit.php │ │ │ ├── MaxPageSizeW.php │ │ │ ├── NPages.php │ │ │ └── PlateNames.php │ │ └── ZIP │ │ │ ├── ArchivedFileName.php │ │ │ ├── Comment.php │ │ │ ├── CompressedSize.php │ │ │ ├── Compression.php │ │ │ ├── ExtraFlags.php │ │ │ ├── FileNameLength.php │ │ │ ├── Flags.php │ │ │ ├── ModifyDate.php │ │ │ ├── OperatingSystem.php │ │ │ ├── PackingMethod.php │ │ │ ├── UncompressedSize.php │ │ │ ├── ZipBitFlag.php │ │ │ ├── ZipCRC.php │ │ │ ├── ZipCompressedSize.php │ │ │ ├── ZipCompression.php │ │ │ ├── ZipFileName.php │ │ │ ├── ZipFileNameLength.php │ │ │ ├── ZipModifyDate.php │ │ │ ├── ZipRequiredVersion.php │ │ │ └── ZipUncompressedSize.php │ ├── TagFactory.php │ ├── TagInterface.php │ ├── TagProvider.php │ ├── Type │ │ ├── Arc.php │ │ ├── Binary.php │ │ ├── BitsRect.php │ │ ├── BitsRgn.php │ │ ├── Boolean.php │ │ ├── CompressedQuickTime.php │ │ ├── Date.php │ │ ├── Digits.php │ │ ├── DirectBitsRect.php │ │ ├── DirectBitsRgn.php │ │ ├── Double.php │ │ ├── Extended.php │ │ ├── Fixed16s.php │ │ ├── Fixed32s.php │ │ ├── Fixed32u.php │ │ ├── Float0.php │ │ ├── FontName.php │ │ ├── Int16Data.php │ │ ├── Int16s.php │ │ ├── Int16u.php │ │ ├── Int16uRev.php │ │ ├── Int32s.php │ │ ├── Int32u.php │ │ ├── Int32uData.php │ │ ├── Int32uRev.php │ │ ├── Int64s.php │ │ ├── Int64u.php │ │ ├── Int8s.php │ │ ├── Int8u.php │ │ ├── Int8u2Text.php │ │ ├── Int8uText.php │ │ ├── Integer.php │ │ ├── LangAlt.php │ │ ├── Null0.php │ │ ├── PixPat.php │ │ ├── Point.php │ │ ├── PointText.php │ │ ├── Polygon.php │ │ ├── Pstring.php │ │ ├── RGBColor.php │ │ ├── Rational.php │ │ ├── Rational32s.php │ │ ├── Rational32u.php │ │ ├── Rational64s.php │ │ ├── Rational64u.php │ │ ├── Real.php │ │ ├── Rect.php │ │ ├── Resize.php │ │ ├── Rgn.php │ │ ├── ShortLine.php │ │ ├── Signed.php │ │ ├── String0.php │ │ ├── Struct.php │ │ ├── Undef.php │ │ ├── Unknown.php │ │ ├── Unsigned.php │ │ ├── Utf8.php │ │ ├── VarInt16u.php │ │ ├── VarPstr32.php │ │ ├── VarString.php │ │ └── VarUstr32.php │ ├── TypeInterface.php │ └── Value │ │ ├── Binary.php │ │ ├── Mono.php │ │ ├── Multi.php │ │ └── ValueInterface.php │ ├── Exception │ ├── EmptyCollectionException.php │ ├── ExceptionInterface.php │ ├── InvalidArgumentException.php │ ├── LogicException.php │ ├── ParseError.php │ ├── RuntimeException.php │ └── TagUnknown.php │ ├── Exiftool.php │ ├── ExiftoolServer.php │ ├── FileEntity.php │ ├── InformationDumper.php │ ├── PHPExiftoolServiceProvider.php │ ├── PreviewExtractor.php │ ├── RDFParser.php │ ├── Reader.php │ ├── Tool │ └── Command │ │ └── ClassesBuilder.php │ └── Writer.php ├── phpunit-no-cc.xml.dist ├── phpunit.xml.dist ├── tests ├── files │ ├── ExifTool.jpg │ ├── ExifTool.xml │ ├── empty.xml │ ├── multiplefile.xml │ ├── pixelWithIcc.jpg │ ├── plop │ │ └── CanonRaw.cr2 │ └── simplefile.xml └── lib │ └── PHPExiftool │ └── Test │ ├── AbstractPreviewExtractorTest.php │ ├── AbstractReaderTest.php │ ├── AbstractWriterTest.php │ ├── Command │ ├── PreviewExtractor.php │ ├── ReaderTest.php │ └── WriterTest.php │ ├── Driver │ ├── Metadata │ │ ├── MetadataBagTest.php │ │ └── MetadataTest.php │ ├── TagFactoryTest.php │ ├── TagProviderTest.php │ └── Value │ │ ├── BinaryTest.php │ │ ├── MonoTest.php │ │ └── MultiTest.php │ ├── ExiftoolServerTest.php │ ├── ExiftoolTest.php │ ├── FileEntityTest.php │ ├── InformationDumperTest.php │ ├── PHPExiftoolServiceProviderTest.php │ ├── RDFParserTest.php │ └── Server │ ├── PreviewExtractor.php │ ├── ReaderTest.php │ └── WriterTest.php └── vendors.win.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | /vendor 3 | /tests/lib/PHPExiftool/Test/tmp/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/README.md -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/bin/console -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/composer.json -------------------------------------------------------------------------------- /lib/PHPExiftool/ClassUtils/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/ClassUtils/Builder.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/AbstractTag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/AbstractTag.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/AbstractType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/AbstractType.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/AFCP/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/AFCP/Text.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/AIFF/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/AIFF/Author.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/AIFF/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/AIFF/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/AIFF/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/AIFF/Name.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/APE/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/APE/Album.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/APE/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/APE/Artist.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/APE/Genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/APE/Genre.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/APE/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/APE/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/APE/ToolName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/APE/ToolName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/APE/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/APE/Track.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/APE/Year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/APE/Year.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Author.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Bitrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Bitrate.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Category.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Codec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Codec.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Composer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/DRM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/DRM.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/DRMKeyID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/DRMKeyID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/DVDID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/DVDID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Data.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Director.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Director.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Duration.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/FileID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/FileID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/FileSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/FileSize.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Flags.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Genre.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/GenreID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/GenreID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/HasAudio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/HasAudio.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/HasImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/HasImage.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/HasVideo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/HasVideo.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/ISRC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/ISRC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Index.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/IsVBR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/IsVBR.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Language.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Lyrics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Lyrics.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/MCDI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/MCDI.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Marker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Marker.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Mood.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Mood.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/NSCEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/NSCEmail.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/NSCName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/NSCName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/NSCPhone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/NSCPhone.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Padding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Padding.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Period.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Period.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Picture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Picture.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Preroll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Preroll.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Producer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Producer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Provider.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Rating.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Seekable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Seekable.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/SubTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/SubTitle.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Text.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/ToolName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/ToolName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Track.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/VBRPeak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/VBRPeak.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Writer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ASF/Year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ASF/Year.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Adobe/Adobe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Adobe/Adobe.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Audible/Year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Audible/Year.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Canon/Flavor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Canon/Flavor.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Canon/HDR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Canon/HDR.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Canon/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Canon/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/CanonVRD/XMP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/CanonVRD/XMP.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Casio/AFMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Casio/AFMode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Casio/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Casio/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/DBDt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/DBDt.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/Date.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/Grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/Grid.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/GridID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/GridID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/KVP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/KVP.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/MAC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/MAC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/Planes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/Planes.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/Rows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/Rows.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/SAR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/SAR.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/Swappf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/Swappf.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/Time.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/Trim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/Trim.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/UID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/UID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/Units.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/Units.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DICOM/VmaMod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DICOM/VmaMod.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DV/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DV/Duration.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DV/FrameRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DV/FrameRate.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DjVu/Gamma.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DjVu/Gamma.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DjVuMeta/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DjVuMeta/Key.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/DjVuMeta/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/DjVuMeta/URL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/EXE/CPUCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/EXE/CPUCount.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/EXE/CPUType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/EXE/CPUType.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/EXE/CodeSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/EXE/CodeSize.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/EXE/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/EXE/Comments.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/EXE/FileOS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/EXE/FileOS.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/EXE/PEType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/EXE/PEType.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/EXIF/EXIF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/EXIF/EXIF.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ExifIFD/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ExifIFD/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ExifIFD/Lens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ExifIFD/Lens.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ExifIFD/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ExifIFD/Site.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ExifTool/Now.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ExifTool/Now.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLAC/Padding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLAC/Padding.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLAC/Picture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLAC/Picture.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/BAHPVer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/BAHPVer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/BALPVer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/BALPVer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/BAVPVer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/BAVPVer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Battery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Battery.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/CamCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/CamCore.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/GIDCVer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/GIDCVer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/GIDPVer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/GIDPVer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/GIPCVer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/GIPCVer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/GIXIVer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/GIXIVer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Label0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Label0.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Label1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Label1.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Label2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Label2.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Label3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Label3.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/OffsetX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/OffsetX.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/OffsetY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/OffsetY.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Optics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Optics.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Palette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Palette.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Param0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Param0.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Param1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Param1.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Param2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Param2.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Param3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Param3.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/PiPX1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/PiPX1.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/PiPX2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/PiPX2.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/PiPY1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/PiPY1.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/PiPY2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/PiPY2.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/PlanckB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/PlanckB.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/PlanckF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/PlanckF.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/PlanckO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/PlanckO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Real2IR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Real2IR.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Units.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Units.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Value0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Value0.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Value1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Value1.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Value2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Value2.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FLIR/Value3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FLIR/Value3.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/Creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/Creator.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/FrameID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/FrameID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/Geosync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/Geosync.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/Geotag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/Geotag.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/Geotime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/Geotime.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/ID3Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/ID3Size.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/MaxVal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/MaxVal.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/Planes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/Planes.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/Project.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/Quality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/Quality.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/File/UserID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/File/UserID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Flash/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Flash/Name.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Flash/Stereo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Flash/Stereo.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Flash/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Flash/Time.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Flash/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Flash/Type.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Flash/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Flash/URL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/FlashPix/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/FlashPix/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Font/Ascent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Font/Ascent.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Font/EscChar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Font/EscChar.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Font/FSType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Font/FSType.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Font/Italic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Font/Italic.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Font/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Font/License.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Font/Notice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Font/Notice.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Font/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Font/Version.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Font/Weight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Font/Weight.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Font/XHeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Font/XHeight.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/GE/GEMake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/GE/GEMake.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/GE/GEModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/GE/GEModel.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/GE/Macro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/GE/Macro.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/GIF/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/GIF/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/GIF/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/GIF/Duration.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/GIF/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/GIF/Text.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/GIMP/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/GIMP/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/GPS/GPSDOP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/GPS/GPSDOP.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/GPS/GPSSpeed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/GPS/GPSSpeed.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/GPS/GPSTrack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/GPS/GPSTrack.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/H264/FNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/H264/FNumber.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/H264/Flash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/H264/Flash.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/H264/Focus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/H264/Focus.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/H264/Gain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/H264/Gain.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/H264/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/H264/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/H264/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/H264/Model.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HP/FNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HP/FNumber.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HP/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HP/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTML/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTML/Author.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTML/DocType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTML/DocType.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTML/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTML/Owner.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTML/ProgID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTML/ProgID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTML/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTML/Rating.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTML/Refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTML/Refresh.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTML/Robots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTML/Robots.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTML/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTML/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTMLDc/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTMLDc/Date.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTMLDc/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTMLDc/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/HTMLDc/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/HTMLDc/Type.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v1/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v1/Album.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v1/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v1/Artist.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v1/Genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v1/Genre.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v1/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v1/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v1/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v1/Track.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v1/Year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v1/Year.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/Album.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/Band.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/Band.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/Date.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/Genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/Genre.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/ISRC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/ISRC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/Media.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/Size.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/Time.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/Track.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v22/Year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v22/Year.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/Album.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/Band.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/Band.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/Date.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/Genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/Genre.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/ISRC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/ISRC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/Media.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/Size.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/Time.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/Track.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v23/Year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v23/Year.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v24/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v24/Album.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v24/Band.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v24/Band.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v24/Genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v24/Genre.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v24/ISRC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v24/ISRC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v24/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v24/Media.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v24/Mood.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v24/Mood.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v24/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v24/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ID3v24/Track.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ID3v24/Track.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/Artist.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/CropTop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/CropTop.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/IPTCNAA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/IPTCNAA.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/InkSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/InkSet.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/Model.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/PrintIM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/PrintIM.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/Rating.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/SEMInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/SEMInfo.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/TStop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/TStop.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IFD0/XPTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IFD0/XPTitle.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/ByLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/ByLine.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/City.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/Contact.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/Credit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/Credit.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/IPTC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/IPTC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/JobID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/JobID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/OwnerID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/OwnerID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/Prefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/Prefs.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/Source.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/SubFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/SubFile.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/IPTC/Urgency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/IPTC/Urgency.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ITC/DataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ITC/DataType.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ITC/TrackID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ITC/TrackID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/JPEG/Adobe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/JPEG/Adobe.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/JPEG/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/JPEG/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/JPEGHDR/Beta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/JPEGHDR/Beta.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/JPEGHDR/Ln0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/JPEGHDR/Ln0.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/JPEGHDR/Ln1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/JPEGHDR/Ln1.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/JPEGHDR/S2n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/JPEGHDR/S2n.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/JVC/Quality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/JVC/Quality.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Jpeg2000/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Jpeg2000/URL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Jpeg2000/XML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Jpeg2000/XML.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Kodak/AFMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Kodak/AFMode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Kodak/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Kodak/Date.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Kodak/Flash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Kodak/Flash.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Kodak/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Kodak/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Kodak/Macro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Kodak/Macro.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Kodak/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Kodak/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Kodak/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Kodak/Model.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Kodak/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Kodak/Time.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/KodakIFD/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/KodakIFD/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/LNK/CodePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/LNK/CodePage.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/LNK/Flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/LNK/Flags.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/LNK/FontName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/LNK/FontName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/LNK/FontSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/LNK/FontSize.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/LNK/HotKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/LNK/HotKey.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/LNK/NetName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/LNK/NetName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/LNK/VolumeID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/LNK/VolumeID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/CCDRect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/CCDRect.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/DataLen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/DataLen.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/Gamma.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/Gamma.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/HasICC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/HasICC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/LensID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/LensID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/Locks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/Locks.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/Npts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/Npts.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/Rect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/Rect.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/Scale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/Scale.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/Strobe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/Strobe.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Leaf/Tones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Leaf/Tones.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Lytro/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Lytro/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Lytro/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Lytro/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Lytro/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Lytro/Model.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MAC/Channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MAC/Channels.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIEDoc/EMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIEDoc/EMail.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIEDoc/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIEDoc/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIEDoc/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIEDoc/URL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIEGeo/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIEGeo/City.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIEGeo/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIEGeo/State.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Class0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Class0.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Colors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Colors.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Delay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Delay.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Depth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Depth.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Dispose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Dispose.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Gamma.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Gamma.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/ID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/ID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Label.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Matte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Matte.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Montage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Montage.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Packets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Packets.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Page.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Scene.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Scene.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MIFF/Units.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MIFF/Units.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/BitDepth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/BitDepth.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/CloneID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/CloneID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/Delay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/Delay.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/DeltaXY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/DeltaXY.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/Filter.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/Frame.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/LeftMag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/LeftMag.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/ObjectID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/ObjectID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/OffsetXY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/OffsetXY.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/Priority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/Priority.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/RightMag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/RightMag.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/ShowMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/ShowMode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/SourceID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/SourceID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/TargetXY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/TargetXY.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/TopMag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/TopMag.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/Viewable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/Viewable.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/XMag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/XMag.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/XMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/XMethod.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/YMag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/YMag.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MNG/YMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MNG/YMethod.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/ASIN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/ASIN.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/ASIN2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/ASIN2.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/Adult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/Adult.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/Author.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/CDEType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/CDEType.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/ISBN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/ISBN.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/Imprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/Imprint.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/Review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/Review.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/Rights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/Rights.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/Source.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOBI/Subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOBI/Subject.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MOI/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MOI/Duration.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MPC/FastSeek.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MPC/FastSeek.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MPC/Gapless.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MPC/Gapless.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MPC/MaxBand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MPC/MaxBand.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MPC/Quality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MPC/Quality.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MPEG/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MPEG/Encoder.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/AGICOAID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/AGICOAID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/AICI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/AICI.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/AdID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/AdID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/BICI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/BICI.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Bitrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Bitrate.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Bypass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Bypass.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/CityName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/CityName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ClipID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ClipID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ClipKind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ClipKind.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Csiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Csiz.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/CutPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/CutPoint.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/DOI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/DOI.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/DialNorm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/DialNorm.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Dither.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Dither.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Duration.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/EdgeCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/EdgeCode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/EditHint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/EditHint.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/EditRate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/EditRate.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Emphasis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Emphasis.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/FNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/FNumber.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Footer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Genre.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/GroupSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/GroupSet.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/IBTN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/IBTN.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ISAN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ISAN.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ISBD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ISBD.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ISBN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ISBN.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ISCI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ISCI.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ISMN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ISMN.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ISRC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ISRC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ISRN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ISRN.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ISSN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ISSN.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ISTC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ISTC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ISWC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ISWC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/IsDubbed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/IsDubbed.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/IsRepeat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/IsRepeat.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/IsSigned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/IsSigned.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ItemID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ItemID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ItemName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ItemName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/JobTitle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/JobTitle.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/KAGSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/KAGSize.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/KeyCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/KeyCode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/KeyData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/KeyData.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/KeyFrame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/KeyFrame.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/KeySound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/KeySound.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/KeyText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/KeyText.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Keywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Keywords.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/LUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/LUID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/LocalID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/LocalID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/LogoFlag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/LogoFlag.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/MIC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/MIC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/MainName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/MainName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/MarkIn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/MarkIn.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/MarkOut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/MarkOut.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/NOLACode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/NOLACode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Origin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Origin.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/PII.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/PII.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/PURL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/PURL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Packages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Packages.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Palette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Palette.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Password.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Purpose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Purpose.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Rating.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/RoleName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/RoleName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Rsiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Rsiz.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/SICI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/SICI.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/SMPTEUL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/SMPTEUL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Selected.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Selected.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Sequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Sequence.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ShimName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ShimName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/ShotList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/ShotList.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Size.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/StreamID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/StreamID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Theme.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/TrackID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/TrackID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Tracks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Tracks.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/UPID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/UPID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/UPN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/UPN.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/URL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/URN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/URN.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Username.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Username.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/VC1Level.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/VC1Level.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Value.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/XOsiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/XOsiz.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/XTOsiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/XTOsiz.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/XTsiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/XTsiz.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Xsiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Xsiz.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/YOsiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/YOsiz.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/YTOsiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/YTOsiz.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/YTsiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/YTsiz.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/MXF/Ysiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/MXF/Ysiz.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Minolta/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Minolta/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Minolta/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Minolta/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/NITF/Flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/NITF/Flags.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/NITF/Quality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/NITF/Quality.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Nikon/Focus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Nikon/Focus.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Nikon/HDR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Nikon/HDR.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Nikon/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Nikon/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Nikon/ISO2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Nikon/ISO2.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Nikon/Lens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Nikon/Lens.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Nikon/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Nikon/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Nikon/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Nikon/Model.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Nikon/VR0x66.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Nikon/VR0x66.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Nikon/VRMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Nikon/VRMode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Olympus/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Olympus/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Olympus/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Olympus/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/OpenEXR/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/OpenEXR/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PDF/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PDF/Author.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PDF/Creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PDF/Creator.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PDF/HasXFA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PDF/HasXFA.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PDF/Keywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PDF/Keywords.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PDF/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PDF/Language.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PDF/PageMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PDF/PageMode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PDF/Producer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PDF/Producer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PDF/Subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PDF/Subject.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PDF/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PDF/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PDF/Trapped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PDF/Trapped.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/BitsRgn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/BitsRgn.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/BkColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/BkColor.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/BkPat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/BkPat.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/ChExtra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/ChExtra.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/ClipRgn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/ClipRgn.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/DHText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/DHText.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/DVText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/DVText.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/FgColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/FgColor.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/FillArc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/FillArc.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/FillPat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/FillPat.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/FillRgn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/FillRgn.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/Line.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/Nop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/Nop.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/OpColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/OpColor.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/Origin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/Origin.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/OvSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/OvSize.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/PnMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/PnMode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/PnPat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/PnPat.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/PnSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/PnSize.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/SpExtra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/SpExtra.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/TxFace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/TxFace.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/TxFont.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/TxFont.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/TxMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/TxMode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/TxRatio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/TxRatio.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/TxSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/TxSize.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PICT/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PICT/Version.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Artist.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Author.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/BitDepth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/BitDepth.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/BlueX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/BlueX.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/BlueY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/BlueY.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Document.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Filter.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Gamma.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Gamma.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/GreenX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/GreenX.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/GreenY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/GreenY.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Label.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/ModDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/ModDate.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Model.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Palette.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Palette.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/RedX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/RedX.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/RedY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/RedY.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Software.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Software.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Source.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PNG/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PNG/URL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PSP/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PSP/Artist.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PSP/Planes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PSP/Planes.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PSP/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PSP/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/AEBXv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/AEBXv.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/AEISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/AEISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/AEXv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/AEXv.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/Date.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/HDR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/HDR.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/Hue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/Hue.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC1.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC10.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC11.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC11.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC12.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC12.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC14.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC15.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC15.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC3.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC4.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC5.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC6.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC7.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/LC8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/LC8.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/Model.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Pentax/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Pentax/Time.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/PhaseOne/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/PhaseOne/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Afsp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Afsp.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Artist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Artist.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/BaseURL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/BaseURL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Codec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Codec.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Country.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Cropped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Cropped.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Genre.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Length.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/LogoURL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/LogoURL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Medium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Medium.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Model.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/MusicBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/MusicBy.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/OldXMP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/OldXMP.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Part.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Product.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Quality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Quality.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Rate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Rate.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Rated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Rated.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Rating.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Source.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Subject.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/URL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Version.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RIFF/Year.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RIFF/Year.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RMETA/Lit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RMETA/Lit.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Author.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Category.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Comments.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Company.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Keywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Keywords.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Manager.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Pages.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Subject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Subject.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RTF/Words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RTF/Words.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Real/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Real/Text.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Real/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Real/URL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/RealRA5/Genr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/RealRA5/Genr.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Ricoh/Macro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Ricoh/Macro.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/SRF/DataKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/SRF/DataKey.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/SRF/SRF2Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/SRF/SRF2Key.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/SVG/ID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/SVG/ID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Samsung/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Samsung/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Samsung/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Samsung/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sanyo/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sanyo/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sanyo/Macro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sanyo/Macro.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sanyo/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sanyo/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sanyo/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sanyo/Model.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sigma/AFMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sigma/AFMode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sigma/Shadow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sigma/Shadow.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/SigmaRaw/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/SigmaRaw/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/AELock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/AELock.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/AFPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/AFPoint.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/AFType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/AFType.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/Barcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/Barcode.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/BaseISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/BaseISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/FNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/FNumber.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/Flash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/Flash.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/HDR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/HDR.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/Macro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/Macro.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/Quality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/Quality.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/Rating.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Sony/SonyISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Sony/SonyISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Torrent/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Torrent/Name.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/ABDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/ABDate.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/ABUID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/ABUID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/AIM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/AIM.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/Email.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/Gender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/Gender.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/ICQ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/ICQ.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/IMPP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/IMPP.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/Logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/Logo.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/Name.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/Note.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/Photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/Photo.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/Sound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/Sound.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/UID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/UID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/VCard/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/VCard/URL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Vorbis/Actor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Vorbis/Actor.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Vorbis/Album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Vorbis/Album.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Vorbis/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Vorbis/Date.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Vorbis/Genre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Vorbis/Genre.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/Vorbis/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/Vorbis/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Author.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Cast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Cast.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Category.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Client.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Company.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Division.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Division.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Duration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Duration.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Editor.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Group.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Keywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Keywords.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Language.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Lines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Lines.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/MMClips.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/MMClips.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Mailstop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Mailstop.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Manager.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Matter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Matter.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Notes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Notes.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Office.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Office.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Owner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Owner.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Pages.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Project.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Projects.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Purpose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Purpose.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Slides.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Slides.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Source.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Status.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Studio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Studio.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Template.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Typist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Typist.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XML/Words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XML/Words.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMP/XMP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMP/XMP.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPAas/CropH.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPAas/CropH.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPAas/CropW.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPAas/CropW.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPAas/CropX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPAas/CropX.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPAas/CropY.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPAas/CropY.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPAux/Lens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPAux/Lens.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPCrs/Tint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPCrs/Tint.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPCrs/What.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPCrs/What.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPDc/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPDc/Date.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPDc/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPDc/Format.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPDc/Rights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPDc/Rights.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPDc/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPDc/Source.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPDc/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPDc/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPDc/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPDc/Type.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPDex/CRC32.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPDex/CRC32.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPDex/FFID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPDex/FFID.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPDex/OS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPDex/OS.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPDwc/Taxon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPDwc/Taxon.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPExif/ISO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPExif/ISO.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPPdf/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPPdf/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPPmi/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPPmi/Color.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPPmi/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPPmi/Field.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPPmi/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPPmi/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPPmi/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPPmi/Model.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPPrism/DOI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPPrism/DOI.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPPrism/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPPrism/URL.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPPrl/Usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPPrl/Usage.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPPrm/Meal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPPrm/Meal.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPRdf/About.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPRdf/About.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPSwf/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPSwf/Type.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPTiff/Make.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPTiff/Make.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPXmp/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPXmp/Label.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPXmp/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPXmp/Title.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/XMPXmpDM/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/XMPXmpDM/Key.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ZIP/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ZIP/Comment.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ZIP/Flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ZIP/Flags.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Tag/ZIP/ZipCRC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Tag/ZIP/ZipCRC.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/TagFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/TagFactory.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/TagInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/TagInterface.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/TagProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/TagProvider.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Arc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Arc.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Binary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Binary.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/BitsRect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/BitsRect.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/BitsRgn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/BitsRgn.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Boolean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Boolean.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Date.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Digits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Digits.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Double.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Double.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Extended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Extended.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Fixed16s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Fixed16s.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Fixed32s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Fixed32s.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Fixed32u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Fixed32u.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Float0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Float0.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/FontName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/FontName.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int16Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int16Data.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int16s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int16s.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int16u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int16u.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int16uRev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int16uRev.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int32s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int32s.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int32u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int32u.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int32uData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int32uData.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int32uRev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int32uRev.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int64s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int64s.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int64u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int64u.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int8s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int8s.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int8u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int8u.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int8u2Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int8u2Text.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Int8uText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Int8uText.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Integer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/LangAlt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/LangAlt.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Null0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Null0.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/PixPat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/PixPat.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Point.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Point.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/PointText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/PointText.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Polygon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Polygon.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Pstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Pstring.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/RGBColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/RGBColor.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Rational.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Rational.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Rational32s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Rational32s.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Rational32u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Rational32u.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Rational64s.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Rational64s.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Rational64u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Rational64u.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Real.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Rect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Rect.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Resize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Resize.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Rgn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Rgn.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/ShortLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/ShortLine.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Signed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Signed.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/String0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/String0.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Struct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Struct.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Undef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Undef.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Unknown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Unknown.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Unsigned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Unsigned.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/Utf8.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/VarInt16u.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/VarInt16u.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/VarPstr32.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/VarPstr32.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/VarString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/VarString.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Type/VarUstr32.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Type/VarUstr32.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/TypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/TypeInterface.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Value/Binary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Value/Binary.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Value/Mono.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Value/Mono.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Driver/Value/Multi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Driver/Value/Multi.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Exception/ParseError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Exception/ParseError.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Exception/TagUnknown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Exception/TagUnknown.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Exiftool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Exiftool.php -------------------------------------------------------------------------------- /lib/PHPExiftool/ExiftoolServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/ExiftoolServer.php -------------------------------------------------------------------------------- /lib/PHPExiftool/FileEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/FileEntity.php -------------------------------------------------------------------------------- /lib/PHPExiftool/InformationDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/InformationDumper.php -------------------------------------------------------------------------------- /lib/PHPExiftool/PreviewExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/PreviewExtractor.php -------------------------------------------------------------------------------- /lib/PHPExiftool/RDFParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/RDFParser.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Reader.php -------------------------------------------------------------------------------- /lib/PHPExiftool/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/lib/PHPExiftool/Writer.php -------------------------------------------------------------------------------- /phpunit-no-cc.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/phpunit-no-cc.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/files/ExifTool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/tests/files/ExifTool.jpg -------------------------------------------------------------------------------- /tests/files/ExifTool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/tests/files/ExifTool.xml -------------------------------------------------------------------------------- /tests/files/empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/tests/files/empty.xml -------------------------------------------------------------------------------- /tests/files/multiplefile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/tests/files/multiplefile.xml -------------------------------------------------------------------------------- /tests/files/pixelWithIcc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/tests/files/pixelWithIcc.jpg -------------------------------------------------------------------------------- /tests/files/plop/CanonRaw.cr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/tests/files/plop/CanonRaw.cr2 -------------------------------------------------------------------------------- /tests/files/simplefile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/tests/files/simplefile.xml -------------------------------------------------------------------------------- /tests/lib/PHPExiftool/Test/ExiftoolTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/tests/lib/PHPExiftool/Test/ExiftoolTest.php -------------------------------------------------------------------------------- /vendors.win.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainneutron/PHPExiftool/HEAD/vendors.win.php --------------------------------------------------------------------------------