diff --git a/Resources/Constants.py b/Resources/Constants.py index df0d6a84b..4ee8bf4eb 100644 --- a/Resources/Constants.py +++ b/Resources/Constants.py @@ -30,6 +30,8 @@ class Constants: self.cpufriend_version = "1.2.3" self.nightshift_version = "1.1.0" self.smcspoof_version = "1.0.0" + self.cputscsync = "1.0.3" + self.hibernationfixup = "1.3.9" # Get resource path self.current_path = Path(__file__).parent.parent.resolve() @@ -132,6 +134,10 @@ class Constants: def nightshift_path(self): return self.payload_kexts_path / Path(f"Misc/NightShiftEnabler-v{self.nightshift_version}.zip") @property def smcspoof_path(self): return self.payload_kexts_path / Path(f"Misc/SMC-Spoof-v{self.smcspoof_version}.zip") + @property + def cputscsync_path(self): return self.payload_kexts_path / Path(f"Acidanthera/CpuTscSync-v{self.cputscsync}.zip") + @property + def hibernationfixup_path(self): return self.payload_kexts_path / Path(f"Acidanthera/HibernationFixup-v{self.hibernationfixup}.zip") # Build Location @property @@ -196,10 +202,12 @@ class Constants: # Apple Paylods Paths @property - def payload_apple_root_path(self): return self.payload_path / Path("Apple-Binaries-OCLP-main") + def payload_apple_root_path_unzip(self): return self.payload_path / Path("Apple-Binaries-OCLP-main") @property def payload_apple_root_path_zip(self): return self.payload_path / Path("Apple.zip") @property + def payload_apple_root_path(self): return self.payload_path / Path("Apple") + @property def payload_apple_kexts_path(self): return self.payload_apple_root_path / Path("Extensions") @property def payload_apple_frameworks_path(self): return self.payload_apple_root_path / Path("Frameworks") diff --git a/Resources/SysPatch.py b/Resources/SysPatch.py index 5ca83da24..fba397cfc 100644 --- a/Resources/SysPatch.py +++ b/Resources/SysPatch.py @@ -243,6 +243,10 @@ class PatchSysVolume: print("- Unzipping download...") try: zipfile.ZipFile(self.constants.payload_apple_root_path_zip).extractall(self.constants.payload_path) + print("- Renaming folder") + os.rename(self.constants.payload_apple_root_path_unzip, self.constants.payload_apple_root_path) + print("- Binaries downloaded to:") + print(self.constants.payload_path) except zipfile.BadZipFile: print("- Couldn't unzip") os.remove(self.constants.payload_apple_root_path_zip) diff --git a/Resources/build.py b/Resources/build.py index d18c3f75a..1415ad638 100644 --- a/Resources/build.py +++ b/Resources/build.py @@ -91,6 +91,9 @@ class BuildOpenCore: #("VoodooHDA.kext", self.constants.voodoohda_version, self.constants.voodoohda_path, lambda: self.model in ModelArray.LegacyAudio), # IDE patch ("AppleIntelPIIXATA.kext", self.constants.piixata_version, self.constants.piixata_path, lambda: self.model in ModelArray.IDEPatch), + # Hibernation Tests + #("CpuTscSync.kext", self.constants.cputscsync, self.constants.cputscsync_path, lambda: True), + #("HibernationFixup.kext", self.constants.hibernationfixup, self.constants.hibernationfixup_path, lambda: True), ]: self.enable_kext(name, version, path, check) diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Info.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Info.plist new file mode 100644 index 000000000..6a4ee9a5c --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Info.plist @@ -0,0 +1,156 @@ + + + + + BuildMachineOSBuild + 16B2657 + CFBundleDevelopmentRegion + English + CFBundleExecutable + AppleHDA + CFBundleGetInfoString + AppleHDA 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + CFBundleIdentifier + com.apple.driver.AppleHDA + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Apple HDA Driver + CFBundlePackageType + KEXT + CFBundleShortVersionString + 281.52 + CFBundleSignature + ???? + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 281.52 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 9P107g + DTPlatformVersion + GM + DTSDKBuild + 17G55 + DTSDKName + macosx10.13internal + DTXcode + 0930 + DTXcodeBuild + 9P107g + IOKitPersonalities + + HDA Driver + + CFBundleIdentifier + com.apple.driver.AppleHDA + IOClass + AppleHDADriver + IOProbeScore + 0 + IOProviderClass + AppleHDACodec + InputSampleLatency + 0 + MultiDisplayPorts + + 32 + 35 + 66 + + OutputSampleLatency + 0 + SampleOffsetPad + 0 + SystemSpecificSampleOffsetPad + + + LayoutID + 8 + SampleOffsetPad + 260 + + + + HDA Generic Codec Driver + + CFBundleIdentifier + com.apple.driver.AppleHDA + IOClass + AppleHDACodecGeneric + IOHDACodecFunctionGroupType + 1 + IOProviderClass + IOHDACodecFunction + + HDMI DP HDA Driver + + CFBundleIdentifier + com.apple.driver.AppleHDA + IOClass + AppleHDAHDMI_DPDriver + IOProbeScore + 1 + IOPropertyMatch + + HDMIDPAudioCapabilities + + + IOProviderClass + AppleHDACodec + InputSampleLatency + 0 + MultiDisplayPorts + + 32 + 35 + 66 + + OutputSampleLatency + 0 + SampleOffsetPad + 0 + SystemSpecificSampleOffsetPad + + + LayoutID + 8 + SampleOffsetPad + 260 + + + + + NSHumanReadableCopyright + AppleHDA 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + OSBundleLibraries + + com.apple.driver.AppleHDAController + 1.7.2a1 + com.apple.driver.DspFuncLib + 1.5.2a1 + com.apple.iokit.IOAudioFamily + 200.5 + com.apple.iokit.IOGraphicsFamily + 2.0 + com.apple.iokit.IOHDAFamily + 265.88 + com.apple.iokit.IONDRVSupport + 2.0 + com.apple.kpi.bsd + 8.0.0 + com.apple.kpi.iokit + 8.0.0 + com.apple.kpi.libkern + 8.0.0 + com.apple.kpi.mach + 8.0.0 + com.apple.kpi.private + 8.0.0 + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/MacOS/AppleHDA b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/MacOS/AppleHDA new file mode 100644 index 000000000..b22c4adcb Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/MacOS/AppleHDA differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/Info.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/Info.plist new file mode 100644 index 000000000..47b03a040 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/Info.plist @@ -0,0 +1,285 @@ + + + + + BuildMachineOSBuild + 16B2657 + CFBundleDevelopmentRegion + English + CFBundleExecutable + AppleHDAController + CFBundleGetInfoString + AppleHDAController 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + CFBundleIdentifier + com.apple.driver.AppleHDAController + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + HDA Controller Driver + CFBundlePackageType + KEXT + CFBundleShortVersionString + 281.52 + CFBundleSignature + ???? + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 281.52 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 9P107g + DTPlatformVersion + GM + DTSDKBuild + 17G55 + DTSDKName + macosx10.13internal + DTXcode + 0930 + DTXcodeBuild + 9P107g + IOKitPersonalities + + BuiltInHDA + + CFBundleIdentifier + com.apple.driver.AppleHDAController + CodecAddressFilterArray + + + CodecAddressMask + + AQAAAA== + + LayoutID + 16392 + PCIVendorDeviceID + 282987200 + + + CodecAddressMask + + AQAAAA== + + LayoutID + 0 + PCIVendorDeviceID + 282987200 + + + CodecAddressMask + + CQAAAA== + + LayoutID + 65 + PCIVendorDeviceID + 282987200 + + + CodecAddressMask + + AQAAAA== + + LayoutID + 73 + PCIVendorDeviceID + 282987200 + + + DPAlwaysDisplayRouting + + 3 + 33 + 35 + 88 + + DPAudioDeviceExclusion + + + ManufacturerID + 1552 + ProductID + 10130 + + + HighFIFOLimitSupport + + HwFactoryPrefixTranslation + + + LayoutID + 78 + SourceDID + 43584 + StandInDID + 43568 + VID + 4098 + + + LayoutID + 78 + SourceDID + 43576 + StandInDID + 43568 + VID + 4098 + + + LayoutID + 79 + SourceDID + 43584 + StandInDID + 43568 + VID + 4098 + + + LayoutID + 79 + SourceDID + 43576 + StandInDID + 43568 + VID + 4098 + + + IOClass + AppleHDAController + IOPCIClassMatch + 0x04010000&0xFFFD0000 + IOProviderClass + IOPCIDevice + RequireMaxBusStall + + + Layouts + + MaxBusStall + 15000 + + + + BuiltInHDA9D70 + + CFBundleIdentifier + com.apple.driver.AppleHDAController + DPAlwaysDisplayRouting + + 3 + 33 + 35 + 88 + + DPAudioDeviceExclusion + + + ManufacturerID + 1552 + ProductID + 10130 + + + HighFIFOLimitSupport + + HwFactoryPrefixTranslation + + + LayoutID + 78 + SourceDID + 43584 + StandInDID + 43568 + VID + 4098 + + + LayoutID + 78 + SourceDID + 43576 + StandInDID + 43568 + VID + 4098 + + + LayoutID + 79 + SourceDID + 43584 + StandInDID + 43568 + VID + 4098 + + + LayoutID + 79 + SourceDID + 43576 + StandInDID + 43568 + VID + 4098 + + + IOClass + AppleHDA8086_9D70Controller + IONameMatch + + pci8086,9d70 + + IOProbeScore + 2 + IOProviderClass + IOPCIDevice + RequireMaxBusStall + + + Layouts + + MaxBusStall + 15000 + + + + + NSHumanReadableCopyright + AppleHDAController 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + OSBundleCompatibleVersion + 1.0.0d1 + OSBundleLibraries + + com.apple.iokit.IOAudioFamily + 200.5 + com.apple.iokit.IOGraphicsFamily + 2.0 + com.apple.iokit.IOHDAFamily + 265.88 + com.apple.iokit.IOPCIFamily + 1.1 + com.apple.kpi.bsd + 8.0.0 + com.apple.kpi.iokit + 8.0.0 + com.apple.kpi.libkern + 8.0.0 + com.apple.kpi.mach + 8.0.0 + com.apple.kpi.private + 8.0.0 + com.apple.kpi.unsupported + 12.0 + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/MacOS/AppleHDAController b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/MacOS/AppleHDAController new file mode 100644 index 000000000..9d5e579c7 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/MacOS/AppleHDAController differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/_CodeSignature/CodeResources b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/_CodeSignature/CodeResources new file mode 100644 index 000000000..43aa30215 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/_CodeSignature/CodeResources @@ -0,0 +1,128 @@ + + + + + files + + version.plist + + MkagQ8RqPBVBLjUnVDMdBf0bdbA= + + + files2 + + version.plist + + hash2 + + 8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/version.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/version.plist new file mode 100644 index 000000000..bd9e7f43b --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAController.kext/Contents/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + AppleHDA + BuildVersion + 603 + CFBundleShortVersionString + 281.52 + CFBundleVersion + 281.52 + ProjectName + AppleHDA + SourceVersion + 281052000000000 + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/Info.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/Info.plist new file mode 100644 index 000000000..ce2b82be8 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/Info.plist @@ -0,0 +1,48 @@ + + + + + BuildMachineOSBuild + 16B2657 + CFBundleDevelopmentRegion + English + CFBundleExecutable + AppleHDAHALPlugIn + CFBundleGetInfoString + AppleHDAHALPlugIn 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + CFBundleIdentifier + com.apple.audio.AppleHDAHALPlugIn + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Apple HDA HAL Plug-in + CFBundlePackageType + BNDL + CFBundleShortVersionString + 281.52 + CFBundleSignature + aaud + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 281.52 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 9P107g + DTPlatformVersion + GM + DTSDKBuild + 17G1z + DTSDKName + macosx10.13internal + DTXcode + 0930 + DTXcodeBuild + 9P107g + NSHumanReadableCopyright + AppleHDAHALPlugIn 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn new file mode 100644 index 000000000..95f066617 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/_CodeSignature/CodeResources b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/_CodeSignature/CodeResources new file mode 100644 index 000000000..874fa0ead --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/_CodeSignature/CodeResources @@ -0,0 +1,128 @@ + + + + + files + + version.plist + + a5qT6AxomQnjhCdw2wlr7bw85F0= + + + files2 + + version.plist + + hash2 + + rz/HdLGPMBsupqNzQAn+OYfnsy1yG4sxFrDcxsshYUY= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/version.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/version.plist new file mode 100644 index 000000000..b5a559b83 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + AppleHDA + BuildVersion + 186 + CFBundleShortVersionString + 281.52 + CFBundleVersion + 281.52 + ProjectName + AppleHDA_frameworks + SourceVersion + 281052000000000 + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/Info.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/Info.plist new file mode 100644 index 000000000..e10640884 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/Info.plist @@ -0,0 +1,1083 @@ + + + + + BuildMachineOSBuild + 16B2657 + CFBundleDevelopmentRegion + English + CFBundleExecutable + AppleHDAHardwareConfigDriver + CFBundleGetInfoString + AppleHDAHardwareConfigDriver 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + CFBundleIdentifier + com.apple.driver.AppleHDAHardwareConfigDriver + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + HDA Hardware Config Driver + CFBundlePackageType + KEXT + CFBundleShortVersionString + 281.52 + CFBundleSignature + ???? + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 281.52 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 9P107g + DTPlatformVersion + GM + DTSDKBuild + 17G55 + DTSDKName + macosx10.13internal + DTXcode + 0930 + DTXcodeBuild + 9P107g + IOKitPersonalities + + HDA Hardware Config Resource + + CFBundleIdentifier + com.apple.driver.AppleHDAHardwareConfigDriver + HDAConfigDefault + + + CodecID + 269697544 + FuncGroup + 1 + LayoutID + 0 + + + CodecID + 269714441 + FuncGroup + 1 + LayoutID + 0 + + + CodecID + 269697544 + ConfigData + + AiccQAInHQACJx7GAicf0A== + + FuncGroup + 1 + LayoutID + 121 + + + CodecID + 269697544 + ConfigData + + AiccQAInHQACJx7GAicf0A== + + FuncGroup + 1 + LayoutID + 127 + + + CodecID + 269697544 + ConfigData + + AiccQAInHQACJx7GAicf0A== + + FuncGroup + 1 + LayoutID + 129 + + + AFGLowPowerState + + AwAAAA== + + CodecID + 283904133 + ConfigData + + AYccQAGHHXABhx4hAYcfAQGnHDABpx0BAace + EwGnH5ABlxwQAZcdMQGXHoEBlx8BAVccUAFX + HUEBVx4BAVcfAQH3HCAB9x3hAfcexQH3HwEB + 5xxgAecd4QHnHkUB5x8BAUcc8AFHHQABRx4A + AUcfQAFnHPABZx0AAWceAAFnH0ABdxzwAXcd + AAF3HgABdx9AAbcc8AG3HQABtx4AAbcfQAHH + HPABxx0AAcceAAHHH0AB1xzwAdcdAAHXHgAB + 1x9A + + FuncGroup + 1 + LayoutID + 0 + + + CodecID + 2206496384 + ConfigData + + ALccQAC3HXAAtx4hALcfAQDHHDAAxx0BAMce + EwDHH5AA9xwQAPcdMAD3HoEA9x8BAKccUACn + HUAApx4BAKcfAQEXHCABFx3gARcexQEXHwEB + BxxgAQcd4AEHHkUBBx8BANccDwDXHQAA1x4A + ANcfQADnHA8A5x0AAOceAADnH0ABVxwPAVcd + AAFXHgABVx9AAbccDwG3HQABtx4AAbcfQA== + + FuncGroup + 1 + LayoutID + 0 + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + ConfigData + + ABcgAAAXIQAAFyJrABcjEACXHFAAlx1wAJce + IQCXHwEApxxBAKcdYQCnHhAApx+QALccQAC3 + HWEAtx4QALcfkADHHCAAxx0BAMcegQDHH5EA + 1xwQANcdAQDXHqAA1x+QAOcc8ADnHQAA5x4A + AOcfQAD3HDAA9x0BAPcexQD3HwEBBxxgAQcd + AQEHHkUBBx8BAScc8AEnHQABJx4AAScfQAFX + HPABVx0AAVceAAFXH0A= + + FuncGroup + 1 + LayoutID + 0 + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + ConfigData + + APccQAD3HQAA9x7GAPcf0ACXHFAAlx0AAJce + wACXH9A= + + FuncGroup + 1 + LayoutID + 90 + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + ConfigData + + APccQAD3HQAA9x7GAPcf0ACXHFAAlx0AAJce + wACXH9A= + + FuncGroup + 1 + LayoutID + 92 + + + Codec + Wolfson WM8800 + CodecID + 451708928 + ConfigData + + ABcgAAAXIQAAFyIAABcjAAEXHFABFx1AARce + KwEXHwEBJxxAAScdAQEnHhABJx+QATccQQE3 + HQEBNx4QATcfkADXHBAA1x0BANceoADXH5AA + xxwgAMcdMADHHosAxx8BAPccYAD3HeAA9x5L + APcfAQEHHDABBx3gAQceywEHHwEA5xzwAOcd + AADnHgAA5x9AAWcc8AFnHQABZx4AAWcfQA== + + FuncGroup + 1 + LayoutID + 0 + + + CodecID + -2088470912 + ConfigData + + AKccUACnHUAApx4rAKcfAQC3HBAAtx0BALce + oAC3H5AAxxxAAMcdAQDHHhAAxx+QANcc8ADX + HQAA1x4AANcfQADnHPAA5x0AAOceAADnH0AA + 9xwgAPcdMAD3HosA9x8BAQccYAEHHeABBx5L + AQcfAQEXHDABFx3gARceywEXHwEBVxzwAVcd + AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA== + + FuncGroup + 1 + LayoutID + 2 + + + CodecID + -2088470912 + ConfigData + + AKccUACnHUAApx4rAKcfAQC3HBAAtx0BALce + oAC3H5AAxxxAAMcdAQDHHhAAxx+QANccQQDX + HQEA1x4QANcfkADnHPAA5x0AAOceAADnH0AA + 9xwgAPcdMAD3HosA9x8BAQccYAEHHeABBx5L + AQcfAQEXHDABFx3gARceywEXHwEBVxzwAVcd + AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA== + + FuncGroup + 1 + LayoutID + 4 + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + ConfigData + + APccQAD3HQAA9x7GAPcf0ACXHFAAlx0AAJce + wACXH9A= + + FuncGroup + 1 + LayoutID + 6 + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + ConfigData + + APccQAD3HQAA9x7GAPcf0ACXHFAAlx0AAJce + wACXH9A= + + FuncGroup + 1 + LayoutID + 7 + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + ConfigData + + APccQAD3HQAA9x7GAPcf0ACXHFAAlx0AAJce + wACXH9A= + + FuncGroup + 1 + LayoutID + 122 + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + ConfigData + + APccQAD3HQAA9x7GAPcf0ACXHFAAlx0AAJce + wACXH9A= + + FuncGroup + 1 + LayoutID + 130 + + + CodecID + -2088470912 + ConfigData + + AKccQACnHUAApx4rAKcfAQC3HPAAtx0AALce + AAC3H0AAxxwwAMcdAQDHHhAAxx+QANcc8ADX + HQAA1x4AANcfQADnHPAA5x0AAOceAADnH0AA + 9xwQAPcdMAD3HosA9x8BAQccUAEHHeABBx5L + AQcfAQEXHCABFx3gARceywEXHwEBVxzwAVcd + AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA== + + FuncGroup + 1 + LayoutID + 8 + + + CodecID + -2088470912 + ConfigData + + AKccUACnHUAApx4rAKcfAQC3HBAAtx0BALce + oAC3H5AAxxxAAMcdAQDHHhAAxx+QANccQQDX + HQEA1x4QANcfkADnHPAA5x0AAOceAADnH0AA + 9xwgAPcdMAD3HosA9x8BAQccYAEHHeABBx5L + AQcfAQEXHDABFx3gARceywEXHwEBVxzwAVcd + AAFXHgABVx9AAbcc8AG3HQABtx4AAbcfQA== + + FuncGroup + 1 + LayoutID + 10 + + + CodecID + 283904133 + ConfigData + + AZcdMAH3HeE= + + FuncGroup + 1 + LayoutID + 12 + + + CodecID + 283904133 + ConfigData + + AUcc8AFHHQABRx4AAUcfQAFXHDABVx1AAVce + AAFXHwEBZxzwAWcdAAFnHgABZx9AAXcc8AF3 + HQABdx4AAXcfQAGHHBABhx1AAYceIAGHHwEB + lxwgAZcdMAGXHoABlx8BAaccUAGnHQEBpx4Q + AacfkAG3HPABtx0AAbceAAG3H0ABxxzwAccd + AAHHHgABxx9AAdcc8AHXHQAB1x4AAdcfQAHn + HHAB5x3gAeceRQHnHwEB9xxgAfcd4AH3HsUB + 9x8B + + FuncGroup + 1 + LayoutID + 36 + + + CodecID + 283904133 + FuncGroup + 1 + LayoutID + 63 + MikeyAFGLowPowerState + + AQAAAA== + + + + CodecID + 283904133 + FuncGroup + 1 + LayoutID + 64 + MikeyAFGLowPowerState + + AQAAAA== + + + + CodecID + 269697542 + ConfigData + + AMcdMA== + + FuncGroup + 1 + LayoutID + 77 + + + AFGLowPowerState + + AwAAAA== + + CodecID + 269697542 + FuncGroup + 1 + LayoutID + 16392 + + + IOClass + AppleHDAHardwareConfigDriver + IOMatchCategory + AppleHDAHardwareConfigDriver + IOProviderClass + AppleHDAHardwareConfigDriverLoader + PostConstructionInitialization + + + CodecID + 269714441 + FuncGroup + 1 + Layouts + + 0 + + widgets + + + NodeID + 36 + PinConfigDefault + 2834464 + + + NodeID + 37 + PinConfigDefault + 1073742064 + + + NodeID + 38 + PinConfigDefault + 1073742064 + + + NodeID + 39 + PinConfigDefault + 1073742064 + + + NodeID + 40 + PinConfigDefault + 1073742064 + + + NodeID + 41 + PinConfigDefault + 1073742064 + + + NodeID + 42 + PinConfigDefault + 1073742064 + + + NodeID + 43 + PinConfigDefault + 1073742064 + + + NodeID + 44 + PinConfigDefault + 2416967952 + + + NodeID + 45 + PinConfigDefault + 2416967954 + + + NodeID + 46 + PinConfigDefault + 1073742064 + + + NodeID + 47 + PinConfigDefault + 1073742064 + + + NodeID + 48 + PinConfigDefault + 1073742064 + + + NodeID + 49 + PinConfigDefault + 1073742064 + + + NodeID + 50 + PinConfigDefault + 1073742064 + + + NodeID + 51 + PinConfigDefault + 1073742064 + + + NodeID + 52 + PinConfigDefault + 11243568 + + + NodeID + 53 + PinConfigDefault + 1073742064 + + + NodeID + 54 + PinConfigDefault + 1073742064 + + + NodeID + 55 + PinConfigDefault + 1073742064 + + + NodeID + 56 + PinConfigDefault + 1073742064 + + + NodeID + 57 + PinConfigDefault + 1073742064 + + + NodeID + 58 + PinConfigDefault + 1073742064 + + + NodeID + 59 + PinConfigDefault + 1073742064 + + + NodeID + 60 + PinConfigDefault + 1073742064 + + + NodeID + 61 + PinConfigDefault + 1073742064 + + + NodeID + 62 + PinConfigDefault + 1073742064 + + + NodeID + 63 + PinConfigDefault + 1073742064 + + + NodeID + 64 + PinConfigDefault + 1073742064 + + + NodeID + 65 + PinConfigDefault + 1073742064 + + + NodeID + 66 + PinConfigDefault + 1073742064 + + + NodeID + 67 + PinConfigDefault + 1073742064 + + + NodeID + 68 + PinConfigDefault + 2426798336 + + + NodeID + 69 + PinConfigDefault + 1073742064 + + + + + CodecID + 269714441 + FuncGroup + 1 + Layouts + + 54 + 55 + 57 + + widgets + + + NodeID + 69 + PinConfigDefault + 2426405121 + + + + + CodecID + 269697544 + FuncGroup + 1 + Layouts + + 0 + + widgets + + + NodeID + 16 + PinConfigDefault + 1073742064 + + + NodeID + 17 + PinConfigDefault + 1073742064 + + + NodeID + 18 + PinConfigDefault + 2416967952 + + + NodeID + 19 + PinConfigDefault + 720928 + + + NodeID + 20 + PinConfigDefault + 1073742064 + + + NodeID + 21 + PinConfigDefault + 1073742064 + + + NodeID + 22 + PinConfigDefault + 1073742064 + + + NodeID + 23 + PinConfigDefault + 1073742064 + + + NodeID + 24 + PinConfigDefault + 1073742064 + + + NodeID + 25 + PinConfigDefault + 1073742064 + + + NodeID + 26 + PinConfigDefault + 1073742064 + + + NodeID + 27 + PinConfigDefault + 1073742064 + + + NodeID + 28 + PinConfigDefault + 1073742064 + + + NodeID + 29 + PinConfigDefault + 1073742064 + + + NodeID + 30 + PinConfigDefault + 1073742064 + + + NodeID + 31 + PinConfigDefault + 1073742064 + + + NodeID + 32 + PinConfigDefault + 1073742064 + + + NodeID + 33 + PinConfigDefault + 21299248 + + + NodeID + 34 + PinConfigDefault + 1073742064 + + + + + CodecID + 269697544 + FuncGroup + 1 + Layouts + + 114 + + widgets + + + NodeID + 19 + PinConfigDefault + 1073742064 + + + NodeID + 29 + PinConfigDefault + 2416967952 + + + + + CodecID + 269697544 + FuncGroup + 1 + Layouts + + 108 + 131 + + widgets + + + NodeID + 23 + PinConfigDefault + 9121792 + + + NodeID + 34 + PinConfigDefault + 13361168 + + + + + CodecID + 269697544 + FuncGroup + 1 + Layouts + + 121 + 127 + 129 + + widgets + + + NodeID + 34 + PinConfigDefault + 13361168 + + + + + CodecID + 269697544 + FuncGroup + 1 + Layouts + + 120 + + widgets + + + NodeID + 18 + PinConfigDefault + 2417426704 + + + + + CodecID + 269697544 + FuncGroup + 1 + Layouts + + 121 + + widgets + + + NodeID + 34 + PinConfigDefault + 3502637120 + + + + + CodecID + 269697544 + FuncGroup + 1 + Layouts + + 127 + + widgets + + + NodeID + 34 + PinConfigDefault + 3502637120 + + + + + CodecID + 269697544 + FuncGroup + 1 + Layouts + + 129 + + widgets + + + NodeID + 34 + PinConfigDefault + 3502637120 + + + + + CodecID + 283904133 + Layouts + + 36 + 38 + 52 + 53 + + widgets + + + MicAttributes + 28 + MicInfo + Sampled on rising edge + NodeID + 39 + PinConfigDefault + 2426405136 + + + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + Layouts + + 0 + + widgets + + + NodeID + 22 + PinConfigDefault + 1073742064 + + + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + Layouts + + 71 + + widgets + + + NodeID + 23 + PinConfigDefault + 2416968002 + + + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + Layouts + + 83 + + widgets + + + NodeID + 24 + PinConfigDefault + 2416968001 + + + + + Codec + Cirrus Logic CS4206 + CodecID + 269697542 + Layouts + + 90 + 92 + 6 + 7 + 122 + 130 + + widgets + + + NodeID + 24 + PinConfigDefault + 2416967952 + + + + + Codec + Wolfson WM8800 + CodecID + 451708928 + Layouts + + 67 + 73 + + widgets + + + MicInfo + WM8800 External Microphone Virtual Pin Complex + NodeID + 24 + PinConfigDefault + 28020848 + + + + + + + NSHumanReadableCopyright + AppleHDAHardwareConfigDriver 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + OSBundleLibraries + + com.apple.kpi.iokit + 8.0.0b3 + com.apple.kpi.libkern + 8.0.0b3 + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/MacOS/AppleHDAHardwareConfigDriver b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/MacOS/AppleHDAHardwareConfigDriver new file mode 100644 index 000000000..d126f1860 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/MacOS/AppleHDAHardwareConfigDriver differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/_CodeSignature/CodeResources b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/_CodeSignature/CodeResources new file mode 100644 index 000000000..43aa30215 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/_CodeSignature/CodeResources @@ -0,0 +1,128 @@ + + + + + files + + version.plist + + MkagQ8RqPBVBLjUnVDMdBf0bdbA= + + + files2 + + version.plist + + hash2 + + 8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/version.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/version.plist new file mode 100644 index 000000000..bd9e7f43b --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleHDAHardwareConfigDriver.kext/Contents/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + AppleHDA + BuildVersion + 603 + CFBundleShortVersionString + 281.52 + CFBundleVersion + 281.52 + ProjectName + AppleHDA + SourceVersion + 281052000000000 + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/Info.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/Info.plist new file mode 100644 index 000000000..1a25a2f2f --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/Info.plist @@ -0,0 +1,81 @@ + + + + + BuildMachineOSBuild + 16B2657 + CFBundleDevelopmentRegion + English + CFBundleExecutable + AppleMikeyDriver + CFBundleGetInfoString + AppleMikeyDriver 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + CFBundleIdentifier + com.apple.driver.AppleMikeyDriver + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Apple Mikey Driver + CFBundlePackageType + KEXT + CFBundleShortVersionString + 281.52 + CFBundleSignature + ???? + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 281.52 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 9P107g + DTPlatformVersion + GM + DTSDKBuild + 17G55 + DTSDKName + macosx10.13internal + DTXcode + 0930 + DTXcodeBuild + 9P107g + IOKitPersonalities + + AppleMikeyDriver + + CFBundleIdentifier + com.apple.driver.AppleMikeyDriver + IOClass + AppleMikeyDriver + IONameMatch + + mikey + MKY0 + MKY1 + + IOProviderClass + AppleSMBusDevice + + + NSHumanReadableCopyright + AppleMikeyDriver 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + OSBundleLibraries + + com.apple.driver.AppleSMBusController + 1.0.1d0 + com.apple.iokit.IOACPIFamily + 1.2.0a1 + com.apple.kpi.bsd + 8.0.0b3 + com.apple.kpi.iokit + 8.0.0b3 + com.apple.kpi.libkern + 8.0.0b3 + com.apple.kpi.mach + 8.0.0b3 + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/MacOS/AppleMikeyDriver b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/MacOS/AppleMikeyDriver new file mode 100644 index 000000000..fde280672 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/MacOS/AppleMikeyDriver differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/_CodeSignature/CodeResources b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/_CodeSignature/CodeResources new file mode 100644 index 000000000..43aa30215 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/_CodeSignature/CodeResources @@ -0,0 +1,128 @@ + + + + + files + + version.plist + + MkagQ8RqPBVBLjUnVDMdBf0bdbA= + + + files2 + + version.plist + + hash2 + + 8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/version.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/version.plist new file mode 100644 index 000000000..bd9e7f43b --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/AppleMikeyDriver.kext/Contents/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + AppleHDA + BuildVersion + 603 + CFBundleShortVersionString + 281.52 + CFBundleVersion + 281.52 + ProjectName + AppleHDA + SourceVersion + 281052000000000 + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/Info.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/Info.plist new file mode 100644 index 000000000..717fd7b66 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/Info.plist @@ -0,0 +1,73 @@ + + + + + BuildMachineOSBuild + 16B2657 + CFBundleDevelopmentRegion + English + CFBundleExecutable + DspFuncLib + CFBundleGetInfoString + DspFuncLib 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + CFBundleIdentifier + com.apple.driver.DspFuncLib + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Apple Dsp Function Library + CFBundlePackageType + KEXT + CFBundleShortVersionString + 281.52 + CFBundleSignature + ???? + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 281.52 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 9P107g + DTPlatformVersion + GM + DTSDKBuild + 17G55 + DTSDKName + macosx10.13internal + DTXcode + 0930 + DTXcodeBuild + 9P107g + IOKitPersonalities + + NSHumanReadableCopyright + DspFuncLib 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + OSBundleCompatibleVersion + 1.0.0a1 + OSBundleLibraries + + com.apple.driver.AppleEFINVRAM + 2.0.0 + com.apple.iokit.IOAudioFamily + 1.7.0fc16 + com.apple.kext.OSvKernDSPLib + 1.9 + com.apple.kpi.bsd + 8.0.0b3 + com.apple.kpi.iokit + 8.0.0b3 + com.apple.kpi.libkern + 8.0.0b3 + com.apple.kpi.mach + 8.0.0b3 + com.apple.kpi.private + 8.0.0b3 + com.apple.vecLib.kext + 1.0 + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/MacOS/DspFuncLib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/MacOS/DspFuncLib new file mode 100644 index 000000000..f0204c71c Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/MacOS/DspFuncLib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/_CodeSignature/CodeResources b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/_CodeSignature/CodeResources new file mode 100644 index 000000000..43aa30215 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/_CodeSignature/CodeResources @@ -0,0 +1,128 @@ + + + + + files + + version.plist + + MkagQ8RqPBVBLjUnVDMdBf0bdbA= + + + files2 + + version.plist + + hash2 + + 8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/version.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/version.plist new file mode 100644 index 000000000..bd9e7f43b --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/DspFuncLib.kext/Contents/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + AppleHDA + BuildVersion + 603 + CFBundleShortVersionString + 281.52 + CFBundleVersion + 281.52 + ProjectName + AppleHDA + SourceVersion + 281052000000000 + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/Info.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/Info.plist new file mode 100644 index 000000000..eb271e4e6 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/Info.plist @@ -0,0 +1,73 @@ + + + + + BuildMachineOSBuild + 16B2657 + CFBundleDevelopmentRegion + English + CFBundleExecutable + IOHDAFamily + CFBundleGetInfoString + IOHDAFamily 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + CFBundleIdentifier + com.apple.iokit.IOHDAFamily + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + I/O Kit High Definition Audio Family + CFBundlePackageType + KEXT + CFBundleShortVersionString + 281.52 + CFBundleSignature + ???? + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 281.52 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 9P107g + DTPlatformVersion + GM + DTSDKBuild + 17G55 + DTSDKName + macosx10.13internal + DTXcode + 0930 + DTXcodeBuild + 9P107g + IOKitPersonalities + + HD Audio Codec + + CFBundleIdentifier + com.apple.iokit.IOHDAFamily + IOClass + IOHDACodecDriver + IOProviderClass + IOHDACodecDevice + + + NSHumanReadableCopyright + IOHDAFamily 281.52, Copyright © 2000-2017 Apple Inc. All rights reserved. + OSBundleCompatibleVersion + 1.0.0d1 + OSBundleLibraries + + com.apple.kpi.bsd + 8.0.0 + com.apple.kpi.iokit + 8.0.0 + com.apple.kpi.libkern + 8.0.0 + com.apple.kpi.mach + 8.0.0 + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/MacOS/IOHDAFamily b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/MacOS/IOHDAFamily new file mode 100644 index 000000000..08a061ec4 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/MacOS/IOHDAFamily differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/_CodeSignature/CodeResources b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/_CodeSignature/CodeResources new file mode 100644 index 000000000..43aa30215 --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/_CodeSignature/CodeResources @@ -0,0 +1,128 @@ + + + + + files + + version.plist + + MkagQ8RqPBVBLjUnVDMdBf0bdbA= + + + files2 + + version.plist + + hash2 + + 8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/version.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/version.plist new file mode 100644 index 000000000..bd9e7f43b --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/PlugIns/IOHDAFamily.kext/Contents/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + AppleHDA + BuildVersion + 603 + CFBundleShortVersionString + 281.52 + CFBundleVersion + 281.52 + ProjectName + AppleHDA + SourceVersion + 281052000000000 + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Dutch.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Dutch.lproj/Localizable.strings new file mode 100644 index 000000000..c85572382 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Dutch.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/English.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/English.lproj/Localizable.strings new file mode 100644 index 000000000..a9b8de8a3 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/English.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/French.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/French.lproj/Localizable.strings new file mode 100644 index 000000000..8feb7ba1d Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/French.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/German.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/German.lproj/Localizable.strings new file mode 100644 index 000000000..361aa8f0d Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/German.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Italian.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Italian.lproj/Localizable.strings new file mode 100644 index 000000000..10af6ec7b Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Italian.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Japanese.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Japanese.lproj/Localizable.strings new file mode 100644 index 000000000..c1f1c54bf Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Japanese.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Platforms.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Platforms.xml.zlib new file mode 100644 index 000000000..82e3fedd8 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Platforms.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Spanish.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Spanish.lproj/Localizable.strings new file mode 100644 index 000000000..c89d5a99b Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/Spanish.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ar.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ar.lproj/Localizable.strings new file mode 100644 index 000000000..c52cf7852 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ar.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ca.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ca.lproj/Localizable.strings new file mode 100644 index 000000000..7080ce18d Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ca.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/cs.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/cs.lproj/Localizable.strings new file mode 100644 index 000000000..b30b6ead5 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/cs.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/da.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/da.lproj/Localizable.strings new file mode 100644 index 000000000..2134153c9 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/da.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/el.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/el.lproj/Localizable.strings new file mode 100644 index 000000000..608b10ef0 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/el.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/es_419.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/es_419.lproj/Localizable.strings new file mode 100644 index 000000000..196831bf0 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/es_419.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/fi.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/fi.lproj/Localizable.strings new file mode 100644 index 000000000..dd8d58c2c Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/fi.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/he.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/he.lproj/Localizable.strings new file mode 100644 index 000000000..7b33171e6 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/he.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/hi.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/hi.lproj/Localizable.strings new file mode 100644 index 000000000..67e1f3a85 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/hi.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/hr.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/hr.lproj/Localizable.strings new file mode 100644 index 000000000..9d03d8bff Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/hr.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/hu.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/hu.lproj/Localizable.strings new file mode 100644 index 000000000..fadd295c5 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/hu.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/id.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/id.lproj/Localizable.strings new file mode 100644 index 000000000..8a95703ab Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/id.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ko.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ko.lproj/Localizable.strings new file mode 100644 index 000000000..2da7358fc Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ko.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout0.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout0.xml.zlib new file mode 100644 index 000000000..04502d072 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout0.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout1.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout1.xml.zlib new file mode 100644 index 000000000..5e1a7cc27 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout1.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout10.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout10.xml.zlib new file mode 100644 index 000000000..7aa9e3ddc Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout10.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout100.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout100.xml.zlib new file mode 100644 index 000000000..eb3f89477 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout100.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout101.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout101.xml.zlib new file mode 100644 index 000000000..d0f75cc03 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout101.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout102.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout102.xml.zlib new file mode 100644 index 000000000..7de15c9d1 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout102.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout107.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout107.xml.zlib new file mode 100644 index 000000000..bcb998e4b Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout107.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout108.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout108.xml.zlib new file mode 100644 index 000000000..6f808f074 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout108.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout11.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout11.xml.zlib new file mode 100644 index 000000000..c5fca3f16 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout11.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout113.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout113.xml.zlib new file mode 100644 index 000000000..228ee3898 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout113.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout114.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout114.xml.zlib new file mode 100644 index 000000000..29ecfc0f0 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout114.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout12.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout12.xml.zlib new file mode 100644 index 000000000..272503acf Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout12.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout120.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout120.xml.zlib new file mode 100644 index 000000000..9715e1c7d Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout120.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout121.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout121.xml.zlib new file mode 100644 index 000000000..ce87a28ad Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout121.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout122.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout122.xml.zlib new file mode 100644 index 000000000..ed73aadc9 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout122.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout123.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout123.xml.zlib new file mode 100644 index 000000000..2c903c993 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout123.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout124.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout124.xml.zlib new file mode 100644 index 000000000..784e04ad3 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout124.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout125.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout125.xml.zlib new file mode 100644 index 000000000..93226bbbd Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout125.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout126.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout126.xml.zlib new file mode 100644 index 000000000..c8ce9c6ad Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout126.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout127.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout127.xml.zlib new file mode 100644 index 000000000..3209e6909 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout127.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout128.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout128.xml.zlib new file mode 100644 index 000000000..1af0617c5 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout128.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout129.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout129.xml.zlib new file mode 100644 index 000000000..f716119e2 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout129.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout13.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout13.xml.zlib new file mode 100644 index 000000000..0974a9738 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout13.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout130.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout130.xml.zlib new file mode 100644 index 000000000..24a1cbc37 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout130.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout131.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout131.xml.zlib new file mode 100644 index 000000000..a379fa5db Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout131.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout14.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout14.xml.zlib new file mode 100644 index 000000000..afe1e170e Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout14.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout15.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout15.xml.zlib new file mode 100644 index 000000000..3cd988ccf Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout15.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout16.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout16.xml.zlib new file mode 100644 index 000000000..22d8601b0 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout16.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout16392.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout16392.xml.zlib new file mode 100644 index 000000000..cbd1b2942 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout16392.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout16394.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout16394.xml.zlib new file mode 100644 index 000000000..48df49e1d Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout16394.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout17.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout17.xml.zlib new file mode 100644 index 000000000..81ed3e4d2 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout17.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout18.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout18.xml.zlib new file mode 100644 index 000000000..48f6ea50d Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout18.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout19.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout19.xml.zlib new file mode 100644 index 000000000..f47436f1c Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout19.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout2.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout2.xml.zlib new file mode 100644 index 000000000..5cd2ec0d0 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout2.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout20.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout20.xml.zlib new file mode 100644 index 000000000..b764f0d65 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout20.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout21.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout21.xml.zlib new file mode 100644 index 000000000..bba7142e2 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout21.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout24.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout24.xml.zlib new file mode 100644 index 000000000..0d997cf94 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout24.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout27.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout27.xml.zlib new file mode 100644 index 000000000..b1b00620c Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout27.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout28.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout28.xml.zlib new file mode 100644 index 000000000..af94848db Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout28.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout29.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout29.xml.zlib new file mode 100644 index 000000000..d77b97bbd Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout29.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout3.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout3.xml.zlib new file mode 100644 index 000000000..9fa36c289 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout3.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout31.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout31.xml.zlib new file mode 100644 index 000000000..928a1c0e0 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout31.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout32.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout32.xml.zlib new file mode 100644 index 000000000..f27b32433 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout32.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout33.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout33.xml.zlib new file mode 100644 index 000000000..2b9968963 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout33.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout35.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout35.xml.zlib new file mode 100644 index 000000000..ff922a25c Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout35.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout36.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout36.xml.zlib new file mode 100644 index 000000000..82e1fdeb4 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout36.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout38.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout38.xml.zlib new file mode 100644 index 000000000..f28727ab2 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout38.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout39.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout39.xml.zlib new file mode 100644 index 000000000..462fd0938 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout39.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout4.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout4.xml.zlib new file mode 100644 index 000000000..cc3b988d5 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout4.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout40.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout40.xml.zlib new file mode 100644 index 000000000..c04d6e43a Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout40.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout42.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout42.xml.zlib new file mode 100644 index 000000000..d51d6c78f Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout42.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout44.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout44.xml.zlib new file mode 100644 index 000000000..cd3ca0a27 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout44.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout46.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout46.xml.zlib new file mode 100644 index 000000000..6f4b1e474 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout46.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout48.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout48.xml.zlib new file mode 100644 index 000000000..f3b5cd3f5 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout48.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout5.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout5.xml.zlib new file mode 100644 index 000000000..4967c8a2d Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout5.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout50.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout50.xml.zlib new file mode 100644 index 000000000..76159815d Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout50.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout51.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout51.xml.zlib new file mode 100644 index 000000000..9c5e809cd Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout51.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout53.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout53.xml.zlib new file mode 100644 index 000000000..6e504371a Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout53.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout54.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout54.xml.zlib new file mode 100644 index 000000000..6322c0636 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout54.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout56.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout56.xml.zlib new file mode 100644 index 000000000..822734b02 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout56.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout57.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout57.xml.zlib new file mode 100644 index 000000000..68d8bbb17 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout57.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout58.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout58.xml.zlib new file mode 100644 index 000000000..73feb553a Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout58.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout59.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout59.xml.zlib new file mode 100644 index 000000000..fa372e079 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout59.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout6.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout6.xml.zlib new file mode 100644 index 000000000..ade6b73bd Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout6.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout60.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout60.xml.zlib new file mode 100644 index 000000000..49257b00c Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout60.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout61.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout61.xml.zlib new file mode 100644 index 000000000..3c4e0b51d Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout61.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout62.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout62.xml.zlib new file mode 100644 index 000000000..f393539bd Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout62.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout63.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout63.xml.zlib new file mode 100644 index 000000000..dc298b296 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout63.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout64.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout64.xml.zlib new file mode 100644 index 000000000..29256c229 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout64.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout65.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout65.xml.zlib new file mode 100644 index 000000000..99ee073ab Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout65.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout66.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout66.xml.zlib new file mode 100644 index 000000000..d5225a4d4 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout66.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout67.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout67.xml.zlib new file mode 100644 index 000000000..8a5bde9cf Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout67.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout69.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout69.xml.zlib new file mode 100644 index 000000000..128d15d50 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout69.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout7.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout7.xml.zlib new file mode 100644 index 000000000..2e212d066 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout7.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout70.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout70.xml.zlib new file mode 100644 index 000000000..9366e9256 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout70.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout71.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout71.xml.zlib new file mode 100644 index 000000000..fb39b2ee7 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout71.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout72.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout72.xml.zlib new file mode 100644 index 000000000..a9f6c2d35 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout72.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout73.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout73.xml.zlib new file mode 100644 index 000000000..c110cb825 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout73.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout74.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout74.xml.zlib new file mode 100644 index 000000000..d40c8bb0f Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout74.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout75.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout75.xml.zlib new file mode 100644 index 000000000..cb8bcaa4d Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout75.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout76.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout76.xml.zlib new file mode 100644 index 000000000..f0283836a Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout76.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout77.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout77.xml.zlib new file mode 100644 index 000000000..8b3dfc80a Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout77.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout78.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout78.xml.zlib new file mode 100644 index 000000000..fc50fa9f2 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout78.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout79.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout79.xml.zlib new file mode 100644 index 000000000..0e64832b4 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout79.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout80.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout80.xml.zlib new file mode 100644 index 000000000..0879310e2 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout80.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout81.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout81.xml.zlib new file mode 100644 index 000000000..db8c04676 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout81.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout82.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout82.xml.zlib new file mode 100644 index 000000000..2d73ade46 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout82.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout83.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout83.xml.zlib new file mode 100644 index 000000000..a7c9f80e4 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout83.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout84.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout84.xml.zlib new file mode 100644 index 000000000..9f794ac3a Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout84.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout85.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout85.xml.zlib new file mode 100644 index 000000000..26ae088d9 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout85.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout86.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout86.xml.zlib new file mode 100644 index 000000000..58f3938d6 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout86.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout88.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout88.xml.zlib new file mode 100644 index 000000000..da8a96ab8 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout88.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout9.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout9.xml.zlib new file mode 100644 index 000000000..5be6d52bc Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout9.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout90.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout90.xml.zlib new file mode 100644 index 000000000..073535dd3 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout90.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout91.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout91.xml.zlib new file mode 100644 index 000000000..58360c85a Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout91.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout92.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout92.xml.zlib new file mode 100644 index 000000000..518ac6aca Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout92.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout93.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout93.xml.zlib new file mode 100644 index 000000000..a5cd2f11f Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout93.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout94.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout94.xml.zlib new file mode 100644 index 000000000..5501f7efe Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout94.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout95.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout95.xml.zlib new file mode 100644 index 000000000..27ba9304c --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout95.xml.zlib @@ -0,0 +1,4 @@ +xSn0<ӯH?Ұ$C(Q#n "}Ym4j}67gF{̊ur;$.׺i`UKdb3 vգ9%&;|C$I9PE]Ljs^&,r]ɛ+ؐ0;9-4Yoιemz$9 +08; +YC(`f-n]8Sˀ !\'4e \G]vuNL8*kf4݆H6Oĕ +]h:UZy(Zt :p2!e4PaYcC| \ No newline at end of file diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout98.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout98.xml.zlib new file mode 100644 index 000000000..d2e4a9de1 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout98.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout99.xml.zlib b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout99.xml.zlib new file mode 100644 index 000000000..0e704c2dd Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/layout99.xml.zlib differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ms.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ms.lproj/Localizable.strings new file mode 100644 index 000000000..1abf3e8f9 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ms.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/no.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/no.lproj/Localizable.strings new file mode 100644 index 000000000..a96010ebc Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/no.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/pl.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/pl.lproj/Localizable.strings new file mode 100644 index 000000000..862ba161b Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/pl.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/pt.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/pt.lproj/Localizable.strings new file mode 100644 index 000000000..4ab8609aa Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/pt.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/pt_PT.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/pt_PT.lproj/Localizable.strings new file mode 100644 index 000000000..2e4ae8639 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/pt_PT.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ro.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ro.lproj/Localizable.strings new file mode 100644 index 000000000..5a90cb74f Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ro.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ru.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ru.lproj/Localizable.strings new file mode 100644 index 000000000..75753bb1a Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/ru.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/sk.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/sk.lproj/Localizable.strings new file mode 100644 index 000000000..0435580d8 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/sk.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/sv.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/sv.lproj/Localizable.strings new file mode 100644 index 000000000..ca1d89452 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/sv.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/th.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/th.lproj/Localizable.strings new file mode 100644 index 000000000..f6cead8e7 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/th.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/tr.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/tr.lproj/Localizable.strings new file mode 100644 index 000000000..30489ad83 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/tr.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/uk.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/uk.lproj/Localizable.strings new file mode 100644 index 000000000..b59f38ff9 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/uk.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/vi.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/vi.lproj/Localizable.strings new file mode 100644 index 000000000..2eab16e63 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/vi.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/zh_CN.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/zh_CN.lproj/Localizable.strings new file mode 100644 index 000000000..b54f01848 Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/zh_CN.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/zh_TW.lproj/Localizable.strings b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/zh_TW.lproj/Localizable.strings new file mode 100644 index 000000000..b106a8baa Binary files /dev/null and b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/Resources/zh_TW.lproj/Localizable.strings differ diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/_CodeSignature/CodeResources b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/_CodeSignature/CodeResources new file mode 100644 index 000000000..5cf4193cc --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/_CodeSignature/CodeResources @@ -0,0 +1,1934 @@ + + + + + files + + Resources/Dutch.lproj/Localizable.strings + + hash + + J5UyVFxKkwKgrX8LHxfW3O20Kv0= + + optional + + + Resources/English.lproj/Localizable.strings + + hash + + iATZhJVeSsKT8/KLAVrSsjeYUWc= + + optional + + + Resources/French.lproj/Localizable.strings + + hash + + 5H8vYmMt+l4w4BImMcqToN0toQU= + + optional + + + Resources/German.lproj/Localizable.strings + + hash + + aNnvrP568Al7aV4BjaTDtLpTxLU= + + optional + + + Resources/Italian.lproj/Localizable.strings + + hash + + STRVVFGhmzbYccaUyx4Qd0R6wnU= + + optional + + + Resources/Japanese.lproj/Localizable.strings + + hash + + fi22f+EFwRfqDLHzSyMtkHeOtXs= + + optional + + + Resources/Platforms.xml.zlib + + lS3bEOT/L6CH++DAwEAHsV/z76w= + + Resources/Spanish.lproj/Localizable.strings + + hash + + g70jIqATK+9nuLamCleNsEEesCE= + + optional + + + Resources/ar.lproj/Localizable.strings + + hash + + JFBR/UEJKW/PYd93X+8ZG8vhLr0= + + optional + + + Resources/ca.lproj/Localizable.strings + + hash + + txMboKOhBySFVfnit/yfSORxt38= + + optional + + + Resources/cs.lproj/Localizable.strings + + hash + + qZzeutrXya0jk2N1m1Gc8Hri2g8= + + optional + + + Resources/da.lproj/Localizable.strings + + hash + + U8tTRDSvFWlxPGcbZWf5MAF0Msk= + + optional + + + Resources/el.lproj/Localizable.strings + + hash + + C1UnSusxF1euVZgzEdcxaRX39nQ= + + optional + + + Resources/es_419.lproj/Localizable.strings + + hash + + qKDzRfBHs6LmRJvCxJfEAEa5EiU= + + optional + + + Resources/fi.lproj/Localizable.strings + + hash + + st7qApNgFow4HAje5rpk/fqCZp0= + + optional + + + Resources/he.lproj/Localizable.strings + + hash + + DTGUpJFiLHGz/FcXJW61V88L6b4= + + optional + + + Resources/hi.lproj/Localizable.strings + + hash + + nUegUp+v4/0vl/lW4vGubXPdD5M= + + optional + + + Resources/hr.lproj/Localizable.strings + + hash + + 3YZKeMKNcz0VJZvb58POfuRPnvw= + + optional + + + Resources/hu.lproj/Localizable.strings + + hash + + U0NyHBwlHekFcszwaeTHipO8VUc= + + optional + + + Resources/id.lproj/Localizable.strings + + hash + + 6H8C1qCsyWeV5vFttpmN/bKgAP0= + + optional + + + Resources/ko.lproj/Localizable.strings + + hash + + yGGHQSVvgcraDOB19+BKTkrrV90= + + optional + + + Resources/layout0.xml.zlib + + 5bh2qSYXzTHUEQx647Tz/iYXmTM= + + Resources/layout1.xml.zlib + + IX1anzSCBRmLw7hkwyzRtDu3ou0= + + Resources/layout10.xml.zlib + + CXsJtNyaEfS7Hw9ccDO/d+xpCG0= + + Resources/layout100.xml.zlib + + zU5urEGjBQc4Gi3Fgg+JSjMnC+o= + + Resources/layout101.xml.zlib + + +IwhthRMue2XC2RwlHd+kZlAEK4= + + Resources/layout102.xml.zlib + + NAt03VqupIe/BplXrELy3Npho4Y= + + Resources/layout107.xml.zlib + + UwDmZj6G6Ln82PY5CSWiXHO8V9M= + + Resources/layout108.xml.zlib + + BfcRVQD9b9cDbZyxyQBNXcf3+zQ= + + Resources/layout11.xml.zlib + + szo3lMzwZJmVXstcvhDzaSa0VDU= + + Resources/layout113.xml.zlib + + uU/+X69E0s0aNZciMNyswUJkVGY= + + Resources/layout114.xml.zlib + + goA1Rw+NY/NtODJfqjiiovTa9S8= + + Resources/layout12.xml.zlib + + +02HLiR7TFbHOVn0vFib/9pA4zA= + + Resources/layout120.xml.zlib + + LsoLlWcglEngZfNPods029QBHT0= + + Resources/layout121.xml.zlib + + etMo/SMBc1Cq29Tik4xgDBzn9eA= + + Resources/layout122.xml.zlib + + dE88Qdqo/lwPkI+MXQ6QdEFY59k= + + Resources/layout123.xml.zlib + + LEudulllHJikHGcQZo2930heaso= + + Resources/layout124.xml.zlib + + wfOPTDV/TZkQabqAKnIs2da/XV0= + + Resources/layout125.xml.zlib + + 5Zi4qkUXdsNQMtdxoweV95JkBYQ= + + Resources/layout126.xml.zlib + + CSn5cfjKpXOOkarGc7GTtPH3EPA= + + Resources/layout127.xml.zlib + + CM+F6KGLfyAhsfBjE+IYOLTGJU8= + + Resources/layout128.xml.zlib + + k7mcVHYqgQf7ce82XxWKq/p6mGc= + + Resources/layout129.xml.zlib + + kA8RZ/SAgJYECIivlSbETG2GvvM= + + Resources/layout13.xml.zlib + + HLqwEK7lhUJIdLnjoHZ5kLCI5xs= + + Resources/layout130.xml.zlib + + 7/yylQDDVaD9sX0fO+K6a03mm6I= + + Resources/layout131.xml.zlib + + PYeizMjPcQlLCQEGqShWMwmb+00= + + Resources/layout14.xml.zlib + + nuPrGuS6tkcP1oG19VdqKX8ig9I= + + Resources/layout15.xml.zlib + + RVlaLDWmXV4zZ7Iv8Lt0TgWGggg= + + Resources/layout16.xml.zlib + + 761Uh38WHrnREF7WTYpRHSlsJg8= + + Resources/layout16392.xml.zlib + + Wtt7ofHghf8UGEqj9wZ4s7I1fRg= + + Resources/layout16394.xml.zlib + + 7XsLxJmciIZDjBq0sr6WxqhSiUA= + + Resources/layout17.xml.zlib + + 77MJl+naQ3e9xx28fkoK/stCUis= + + Resources/layout18.xml.zlib + + +M3hlmphwvuiXUm+oEf1d0hdTSg= + + Resources/layout19.xml.zlib + + +2sMhOXsuMLVW+eSWTASkcUwV3k= + + Resources/layout2.xml.zlib + + RTLburGpi2eCvZwD2bX0e5dCM/0= + + Resources/layout20.xml.zlib + + 0hmDkvS7ggZp2xkWSnd0iAIyRP4= + + Resources/layout21.xml.zlib + + nB+IU0ONUlyQUSK2DAhbBlifPww= + + Resources/layout24.xml.zlib + + /kpFTbOf/hnlrDN6scyQjUmOgB4= + + Resources/layout27.xml.zlib + + k3MqaA0KiWmVhoOpA9wfHkVt5QA= + + Resources/layout28.xml.zlib + + uXi5eYa87X6SfcWZDxJpJq7TmF0= + + Resources/layout29.xml.zlib + + A3ySU0+jAlgSftt5iX6Yc/+y+a8= + + Resources/layout3.xml.zlib + + yEMe7gw2YHb40wCIvszoeoh+RGY= + + Resources/layout31.xml.zlib + + IdSimtw+JWTWUAMIrQVrdwjiJ/8= + + Resources/layout32.xml.zlib + + W14wjWPtFidGMZyt2beLsBSahJ8= + + Resources/layout33.xml.zlib + + WBLJ0Hv4LvFoY1bFIURCApe/Zik= + + Resources/layout35.xml.zlib + + CY5bf0GWqsca6doWzTZNmrYEpjQ= + + Resources/layout36.xml.zlib + + lS4Fr0CZk+H3pXIYlhFiKgSUQnk= + + Resources/layout38.xml.zlib + + 5rxBPcS9/qSlHtDpMiNUDGahczM= + + Resources/layout39.xml.zlib + + FYivKtVbM+jxoEC0CDeqFrAIfo0= + + Resources/layout4.xml.zlib + + VZirlz8xgbX4j5TgHaukyNep1PQ= + + Resources/layout40.xml.zlib + + k/E77EOURiseiNH5DIXBdICWWw4= + + Resources/layout42.xml.zlib + + EYMZQXcg/c30Urz4v/cYqPJ+30M= + + Resources/layout44.xml.zlib + + X7fqk/CMlfq376AZOUOmKqCs6Cs= + + Resources/layout46.xml.zlib + + fdziWzmLJwDzW4SKjsFBmxpolNE= + + Resources/layout48.xml.zlib + + vbr23z1EsmExbKnC+rIXEUZ9Kgo= + + Resources/layout5.xml.zlib + + /2vQOMn9OCsPpfHKbfj9z8JAzZs= + + Resources/layout50.xml.zlib + + F+cyPDRwMi/k6TzYjwFuyV1rWJQ= + + Resources/layout51.xml.zlib + + gEs8YDHAIe3ffgzp/ImaSHSOobY= + + Resources/layout53.xml.zlib + + PL2Lisa9tm0K5aoyBNagvpt/GFg= + + Resources/layout54.xml.zlib + + FjVPL2fV4SblE9hQD2XWqsyWLe8= + + Resources/layout56.xml.zlib + + Oz0Ch/sW617O/S+ic/K52Inrggo= + + Resources/layout57.xml.zlib + + PHX3s1YtvrU7ytqmdYks0moeFzg= + + Resources/layout58.xml.zlib + + YEQFFPiAfXV8zbIBEwNFgo9xJTY= + + Resources/layout59.xml.zlib + + /0DAgPu2u4vOThKdtt2k17lGSzI= + + Resources/layout6.xml.zlib + + 9wLKUXrw02d1euQI0zjW/sOm3lQ= + + Resources/layout60.xml.zlib + + 2+RRcgddc0s6BdBAicH/rYcHDZA= + + Resources/layout61.xml.zlib + + 52u+A97B1+6RRGT9A70o/+GZCNs= + + Resources/layout62.xml.zlib + + glG4wxyNsmEBjRt8fJbD/4D8LSw= + + Resources/layout63.xml.zlib + + s6jS2TN07JXwls/Bk3eaft9cytU= + + Resources/layout64.xml.zlib + + 656/v5TCfAo5251J4lkP6vaWJA0= + + Resources/layout65.xml.zlib + + SBWe7vedxW5M+vRQr9WEmdPMp7c= + + Resources/layout66.xml.zlib + + Ytu4KoXRmIRutU7eJnCiaKe9HhQ= + + Resources/layout67.xml.zlib + + jsM4nOksDg9bI1JYo1/fi7sH+EA= + + Resources/layout69.xml.zlib + + MkK5sBckEqy+dXTWSdsuAkIK1Ro= + + Resources/layout7.xml.zlib + + Ngnrtiw+JL88/09HZs6W2Pr2bm0= + + Resources/layout70.xml.zlib + + 74RSYZ1X1vb9Sq+Q55w2CnC2C1Y= + + Resources/layout71.xml.zlib + + bNmnMYkUId2/7Dq3Dz8jxCxUkMY= + + Resources/layout72.xml.zlib + + lO173lIObYd5dpUoRpdAkEKUFxc= + + Resources/layout73.xml.zlib + + elk8/51uCXq65k4ydDuCn9YZsns= + + Resources/layout74.xml.zlib + + SJp3DobG4M4OGd78v+l/70G93cg= + + Resources/layout75.xml.zlib + + CgGD5Uss5e7bYNPhL0JXo6GREH4= + + Resources/layout76.xml.zlib + + 51zmuBB3IL6GuWDxJBE6EJv2J9g= + + Resources/layout77.xml.zlib + + vLtw6P2xmCRKB317NPD3pJDkceA= + + Resources/layout78.xml.zlib + + 7tGByhqQRU4fvIx0viqQgLwVuh8= + + Resources/layout79.xml.zlib + + u3MwnOoEgShSdyDKeAO1daJfSzA= + + Resources/layout80.xml.zlib + + Qo+Zqvca1sxg0pt6FQilfAYSeng= + + Resources/layout81.xml.zlib + + 3t3k0IXlVcp0ymtLwZi1uobyjAU= + + Resources/layout82.xml.zlib + + MT6s8Iju1M4aQEjf11qzz0lmO5E= + + Resources/layout83.xml.zlib + + ltfBp/JXc77a/AUz1lAO6s/a4Tk= + + Resources/layout84.xml.zlib + + k3hwLgErtogW4dhiFF7as9ATXd0= + + Resources/layout85.xml.zlib + + lG6VBffN63Z0YAYBIxgAH7NpUyQ= + + Resources/layout86.xml.zlib + + qtPgnz5vO3zVftHYOS0e/vn2UpI= + + Resources/layout88.xml.zlib + + T8gs7YrvuICDYNI27snR2Z3Vsik= + + Resources/layout9.xml.zlib + + vB6nEAds8pkFG6xOYRjpfdDNr9Y= + + Resources/layout90.xml.zlib + + qkpDT3MX4ZV91MabD7ihqMZV/6Y= + + Resources/layout91.xml.zlib + + KwJXZt0BMogCylHp6SCssuIt2M4= + + Resources/layout92.xml.zlib + + rdosHG39Bp04BnHlylsyNm4I2Qg= + + Resources/layout93.xml.zlib + + yTu9jW+oToRdptmmDN/kfhdgVew= + + Resources/layout94.xml.zlib + + Zh0sHCqANhv4HXfUQBef9Gq6lGM= + + Resources/layout95.xml.zlib + + RoY+kadpNLX6S3NmGdmG5PXqPUE= + + Resources/layout98.xml.zlib + + DnNDHMzoG/qoUITHYCfAGIiRTjw= + + Resources/layout99.xml.zlib + + vD6FYY4+g5CpT90aWvzzGSJwK4g= + + Resources/ms.lproj/Localizable.strings + + hash + + exnKDHNxo2UAfei5h4me5xP4XzU= + + optional + + + Resources/no.lproj/Localizable.strings + + hash + + uQ9t0Gyuv3DWywbqCD0m4uniHEM= + + optional + + + Resources/pl.lproj/Localizable.strings + + hash + + py1EKGnEmKckszI9PQA1XWsEtD8= + + optional + + + Resources/pt.lproj/Localizable.strings + + hash + + r60ppMzIFO56imLn/JZFsZJ0GzI= + + optional + + + Resources/pt_PT.lproj/Localizable.strings + + hash + + xM7NPwlNhVgVASrDSIVWuxk/jxs= + + optional + + + Resources/ro.lproj/Localizable.strings + + hash + + 6yhtrZ9/lvvmcbv9h+HLuNxmkyI= + + optional + + + Resources/ru.lproj/Localizable.strings + + hash + + LwwN0la1MsYmSr0jxd+lqkbd8iU= + + optional + + + Resources/sk.lproj/Localizable.strings + + hash + + eDnirIGDqKHoNAv2jtG3/SBitdo= + + optional + + + Resources/sv.lproj/Localizable.strings + + hash + + sxT+RYBZS10xsSGWVrgglb78e24= + + optional + + + Resources/th.lproj/Localizable.strings + + hash + + KHrvt+v3YJDsFSJg5Fhpyhw8rjY= + + optional + + + Resources/tr.lproj/Localizable.strings + + hash + + MUFK1+gL5demzdxXWAKf4pC607w= + + optional + + + Resources/uk.lproj/Localizable.strings + + hash + + HZH7McLuIjjqCZIgbQbYSt1JJKE= + + optional + + + Resources/vi.lproj/Localizable.strings + + hash + + UR+fCxI719l6Q4qr1KB7XYDUNfE= + + optional + + + Resources/zh_CN.lproj/Localizable.strings + + hash + + 0Ij0rxUY//pUfKWVrukXWPQx++M= + + optional + + + Resources/zh_TW.lproj/Localizable.strings + + hash + + vSUF/FGgR8HifmSbR3QoOrDMaSc= + + optional + + + version.plist + + MkagQ8RqPBVBLjUnVDMdBf0bdbA= + + + files2 + + PlugIns/AppleHDAController.kext + + cdhash + + ClGKS913wg0HWxhwUyWv3maTbF0= + + requirement + identifier "com.apple.driver.AppleHDAController" and anchor apple + + PlugIns/AppleHDAHALPlugIn.bundle + + cdhash + + MYX9bITmbQAN4v7cGQjO2HsRfb8= + + requirement + identifier "com.apple.audio.AppleHDAHALPlugIn" and anchor apple + + PlugIns/AppleHDAHardwareConfigDriver.kext + + cdhash + + 2pDEr/Y5KvQlv74DBQGKABsI2qo= + + requirement + identifier "com.apple.driver.AppleHDAHardwareConfigDriver" and anchor apple + + PlugIns/AppleMikeyDriver.kext + + cdhash + + P1fNvUWXZLb/mp0651l9lZPz+0E= + + requirement + identifier "com.apple.driver.AppleMikeyDriver" and anchor apple + + PlugIns/DspFuncLib.kext + + cdhash + + 6C8Y+vA0v609I88PuWP+51vzKz0= + + requirement + identifier "com.apple.driver.DspFuncLib" and anchor apple + + PlugIns/IOHDAFamily.kext + + cdhash + + wWVQTbvI7byNHcVyAWjVGVVggfw= + + requirement + identifier "com.apple.iokit.IOHDAFamily" and anchor apple + + Resources/Dutch.lproj/Localizable.strings + + hash2 + + 4RVT+QGArgvZkYUFELlcwFfhOmxSGROAw6W1cnyZTos= + + optional + + + Resources/English.lproj/Localizable.strings + + hash2 + + BDCXcUwZY27b4+2KmpTmul++WpKAV8KBluAr8YacKzQ= + + optional + + + Resources/French.lproj/Localizable.strings + + hash2 + + +3Sixqx5L57cqg/ivtLnFivRZ/+5n4BxQj01XFWjH/I= + + optional + + + Resources/German.lproj/Localizable.strings + + hash2 + + ojmS+KEd9m5ZkRLyByISiAATI82hEBvulVCZUwBpV/k= + + optional + + + Resources/Italian.lproj/Localizable.strings + + hash2 + + UVd/+/cy0z0uEIvXP7HK6GbWOVBgu70U/KB2iOKcw7A= + + optional + + + Resources/Japanese.lproj/Localizable.strings + + hash2 + + MxH0wTLRv3g8MWFBgwjZhwhi1MYHLxRffOU6N0z9W5o= + + optional + + + Resources/Platforms.xml.zlib + + hash2 + + caTkLEl1exSqjUr+YHQk8s/RywvKA3Om9gfhKzTtM80= + + + Resources/Spanish.lproj/Localizable.strings + + hash2 + + bhlhrz8TojQSOpsPGSSxMz5CJBvvkdeZ3shUj425Um4= + + optional + + + Resources/ar.lproj/Localizable.strings + + hash2 + + iA55wJsOG4i2mc5DdiMUq24t7FKn4nTD1rkprfC8oS4= + + optional + + + Resources/ca.lproj/Localizable.strings + + hash2 + + J/TFZ9Ru1ob2j7CKvvkquvt76DSpYqBUaq0Dyye8HGc= + + optional + + + Resources/cs.lproj/Localizable.strings + + hash2 + + ToHn1JGdPkomuSpT+PfVAFir9BAa/RDfK8lP5QLV3yM= + + optional + + + Resources/da.lproj/Localizable.strings + + hash2 + + yWjoyyMoYPTYgbaoEFHm81Bv9pei9yFnLNLvtkeB/lM= + + optional + + + Resources/el.lproj/Localizable.strings + + hash2 + + oM941ZQ/yKFLU1Ojs3zsLSzM4R3YuvxUZZ3dXtJn8TQ= + + optional + + + Resources/es_419.lproj/Localizable.strings + + hash2 + + y6MEzeo3lV6DrRb0lj8HkC1Kd8pUYFvKVYe25bf57/s= + + optional + + + Resources/fi.lproj/Localizable.strings + + hash2 + + 3Y6JA4rVjmv0MAYj1MDdYPrFOSJ4L2N8aM7zOxpPc/E= + + optional + + + Resources/he.lproj/Localizable.strings + + hash2 + + dnxAYHok01Ixh6gSj5MrHm1fNR0bZB+AaMaUS6FDgwY= + + optional + + + Resources/hi.lproj/Localizable.strings + + hash2 + + 9l08Nzx/Vx9VSdv1GecgU+muqK1WtcBHsaTEeA54BXs= + + optional + + + Resources/hr.lproj/Localizable.strings + + hash2 + + k3ZjJ+BFANLO7wh6Wp8oSQX5xkzmaYDAcqtdABelFtQ= + + optional + + + Resources/hu.lproj/Localizable.strings + + hash2 + + m7VeOV0L7M3ncGRhuac2IF1R97/NlAkP2TrlJ8Rih0A= + + optional + + + Resources/id.lproj/Localizable.strings + + hash2 + + MzHC/8hEjhM/FVF8w2AEcE7PY7AVQQBmCR0gyltTiTQ= + + optional + + + Resources/ko.lproj/Localizable.strings + + hash2 + + 2KljxsB8/N4AW+tjFOqAsk+D2PPoOakVfkdRuLK6RC0= + + optional + + + Resources/layout0.xml.zlib + + hash2 + + nAiq5G3gY6rOIk7OBjSzYfQAfRYQ+kDrInxsPUX13BY= + + + Resources/layout1.xml.zlib + + hash2 + + bub2FVrx5Nmjwnb7l7H6Q2DZ0/V7h+6at3gRqklvqOw= + + + Resources/layout10.xml.zlib + + hash2 + + 8reLnMM4+WwwhrPzD/tAMPT+Rt8Xc8C+/WNBJZO8og4= + + + Resources/layout100.xml.zlib + + hash2 + + q0CPTNOsVoaizDE+i4toNoU7/OXnO4aQWo/23Jt8REI= + + + Resources/layout101.xml.zlib + + hash2 + + 2mvIIQlf5cZ+ffD1tq0R6y4NrceP/I3VtHpW7NpcuAw= + + + Resources/layout102.xml.zlib + + hash2 + + gS1RBrp96gJpDGER7al/L8UkmR9N6WLtZqDJf2KjKpM= + + + Resources/layout107.xml.zlib + + hash2 + + g2bzEWdGQwOQe0CID3z/Y6L23087dyf9BIUxFMi/nCc= + + + Resources/layout108.xml.zlib + + hash2 + + VB2lzAuDBkC4uJVYyvugjKisRyzsKx1nBrR7Nt3+gbM= + + + Resources/layout11.xml.zlib + + hash2 + + CCYEjtIUpIYDM568u0VfG0mJdW5E8nZIBgBqWUbG5Ow= + + + Resources/layout113.xml.zlib + + hash2 + + xnnBcMDHQ/xpOIy5sf0n0eH2xfiMfXPNV/9MZyYHI68= + + + Resources/layout114.xml.zlib + + hash2 + + njrc0wxg5Xy84ULwXqnYkpYYUzV6IIb88yGfttxmZOM= + + + Resources/layout12.xml.zlib + + hash2 + + lxb2EerqvVRh4EcOOwQ3IoXi2gFrLCD6ySJV+p1DBzQ= + + + Resources/layout120.xml.zlib + + hash2 + + w0vLJ66O/icGNy+D0OQ3JUjshvTbs0Bla1lhRObd7Yc= + + + Resources/layout121.xml.zlib + + hash2 + + qdsf7D5qr5Gy4FSM8M4mcSdD2c6vYbXD1WkfAWU5MGU= + + + Resources/layout122.xml.zlib + + hash2 + + jnkfo3cTJ1FmS70PYlwSz+8wY3BAGPH1Cs9hftZIVM8= + + + Resources/layout123.xml.zlib + + hash2 + + RWcXEfvLChGHKKulPxTkrvPnYh13wDeejnxoQ96pye0= + + + Resources/layout124.xml.zlib + + hash2 + + XcAbiILhocMiyjd9CAhgMiWqIoqhi6/LR8YC0MsKDlQ= + + + Resources/layout125.xml.zlib + + hash2 + + 5izEuS88Y4k+W9Cdz1nNcbI7TnW/m6On9tdhrLZfSqI= + + + Resources/layout126.xml.zlib + + hash2 + + FSzxFCZV5Jz8MASjCDPLvYTj1WtrEHjTouiH35tU7s4= + + + Resources/layout127.xml.zlib + + hash2 + + qpzsq7VZHlTosMmT03U74J6jnLp1Sv66R6y5RwVb2gU= + + + Resources/layout128.xml.zlib + + hash2 + + lMtvMKFo0Ix7x8+C2kljZrU1pnCwxitBCccnSX9hvDM= + + + Resources/layout129.xml.zlib + + hash2 + + wHqTVx19GMGYv7BeYur8idfdMENihE+Po5KSQWC0qqY= + + + Resources/layout13.xml.zlib + + hash2 + + BtFJyXdT3b7s8IDSg7o1/egWHNybBTLWhK+rX3DuD3M= + + + Resources/layout130.xml.zlib + + hash2 + + P7rQbRSqi5mVUcnM/UZBi3DnaQr0pB5iNlhpYNNhVs0= + + + Resources/layout131.xml.zlib + + hash2 + + s+orQONOAo6uHF88PcHeIWz9XVmRLRw/XwhKpHkaeFQ= + + + Resources/layout14.xml.zlib + + hash2 + + RzjJp0J7C/1c4fxwEYiu4dE1UqW+0EjFIfzNd8Vg/bk= + + + Resources/layout15.xml.zlib + + hash2 + + SB0y7s5H6muBMJfXkROTvJBEiDsfHIC1EGMk5sCOttQ= + + + Resources/layout16.xml.zlib + + hash2 + + QTx0KJ51/4v4J1o7N+YhoblVYSpUFlXDfpwn2QH5qd8= + + + Resources/layout16392.xml.zlib + + hash2 + + 9po9nu912jeuITUrCLQRA+fA++SpYUOTXmu7gxM9n0w= + + + Resources/layout16394.xml.zlib + + hash2 + + bc9GacbY0AAv5YyMfNehB3CQi8jEPBH2pbJFJmEJTWk= + + + Resources/layout17.xml.zlib + + hash2 + + VGRUPjzNrDv/KNWwigkj4llaemL/cwEUXpsS7QnxSS8= + + + Resources/layout18.xml.zlib + + hash2 + + Jq1Mgl6HBW8de0BojeqSr93CPdR9gj76HpoZFt2xpKc= + + + Resources/layout19.xml.zlib + + hash2 + + k0rj/RtUWKlljGFZTZOe5bIpxaPyG49kyc10GCunOzI= + + + Resources/layout2.xml.zlib + + hash2 + + sSliXto91dFMAXXQJFZskZIJteeXFEgbwAgo+TKZgiM= + + + Resources/layout20.xml.zlib + + hash2 + + 5dY7nlJqJHf7v80BpsoQQapRz2InEKS8QelNQ8Urc1g= + + + Resources/layout21.xml.zlib + + hash2 + + 4a/2mbBOfH4/B8KwkFW6dPe64hUMh/YYN8ekIXUnU3g= + + + Resources/layout24.xml.zlib + + hash2 + + FQ97eK05eBLUEqZ03hVWgE83tshhx8ElMdKr5MHxN+w= + + + Resources/layout27.xml.zlib + + hash2 + + L8uhn0f6e/IpJwIZtuYYqc5YZ4L6ZzIUiGSgXu3pohc= + + + Resources/layout28.xml.zlib + + hash2 + + fi49MnRZQcRYh0O63iBzLu+6HpQ4YQTCHOQnfffbQEQ= + + + Resources/layout29.xml.zlib + + hash2 + + z5vAq6EuLWMxfoiYN2l2+qVUMyMkcTknndv+tkNN7GE= + + + Resources/layout3.xml.zlib + + hash2 + + 2qeGjzkSXIEYcvumV0aef5yV2DeSeYTtv4pCkVJXxqk= + + + Resources/layout31.xml.zlib + + hash2 + + ixYuFqKLWLAZrAyC2RrCqgg9UaekjHGbzgxbS0KH+Nc= + + + Resources/layout32.xml.zlib + + hash2 + + YUzKmENWdJN7idaM0OTOPNLo4HlX83FHgwWkqI9N0jo= + + + Resources/layout33.xml.zlib + + hash2 + + un6U5gppHjLe69VSQugHjeHwRL1vJhAjq0jEo6DjObw= + + + Resources/layout35.xml.zlib + + hash2 + + yHwIUlKve9msCQTMU2SL7MT6fjBGHSF7q40qJ6XmciM= + + + Resources/layout36.xml.zlib + + hash2 + + UAnbhlPmY29Z4/0dasvZEtLPlVcRtR7uDtC6a0Uch8M= + + + Resources/layout38.xml.zlib + + hash2 + + Y0Ulqm9LhL3NmYu64H2aS3Z3L1syAF9A//u7ru+e2+c= + + + Resources/layout39.xml.zlib + + hash2 + + FJ3zYKff1vBHWW/o3K5kundHQWlPgB7ztC9h6tXzx/c= + + + Resources/layout4.xml.zlib + + hash2 + + phngz5bvuwTAXYQfJzeyprZZHF9R+wbMTu2rBe2WEPc= + + + Resources/layout40.xml.zlib + + hash2 + + jEHRt8yL41ECkwaFPtHfbr0Wy85P3jHFkfXTp9AFX1E= + + + Resources/layout42.xml.zlib + + hash2 + + YYJ4LeusgmIGQeaAMLGhqIAner3UhgDZ1vmfy2gUC84= + + + Resources/layout44.xml.zlib + + hash2 + + QIO/crnsMICIpWu16QCFj+hJTAXD9Utl0Uz+c/h5q24= + + + Resources/layout46.xml.zlib + + hash2 + + ehju7jFPloBcgXeDWr5mfpTFEHjgAWZBKfWrIwcrtTw= + + + Resources/layout48.xml.zlib + + hash2 + + Ee1KsnFGpZ+oj6DONpd+dLjbRxYgv095msjEXOo1Kx0= + + + Resources/layout5.xml.zlib + + hash2 + + MGgfnMS7HH+sJgRPmgverxbx7jZRbuldamBFVbwUbt4= + + + Resources/layout50.xml.zlib + + hash2 + + tWVS7hy2zTbOkO11hx7o7/F9sosW0LeMfZiLZUwS1eE= + + + Resources/layout51.xml.zlib + + hash2 + + 7KlTHvp644QbftTHKzS2n5t1IlLGIc64f9kobPkGLL4= + + + Resources/layout53.xml.zlib + + hash2 + + Kq+RljaW958v4q0fnsa/MGU/lSOeXUUxw6/RkjtuyAY= + + + Resources/layout54.xml.zlib + + hash2 + + vLymZ41Hwi8pT+mBNlfSCPZkTLz03fvUrCEpfmDf2bQ= + + + Resources/layout56.xml.zlib + + hash2 + + pBRbkQnh1g+eYzHCFWm1TjKHzyjDnTCe1kVhZZgy3B0= + + + Resources/layout57.xml.zlib + + hash2 + + z9eXxbhXdZZPJcBhk0Uf8IfZo+AFHw/W14X+JAwjrDU= + + + Resources/layout58.xml.zlib + + hash2 + + t8aQdCtr8/0fLXrYB9jW2LmhzQMmF1qjGQZWxQT5VJ8= + + + Resources/layout59.xml.zlib + + hash2 + + bev2DrztWPr/4vTnbOJCVJnn7VGb8cZv+HLkACbbnM8= + + + Resources/layout6.xml.zlib + + hash2 + + /C/i6i5B2aqrANSav5qOLH8do6VJgC7yD8lSCT0z/IE= + + + Resources/layout60.xml.zlib + + hash2 + + AdumWCMMpaYvpT8d6/nAY62/UW0RMfPb6ZfkarN8sPs= + + + Resources/layout61.xml.zlib + + hash2 + + NWiEF0YISKYrbiklHrVjj/NnWP5xji7i2LhIPGNt1P8= + + + Resources/layout62.xml.zlib + + hash2 + + d64Xxw0U8nM9pYvWAmCfKnaBp1G9DBPQjkZqp/OyTOs= + + + Resources/layout63.xml.zlib + + hash2 + + IiDKAMqaB8aZZ8iw7MH+9JCkXD3s1CjzODefloMqCuY= + + + Resources/layout64.xml.zlib + + hash2 + + PG+WCVNmRFsocAtH7df9bC6QDzIBqih2JJSW0OmZdZ0= + + + Resources/layout65.xml.zlib + + hash2 + + 9Jv6d7FEXFL5R3L1IV1cq20ejrglMEsaLuRzEsTY/DU= + + + Resources/layout66.xml.zlib + + hash2 + + Si9MifivuVSmKn/lfXvZcvsCK5gIkWH1Z3MXCOCu1y0= + + + Resources/layout67.xml.zlib + + hash2 + + 1MMCPwI2Q00CjBIbrRCMpQvxzpgARahe/GvMkRIW4AQ= + + + Resources/layout69.xml.zlib + + hash2 + + nuNM2VviV3IYw/qRoOhofLhKTTxRClq2BTccIFpptVw= + + + Resources/layout7.xml.zlib + + hash2 + + tgkBfxmonzc3woXda6tcbTlSKJELk4iPExg7zMtYZto= + + + Resources/layout70.xml.zlib + + hash2 + + js5m/4uE2w1aPJLKMSrd7VS+NNNCunWHML2cNFOrRLU= + + + Resources/layout71.xml.zlib + + hash2 + + 0YmHPDELduhKLs9fT+46n3ypN93+ENb6MwpiRzQdhrg= + + + Resources/layout72.xml.zlib + + hash2 + + QgaHihJvfPmguES8s+Q+EGF77T1bEPXEMy4wXj/rqrQ= + + + Resources/layout73.xml.zlib + + hash2 + + SIFtl2NSLskSmuoYBcguYU4pqYbXkt4xaV8NPfxVnMQ= + + + Resources/layout74.xml.zlib + + hash2 + + vVCnjdchi3zZkhH4u9M0pclWcrZhuEzNyWxtReEVY5E= + + + Resources/layout75.xml.zlib + + hash2 + + uVGXiMbuG/Oj9MQcKUDsgdZ3x/hD3BoYWf3xwN5g33Y= + + + Resources/layout76.xml.zlib + + hash2 + + Z8M92BfRokPNiD/fMG0blbxYkDLbWKk5W+T3QJWkRTU= + + + Resources/layout77.xml.zlib + + hash2 + + 6PwBnrtORXnv5BuAvA7zDd2XpdFhJ/zZYgQAzjBO/tc= + + + Resources/layout78.xml.zlib + + hash2 + + ZEtC/+z9srIGvGXtiiCvnFa04LsuGEuqeF54YVgOwBQ= + + + Resources/layout79.xml.zlib + + hash2 + + YwgGLwBM4yQGK+MhlBksN2GzK+a5PBRlJCLdncYs1K0= + + + Resources/layout80.xml.zlib + + hash2 + + Ce6ZHeF8Yd62yTldf8txtfthxK6ROA72okxnOmFj8fI= + + + Resources/layout81.xml.zlib + + hash2 + + qMPmuMEW/Iir66830/5FAxZMq5eHfxq3eGH6Iu83kOk= + + + Resources/layout82.xml.zlib + + hash2 + + iu2Xs3tKKbvKds5kqkjbzAifNFe6PWDRZN83Ls3XHoo= + + + Resources/layout83.xml.zlib + + hash2 + + IQxp/cq0vJ/plCOdwrPCIAlwb985SeYmPP0fSpwfyEQ= + + + Resources/layout84.xml.zlib + + hash2 + + 0N+3/2zOFHQwi/3EfRxGLSmOjwJEH5Lc13FRdPaDxbA= + + + Resources/layout85.xml.zlib + + hash2 + + xWFZkjXaPTOW+lMxWauNtbOrRGuUM7irbDoav/RR9mw= + + + Resources/layout86.xml.zlib + + hash2 + + 6VO9SrNKPlQXTQ+oE/7rd/EIPJ1LZyQnb9iy7uzEuEo= + + + Resources/layout88.xml.zlib + + hash2 + + jWS35KNwQpm5aNNDktd5VUNvhECfhwMQSc/TfHTmYaY= + + + Resources/layout9.xml.zlib + + hash2 + + lBcciUs5MNHa1DUv5+iXgaAGn6EWP4kI6yy3s9oDQFc= + + + Resources/layout90.xml.zlib + + hash2 + + R0YDXJZHJ+JKX1oDp3zjlA5kHOtTGMdOxIBG9ouIINs= + + + Resources/layout91.xml.zlib + + hash2 + + wHrvzO4LrJUqdI6hIcEETq0crkAzYFbd59NUeHRdtg8= + + + Resources/layout92.xml.zlib + + hash2 + + /qQTmA/i+UBwkSVAw4qX+EItaVSeQ4iS8rfxLAMdS3Q= + + + Resources/layout93.xml.zlib + + hash2 + + s3Qra7BumbHgJv4aLAExFvkDO77vmEXkH8CZJbj0ujs= + + + Resources/layout94.xml.zlib + + hash2 + + 9wbMJ7fDhcNElSq7k3PXDr9Jp8Aqvw0qhcL5FYw4MTw= + + + Resources/layout95.xml.zlib + + hash2 + + 2uMCvJXIJL8tWHlQcDnVif7a6dzK9ioKenblfDYq9MU= + + + Resources/layout98.xml.zlib + + hash2 + + zsK1iOu3tuygzX8i4oy1kZ8Lz2yGy+ID+DyLGOGFQjg= + + + Resources/layout99.xml.zlib + + hash2 + + 8AD7Xzxrl56wx2vwsKrTaU5pdpHar2AryNYSFB53KPo= + + + Resources/ms.lproj/Localizable.strings + + hash2 + + MrXaspZe9mrW0CHFgIq9tchS6GTObcVKBBpbJ98POJQ= + + optional + + + Resources/no.lproj/Localizable.strings + + hash2 + + pssim3eETcOI7tuZdce1l8Y7i573aweUJg9vYbn9aho= + + optional + + + Resources/pl.lproj/Localizable.strings + + hash2 + + I/S2NwHrrgorxwYr4dPiHe1IOD9xD/EAM/bHnJLfIHQ= + + optional + + + Resources/pt.lproj/Localizable.strings + + hash2 + + d6OudPtR3UehqNvYvh5o8eCGDZqtEaZCMv+NRYs9q6U= + + optional + + + Resources/pt_PT.lproj/Localizable.strings + + hash2 + + nJeQ5CVWRQTbTd1hQSKTNyIk51l3PUJyu8Ru6OVS9ts= + + optional + + + Resources/ro.lproj/Localizable.strings + + hash2 + + 9sl7SlXccPo1YG9agrYHfn/c+jKn49jySn4L/+tisY8= + + optional + + + Resources/ru.lproj/Localizable.strings + + hash2 + + IbK1OjVvxq0UmoZjSmAFYfsQ02oftwPQTNcyfCUtEWY= + + optional + + + Resources/sk.lproj/Localizable.strings + + hash2 + + QH15HrVgRwrY2w8xQrEvyUdchBkr5SZO8EmKcBoiLwo= + + optional + + + Resources/sv.lproj/Localizable.strings + + hash2 + + nAFOulfc4J9j+3wv1XGYVV3rJSlqidmS9hWp/M7DKBI= + + optional + + + Resources/th.lproj/Localizable.strings + + hash2 + + D3NIgoTCID6tDIrpxOnspprE4xfOVw8XFMZRtqhcnzs= + + optional + + + Resources/tr.lproj/Localizable.strings + + hash2 + + DD8/gHDvmptqr/TBPTCAef90SbvoD8PutOQSnHswfI4= + + optional + + + Resources/uk.lproj/Localizable.strings + + hash2 + + veymrh9w26HfjQFSTxmKq+Lieib6b09i2XoV5qfwanc= + + optional + + + Resources/vi.lproj/Localizable.strings + + hash2 + + XKcfV1nEoHxdIQLtmPX/G230D8K+nBvzqXLPta6wtFE= + + optional + + + Resources/zh_CN.lproj/Localizable.strings + + hash2 + + mDfQuSY/yMBw4PBanu2VC0uCHZ87/P6RuwpFhdRFoJc= + + optional + + + Resources/zh_TW.lproj/Localizable.strings + + hash2 + + vFnY7a2C2Ui9gbD0vlXfkhY1o0tR+H+KVT4lPL3hQCo= + + optional + + + version.plist + + hash2 + + 8wv4uOE1w0u8JZr9RrUO5KJOO06smBjE2sAJ1esrGNQ= + + + + rules + + ^Resources/ + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^Resources/ + + weight + 20 + + ^Resources/.*\.lproj/ + + optional + + weight + 1000 + + ^Resources/.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Resources/Base\.lproj/ + + weight + 1010 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/version.plist b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/version.plist new file mode 100644 index 000000000..bd9e7f43b --- /dev/null +++ b/payloads/Apple/Extensions/Audio/AppleHDA.kext/Contents/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + AppleHDA + BuildVersion + 603 + CFBundleShortVersionString + 281.52 + CFBundleVersion + 281.52 + ProjectName + AppleHDA + SourceVersion + 281052000000000 + + diff --git a/payloads/Config/v0.6.8/config.plist b/payloads/Config/v0.6.8/config.plist index b224f0510..a7fe26b79 100644 --- a/payloads/Config/v0.6.8/config.plist +++ b/payloads/Config/v0.6.8/config.plist @@ -648,6 +648,42 @@ PlistPath Contents/Info.plist + + Arch + x86_64 + Comment + CpuTscSync + Enabled + + MaxKernel + + MinKernel + + BundlePath + CpuTscSync.kext + ExecutablePath + Contents/MacOS/CpuTscSync + PlistPath + Contents/Info.plist + + + Arch + x86_64 + Comment + HibernationFixup + Enabled + + MaxKernel + + MinKernel + + BundlePath + HibernationFixup.kext + ExecutablePath + Contents/MacOS/HibernationFixup + PlistPath + Contents/Info.plist + Block diff --git a/payloads/Kexts/Acidanthera/CpuTscSync-v1.0.3.zip b/payloads/Kexts/Acidanthera/CpuTscSync-v1.0.3.zip new file mode 100644 index 000000000..3e700321d Binary files /dev/null and b/payloads/Kexts/Acidanthera/CpuTscSync-v1.0.3.zip differ diff --git a/payloads/Kexts/Acidanthera/HibernationFixup-v1.3.9.zip b/payloads/Kexts/Acidanthera/HibernationFixup-v1.3.9.zip new file mode 100644 index 000000000..6da4bec45 Binary files /dev/null and b/payloads/Kexts/Acidanthera/HibernationFixup-v1.3.9.zip differ