gitextract_bmllzn_c/ ├── .gitignore ├── ALSystemUtilities/ │ ├── ALSystemUtilities/ │ │ ├── ALAccessory/ │ │ │ ├── ALAccessory.h │ │ │ └── ALAccessory.m │ │ ├── ALBattery/ │ │ │ ├── ALBattery.h │ │ │ └── ALBattery.m │ │ ├── ALCarrier/ │ │ │ ├── ALCarrier.h │ │ │ └── ALCarrier.m │ │ ├── ALDisk/ │ │ │ ├── ALDisk.h │ │ │ └── ALDisk.m │ │ ├── ALHardware/ │ │ │ ├── ALHardware.h │ │ │ └── ALHardware.m │ │ ├── ALJailbreak/ │ │ │ ├── ALJailbreak.h │ │ │ └── ALJailbreak.m │ │ ├── ALLocalization/ │ │ │ ├── ALLocalization.h │ │ │ └── ALLocalization.m │ │ ├── ALMemory/ │ │ │ ├── ALMemory.h │ │ │ └── ALMemory.m │ │ ├── ALNetwork/ │ │ │ ├── ALNetwork.h │ │ │ └── ALNetwork.m │ │ ├── ALProcessor/ │ │ │ ├── ALProcessor.h │ │ │ └── ALProcessor.m │ │ ├── ALSystem.h │ │ ├── ALSystem.m │ │ ├── ALSystemConstants/ │ │ │ ├── ALSystemConstants.h │ │ │ ├── ALSystem_ALBatteryConstants.h │ │ │ ├── ALSystem_AccessoryConstants.h │ │ │ ├── ALSystem_CarrierConstants.h │ │ │ ├── ALSystem_DiskConstants.h │ │ │ ├── ALSystem_HardwareConstants.h │ │ │ ├── ALSystem_JailbreakConstants.h │ │ │ ├── ALSystem_LocalizationConstants.h │ │ │ ├── ALSystem_MemoryConstants.h │ │ │ ├── ALSystem_NetworkConstants.h │ │ │ └── ALSystem_ProcessorConstants.h │ │ ├── Reachability/ │ │ │ ├── Reachability.h │ │ │ └── Reachability.m │ │ └── Resources/ │ │ ├── iPad/ │ │ │ ├── iPad2.plist │ │ │ ├── iPad3.plist │ │ │ ├── iPad4.plist │ │ │ ├── iPadAir.plist │ │ │ ├── iPadMini.plist │ │ │ └── iPadMiniRetina.plist │ │ ├── iPhone/ │ │ │ ├── iPhone3Gs.plist │ │ │ ├── iPhone4.plist │ │ │ ├── iPhone4s.plist │ │ │ ├── iPhone5.plist │ │ │ ├── iPhone5c.plist │ │ │ ├── iPhone5s.plist │ │ │ ├── iPhone6.plist │ │ │ └── iPhone6Plus.plist │ │ └── iPodTouch/ │ │ ├── iPodTouch3.plist │ │ ├── iPodTouch4.plist │ │ └── iPodTouch5.plist │ ├── ALSystemUtilities-Info.plist │ ├── ALSystemUtilities-Prefix.pch │ └── en.lproj/ │ └── InfoPlist.strings ├── ALSystemUtilities.podspec ├── ALSystemUtilities.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── LICENSE └── README.md