[Classic] 1.13.2.31043 (Beta) menu

User Tag List

Results 1 to 2 of 2
  1. #1
    h42's Avatar Contributor CoreCoins Purchaser
    Reputation
    130
    Join Date
    Oct 2006
    Posts
    108
    Thanks G/R
    139/52
    Trade Feedback
    12 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Classic] 1.13.2.31043 (Beta)

    Got bitten by the classic bug and had to do something about the cravings, so I updated some parts of my dump scripts.
    All of these are from static analysis, and as such not verified, besides a few I checked with a sandbox.

    Descriptors
    Code:
    enum CGObjectData 
    {
        CGObjectData::m_guid = 0, // size: 0x4, flags: MIRROR_ALL
        CGObjectData::m_entryID = 4, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT
        CGObjectData::m_dynamicFlags = 5, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGObjectData::m_scale = 6, // size: 0x1, flags: MIRROR_ALL
        CGObjectDataEnd = 7
    };
    
    enum CGItemData 
    {
        CGItemData::m_owner = CGObjectDataEnd + 0, // size: 0x4, flags: MIRROR_ALL
        CGItemData::m_containedIn = CGObjectDataEnd + 4, // size: 0x4, flags: MIRROR_ALL
        CGItemData::m_creator = CGObjectDataEnd + 8, // size: 0x4, flags: MIRROR_ALL
        CGItemData::m_giftCreator = CGObjectDataEnd + 12, // size: 0x4, flags: MIRROR_ALL
        CGItemData::m_stackCount = CGObjectDataEnd + 16, // size: 0x1, flags: MIRROR_OWNER
        CGItemData::m_expiration = CGObjectDataEnd + 17, // size: 0x1, flags: MIRROR_OWNER
        CGItemData::m_spellCharges = CGObjectDataEnd + 18, // size: 0x5, flags: MIRROR_OWNER
        CGItemData::m_dynamicFlags = CGObjectDataEnd + 23, // size: 0x1, flags: MIRROR_ALL
        CGItemData::m_enchantment = CGObjectDataEnd + 24, // size: 0x27, flags: MIRROR_ALL
        CGItemData::m_propertySeed = CGObjectDataEnd + 63, // size: 0x1, flags: MIRROR_ALL
        CGItemData::m_randomPropertiesID = CGObjectDataEnd + 64, // size: 0x1, flags: MIRROR_ALL
        CGItemData::m_durability = CGObjectDataEnd + 65, // size: 0x1, flags: MIRROR_OWNER
        CGItemData::m_maxDurability = CGObjectDataEnd + 66, // size: 0x1, flags: MIRROR_OWNER
        CGItemData::m_createPlayedTime = CGObjectDataEnd + 67, // size: 0x1, flags: MIRROR_ALL
        CGItemData::m_modifiersMask = CGObjectDataEnd + 68, // size: 0x1, flags: MIRROR_OWNER
        CGItemData::m_context = CGObjectDataEnd + 69, // size: 0x1, flags: MIRROR_ALL
        CGItemData::m_artifactXP = CGObjectDataEnd + 70, // size: 0x2, flags: MIRROR_OWNER
        CGItemData::m_itemAppearanceModID = CGObjectDataEnd + 72, // size: 0x1, flags: MIRROR_OWNER
        CGItemDataEnd = CGObjectDataEnd + 73
    };
    
    enum CGContainerData 
    {
        CGContainerData::m_slots = CGItemDataEnd + 0, // size: 0x90, flags: MIRROR_ALL
        CGContainerData::m_numSlots = CGItemDataEnd + 144, // size: 0x1, flags: MIRROR_ALL
        CGContainerDataEnd = CGItemDataEnd + 145
    };
    
    enum CGAzeriteEmpoweredItemData 
    {
        CGAzeriteEmpoweredItemData::m_selections = CGItemDataEnd + 0, // size: 0x4, flags: MIRROR_ALL
        CGAzeriteEmpoweredItemDataEnd = CGItemDataEnd + 4
    };
    
    enum CGAzeriteItemData 
    {
        CGAzeriteItemData::m_xp = CGItemDataEnd + 0, // size: 0x2, flags: MIRROR_ALL
        CGAzeriteItemData::m_level = CGItemDataEnd + 2, // size: 0x1, flags: MIRROR_ALL
        CGAzeriteItemData::m_auraLevel = CGItemDataEnd + 3, // size: 0x1, flags: MIRROR_ALL
        CGAzeriteItemData::m_knowledgeLevel = CGItemDataEnd + 4, // size: 0x1, flags: MIRROR_OWNER
        CGAzeriteItemData::m_DEBUGknowledgeWeek = CGItemDataEnd + 5, // size: 0x1, flags: MIRROR_OWNER
        CGAzeriteItemDataEnd = CGItemDataEnd + 6
    };
    
    enum CGUnitData 
    {
        CGUnitData::charm = CGObjectDataEnd + 0, // size: 0x4, flags: MIRROR_ALL
        CGUnitData::summon = CGObjectDataEnd + 4, // size: 0x4, flags: MIRROR_ALL
        CGUnitData::critter = CGObjectDataEnd + 8, // size: 0x4, flags: MIRROR_SELF
        CGUnitData::charmedBy = CGObjectDataEnd + 12, // size: 0x4, flags: MIRROR_ALL
        CGUnitData::summonedBy = CGObjectDataEnd + 16, // size: 0x4, flags: MIRROR_ALL
        CGUnitData::createdBy = CGObjectDataEnd + 20, // size: 0x4, flags: MIRROR_ALL
        CGUnitData::demonCreator = CGObjectDataEnd + 24, // size: 0x4, flags: MIRROR_ALL
        CGUnitData::lookAtControllerTarget = CGObjectDataEnd + 28, // size: 0x4, flags: MIRROR_ALL
        CGUnitData::target = CGObjectDataEnd + 32, // size: 0x4, flags: MIRROR_ALL
        CGUnitData::battlePetCompanionGUID = CGObjectDataEnd + 36, // size: 0x4, flags: MIRROR_ALL
        CGUnitData::battlePetDBID = CGObjectDataEnd + 40, // size: 0x2, flags: MIRROR_ALL
        CGUnitData::channelData = CGObjectDataEnd + 42, // size: 0x2, flags: MIRROR_ALL | MIRROR_URGENT
        CGUnitData::summonedByHomeRealm = CGObjectDataEnd + 44, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::displayPower = CGObjectDataEnd + 45, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::overrideDisplayPowerID = CGObjectDataEnd + 46, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::health = CGObjectDataEnd + 47, // size: 0x2, flags: MIRROR_VIEWER_DEPENDENT
        CGUnitData::power = CGObjectDataEnd + 49, // size: 0x6, flags: MIRROR_ALL | MIRROR_URGENT_SELF_ONLY
        CGUnitData::maxHealth = CGObjectDataEnd + 55, // size: 0x2, flags: MIRROR_VIEWER_DEPENDENT
        CGUnitData::maxPower = CGObjectDataEnd + 57, // size: 0x6, flags: MIRROR_ALL
        CGUnitData::modPowerRegen = CGObjectDataEnd + 63, // size: 0x6, flags: MIRROR_SELF | MIRROR_OWNER | MIRROR_UNIT_ALL
        CGUnitData::level = CGObjectDataEnd + 69, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::effectiveLevel = CGObjectDataEnd + 70, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::contentTuningID = CGObjectDataEnd + 71, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::scalingLevelMin = CGObjectDataEnd + 72, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::scalingLevelMax = CGObjectDataEnd + 73, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::scalingLevelDelta = CGObjectDataEnd + 74, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::scalingFactionGroup = CGObjectDataEnd + 75, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::scalingHealthItemLevelCurveID = CGObjectDataEnd + 76, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::scalingDamageItemLevelCurveID = CGObjectDataEnd + 77, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::factionTemplate = CGObjectDataEnd + 78, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::virtualItems = CGObjectDataEnd + 79, // size: 0x6, flags: MIRROR_ALL
        CGUnitData::flags = CGObjectDataEnd + 85, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGUnitData::flags2 = CGObjectDataEnd + 86, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGUnitData::flags3 = CGObjectDataEnd + 87, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGUnitData::auraState = CGObjectDataEnd + 88, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::attackRoundBaseTime = CGObjectDataEnd + 89, // size: 0x2, flags: MIRROR_ALL
        CGUnitData::rangedAttackRoundBaseTime = CGObjectDataEnd + 91, // size: 0x1, flags: MIRROR_SELF
        CGUnitData::boundingRadius = CGObjectDataEnd + 92, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::combatReach = CGObjectDataEnd + 93, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::displayID = CGObjectDataEnd + 94, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGUnitData::displayScale = CGObjectDataEnd + 95, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGUnitData::nativeDisplayID = CGObjectDataEnd + 96, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGUnitData::nativeXDisplayScale = CGObjectDataEnd + 97, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGUnitData::mountDisplayID = CGObjectDataEnd + 98, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGUnitData::minDamage = CGObjectDataEnd + 99, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER | MIRROR_EMPATH
        CGUnitData::maxDamage = CGObjectDataEnd + 100, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER | MIRROR_EMPATH
        CGUnitData::minOffHandDamage = CGObjectDataEnd + 101, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER | MIRROR_EMPATH
        CGUnitData::maxOffHandDamage = CGObjectDataEnd + 102, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER | MIRROR_EMPATH
        CGUnitData::petNumber = CGObjectDataEnd + 103, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::petNameTimestamp = CGObjectDataEnd + 104, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::petExperience = CGObjectDataEnd + 105, // size: 0x1, flags: MIRROR_OWNER
        CGUnitData::petNextLevelExperience = CGObjectDataEnd + 106, // size: 0x1, flags: MIRROR_OWNER
        CGUnitData::modCastingSpeed = CGObjectDataEnd + 107, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::modSpellHaste = CGObjectDataEnd + 108, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::modHaste = CGObjectDataEnd + 109, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::modRangedHaste = CGObjectDataEnd + 110, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::modHasteRegen = CGObjectDataEnd + 111, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::modTimeRate = CGObjectDataEnd + 112, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::createdBySpell = CGObjectDataEnd + 113, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::npcFlags = CGObjectDataEnd + 114, // size: 0x2, flags: MIRROR_ALL | MIRROR_VIEWER_DEPENDENT
        CGUnitData::emoteState = CGObjectDataEnd + 116, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::stats = CGObjectDataEnd + 117, // size: 0x5, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::statPosBuff = CGObjectDataEnd + 122, // size: 0x5, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::statNegBuff = CGObjectDataEnd + 127, // size: 0x5, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::resistances = CGObjectDataEnd + 132, // size: 0x7, flags: MIRROR_SELF | MIRROR_OWNER | MIRROR_EMPATH
        CGUnitData::resistanceBuffModsPositive = CGObjectDataEnd + 139, // size: 0x7, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::resistanceBuffModsNegative = CGObjectDataEnd + 146, // size: 0x7, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::baseMana = CGObjectDataEnd + 153, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::baseHealth = CGObjectDataEnd + 154, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::attackPower = CGObjectDataEnd + 155, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::attackPowerModPos = CGObjectDataEnd + 156, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::attackPowerModNeg = CGObjectDataEnd + 157, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::attackPowerMultiplier = CGObjectDataEnd + 158, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::rangedAttackPower = CGObjectDataEnd + 159, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::rangedAttackPowerModPos = CGObjectDataEnd + 160, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::rangedAttackPowerModNeg = CGObjectDataEnd + 161, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::rangedAttackPowerMultiplier = CGObjectDataEnd + 162, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::mainHandWeaponAttackPower = CGObjectDataEnd + 163, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::offHandWeaponAttackPower = CGObjectDataEnd + 164, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::rangedWeaponAttackPower = CGObjectDataEnd + 165, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::setAttackSpeedAura = CGObjectDataEnd + 166, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::lifesteal = CGObjectDataEnd + 167, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::minRangedDamage = CGObjectDataEnd + 168, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::maxRangedDamage = CGObjectDataEnd + 169, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::powerCostModifier = CGObjectDataEnd + 170, // size: 0x7, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::powerCostMultiplier = CGObjectDataEnd + 177, // size: 0x7, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::maxHealthModifier = CGObjectDataEnd + 184, // size: 0x1, flags: MIRROR_SELF | MIRROR_OWNER
        CGUnitData::hoverHeight = CGObjectDataEnd + 185, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::minItemLevelCutoff = CGObjectDataEnd + 186, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::minItemLevel = CGObjectDataEnd + 187, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::maxItemLevel = CGObjectDataEnd + 188, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::wildBattlePetLevel = CGObjectDataEnd + 189, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::battlePetCompanionNameTimestamp = CGObjectDataEnd + 190, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::interactSpellID = CGObjectDataEnd + 191, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::stateSpellVisualID = CGObjectDataEnd + 192, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGUnitData::stateAnimID = CGObjectDataEnd + 193, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGUnitData::stateAnimKitID = CGObjectDataEnd + 194, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGUnitData::stateWorldEffectID = CGObjectDataEnd + 195, // size: 0x4, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGUnitData::scaleDuration = CGObjectDataEnd + 199, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::looksLikeMountID = CGObjectDataEnd + 200, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::looksLikeCreatureID = CGObjectDataEnd + 201, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::lookAtControllerID = CGObjectDataEnd + 202, // size: 0x1, flags: MIRROR_ALL
        CGUnitData::guildGUID = CGObjectDataEnd + 203, // size: 0x4, flags: MIRROR_ALL
        CGUnitDataEnd = CGObjectDataEnd + 207
    };
    
    enum CGPlayerData 
    {
        CGPlayerData::duelArbiter = CGUnitDataEnd + 0, // size: 0x4, flags: MIRROR_ALL
        CGPlayerData::wowAccount = CGUnitDataEnd + 4, // size: 0x4, flags: MIRROR_ALL
        CGPlayerData::lootTargetGUID = CGUnitDataEnd + 8, // size: 0x4, flags: MIRROR_ALL
        CGPlayerData::playerFlags = CGUnitDataEnd + 12, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::playerFlagsEx = CGUnitDataEnd + 13, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::guildRankID = CGUnitDataEnd + 14, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::guildDeleteDate = CGUnitDataEnd + 15, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::guildLevel = CGUnitDataEnd + 16, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::customDisplayOption = CGUnitDataEnd + 17, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::duelTeam = CGUnitDataEnd + 18, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::guildTimeStamp = CGUnitDataEnd + 19, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::questLog = CGUnitDataEnd + 20, // size: 0x140, flags: MIRROR_PARTY
        CGPlayerData::visibleItems = CGUnitDataEnd + 340, // size: 0x26, flags: MIRROR_ALL
        CGPlayerData::playerTitle = CGUnitDataEnd + 378, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::fakeInebriation = CGUnitDataEnd + 379, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::virtualPlayerRealm = CGUnitDataEnd + 380, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::currentSpecID = CGUnitDataEnd + 381, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::taxiMountAnimKitID = CGUnitDataEnd + 382, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::avgItemLevel = CGUnitDataEnd + 383, // size: 0x4, flags: MIRROR_ALL
        CGPlayerData::currentBattlePetBreedQuality = CGUnitDataEnd + 387, // size: 0x1, flags: MIRROR_ALL
        CGPlayerData::honorLevel = CGUnitDataEnd + 388, // size: 0x1, flags: MIRROR_ALL
        CGPlayerDataEnd = CGUnitDataEnd + 389
    };
    
    enum CGActivePlayerData 
    {
        CGActivePlayerData::invSlots = CGPlayerDataEnd + 0, // size: 0x170, flags: MIRROR_ALL
        CGActivePlayerData::farsightObject = CGPlayerDataEnd + 368, // size: 0x4, flags: MIRROR_ALL
        CGActivePlayerData::comboTarget = CGPlayerDataEnd + 372, // size: 0x4, flags: MIRROR_ALL
        CGActivePlayerData::summonedBattlePetGUID = CGPlayerDataEnd + 376, // size: 0x4, flags: MIRROR_ALL
        CGActivePlayerData::knownTitles = CGPlayerDataEnd + 380, // size: 0xc, flags: MIRROR_ALL
        CGActivePlayerData::coinage = CGPlayerDataEnd + 392, // size: 0x2, flags: MIRROR_ALL
        CGActivePlayerData::XP = CGPlayerDataEnd + 394, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::nextLevelXP = CGPlayerDataEnd + 395, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::trialXP = CGPlayerDataEnd + 396, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::skill = CGPlayerDataEnd + 397, // size: 0x380, flags: MIRROR_ALL
        CGActivePlayerData::characterPoints = CGPlayerDataEnd + 1293, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::maxTalentTiers = CGPlayerDataEnd + 1294, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::trackCreatureMask = CGPlayerDataEnd + 1295, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::trackResourceMask = CGPlayerDataEnd + 1296, // size: 0x2, flags: MIRROR_ALL
        CGActivePlayerData::mainhandExpertise = CGPlayerDataEnd + 1298, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::offhandExpertise = CGPlayerDataEnd + 1299, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::rangedExpertise = CGPlayerDataEnd + 1300, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::combatRatingExpertise = CGPlayerDataEnd + 1301, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::blockPercentage = CGPlayerDataEnd + 1302, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::dodgePercentage = CGPlayerDataEnd + 1303, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::dodgePercentageFromAttribute = CGPlayerDataEnd + 1304, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::parryPercentage = CGPlayerDataEnd + 1305, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::parryPercentageFromAttribute = CGPlayerDataEnd + 1306, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::critPercentage = CGPlayerDataEnd + 1307, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::rangedCritPercentage = CGPlayerDataEnd + 1308, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::offhandCritPercentage = CGPlayerDataEnd + 1309, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::spellCritPercentage = CGPlayerDataEnd + 1310, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::shieldBlock = CGPlayerDataEnd + 1311, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::mastery = CGPlayerDataEnd + 1312, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::speed = CGPlayerDataEnd + 1313, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::avoidance = CGPlayerDataEnd + 1314, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::sturdiness = CGPlayerDataEnd + 1315, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::versatility = CGPlayerDataEnd + 1316, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::versatilityBonus = CGPlayerDataEnd + 1317, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::pvpPowerDamage = CGPlayerDataEnd + 1318, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::pvpPowerHealing = CGPlayerDataEnd + 1319, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::exploredZones = CGPlayerDataEnd + 1320, // size: 0x140, flags: MIRROR_ALL
        CGActivePlayerData::restInfo = CGPlayerDataEnd + 1640, // size: 0x4, flags: MIRROR_ALL
        CGActivePlayerData::modDamageDonePos = CGPlayerDataEnd + 1644, // size: 0x7, flags: MIRROR_ALL
        CGActivePlayerData::modDamageDoneNeg = CGPlayerDataEnd + 1651, // size: 0x7, flags: MIRROR_ALL
        CGActivePlayerData::modDamageDonePercent = CGPlayerDataEnd + 1658, // size: 0x7, flags: MIRROR_ALL
        CGActivePlayerData::modHealingDonePos = CGPlayerDataEnd + 1665, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::modHealingPercent = CGPlayerDataEnd + 1666, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::modHealingDonePercent = CGPlayerDataEnd + 1667, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::modPeriodicHealingDonePercent = CGPlayerDataEnd + 1668, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::weaponDmgMultipliers = CGPlayerDataEnd + 1669, // size: 0x3, flags: MIRROR_ALL
        CGActivePlayerData::weaponAtkSpeedMultipliers = CGPlayerDataEnd + 1672, // size: 0x3, flags: MIRROR_ALL
        CGActivePlayerData::modSpellPowerPercent = CGPlayerDataEnd + 1675, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::modResiliencePercent = CGPlayerDataEnd + 1676, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::overrideSpellPowerByAPPercent = CGPlayerDataEnd + 1677, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::overrideAPBySpellPowerPercent = CGPlayerDataEnd + 1678, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::modTargetResistance = CGPlayerDataEnd + 1679, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::modTargetPhysicalResistance = CGPlayerDataEnd + 1680, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::localFlags = CGPlayerDataEnd + 1681, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::ammoID = CGPlayerDataEnd + 1682, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::pvpMedals = CGPlayerDataEnd + 1683, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::buybackPrice = CGPlayerDataEnd + 1684, // size: 0xc, flags: MIRROR_ALL
        CGActivePlayerData::buybackTimestamp = CGPlayerDataEnd + 1696, // size: 0xc, flags: MIRROR_ALL
        CGActivePlayerData::thisWeekContribution = CGPlayerDataEnd + 1708, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::lifetimeHonorableKills = CGPlayerDataEnd + 1709, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::lifetimeDishonorableKills = CGPlayerDataEnd + 1710, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::yesterdayContribution = CGPlayerDataEnd + 1711, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::lastWeekContribution = CGPlayerDataEnd + 1712, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::lastWeekRank = CGPlayerDataEnd + 1713, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::watchedFactionIndex = CGPlayerDataEnd + 1714, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::combatRatings = CGPlayerDataEnd + 1715, // size: 0x20, flags: MIRROR_ALL
        CGActivePlayerData::pvpInfo = CGPlayerDataEnd + 1747, // size: 0x36, flags: MIRROR_ALL
        CGActivePlayerData::maxLevel = CGPlayerDataEnd + 1801, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::scalingPlayerLevelDelta = CGPlayerDataEnd + 1802, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::maxCreatureScalingLevel = CGPlayerDataEnd + 1803, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::noReagentCostMask = CGPlayerDataEnd + 1804, // size: 0x4, flags: MIRROR_ALL
        CGActivePlayerData::petSpellPower = CGPlayerDataEnd + 1808, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::professionSkillLine = CGPlayerDataEnd + 1809, // size: 0x2, flags: MIRROR_ALL
        CGActivePlayerData::uiHitModifier = CGPlayerDataEnd + 1811, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::uiSpellHitModifier = CGPlayerDataEnd + 1812, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::homeRealmTimeOffset = CGPlayerDataEnd + 1813, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::modPetHaste = CGPlayerDataEnd + 1814, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::overrideSpellsID = CGPlayerDataEnd + 1815, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT_SELF_ONLY
        CGActivePlayerData::lfgBonusFactionID = CGPlayerDataEnd + 1816, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::lootSpecID = CGPlayerDataEnd + 1817, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::overrideZonePVPType = CGPlayerDataEnd + 1818, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT_SELF_ONLY
        CGActivePlayerData::bagSlotFlags = CGPlayerDataEnd + 1819, // size: 0x4, flags: MIRROR_ALL
        CGActivePlayerData::bankBagSlotFlags = CGPlayerDataEnd + 1823, // size: 0x6, flags: MIRROR_ALL
        CGActivePlayerData::questCompleted = CGPlayerDataEnd + 1829, // size: 0x6d6, flags: MIRROR_ALL
        CGActivePlayerData::honor = CGPlayerDataEnd + 3579, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::honorNextLevel = CGPlayerDataEnd + 3580, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::pvpTierMaxFromWins = CGPlayerDataEnd + 3581, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerData::pvpLastWeeksTierMaxFromWins = CGPlayerDataEnd + 3582, // size: 0x1, flags: MIRROR_ALL
        CGActivePlayerDataEnd = CGPlayerDataEnd + 3583
    };
    
    enum CGGameObjectData 
    {
        CGGameObjectData::m_createdBy = CGObjectDataEnd + 0, // size: 0x4, flags: MIRROR_ALL
        CGGameObjectData::m_guildGUID = CGObjectDataEnd + 4, // size: 0x4, flags: MIRROR_ALL
        CGGameObjectData::m_displayID = CGObjectDataEnd + 8, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGGameObjectData::m_flags = CGObjectDataEnd + 9, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGGameObjectData::m_parentRotation = CGObjectDataEnd + 10, // size: 0x4, flags: MIRROR_ALL
        CGGameObjectData::m_factionTemplate = CGObjectDataEnd + 14, // size: 0x1, flags: MIRROR_ALL
        CGGameObjectData::m_level = CGObjectDataEnd + 15, // size: 0x1, flags: MIRROR_ALL
        CGGameObjectData::m_spellVisualID = CGObjectDataEnd + 16, // size: 0x1, flags: MIRROR_ALL | MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGGameObjectData::m_stateSpellVisualID = CGObjectDataEnd + 17, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGGameObjectData::m_spawnTrackingStateAnimID = CGObjectDataEnd + 18, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGGameObjectData::m_spawnTrackingStateAnimKitID = CGObjectDataEnd + 19, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGGameObjectData::m_stateWorldEffectID = CGObjectDataEnd + 20, // size: 0x4, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGGameObjectData::m_customParam = CGObjectDataEnd + 24, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGGameObjectDataEnd = CGObjectDataEnd + 25
    };
    
    enum CGDynamicObjectData 
    {
        CGDynamicObjectData::m_caster = CGObjectDataEnd + 0, // size: 0x4, flags: MIRROR_ALL
        CGDynamicObjectData::m_type = CGObjectDataEnd + 4, // size: 0x1, flags: MIRROR_ALL
        CGDynamicObjectData::m_spellXSpellVisualID = CGObjectDataEnd + 5, // size: 0x1, flags: MIRROR_ALL
        CGDynamicObjectData::m_spellID = CGObjectDataEnd + 6, // size: 0x1, flags: MIRROR_ALL
        CGDynamicObjectData::m_radius = CGObjectDataEnd + 7, // size: 0x1, flags: MIRROR_ALL
        CGDynamicObjectData::m_castTime = CGObjectDataEnd + 8, // size: 0x1, flags: MIRROR_ALL
        CGDynamicObjectDataEnd = CGObjectDataEnd + 9
    };
    
    enum CGCorpseData 
    {
        CGCorpseData::m_owner = CGObjectDataEnd + 0, // size: 0x4, flags: MIRROR_ALL
        CGCorpseData::m_partyGUID = CGObjectDataEnd + 4, // size: 0x4, flags: MIRROR_ALL
        CGCorpseData::m_guildGUID = CGObjectDataEnd + 8, // size: 0x4, flags: MIRROR_ALL
        CGCorpseData::m_displayID = CGObjectDataEnd + 12, // size: 0x1, flags: MIRROR_ALL
        CGCorpseData::m_items = CGObjectDataEnd + 13, // size: 0x13, flags: MIRROR_ALL
        CGCorpseData::m_flags = CGObjectDataEnd + 32, // size: 0x1, flags: MIRROR_ALL
        CGCorpseData::m_dynamicFlags = CGObjectDataEnd + 33, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT
        CGCorpseData::m_factionTemplate = CGObjectDataEnd + 34, // size: 0x1, flags: MIRROR_ALL
        CGCorpseData::m_customDisplayOption = CGObjectDataEnd + 35, // size: 0x1, flags: MIRROR_ALL
        CGCorpseDataEnd = CGObjectDataEnd + 36
    };
    
    enum CGAreaTriggerData 
    {
        CGAreaTriggerData::m_overrideScaleCurve = CGObjectDataEnd + 0, // size: 0x7, flags: MIRROR_ALL | MIRROR_URGENT
        CGAreaTriggerData::m_extraScaleCurve = CGObjectDataEnd + 7, // size: 0x7, flags: MIRROR_ALL | MIRROR_URGENT
        CGAreaTriggerData::m_caster = CGObjectDataEnd + 14, // size: 0x4, flags: MIRROR_ALL
        CGAreaTriggerData::m_duration = CGObjectDataEnd + 18, // size: 0x1, flags: MIRROR_ALL
        CGAreaTriggerData::m_timeToTarget = CGObjectDataEnd + 19, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGAreaTriggerData::m_timeToTargetScale = CGObjectDataEnd + 20, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGAreaTriggerData::m_timeToTargetExtraScale = CGObjectDataEnd + 21, // size: 0x1, flags: MIRROR_ALL | MIRROR_URGENT
        CGAreaTriggerData::m_spellID = CGObjectDataEnd + 22, // size: 0x1, flags: MIRROR_ALL
        CGAreaTriggerData::m_spellForVisuals = CGObjectDataEnd + 23, // size: 0x1, flags: MIRROR_ALL
        CGAreaTriggerData::m_spellXSpellVisualID = CGObjectDataEnd + 24, // size: 0x1, flags: MIRROR_ALL
        CGAreaTriggerData::m_boundsRadius2D = CGObjectDataEnd + 25, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT | MIRROR_URGENT
        CGAreaTriggerData::m_decalPropertiesID = CGObjectDataEnd + 26, // size: 0x1, flags: MIRROR_ALL
        CGAreaTriggerData::m_creatingEffectGUID = CGObjectDataEnd + 27, // size: 0x4, flags: MIRROR_ALL
        CGAreaTriggerDataEnd = CGObjectDataEnd + 31
    };
    
    enum CGSceneObjectData 
    {
        CGSceneObjectData::m_scriptPackageID = CGObjectDataEnd + 0, // size: 0x1, flags: MIRROR_ALL
        CGSceneObjectData::m_rndSeedVal = CGObjectDataEnd + 1, // size: 0x1, flags: MIRROR_ALL
        CGSceneObjectData::m_createdBy = CGObjectDataEnd + 2, // size: 0x4, flags: MIRROR_ALL
        CGSceneObjectData::m_sceneType = CGObjectDataEnd + 6, // size: 0x1, flags: MIRROR_ALL
        CGSceneObjectDataEnd = CGObjectDataEnd + 7
    };
    
    enum CGConversationData 
    {
        CGConversationData::m_lastLineEndTime = CGObjectDataEnd + 0, // size: 0x1, flags: MIRROR_VIEWER_DEPENDENT
        CGConversationDataEnd = CGObjectDataEnd + 1
    };
    
    enum CGItemDynamicData 
    {
        CGItemDynamicData::m_modifiers = CGObjectDataEnd + 0, // size: 0x4, flags: MIRROR_NONE
        CGItemDynamicData::m_bonusListIDs = CGObjectDataEnd + 4, // size: 0x104, flags: MIRROR_NONE
        CGItemDynamicData::m_artifactPowers = CGObjectDataEnd + 264, // size: 0x4, flags: MIRROR_NONE
        CGItemDynamicData::m_gems = CGObjectDataEnd + 268, // size: 0x4, flags: MIRROR_NONE
        CGItemDynamicDataEnd = CGObjectDataEnd + 272
    };
    
    enum CGUnitDynamicData 
    {
        CGUnitDynamicData::passiveSpells = CGObjectDataEnd + 0, // size: 0x201, flags: MIRROR_NONE
        CGUnitDynamicData::worldEffects = CGObjectDataEnd + 513, // size: 0x201, flags: MIRROR_NONE
        CGUnitDynamicData::channelObjects = CGObjectDataEnd + 1026, // size: 0x201, flags: MIRROR_NONE
        CGUnitDynamicDataEnd = CGObjectDataEnd + 1539
    };
    
    enum CGPlayerDynamicData 
    {
        CGPlayerDynamicData::arenaCooldowns = CGObjectDataEnd + 0, // size: 0x1, flags: MIRROR_NONE
        CGPlayerDynamicDataEnd = CGObjectDataEnd + 1
    };
    
    enum CGActivePlayerDynamicData 
    {
        CGActivePlayerDynamicData::researchSites = CGObjectDataEnd + 0, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::researchSiteProgress = CGObjectDataEnd + 1, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::dailyQuestsCompleted = CGObjectDataEnd + 2, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::availableQuestLineXQuestIDs = CGObjectDataEnd + 3, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::heirlooms = CGObjectDataEnd + 4, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::heirloomFlags = CGObjectDataEnd + 5, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::toys = CGObjectDataEnd + 6, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::transmog = CGObjectDataEnd + 7, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::conditionalTransmog = CGObjectDataEnd + 8, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::selfResSpells = CGObjectDataEnd + 9, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::characterRestrictions = CGObjectDataEnd + 10, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::spellPctModByLabel = CGObjectDataEnd + 11, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::spellFlatModByLabel = CGObjectDataEnd + 12, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicData::research = CGObjectDataEnd + 13, // size: 0x1, flags: MIRROR_NONE
        CGActivePlayerDynamicDataEnd = CGObjectDataEnd + 14
    };
    
    enum CGGameObjectDynamicData 
    {
        CGGameObjectDynamicData::enableDoodadSets = CGObjectDataEnd + 0, // size: 0x1, flags: MIRROR_NONE
        CGGameObjectDynamicDataEnd = CGObjectDataEnd + 1
    };
    
    enum CGConversationDynamicData 
    {
        CGConversationDynamicData::m_actors = CGObjectDataEnd + 0, // size: 0x1, flags: MIRROR_NONE
        CGConversationDynamicData::m_lines = CGObjectDataEnd + 1, // size: 0x100, flags: MIRROR_NONE
        CGConversationDynamicDataEnd = CGObjectDataEnd + 257
    };
    lua API
    Code:
    ------- Widget API -------
    "ColorSelect:GetColorWheelTexture" : 0x1c70270,
    "ColorSelect:SetColorWheelTexture" : 0x1c702e0,
    "ColorSelect:GetColorWheelThumbTexture" : 0x1c70420,
    "ColorSelect:SetColorWheelThumbTexture" : 0x1c70490,
    "ColorSelect:GetColorValueTexture" : 0x1c70610,
    "ColorSelect:SetColorValueTexture" : 0x1c70680,
    "ColorSelect:GetColorValueThumbTexture" : 0x1c707c0,
    "ColorSelect:SetColorValueThumbTexture" : 0x1c70830,
    "ColorSelect:SetColorHSV" : 0x1c709b0,
    "ColorSelect:GetColorHSV" : 0x1c70a90,
    "ColorSelect:SetColorRGB" : 0x1c70b40,
    "ColorSelect:GetColorRGB" : 0x1c70bf0,
    "Frame:CreateTexture" : 0x333640,
    "Frame:CreateMaskTexture" : 0x333650,
    "Frame:CreateLine" : 0x333660,
    "Frame:CreateFontString" : 0x333670,
    "Frame:GetBoundsRect" : 0x3339e0,
    "Frame:GetNumRegions" : 0x333ad0,
    "Frame:GetRegions" : 0x333b90,
    "Frame:GetNumChildren" : 0x333cd0,
    "Frame:GetChildren" : 0x333d90,
    "Frame:GetFrameStrata" : 0x333ed0,
    "Frame:SetFrameStrata" : 0x333f50,
    "Frame:GetFrameLevel" : 0x3340f0,
    "Frame:SetFrameLevel" : 0x334170,
    "Frame:HasScript" : 0x334300,
    "Frame:GetScript" : 0x3343e0,
    "Frame:SetScript" : 0x334450,
    "Frame:HookScript" : 0x3344c0,
    "Frame:RegisterEvent" : 0x334530,
    "Frame:RegisterUnitEvent" : 0x334650,
    "Frame:UnregisterEvent" : 0x3348a0,
    "Frame:RegisterAllEvents" : 0x3349c0,
    "Frame:UnregisterAllEvents" : 0x334a30,
    "Frame:IsEventRegistered" : 0x334aa0,
    "Frame:CanChangeAttribute" : 0x334be0,
    "Frame:GetAttribute" : 0x334db0,
    "Frame:SetAttribute" : 0x335190,
    "Frame:ExecuteAttribute" : 0x334c50,
    "Frame:GetEffectiveScale" : 0x335410,
    "Frame:GetScale" : 0x335480,
    "Frame:SetScale" : 0x3354f0,
    "Frame:GetEffectiveAlpha" : 0x335650,
    "Frame:GetAlpha" : 0x3356f0,
    "Frame:SetAlpha" : 0x335770,
    "Frame:GetID" : 0x335850,
    "Frame:SetID" : 0x3358c0,
    "Frame:SetToplevel" : 0x335a00,
    "Frame:IsToplevel" : 0x335b10,
    "Frame:EnableDrawLayer" : 0x335b80,
    "Frame:DisableDrawLayer" : 0x335c20,
    "Frame:Show" : 0x335cc0,
    "Frame:Hide" : 0x335dd0,
    "Frame:SetShown" : 0x335ec0,
    "Frame:IsVisible" : 0x335fd0,
    "Frame:IsShown" : 0x336040,
    "Frame:Raise" : 0x3360b0,
    "Frame:Lower" : 0x3361a0,
    "Frame:GetHitRectInsets" : 0x336290,
    "Frame:SetHitRectInsets" : 0x336330,
    "Frame:GetClampRectInsets" : 0x3364a0,
    "Frame:SetClampRectInsets" : 0x336550,
    "Frame:GetMinResize" : 0x336630,
    "Frame:SetMinResize" : 0x336700,
    "Frame:GetMaxResize" : 0x336880,
    "Frame:SetMaxResize" : 0x336950,
    "Frame:SetMovable" : 0x336ae0,
    "Frame:IsMovable" : 0x336b60,
    "Frame:SetDontSavePosition" : 0x336bd0,
    "Frame:GetDontSavePosition" : 0x336c50,
    "Frame:SetResizable" : 0x336cc0,
    "Frame:IsResizable" : 0x336d40,
    "Frame:StartMoving" : 0x336db0,
    "Frame:StartSizing" : 0x336f30,
    "Frame:StopMovingOrSizing" : 0x3370f0,
    "Frame:SetUserPlaced" : 0x3371b0,
    "Frame:IsUserPlaced" : 0x337270,
    "Frame:SetClampedToScreen" : 0x3372e0,
    "Frame:IsClampedToScreen" : 0x337360,
    "Frame:RegisterForDrag" : 0x3373d0,
    "Frame:EnableKeyboard" : 0x337490,
    "Frame:IsKeyboardEnabled" : 0x3375b0,
    "Frame:EnableMouse" : 0x337620,
    "Frame:IsMouseEnabled" : 0x337770,
    "Frame:SetMouseClickEnabled" : 0x3377f0,
    "Frame:IsMouseClickEnabled" : 0x337910,
    "Frame:SetMouseMotionEnabled" : 0x337980,
    "Frame:IsMouseMotionEnabled" : 0x337aa0,
    "Frame:EnableMouseWheel" : 0x337b10,
    "Frame:IsMouseWheelEnabled" : 0x337c20,
    "Frame:EnableJoystick" : 0x337c90,
    "Frame:IsJoystickEnabled" : 0x337da0,
    "Frame:GetBackdrop" : 0x337e10,
    "Frame:SetBackdrop" : 0x338240,
    "Frame:GetBackdropColor" : 0x3388b0,
    "Frame:SetBackdropColor" : 0x3389b0,
    "Frame:GetBackdropBorderColor" : 0x338a40,
    "Frame:SetBackdropBorderColor" : 0x338b40,
    "Frame:SetDepth" : 0x338bd0,
    "Frame:GetDepth" : 0x338c90,
    "Frame:GetEffectiveDepth" : 0x338d20,
    "Frame:IgnoreDepth" : 0x338dc0,
    "Frame:IsIgnoringDepth" : 0x338e40,
    "Frame:SetPropagateKeyboardInput" : 0x338eb0,
    "Frame:GetPropagateKeyboardInput" : 0x338f30,
    "Frame:SetFlattensRenderLayers" : 0x338fc0,
    "Frame:GetFlattensRenderLayers" : 0x339040,
    "Frame:GetEffectivelyFlattensRenderLayers" : 0x3390b0,
    "Frame:SetHyperlinksEnabled" : 0x339120,
    "Frame:GetHyperlinksEnabled" : 0x3391a0,
    "Frame:SetClipsChildren" : 0x339210,
    "Frame:DoesClipChildren" : 0x3392b0,
    "Frame:SetIgnoreParentAlpha" : 0x339320,
    "Frame:IsIgnoringParentAlpha" : 0x3393a0,
    "Frame:SetIgnoreParentScale" : 0x339410,
    "Frame:IsIgnoringParentScale" : 0x339490,
    "Frame:IsObjectLoaded" : 0x339500,
    "Slider:GetThumbTexture" : 0x1c76db0,
    "Slider:SetThumbTexture" : 0x1c76e20,
    "Slider:GetOrientation" : 0x1c76ff0,
    "Slider:SetOrientation" : 0x1c77070,
    "Slider:GetMinMaxValues" : 0x1c77180,
    "Slider:SetMinMaxValues" : 0x1c77210,
    "Slider:GetValue" : 0x1c77310,
    "Slider:SetValue" : 0x1c77380,
    "Slider:GetValueStep" : 0x1c77460,
    "Slider:SetValueStep" : 0x1c774d0,
    "Slider:GetStepsPerPage" : 0x1c77590,
    "Slider:SetStepsPerPage" : 0x1c77610,
    "Slider:GetObeyStepOnDrag" : 0x1c776d0,
    "Slider:SetObeyStepOnDrag" : 0x1c77740,
    "Slider:Enable" : 0x1c777d0,
    "Slider:Disable" : 0x1c77850,
    "Slider:SetEnabled" : 0x1c778d0,
    "Slider:IsEnabled" : 0x1c77980,
    "Slider:IsDraggingThumb" : 0x1c77a00,
    "Cooldown:SetCooldown" : 0x11f4e40,
    "Cooldown:SetCooldownUNIX" : 0x11f4f90,
    "Cooldown:SetCooldownDuration" : 0x11f50d0,
    "Cooldown:SetReverse" : 0x11f5200,
    "Cooldown:GetReverse" : 0x11f5280,
    "Cooldown:SetDrawSwipe" : 0x11f52f0,
    "Cooldown:GetDrawSwipe" : 0x11f5390,
    "Cooldown:SetDrawEdge" : 0x11f5410,
    "Cooldown:GetDrawEdge" : 0x11f54b0,
    "Cooldown:SetDrawBling" : 0x11f5530,
    "Cooldown:GetDrawBling" : 0x11f55d0,
    "Cooldown:GetCooldownDuration" : 0x11f5650,
    "Cooldown:GetCooldownDisplayDuration" : 0x11f56e0,
    "Cooldown:GetCooldownTimes" : 0x11f5760,
    "Cooldown:SetSwipeTexture" : 0x11f5800,
    "Cooldown:SetSwipeColor" : 0x11f59b0,
    "Cooldown:SetEdgeTexture" : 0x11f5ac0,
    "Cooldown:SetBlingTexture" : 0x11f5c90,
    "Cooldown:SetHideCountdownNumbers" : 0x11f5e40,
    "Cooldown:Clear" : 0x11f5f00,
    "Cooldown:SetEdgeScale" : 0x11f5f70,
    "Cooldown:GetEdgeScale" : 0x11f6040,
    "Cooldown:SetUseCircularEdge" : 0x11f60b0,
    "Cooldown:SetRotation" : 0x11f6150,
    "Cooldown:GetRotation" : 0x11f6210,
    "Cooldown:Pause" : 0x11f6280,
    "Cooldown:Resume" : 0x11f6310,
    "Cooldown:IsPaused" : 0x11f6370,
    "MessageFrame:SetFontObject" : 0x1c74a30,
    "MessageFrame:GetFontObject" : 0x1c74ac0,
    "MessageFrame:SetFont" : 0x1c74b50,
    "MessageFrame:GetFont" : 0x1c74bf0,
    "MessageFrame:SetTextColor" : 0x1c74c80,
    "MessageFrame:GetTextColor" : 0x1c74d10,
    "MessageFrame:SetShadowColor" : 0x1c74da0,
    "MessageFrame:GetShadowColor" : 0x1c74e30,
    "MessageFrame:SetShadowOffset" : 0x1c74ec0,
    "MessageFrame:GetShadowOffset" : 0x1c74f50,
    "MessageFrame:SetSpacing" : 0x1c74fe0,
    "MessageFrame:GetSpacing" : 0x1c75070,
    "MessageFrame:SetJustifyH" : 0x1c75100,
    "MessageFrame:GetJustifyH" : 0x1c75190,
    "MessageFrame:SetJustifyV" : 0x1c75220,
    "MessageFrame:GetJustifyV" : 0x1c752b0,
    "MessageFrame:SetInsertMode" : 0x1c75340,
    "MessageFrame:GetInsertMode" : 0x1c754e0,
    "MessageFrame:SetIndentedWordWrap" : 0x1c755b0,
    "MessageFrame:GetIndentedWordWrap" : 0x1c75640,
    "MessageFrame:SetFading" : 0x1c756d0,
    "MessageFrame:GetFading" : 0x1c75740,
    "MessageFrame:SetTimeVisible" : 0x1c757b0,
    "MessageFrame:GetTimeVisible" : 0x1c75870,
    "MessageFrame:SetFadeDuration" : 0x1c758e0,
    "MessageFrame:GetFadeDuration" : 0x1c759a0,
    "MessageFrame:SetFadePower" : 0x1c75a10,
    "MessageFrame:GetFadePower" : 0x1c75ae0,
    "MessageFrame:AddMessage" : 0x1c75b50,
    "MessageFrame:HasMessageByID" : 0x1c75c70,
    "MessageFrame:ResetMessageFadeByID" : 0x1c75d10,
    "MessageFrame:GetFontStringByID" : 0x1c75dd0,
    "MessageFrame:Clear" : 0x1c75e90,
    "AnimationGroup:Play" : 0x3600f0,
    "AnimationGroup:Pause" : 0x3601a0,
    "AnimationGroup:Stop" : 0x360210,
    "AnimationGroup:Restart" : 0x360280,
    "AnimationGroup:Finish" : 0x360330,
    "AnimationGroup:GetProgress" : 0x3603a0,
    "AnimationGroup:IsDone" : 0x360420,
    "AnimationGroup:IsPlaying" : 0x360490,
    "AnimationGroup:IsPaused" : 0x360510,
    "AnimationGroup:IsPendingFinish" : 0x360580,
    "AnimationGroup:SetToFinalAlpha" : 0x3605f0,
    "AnimationGroup:IsSetToFinalAlpha" : 0x360670,
    "AnimationGroup:GetDuration" : 0x3606e0,
    "AnimationGroup:SetLooping" : 0x360750,
    "AnimationGroup:GetLooping" : 0x360830,
    "AnimationGroup:GetLoopState" : 0x3608a0,
    "AnimationGroup:GetAnimations" : 0x360910,
    "AnimationGroup:CreateAnimation" : 0x360a80,
    "AnimationGroup:HasScript" : 0x360f60,
    "AnimationGroup:GetScript" : 0x361040,
    "AnimationGroup:SetScript" : 0x3610b0,
    "AnimationGroup:HookScript" : 0x361120,
    "SimpleHTML:SetFontObject" : 0x1c73990,
    "SimpleHTML:GetFontObject" : 0x1c73a30,
    "SimpleHTML:SetFont" : 0x1c73ad0,
    "SimpleHTML:GetFont" : 0x1c73b70,
    "SimpleHTML:SetTextColor" : 0x1c73c10,
    "SimpleHTML:GetTextColor" : 0x1c73cb0,
    "SimpleHTML:SetShadowColor" : 0x1c73d50,
    "SimpleHTML:GetShadowColor" : 0x1c73df0,
    "SimpleHTML:SetShadowOffset" : 0x1c73e90,
    "SimpleHTML:GetShadowOffset" : 0x1c73f30,
    "SimpleHTML:SetSpacing" : 0x1c73fd0,
    "SimpleHTML:GetSpacing" : 0x1c74070,
    "SimpleHTML:SetJustifyH" : 0x1c74110,
    "SimpleHTML:GetJustifyH" : 0x1c741b0,
    "SimpleHTML:SetJustifyV" : 0x1c74250,
    "SimpleHTML:GetJustifyV" : 0x1c742f0,
    "SimpleHTML:SetIndentedWordWrap" : 0x1c74390,
    "SimpleHTML:GetIndentedWordWrap" : 0x1c74430,
    "SimpleHTML:SetText" : 0x1c744d0,
    "SimpleHTML:SetHyperlinkFormat" : 0x1c745c0,
    "SimpleHTML:GetHyperlinkFormat" : 0x1c74680,
    "SimpleHTML:GetContentHeight" : 0x1c746f0,
    "Texture:IsObjectType" : 0x34b1c0,
    "Texture:GetObjectType" : 0x34b150,
    "Texture:GetDrawLayer" : 0x34b2a0,
    "Texture:SetDrawLayer" : 0x34b330,
    "Texture:GetBlendMode" : 0x34b490,
    "Texture:SetBlendMode" : 0x34b510,
    "Texture:GetVertexColor" : 0x34b5f0,
    "Texture:SetVertexColor" : 0x34b710,
    "Texture:SetGradient" : 0x34b7d0,
    "Texture:SetGradientAlpha" : 0x34b8e0,
    "Texture:SetAlpha" : 0x34b9f0,
    "Texture:GetAlpha" : 0x34bb00,
    "Texture:Show" : 0x34bb90,
    "Texture:Hide" : 0x34bc00,
    "Texture:SetShown" : 0x34bc70,
    "Texture:IsVisible" : 0x34bd20,
    "Texture:IsShown" : 0x34bd90,
    "Texture:GetTexture" : 0x34be00,
    "Texture:SetTexture" : 0x34c000,
    "Texture:SetColorTexture" : 0x34c1f0,
    "Texture:GetTexCoord" : 0x34c2f0,
    "Texture:SetTexCoord" : 0x34c3a0,
    "Texture:SetRotation" : 0x34c5c0,
    "Texture:GetRotation" : 0x34c6e0,
    "Texture:SetTexelSnappingBias" : 0x34c780,
    "Texture:GetTexelSnappingBias" : 0x34c840,
    "Texture:SetSnapToPixelGrid" : 0x34c8b0,
    "Texture:IsSnappingToPixelGrid" : 0x34c930,
    "Texture:SetDesaturation" : 0x34c9a0,
    "Texture:GetDesaturation" : 0x34ca20,
    "Texture:SetDesaturated" : 0x34ca90,
    "Texture:IsDesaturated" : 0x34cb30,
    "Texture:SetNonBlocking" : 0x34cba0,
    "Texture:GetNonBlocking" : 0x34cc30,
    "Texture:SetHorizTile" : 0x34cca0,
    "Texture:GetHorizTile" : 0x34cd20,
    "Texture:SetVertTile" : 0x34cd90,
    "Texture:GetVertTile" : 0x34ce10,
    "Texture:SetAtlas" : 0x34ce80,
    "Texture:GetAtlas" : 0x34d080,
    "Texture:SetMask" : 0x34d120,
    "Texture:GetVertexOffset" : 0x34d520,
    "Texture:SetVertexOffset" : 0x34d670,
    "Texture:GetTextureFileID" : 0x34bec0,
    "Texture:GetTextureFilePath" : 0x34bf50,
    "Texture:AddMaskTexture" : 0x34d1f0,
    "Texture:RemoveMaskTexture" : 0x34d2c0,
    "Texture:GetNumMaskTextures" : 0x34d390,
    "Texture:GetMaskTexture" : 0x34d420,
    "Font:GetObjectType" : 0x355530,
    "Font:IsObjectType" : 0x3555a0,
    "Font:GetName" : 0x355680,
    "Font:SetFontObject" : 0x355720,
    "Font:GetFontObject" : 0x3558d0,
    "Font:CopyFontObject" : 0x355940,
    "Font:SetFont" : 0x355ad0,
    "Font:GetFont" : 0x355c70,
    "Font:SetAlpha" : 0x355d20,
    "Font:GetAlpha" : 0x355e10,
    "Font:SetTextColor" : 0x355ea0,
    "Font:GetTextColor" : 0x355f60,
    "Font:SetShadowColor" : 0x356060,
    "Font:GetShadowColor" : 0x356130,
    "Font:SetShadowOffset" : 0x356230,
    "Font:GetShadowOffset" : 0x356370,
    "Font:SetSpacing" : 0x356410,
    "Font:GetSpacing" : 0x356530,
    "Font:SetJustifyH" : 0x3565c0,
    "Font:GetJustifyH" : 0x3566d0,
    "Font:SetJustifyV" : 0x356750,
    "Font:GetJustifyV" : 0x356860,
    "Font:SetIndentedWordWrap" : 0x3568e0,
    "Font:GetIndentedWordWrap" : 0x356990,
    "LayeredRegion:IsObjectType" : 0x34d8f0,
    "LayeredRegion:GetObjectType" : 0x34d880,
    "LayeredRegion:GetDrawLayer" : 0x34d9d0,
    "LayeredRegion:SetDrawLayer" : 0x34da50,
    "LayeredRegion:SetVertexColor" : 0x34db50,
    "LayeredRegion:GetAlpha" : 0x34dc20,
    "LayeredRegion:SetAlpha" : 0x34dcb0,
    "LayeredRegion:SetAlphaGradient" : 0x34dda0,
    "LayeredRegion:Show" : 0x34dee0,
    "LayeredRegion:Hide" : 0x34df50,
    "LayeredRegion:SetShown" : 0x34dfc0,
    "LayeredRegion:IsVisible" : 0x34e070,
    "LayeredRegion:IsShown" : 0x34e0e0,
    "LayeredRegion:GetFontObject" : 0x34e150,
    "LayeredRegion:SetFontObject" : 0x34e1c0,
    "LayeredRegion:GetFont" : 0x34e3c0,
    "LayeredRegion:SetFont" : 0x34e4c0,
    "LayeredRegion:GetText" : 0x34e890,
    "LayeredRegion:GetFieldSize" : 0x34e910,
    "LayeredRegion:SetText" : 0x34e930,
    "LayeredRegion:SetFormattedText" : 0x34e9f0,
    "LayeredRegion:GetTextColor" : 0x34ead0,
    "LayeredRegion:SetTextColor" : 0x34ebf0,
    "LayeredRegion:GetShadowColor" : 0x34ec80,
    "LayeredRegion:SetShadowColor" : 0x34ed70,
    "LayeredRegion:GetShadowOffset" : 0x34ee00,
    "LayeredRegion:SetShadowOffset" : 0x34ee90,
    "LayeredRegion:GetSpacing" : 0x34ef90,
    "LayeredRegion:SetSpacing" : 0x34f020,
    "LayeredRegion:SetTextHeight" : 0x34f100,
    "LayeredRegion:GetStringWidth" : 0x34f240,
    "LayeredRegion:GetUnboundedStringWidth" : 0x34f2e0,
    "LayeredRegion:GetWrappedWidth" : 0x34f390,
    "LayeredRegion:GetNumLines" : 0x34f430,
    "LayeredRegion:IsTruncated" : 0x34f4b0,
    "LayeredRegion:GetStringHeight" : 0x34f540,
    "LayeredRegion:GetJustifyH" : 0x34f5e0,
    "LayeredRegion:SetJustifyH" : 0x34f660,
    "LayeredRegion:GetJustifyV" : 0x34f760,
    "LayeredRegion:SetJustifyV" : 0x34f7e0,
    "LayeredRegion:CanNonSpaceWrap" : 0x34f990,
    "LayeredRegion:SetNonSpaceWrap" : 0x34f8e0,
    "LayeredRegion:CanWordWrap" : 0x34faa0,
    "LayeredRegion:SetWordWrap" : 0x34fa00,
    "LayeredRegion:GetIndentedWordWrap" : 0x34fbd0,
    "LayeredRegion:SetIndentedWordWrap" : 0x34fb20,
    "LayeredRegion:GetMaxLines" : 0x34fcd0,
    "LayeredRegion:SetMaxLines" : 0x34fc40,
    "LayeredRegion:GetLineHeight" : 0x34fd50,
    "LayeredRegion:FindCharacterIndexAtCoordinate" : 0x34fdf0,
    "LayeredRegion:CalculateScreenAreaFromCharacterSpan" : 0x350020,
    "DressUpModel:Undress" : 0x11fc040,
    "DressUpModel:Dress" : 0x11fc0b0,
    "DressUpModel:TryOn" : 0x11fc120,
    "DressUpModel:UndressSlot" : 0x11fcc90,
    "DressUpModel:SetAutoDress" : 0x11fcd50,
    "DressUpModel:GetAutoDress" : 0x11fce10,
    "DressUpModel:SetSheathed" : 0x11fce80,
    "DressUpModel:GetSheathed" : 0x11fcf40,
    "Checkout:SetFocus" : 0x1033170,
    "Checkout:ClearFocus" : 0x10331e0,
    "Checkout:OpenCheckout" : 0x1033250,
    "Checkout:CloseCheckout" : 0x1033320,
    "Checkout:CancelOpenCheckout" : 0x1033390,
    "Checkout:SetZoom" : 0x1033410,
    "Button:Enable" : 0x1c6df10,
    "Button:Disable" : 0x1c6e000,
    "Button:SetEnabled" : 0x1c6e0f0,
    "Button:IsEnabled" : 0x1c6e210,
    "Button:GetButtonState" : 0x1c6e280,
    "Button:SetButtonState" : 0x1c6e320,
    "Button:SetNormalFontObject" : 0x1c6e520,
    "Button:GetNormalFontObject" : 0x1c6e670,
    "Button:SetDisabledFontObject" : 0x1c6e710,
    "Button:GetDisabledFontObject" : 0x1c6e860,
    "Button:SetHighlightFontObject" : 0x1c6e900,
    "Button:GetHighlightFontObject" : 0x1c6ea50,
    "Button:SetFontString" : 0x1c6eaf0,
    "Button:GetFontString" : 0x1c6ec70,
    "Button:SetText" : 0x1c6ece0,
    "Button:SetFormattedText" : 0x1c6ed60,
    "Button:GetText" : 0x1c6ee00,
    "Button:SetNormalTexture" : 0x1c6ee80,
    "Button:GetNormalTexture" : 0x1c6eea0,
    "Button:SetPushedTexture" : 0x1c6eeb0,
    "Button:GetPushedTexture" : 0x1c6eed0,
    "Button:SetDisabledTexture" : 0x1c6eee0,
    "Button:GetDisabledTexture" : 0x1c6eef0,
    "Button:SetHighlightTexture" : 0x1c6ef00,
    "Button:GetHighlightTexture" : 0x1c6f0c0,
    "Button:SetPushedTextOffset" : 0x1c6f290,
    "Button:GetPushedTextOffset" : 0x1c6f3f0,
    "Button:SetNormalAtlas" : 0x1c6f130,
    "Button:SetPushedAtlas" : 0x1c6f150,
    "Button:SetDisabledAtlas" : 0x1c6f170,
    "Button:SetHighlightAtlas" : 0x1c6f180,
    "Button:SetPushedTextOffset" : 0x1c6f290,
    "Button:GetPushedTextOffset" : 0x1c6f3f0,
    "Button:GetTextWidth" : 0x1c6f4b0,
    "Button:GetTextHeight" : 0x1c6f550,
    "Button:RegisterForClicks" : 0x1c6f600,
    "Button:Click" : 0x1c6f6c0,
    "Button:LockHighlight" : 0x1c6f7a0,
    "Button:UnlockHighlight" : 0x1c6f810,
    "Button:GetMotionScriptsWhileDisabled" : 0x1c6f880,
    "Button:SetMotionScriptsWhileDisabled" : 0x1c6f900,
    "MovieFrame:StartMovie" : 0x315940,
    "MovieFrame:StopMovie" : 0x315ad0,
    "MovieFrame:EnableSubtitles" : 0x315bd0,
    "ModelScene:SetLightVisible" : 0x1248c60,
    "ModelScene:IsLightVisible" : 0x1248cf0,
    "ModelScene:SetLightType" : 0x1248d60,
    "ModelScene:GetLightType" : 0x1248e40,
    "ModelScene:SetLightPosition" : 0x1248ed0,
    "ModelScene:GetLightPosition" : 0x1248fd0,
    "ModelScene:SetLightDirection" : 0x1249070,
    "ModelScene:GetLightDirection" : 0x1249170,
    "ModelScene:SetLightAmbientColor" : 0x1249220,
    "ModelScene:GetLightAmbientColor" : 0x1249330,
    "ModelScene:SetLightDiffuseColor" : 0x12493e0,
    "ModelScene:GetLightDiffuseColor" : 0x12494f0,
    "ModelScene:SetFogColor" : 0x12495a0,
    "ModelScene:GetFogColor" : 0x12496b0,
    "ModelScene:SetFogNear" : 0x12497a0,
    "ModelScene:GetFogNear" : 0x1249860,
    "ModelScene:SetFogFar" : 0x12498d0,
    "ModelScene:GetFogFar" : 0x1249980,
    "ModelScene:ClearFog" : 0x12499f0,
    "ModelScene:GetCameraFieldOfView" : 0x1249a60,
    "ModelScene:SetCameraFieldOfView" : 0x1249ad0,
    "ModelScene:GetCameraNearClip" : 0x1249bc0,
    "ModelScene:SetCameraNearClip" : 0x1249c30,
    "ModelScene:GetCameraFarClip" : 0x1249d00,
    "ModelScene:SetCameraFarClip" : 0x1249d70,
    "ModelScene:GetCameraPosition" : 0x1249e40,
    "ModelScene:SetCameraPosition" : 0x1249ee0,
    "ModelScene:SetCameraOrientationByYawPitchRoll" : 0x1249fe0,
    "ModelScene:SetCameraOrientationByAxisVectors" : 0x124a190,
    "ModelScene:GetCameraForward" : 0x124a5f0,
    "ModelScene:GetCameraUp" : 0x124a690,
    "ModelScene:GetCameraRight" : 0x124a730,
    "ModelScene:GetDrawLayer" : 0x124a7d0,
    "ModelScene:SetDrawLayer" : 0x124a860,
    "ModelScene:CreateActor" : 0x124a950,
    "ModelScene:GetNumActors" : 0x124aba0,
    "ModelScene:GetActorAtIndex" : 0x124ac10,
    "ModelScene:TakeActor" : 0x124ad10,
    "ModelScene:GetViewTranslation" : 0x124ae20,
    "ModelScene:SetViewTranslation" : 0x124aee0,
    "ModelScene:GetViewInsets" : 0x124b040,
    "ModelScene:SetViewInsets" : 0x124b0b0,
    "ModelScene:Project3DPointTo2D" : 0x124b160,
    "UnitPositionFrame:AddUnit" : 0x123d740,
    "UnitPositionFrame:AddUnitFileID" : 0x123d880,
    "UnitPositionFrame:AddUnitAtlas" : 0x123d9c0,
    "UnitPositionFrame:SetUnitColor" : 0x123db00,
    "UnitPositionFrame:ClearUnits" : 0x123dc20,
    "UnitPositionFrame:FinalizeUnits" : 0x123dc90,
    "UnitPositionFrame:SetPlayerPingTexture" : 0x123dd10,
    "UnitPositionFrame:StartPlayerPing" : 0x123e090,
    "UnitPositionFrame:StopPlayerPing" : 0x123dfe0,
    "UnitPositionFrame:SetPlayerPingScale" : 0x123e200,
    "UnitPositionFrame:GetPlayerPingScale" : 0x123e2e0,
    "UnitPositionFrame:GetMouseOverUnits" : 0x123e350,
    "UnitPositionFrame:SetUiMapID" : 0x123e470,
    "UnitPositionFrame:GetUiMapID" : 0x123e530,
    "Path:SetCurve" : 0x35f8d0,
    "Path:GetCurve" : 0x35f9b0,
    "Path:GetControlPoints" : 0x35fa30,
    "Path:CreateControlPoint" : 0x35fb50,
    "Path:GetMaxOrder" : 0x35fdf0,
    "UIObject:GetObjectType" : 0x361d10,
    "UIObject:IsObjectType" : 0x361d80,
    "UIObject:GetName" : 0x361e60,
    "UIObject:GetParent" : 0x361f00,
    "UIObject:IsForbidden" : 0x361fa0,
    "UIObject:SetForbidden" : 0x362020,
    "UIObject:GetDebugName" : 0x362120,
    "ScrollFrame:SetScrollChild" : 0x1c764f0,
    "ScrollFrame:GetScrollChild" : 0x1c76710,
    "ScrollFrame:SetHorizontalScroll" : 0x1c76780,
    "ScrollFrame:SetVerticalScroll" : 0x1c768f0,
    "ScrollFrame:GetHorizontalScroll" : 0x1c76a60,
    "ScrollFrame:GetVerticalScroll" : 0x1c76af0,
    "ScrollFrame:GetHorizontalScrollRange" : 0x1c76b80,
    "ScrollFrame:GetVerticalScrollRange" : 0x1c76c10,
    "ScrollFrame:UpdateScrollChildRect" : 0x1c76ca0,
    "Minimap:SetMaskTexture" : 0x1104cd0,
    "Minimap:SetIconTexture" : 0x1105450,
    "Minimap:SetBlipTexture" : 0x1105630,
    "Minimap:SetPOIArrowTexture" : 0x1104eb0,
    "Minimap:SetStaticPOIArrowTexture" : 0x1105090,
    "Minimap:SetCorpsePOIArrowTexture" : 0x1105270,
    "Minimap:SetPlayerTexture" : 0x11057f0,
    "Minimap:GetZoomLevels" : 0x11059d0,
    "Minimap:GetZoom" : 0x1105a00,
    "Minimap:SetZoom" : 0x1105a30,
    "Minimap:PingLocation" : 0x1105a80,
    "Minimap:GetPingPosition" : 0x1106020,
    "Minimap:UpdateBlips" : 0x11063c0,
    "ControlPoint:SetParent" : 0x35f360,
    "ControlPoint:SetOffset" : 0x35f560,
    "ControlPoint:GetOffset" : 0x35f6c0,
    "ControlPoint:SetOrder" : 0x35f7a0,
    "ControlPoint:GetOrder" : 0x35f860,
    "Scale:SetOrigin" : 0x35ed00,
    "Scale:GetOrigin" : 0x35ee00,
    "Scale:SetScale" : 0x35eeb0,
    "Scale:GetScale" : 0x35efb0,
    "Scale:SetFromScale" : 0x35f040,
    "Scale:GetFromScale" : 0x35f140,
    "Scale:SetToScale" : 0x35f1d0,
    "Scale:GetToScale" : 0x35f2d0,
    "Rotation:SetOrigin" : 0x35e8d0,
    "Rotation:GetOrigin" : 0x35e9d0,
    "Rotation:SetDegrees" : 0x35ea80,
    "Rotation:GetDegrees" : 0x35eb50,
    "Rotation:SetRadians" : 0x35ebd0,
    "Rotation:GetRadians" : 0x35ec90,
    "StatusBar:GetOrientation" : 0x1c77b10,
    "StatusBar:SetOrientation" : 0x1c77b90,
    "StatusBar:GetMinMaxValues" : 0x1c77ca0,
    "StatusBar:SetMinMaxValues" : 0x1c77d30,
    "StatusBar:GetValue" : 0x1c77ea0,
    "StatusBar:SetValue" : 0x1c77f10,
    "StatusBar:GetStatusBarTexture" : 0x1c77fd0,
    "StatusBar:SetStatusBarTexture" : 0x1c78040,
    "StatusBar:GetStatusBarAtlas" : 0x1c78410,
    "StatusBar:SetStatusBarAtlas" : 0x1c782f0,
    "StatusBar:GetStatusBarColor" : 0x1c784b0,
    "StatusBar:SetStatusBarColor" : 0x1c78640,
    "StatusBar:GetRotatesTexture" : 0x1c786d0,
    "StatusBar:SetRotatesTexture" : 0x1c78740,
    "StatusBar:GetReverseFill" : 0x1c787b0,
    "StatusBar:SetReverseFill" : 0x1c78830,
    "StatusBar:GetFillStyle" : 0x1c788b0,
    "StatusBar:SetFillStyle" : 0x1c78930,
    "GameTooltip:AddFontStrings" : 0x12eb100,
    "GameTooltip:SetMinimumWidth" : 0x12eb2a0,
    "GameTooltip:GetMinimumWidth" : 0x12eb390,
    "GameTooltip:SetPadding" : 0x12eb420,
    "GameTooltip:GetPadding" : 0x12eb570,
    "GameTooltip:IsOwned" : 0x12eb630,
    "GameTooltip:GetOwner" : 0x12eb740,
    "GameTooltip:SetOwner" : 0x12eb7b0,
    "GameTooltip:GetAnchorType" : 0x12ebbe0,
    "GameTooltip:SetAnchorType" : 0x12eba10,
    "GameTooltip:ClearLines" : 0x12ebd10,
    "GameTooltip:AddLine" : 0x12ebd80,
    "GameTooltip:AddDoubleLine" : 0x12ebe80,
    "GameTooltip:AddTexture" : 0x12ebfc0,
    "GameTooltip:SetText" : 0x12ec150,
    "GameTooltip:AppendText" : 0x12ec290,
    "GameTooltip:FadeOut" : 0x12ec350,
    "GameTooltip:SetHyperlink" : 0x12ec400,
    "GameTooltip:SetAction" : 0x12ecc70,
    "GameTooltip:SetPetAction" : 0x12ecf80,
    "GameTooltip:SetShapeshift" : 0x12ed090,
    "GameTooltip:SetPossession" : 0x12ed280,
    "GameTooltip:SetSpellBookItem" : 0x12ed430,
    "GameTooltip:SetSpellByID" : 0x12ed900,
    "GameTooltip:AddSpellByID" : 0x12edb70,
    "GameTooltip:SetInventoryItem" : 0x12ee010,
    "GameTooltip:SetLootItem" : 0x12ee6b0,
    "GameTooltip:SetQuestItem" : 0x12ee870,
    "GameTooltip:SetQuestLogItem" : 0x12eeb00,
    "GameTooltip:SetTrainerService" : 0x12eedb0,
    "GameTooltip:SetTradeSkillItem" : 0x12ef170,
    "GameTooltip:SetCraftItem" : 0x12ef620,
    "GameTooltip:SetCraftSpell" : 0x12ef860,
    "GameTooltip:SetTrackingSpell" : 0x12edd50,
    "GameTooltip:SetMerchantItem" : 0x12efd00,
    "GameTooltip:SetMerchantCostItem" : 0x12efee0,
    "GameTooltip:SetTradePlayerItem" : 0x12f0240,
    "GameTooltip:SetTradeTargetItem" : 0x12f04b0,
    "GameTooltip:SetBagItem" : 0x12f0910,
    "GameTooltip:SetBagItemChild" : 0x12f0bb0,
    "GameTooltip:SetInventoryItemByID" : 0x12f0dd0,
    "GameTooltip:SetUnit" : 0x12f0ef0,
    "GameTooltip:SetUnitBuff" : 0x12f10e0,
    "GameTooltip:SetUnitDebuff" : 0x12f11a0,
    "GameTooltip:SetUnitAura" : 0x12f1030,
    "GameTooltip:SetTalent" : 0x12f1260,
    "GameTooltip:SetSendMailItem" : 0x12f15b0,
    "GameTooltip:SetInboxItem" : 0x12f1810,
    "GameTooltip:SetAuctionSellItem" : 0x12f1d50,
    "GameTooltip:SetAuctionItem" : 0x12f1f50,
    "GameTooltip:NumLines" : 0x12f25b0,
    "GameTooltip:SetQuestRewardSpell" : 0x12f2630,
    "GameTooltip:SetQuestLogRewardSpell" : 0x12f2750,
    "GameTooltip:AdvanceSecondaryCompareItem" : 0x12f2920,
    "GameTooltip:SetCompareItem" : 0x12f2c30,
    "GameTooltip:ResetSecondaryCompareItem" : 0x12f28a0,
    "GameTooltip:SetBuybackItem" : 0x12f2dc0,
    "GameTooltip:SetLootRollItem" : 0x12f2f20,
    "GameTooltip:IsUnit" : 0x12f3150,
    "GameTooltip:GetUnit" : 0x12f3250,
    "GameTooltip:GetItem" : 0x12f3380,
    "GameTooltip:GetSpell" : 0x12f3570,
    "GameTooltip:IsEquippedItem" : 0x12f3640,
    "GameTooltip:SetFrameStack" : 0x12f3700,
    "GameTooltip:SetInstanceLockEncountersComplete" : 0x12f37e0,
    "GameTooltip:SetItemByID" : 0x12f38d0,
    "GameTooltip:CopyTooltip" : 0x18f8f0,
    "EditBox:SetFontObject" : 0x1c70d80,
    "EditBox:GetFontObject" : 0x1c70e10,
    "EditBox:SetFont" : 0x1c70ea0,
    "EditBox:GetFont" : 0x1c70f30,
    "EditBox:SetTextColor" : 0x1c70fc0,
    "EditBox:GetTextColor" : 0x1c71050,
    "EditBox:SetHighlightColor" : 0x1c71320,
    "EditBox:GetHighlightColor" : 0x1c713b0,
    "EditBox:SetShadowColor" : 0x1c710e0,
    "EditBox:GetShadowColor" : 0x1c71170,
    "EditBox:SetShadowOffset" : 0x1c71200,
    "EditBox:GetShadowOffset" : 0x1c71290,
    "EditBox:SetSpacing" : 0x1c714a0,
    "EditBox:GetSpacing" : 0x1c71530,
    "EditBox:SetJustifyH" : 0x1c715c0,
    "EditBox:GetJustifyH" : 0x1c71650,
    "EditBox:SetJustifyV" : 0x1c716e0,
    "EditBox:GetJustifyV" : 0x1c71770,
    "EditBox:SetIndentedWordWrap" : 0x1c71800,
    "EditBox:GetIndentedWordWrap" : 0x1c71890,
    "EditBox:SetAutoFocus" : 0x1c71920,
    "EditBox:IsAutoFocus" : 0x1c71990,
    "EditBox:SetCountInvisibleLetters" : 0x1c71a00,
    "EditBox:IsCountInvisibleLetters" : 0x1c71a70,
    "EditBox:SetMultiLine" : 0x1c71ae0,
    "EditBox:IsMultiLine" : 0x1c71b50,
    "EditBox:SetNumeric" : 0x1c71bc0,
    "EditBox:IsNumeric" : 0x1c71c30,
    "EditBox:SetPassword" : 0x1c71ca0,
    "EditBox:IsPassword" : 0x1c71d10,
    "EditBox:SetSecureText" : 0x1c71d80,
    "EditBox:IsSecureText" : 0x1c71e10,
    "EditBox:SetBlinkSpeed" : 0x1c71e80,
    "EditBox:GetBlinkSpeed" : 0x1c71f40,
    "EditBox:Insert" : 0x1c71fb0,
    "EditBox:SetText" : 0x1c720a0,
    "EditBox:GetText" : 0x1c721b0,
    "EditBox:GetDisplayText" : 0x1c722b0,
    "EditBox:SetNumber" : 0x1c72400,
    "EditBox:GetNumber" : 0x1c72510,
    "EditBox:HighlightText" : 0x1c725f0,
    "EditBox:AddHistoryLine" : 0x1c726c0,
    "EditBox:ClearHistory" : 0x1c72780,
    "EditBox:SetTextInsets" : 0x1c727f0,
    "EditBox:GetTextInsets" : 0x1c72a20,
    "EditBox:SetFocus" : 0x1c72b50,
    "EditBox:ClearFocus" : 0x1c72bc0,
    "EditBox:HasFocus" : 0x1c72c30,
    "EditBox:SetMaxBytes" : 0x1c72ca0,
    "EditBox:GetMaxBytes" : 0x1c72d70,
    "EditBox:SetVisibleTextByteLimit" : 0x1c72df0,
    "EditBox:GetVisibleTextByteLimit" : 0x1c72eb0,
    "EditBox:SetMaxLetters" : 0x1c72f20,
    "EditBox:GetMaxLetters" : 0x1c72fe0,
    "EditBox:GetNumLetters" : 0x1c73050,
    "EditBox:GetHistoryLines" : 0x1c73110,
    "EditBox:SetHistoryLines" : 0x1c73180,
    "EditBox:GetInputLanguage" : 0x1c73240,
    "EditBox:ToggleInputLanguage" : 0x1c732b0,
    "EditBox:SetAltArrowKeyMode" : 0x1c73320,
    "EditBox:GetAltArrowKeyMode" : 0x1c73390,
    "EditBox:IsInIMECompositionMode" : 0x1c73400,
    "EditBox:SetCursorPosition" : 0x1c73470,
    "EditBox:GetCursorPosition" : 0x1c73530,
    "EditBox:GetUTF8CursorPosition" : 0x1c735a0,
    "EditBox:Enable" : 0x1c73620,
    "EditBox:Disable" : 0x1c73690,
    "EditBox:SetEnabled" : 0x1c73700,
    "EditBox:IsEnabled" : 0x1c737a0,
    "EditBox:SetSecurityDisableSetText" : 0x1c73820,
    "EditBox:SetSecurityDisablePaste" : 0x1c73880,
    "CinematicModel:SetCreatureData" : 0x11f2370,
    "CinematicModel:SetFacingLeft" : 0x11f25f0,
    "CinematicModel:SetTargetDistance" : 0x11f26c0,
    "CinematicModel:SetPanDistance" : 0x11f2790,
    "CinematicModel:InitializeCamera" : 0x11f2860,
    "CinematicModel:InitializePanCamera" : 0x11f28f0,
    "CinematicModel:StartPan" : 0x11f2980,
    "CinematicModel:StopPan" : 0x11f2b70,
    "CinematicModel:SetCameraTarget" : 0x11f2be0,
    "CinematicModel:SetCameraPosition" : 0x11f2d50,
    "CinematicModel:SetSpellVisualKit" : 0x11f2ec0,
    "CinematicModel:SetHeightFactor" : 0x11f2fa0,
    "CinematicModel:SetFadeTimes" : 0x11f3050,
    "CinematicModel:SetAnimOffset" : 0x11f3130,
    "CinematicModel:SetJumpInfo" : 0x11f31e0,
    "CinematicModel:EquipItem" : 0x11f32c0,
    "CinematicModel:UnequipItems" : 0x11f33c0,
    "CinematicModel:RefreshCamera" : 0x11f3460,
    "Line:SetStartPoint" : 0x350330,
    "Line:GetStartPoint" : 0x3503a0,
    "Line:SetEndPoint" : 0x350410,
    "Line:GetEndPoint" : 0x350480,
    "Line:SetThickness" : 0x3504f0,
    "Line:GetThickness" : 0x3505d0,
    "TabardModel:InitializeTabardColors" : 0x122da80,
    "TabardModel:Save" : 0x122dd00,
    "TabardModel:CycleVariation" : 0x122ddb0,
    "TabardModel:GetUpperBackgroundFileName" : 0x122df10,
    "TabardModel:GetLowerBackgroundFileName" : 0x122dfb0,
    "TabardModel:GetUpperEmblemFileName" : 0x122e050,
    "TabardModel:GetLowerEmblemFileName" : 0x122e0f0,
    "TabardModel:GetUpperEmblemTexture" : 0x122e190,
    "TabardModel:GetLowerEmblemTexture" : 0x122e610,
    "TabardModel:CanSaveTabardNow" : 0x122ea80,
    "PlayerModel:SetUnit" : 0x100e360,
    "PlayerModel:SetCreature" : 0x100e660,
    "PlayerModel:SetItem" : 0x100e880,
    "PlayerModel:SetItemAppearance" : 0x100ea30,
    "PlayerModel:SetDisplayInfo" : 0x100ebc0,
    "PlayerModel:GetDisplayInfo" : 0x100fd30,
    "PlayerModel:SetPortraitZoom" : 0x100ed90,
    "PlayerModel:SetCamDistanceScale" : 0x100ee50,
    "PlayerModel:RefreshUnit" : 0x100ef40,
    "PlayerModel:RefreshCamera" : 0x100efd0,
    "PlayerModel:SetRotation" : 0x100f040,
    "PlayerModel:SetBarberShopAlternateForm" : 0x100e480,
    "PlayerModel:SetCustomRace" : 0x100e4f0,
    "PlayerModel:SetAnimation" : 0x100f230,
    "PlayerModel:FreezeAnimation" : 0x100f3d0,
    "PlayerModel:HasAnimation" : 0x100f5a0,
    "PlayerModel:SetDoBlend" : 0x100f6d0,
    "PlayerModel:GetDoBlend" : 0x100f740,
    "PlayerModel:PlayAnimKit" : 0x100f7b0,
    "PlayerModel:StopAnimKit" : 0x100f920,
    "PlayerModel:ApplySpellVisualKit" : 0x100f990,
    "PlayerModel:CanSetUnit" : 0x100fa90,
    "PlayerModel:SetKeepModelOnHide" : 0x100fbe0,
    "PlayerModel:GetKeepModelOnHide" : 0x100fcc0,
    "OffScreenFrame:TakeSnapshot" : 0x1c75fa0,
    "OffScreenFrame:ApplySnapshot" : 0x1c76030,
    "OffScreenFrame:Flush" : 0x1c761b0,
    "OffScreenFrame:SetMaxSnapshots" : 0x1c76220,
    "OffScreenFrame:GetMaxSnapshots" : 0x1c762e0,
    "OffScreenFrame:IsSnapshotValid" : 0x1c76350,
    "OffScreenFrame:UsesNPOT" : 0x1c76420,
    "Alpha:SetFromAlpha" : 0x35fe70,
    "Alpha:GetFromAlpha" : 0x35ff30,
    "Alpha:SetToAlpha" : 0x35ffb0,
    "Alpha:GetToAlpha" : 0x360070,
    "Model:ResetLights" : 0x3fa360,
    "Model:AddLight" : 0x3fa410,
    "Model:AddCharacterLight" : 0x3fa550,
    "Model:AddPetLight" : 0x3fa690,
    "Model:SetModel" : 0x1c6a030,
    "Model:GetModelFileID" : 0x1c6a130,
    "Model:ClearModel" : 0x1c6a1c0,
    "Model:SetPosition" : 0x1c6a230,
    "Model:SetFacing" : 0x1c6a2d0,
    "Model:SetPitch" : 0x1c6a390,
    "Model:SetRoll" : 0x1c6a450,
    "Model:SetModelScale" : 0x1c6a510,
    "Model:UseModelCenterToTransform" : 0x1c6a5d0,
    "Model:IsUsingModelCenterToTransform" : 0x1c6a660,
    "Model:SetSequence" : 0x1c6a6e0,
    "Model:SetSequenceTime" : 0x1c6a7e0,
    "Model:SetCamera" : 0x1c6a8d0,
    "Model:SetLight" : 0x1c6a990,
    "Model:GetLight" : 0x1c6aa80,
    "Model:GetPosition" : 0x1c6acd0,
    "Model:GetFacing" : 0x1c6ad80,
    "Model:GetPitch" : 0x1c6adf0,
    "Model:GetRoll" : 0x1c6ae60,
    "Model:GetModelScale" : 0x1c6aed0,
    "Model:AdvanceTime" : 0x1c6af40,
    "Model:ReplaceIconTexture" : 0x1c6afb0,
    "Model:SetFogColor" : 0x1c6b070,
    "Model:GetFogColor" : 0x1c6b120,
    "Model:SetFogNear" : 0x1c6b210,
    "Model:GetFogNear" : 0x1c6b2d0,
    "Model:SetFogFar" : 0x1c6b340,
    "Model:GetFogFar" : 0x1c6b400,
    "Model:ClearFog" : 0x1c6b470,
    "Model:SetGlow" : 0x1c6b4d0,
    "Model:SetTransform" : 0x1c6c090,
    "Model:ClearTransform" : 0x1c6c2a0,
    "Model:SetModelAlpha" : 0x1c6c300,
    "Model:GetModelAlpha" : 0x1c6c3c0,
    "Model:SetDesaturation" : 0x1c6c450,
    "Model:GetDesaturation" : 0x1c6c550,
    "Model:SetShadowEffect" : 0x1c6c5f0,
    "Model:GetShadowEffect" : 0x1c6c6f0,
    "Model:SetModelDrawLayer" : 0x1c6c9b0,
    "Model:GetModelDrawLayer" : 0x1c6c920,
    "Model:GetViewTranslation" : 0x1c6ca90,
    "Model:SetViewTranslation" : 0x1c6cb50,
    "Model:GetViewInsets" : 0x1c6ccb0,
    "Model:SetViewInsets" : 0x1c6cd20,
    "Model:HasAttachmentPoints" : 0x1c6cdd0,
    "Model:SetPaused" : 0x1c6ce40,
    "Model:GetPaused" : 0x1c6cf20,
    "Model:SetParticlesEnabled" : 0x1c6cfc0,
    "Model:SetCustomCamera" : 0x1c6b5a0,
    "Model:MakeCurrentCameraCustom" : 0x1c6b660,
    "Model:HasCustomCamera" : 0x1c6b990,
    "Model:SetCameraFacing" : 0x1c6b6d0,
    "Model:GetCameraFacing" : 0x1c6b910,
    "Model:SetCameraRoll" : 0x1c6b830,
    "Model:GetCameraRoll" : 0x1c6b7b0,
    "Model:SetCameraTarget" : 0x1c6bd20,
    "Model:GetCameraTarget" : 0x1c6bc50,
    "Model:SetCameraPosition" : 0x1c6bad0,
    "Model:GetCameraPosition" : 0x1c6ba00,
    "Model:SetCameraDistance" : 0x1c6bea0,
    "Model:GetCameraDistance" : 0x1c6bf80,
    "Model:GetWorldScale" : 0x1c6bff0,
    "Model:TransformCameraSpaceToModelSpace" : 0x1c6c790,
    "Model:SetModelByPath" : 0x124b400,
    "Model:GetModelPath" : 0x124b4f0,
    "Model:SetModelByFileID" : 0x124b580,
    "Model:SetModelByUnit" : 0x124b670,
    "Model:SetModelByCreatureDisplayID" : 0x124b770,
    "Model:GetModelFileID" : 0x124b860,
    "Model:GetModelUnitGUID" : 0x124b8d0,
    "Model:ClearModel" : 0x124b970,
    "Model:SetPosition" : 0x124b9e0,
    "Model:SetYaw" : 0x124bae0,
    "Model:SetPitch" : 0x124bba0,
    "Model:SetRoll" : 0x124bc60,
    "Model:SetScale" : 0x124bd20,
    "Model:GetPosition" : 0x124bdf0,
    "Model:GetYaw" : 0x124be80,
    "Model:GetPitch" : 0x124bef0,
    "Model:GetRoll" : 0x124bf60,
    "Model:GetScale" : 0x124bfd0,
    "Model:SetAnimation" : 0x124c040,
    "Model:GetAnimation" : 0x124c190,
    "Model:GetAnimationVariation" : 0x124c200,
    "Model:SetAnimationBlendOperation" : 0x124c270,
    "Model:GetAnimationBlendOperation" : 0x124c340,
    "Model:SetAlpha" : 0x124c3c0,
    "Model:GetAlpha" : 0x124c470,
    "Model:SetDesaturation" : 0x124c4e0,
    "Model:GetDesaturation" : 0x124c590,
    "Model:GetActiveBoundingBox" : 0x124c600,
    "Model:GetMaxBoundingBox" : 0x124c720,
    "Model:SetSpellVisualKit" : 0x124c840,
    "Model:GetSpellVisualKit" : 0x124c950,
    "Model:Show" : 0x124c9c0,
    "Model:Hide" : 0x124ca20,
    "Model:SetShown" : 0x124ca80,
    "Model:IsVisible" : 0x124cb00,
    "Model:IsShown" : 0x124cb90,
    "Model:IsUsingCenterForOrigin" : 0x124ccd0,
    "Model:SetUseCenterForOrigin" : 0x124cc00,
    "Model:IsLoaded" : 0x124cd70,
    "Model:PlayAnimationKit" : 0x124cde0,
    "Model:StopAnimationKit" : 0x124cec0,
    "Region:SetIgnoreParentAlpha" : 0x34ac90,
    "Region:IsIgnoringParentAlpha" : 0x34ad30,
    "Region:SetIgnoreParentScale" : 0x34ada0,
    "Region:IsIgnoringParentScale" : 0x34ae20,
    "Region:IsObjectLoaded" : 0x34aea0,
    "Region:SetScale" : 0x34af20,
    "Region:GetScale" : 0x34b070,
    "Region:GetEffectiveScale" : 0x34b0e0,
    "Region:IsProtected" : 0x35a030,
    "Region:CanChangeProtectedState" : 0x35a0c0,
    "Region:SetParent" : 0x35a190,
    "Region:IsRectValid" : 0x35a510,
    "Region:GetRect" : 0x35a540,
    "Region:GetCenter" : 0x35a6e0,
    "Region:GetLeft" : 0x35a820,
    "Region:GetRight" : 0x35a900,
    "Region:GetTop" : 0x35a9e0,
    "Region:GetBottom" : 0x35aac0,
    "Region:GetWidth" : 0x35aba0,
    "Region:GetHeight" : 0x35add0,
    "Region:GetSize" : 0x35b000,
    "Region:IsDragging" : 0x35bdc0,
    "Region:IsMouseOver" : 0x35be40,
    "Region:SetSize" : 0x35b0f0,
    "Region:GetNumPoints" : 0x35b2a0,
    "Region:GetPoint" : 0x35b370,
    "Region:SetPoint" : 0x35b5d0,
    "Region:SetAllPoints" : 0x35ba70,
    "Region:ClearAllPoints" : 0x35bd20,
    "Region:SetHeight" : 0x35aed0,
    "Region:SetWidth" : 0x35aca0,
    "Animation:Play" : 0x35d0c0,
    "Animation:Pause" : 0x35d130,
    "Animation:Stop" : 0x35d1a0,
    "Animation:Restart" : 0x35d210,
    "Animation:IsDone" : 0x35d280,
    "Animation:IsPlaying" : 0x35d2f0,
    "Animation:IsPaused" : 0x35d360,
    "Animation:IsStopped" : 0x35d3d0,
    "Animation:IsDelaying" : 0x35d440,
    "Animation:GetElapsed" : 0x35d9e0,
    "Animation:SetStartDelay" : 0x35d4b0,
    "Animation:GetStartDelay" : 0x35d570,
    "Animation:SetEndDelay" : 0x35d5e0,
    "Animation:GetEndDelay" : 0x35d6a0,
    "Animation:SetDuration" : 0x35d710,
    "Animation:GetDuration" : 0x35d7d0,
    "Animation:GetSmoothProgress" : 0x35d840,
    "Animation:SetSmoothProgress" : 0x35d8b0,
    "Animation:GetProgress" : 0x35d970,
    "Animation:SetOrder" : 0x35da50,
    "Animation:GetOrder" : 0x35db20,
    "Animation:SetSmoothing" : 0x35db90,
    "Animation:GetSmoothing" : 0x35dc80,
    "Animation:SetParent" : 0x35dd10,
    "Animation:GetRegionParent" : 0x35e230,
    "Animation:SetTarget" : 0x35dee0,
    "Animation:SetTargetKey" : 0x35e070,
    "Animation:SetChildKey" : 0x35e110,
    "Animation:GetTarget" : 0x35e1b0,
    "Animation:HasScript" : 0x35e2d0,
    "Animation:GetScript" : 0x35e3b0,
    "Animation:SetScript" : 0x35e420,
    "Animation:HookScript" : 0x35e490,
    "CheckButton:SetChecked" : 0x1c6fd00,
    "CheckButton:GetChecked" : 0x1c6fd80,
    "CheckButton:GetCheckedTexture" : 0x1c6fdf0,
    "CheckButton:SetCheckedTexture" : 0x1c6fe60,
    "CheckButton:GetDisabledCheckedTexture" : 0x1c6ffe0,
    "CheckButton:SetDisabledCheckedTexture" : 0x1c70050,
    "Browser:NavigateHome" : 0x303920,
    "Browser:NavigateBack" : 0x303ae0,
    "Browser:NavigateForward" : 0x303b60,
    "Browser:NavigateStop" : 0x303be0,
    "Browser:NavigateReload" : 0x303c60,
    "Browser:SetFocus" : 0x303840,
    "Browser:ClearFocus" : 0x3038b0,
    "Browser:CopyExternalLink" : 0x303ce0,
    "Browser:OpenExternalLink" : 0x303d50,
    "Browser:DeleteCookies" : 0x303dc0,
    "Browser:OpenTicket" : 0x303e40,
    "Browser:SetZoom" : 0x303fd0,
    ------- Lua Namespaces -------
    "C_LossOfControl:GetNumEvents" : 0x10cfa30,
    "C_LossOfControl:GetEventInfo" : 0x10cfa90,
    "C_Social:RegisterSocialBrowser" : 0x117d800,
    "C_Social:TwitterCheckStatus" : 0x117d8d0,
    "C_Social:TwitterConnect" : 0x117d900,
    "C_Social:TwitterDisconnect" : 0x117d960,
    "C_Social:TwitterPostMessage" : 0x117d990,
    "C_Social:TwitterPostAchievement" : 0x117dad0,
    "C_Social:TwitterPostScreenshot" : 0x117ddc0,
    "C_Social:TwitterGetMSTillCanPost" : 0x117e1c0,
    "C_Social:IsSocialEnabled" : 0x117e1f0,
    "C_Social:GetTweetLength" : 0x117e270,
    "C_Social:GetNumCharactersPerMedia" : 0x117e240,
    "C_Social:GetLastItem" : 0x117e390,
    "C_Social:GetLastScreenshot" : 0x117e410,
    "C_Social:GetScreenshotByIndex" : 0x117e430,
    "C_Social:SetTextureToScreenshot" : 0x117e520,
    "C_ProductChoice:GetChoices" : 0x122ade0,
    "C_ProductChoice:GetProducts" : 0x122af60,
    "C_ProductChoice:MakeSelection" : 0x122b080,
    "C_ProductChoice:GetNumSuppressed" : 0x122b190,
    "C_NewItems:IsNewItem" : 0x10ba160,
    "C_NewItems:RemoveNewItem" : 0x10ba250,
    "C_NewItems:ClearAll" : 0x10ba300,
    "C_Timer:After" : 0x12ea670,
    "C_Widget:IsWidget" : 0x1330630,
    "C_Widget:IsFrameWidget" : 0x1330680,
    "C_Widget:IsRenderableWidget" : 0x1330630,
    "C_AuthChallenge:SetFrame" : 0x100a440,
    "C_AuthChallenge:Submit" : 0x100a4e0,
    "C_AuthChallenge:Cancel" : 0x100a500,
    "C_AuthChallenge:OnTabPressed" : 0x100a530,
    "C_AuthChallenge:DidChallengeSucceed" : 0x100a670,
    "C_Login:Login" : 0x3cd440,
    "C_Login:LauncherLogin" : 0x3cd6e0,
    "C_Login:CachedLogin" : 0x18f8f0,
    "C_Login:GetCachedCredentials" : 0x18f8f0,
    "C_Login:DeleteCachedCredentials" : 0x18f8f0,
    "C_Login:GetExtraAuthInfo" : 0x3cdad0,
    "C_Login:SubmitExtraAuthInfo" : 0x3cdb30,
    "C_Login:SubmitCaptcha" : 0x3cdcb0,
    "C_Login:SetCaptchaTexture" : 0x3cde30,
    "C_Login:GetState" : 0x3cdf80,
    "C_Login:GetGameAccounts" : 0x3ce040,
    "C_Login:GetAgreementLink" : 0x3ce470,
    "C_Login:SelectGameAccount" : 0x3ce100,
    "C_Login:GetLastError" : 0x3ce2e0,
    "C_Login:GetWaitQueueInfo" : 0x3ceaa0,
    "C_Login:GetLogonQueueInfo" : 0x3ceae0,
    "C_Login:ClearLastError" : 0x3ce6e0,
    "C_Login:DisconnectFromServer" : 0x3ce7e0,
    "C_Login:IsLauncherLogin" : 0x3ce9e0,
    "C_Login:AttemptedLauncherLogin" : 0x3cea10,
    "C_Login:SetAttemptedLauncherLogin" : 0x3cea80,
    "C_Login:CancelLauncherLogin" : 0x3cea90,
    "C_Login:IsLoginReady" : 0x3cea30,
    "C_Login:GetAccountSuspensionRemainingTime" : 0x3ceb30,
    "C_Login:RequestAutoRealmJoin" : 0x3cebe0,
    "C_NamePlate:GetNumNamePlateMotionTypes" : 0xf26720,
    "C_NamePlate:GetNamePlateForUnit" : 0xf26740,
    "C_NamePlate:GetNamePlates" : 0xf26930,
    "C_NamePlate:SetNamePlateSelfSize" : 0xf26aa0,
    "C_NamePlate:GetNamePlateSelfSize" : 0xf26ba0,
    "C_NamePlate:SetNamePlateFriendlySize" : 0xf26c20,
    "C_NamePlate:GetNamePlateFriendlySize" : 0xf26d20,
    "C_NamePlate:SetNamePlateEnemySize" : 0xf26da0,
    "C_NamePlate:GetNamePlateEnemySize" : 0xf26ea0,
    "C_NamePlate:SetNamePlateSelfClickThrough" : 0xf26f20,
    "C_NamePlate:GetNamePlateSelfClickThrough" : 0xf26f80,
    "C_NamePlate:SetNamePlateFriendlyClickThrough" : 0xf26fa0,
    "C_NamePlate:GetNamePlateFriendlyClickThrough" : 0xf27010,
    "C_NamePlate:SetNamePlateEnemyClickThrough" : 0xf27030,
    "C_NamePlate:GetNamePlateEnemyClickThrough" : 0xf270a0,
    "C_NamePlate:SetTargetClampingInsets" : 0xf270c0,
    "C_NamePlate:GetTargetClampingInsets" : 0xf27160,
    "C_NamePlate:SetNamePlateSelfPreferredClickInsets" : 0xf271e0,
    "C_NamePlate:GetNamePlateSelfPreferredClickInsets" : 0xf27280,
    "C_NamePlate:SetNamePlateFriendlyPreferredClickInsets" : 0xf27290,
    "C_NamePlate:GetNamePlateFriendlyPreferredClickInsets" : 0xf27330,
    "C_NamePlate:SetNamePlateEnemyPreferredClickInsets" : 0xf27340,
    "C_NamePlate:GetNamePlateEnemyPreferredClickInsets" : 0xf273e0,
    "C_SecureTransfer:AcceptTrade" : 0x122d140,
    "C_SecureTransfer:SendMail" : 0x122d180,
    "C_SecureTransfer:Cancel" : 0x122d260,
    "C_SecureTransfer:GetMailInfo" : 0x122d1b0,
    "C_SharedCharacterServices:IsPurchaseIDPendingUpgrade" : 0x3f3f00,
    "C_SharedCharacterServices:GetLastSeenCharacterUpgradePopup" : 0x3f3d30,
    "C_SharedCharacterServices:GetLastSeenExpansionTrialPopup" : 0x3f3d60,
    "C_SharedCharacterServices:HasSeenFreePromotionalUpgradePopup" : 0x3f3d90,
    "C_SharedCharacterServices:SetCharacterUpgradePopupSeen" : 0x3f3dc0,
    "C_SharedCharacterServices:SetExpansionTrialPopupSeen" : 0x3f3e20,
    "C_SharedCharacterServices:SetPromotionalPopupSeen" : 0x3f3e80,
    "C_SharedCharacterServices:HasFreePromotionalUpgrade" : 0x3f39f0,
    "C_SharedCharacterServices:GetUpgradeDistributions" : 0x3f37f0,
    "C_SharedCharacterServices:QueryClassTrialBoostResult" : 0x3f4150,
    "C_LootHistory:GetNumItems" : 0x11ca2e0,
    "C_LootHistory:GetItem" : 0x11ca300,
    "C_LootHistory:GetPlayerInfo" : 0x11ca460,
    "C_LootHistory:SetExpiration" : 0x11ca760,
    "C_LootHistory:GetExpiration" : 0x11ca7f0,
    "C_LootHistory:GiveMasterLoot" : 0x11ca840,
    "C_LootHistory:CanMasterLoot" : 0x11ca9e0,
    "C_WowTokenSecure:ConfirmSellToken" : 0x10310c0,
    "C_WowTokenSecure:ConfirmBuyToken" : 0x1031220,
    "C_WowTokenSecure:GetPriceLockDuration" : 0x1031300,
    "C_WowTokenSecure:RedeemToken" : 0x1031340,
    "C_WowTokenSecure:RedeemTokenConfirm" : 0x1031640,
    "C_WowTokenSecure:IsRedemptionStillValid" : 0x10317d0,
    "C_WowTokenSecure:GetValidRedemptionTypes" : 0x1031820,
    "C_WowTokenSecure:GetGameTimeRedemptionInfo" : 0x1031870,
    "C_WowTokenSecure:GetBalanceRedemptionInfo" : 0x10318c0,
    "C_WowTokenSecure:CancelRedeem" : 0x1031580,
    "C_WowTokenSecure:GetRemainingGameTime" : 0x1031500,
    "C_WowTokenSecure:CanRedeemForBalance" : 0x1031540,
    "C_WowTokenSecure:WillKickFromWorld" : 0x1031d00,
    "C_WowTokenSecure:GetTokenCount" : 0x1030e20,
    "C_WowTokenSecure:GetBalanceRedeemAmount" : 0x1031d70,
    "C_WowTokenSecure:SetBalanceAmountString" : 0x1031de0,
    "C_RecruitAFriend:GetRecruitInfo" : 0x102f340,
    "C_RecruitAFriend:IsSendingEnabled" : 0x102f390,
    "C_RecruitAFriend:CheckEmailEnabled" : 0x102f3b0,
    "C_RecruitAFriend:SendRecruit" : 0x102f1b0,
    "C_RecruitAFriend:GetRecruitInfo" : 0x102f340,
    "C_RealmList:GetAvailableCategories" : 0x3f97a0,
    "C_RealmList:GetCategoryInfo" : 0x3f9940,
    "C_RealmList:GetRealmsInCategory" : 0x3f9a60,
    "C_RealmList:GetRealmInfo" : 0x3f9c00,
    "C_RealmList:CanJoinTournamentRealms" : 0x3f9e40,
    "C_RealmList:ConnectToRealm" : 0x3f9e90,
    "C_RealmList:ClearRealmList" : 0x3f9ee0,
    "C_RealmList:IsRealmListComplete" : 0x3f9900,
    "C_RealmList:RequestChangeRealmList" : 0x3f9ef0,
    "C_CharacterServices:GetFactionGroupByIndex" : 0x3f36b0,
    "C_CharacterServices:TrialBoostCharacter" : 0x3f3ca0,
    "C_CharacterServices:IsTrialBoostEnabled" : 0x3f3bb0,
    "C_CharacterServices:IsLiveRegionCharacterListEnabled" : 0x3f3bd0,
    "C_CharacterServices:IsLiveRegionCharacterCopyEnabled" : 0x3f3bf0,
    "C_CharacterServices:IsLiveRegionAccountCopyEnabled" : 0x3f3c10,
    "C_CharacterServices:RequestManualUnrevoke" : 0x3f3c30,
    "C_CharacterServices:ApplyLevelUp" : 0x3f3ef0,
    "C_CharacterServices:HasQueuedUpgrade" : 0x3f4000,
    "C_CharacterServices:ClearQueuedUpgrade" : 0x3f4030,
    "C_CharacterServices:GetQueuedUpgradeGUID" : 0x3f4050,
    "C_CharacterServices:DoesGUIDHavePendingFactionChange" : 0x3f4070,
    ------- Lua Functions -------
    "SetCharSelectModelFrame" : 0x3d55a0,
    "SetCharSelectBackground" : 0x3d5680,
    "GetCharacterListUpdate" : 0x3d5710,
    "GetNumCharacters" : 0x3d5790,
    "IsCharacterListUpdatePending" : 0x3d57b0,
    "GetCharacterRace" : 0x3d57d0,
    "SelectCharacter" : 0x3d5940,
    "GetCharacterSelection" : 0x3d59f0,
    "DeleteCharacter" : 0x3d5a10,
    "RenameCharacter" : 0x3d5b60,
    "DeclineCharacter" : 0x3d5c90,
    "UpdateSelectionCustomizationScene" : 0x3d5e80,
    "GetCharacterSelectFacing" : 0x3d5f60,
    "SetCharacterSelectFacing" : 0x3d5f90,
    "GetSelectBackgroundModel" : 0x3d5ff0,
    "SaveCharacterOrder" : 0x3d6110,
    "EnableChangeFaction" : 0x18f8f0,
    "GetPlayersOnServer" : 0x3d6290,
    "UndeleteCharacter" : 0x3d5dc0,
    "StartCharacterUndelete" : 0x3d5d90,
    "EndCharacterUndelete" : 0x3d5da0,
    "GetCharacterUndeleteStatus" : 0x3d5e20,
    "CheckCharacterUndeleteCooldown" : 0x3d5e70,
    "KioskDeleteAllCharacters" : 0x3d5ad0,
    "RequestConsumptionConversionInfo" : 0x3d62b0,
    "ConvertConsumptionTime" : 0x3d6330,
    "GetConsumptionConversionInfo" : 0x3d62e0,
    "CheckKioskModeRealmKey" : 0x3f09f0,
    "CheckKioskModeQuitKey" : 0x3f0a90,
    "GetBuildInfo" : 0x3f0b30,
    "GetLocale" : 0x3f1110,
    "GetSavedAccountName" : 0x3f0fb0,
    "SetSavedAccountName" : 0x3f0fd0,
    "GetUsesToken" : 0x3f1040,
    "SetUsesToken" : 0x3f1060,
    "GetSavedAccountList" : 0x3f10c0,
    "ClearSavedAccountList" : 0x3f10e0,
    "QuitGame" : 0x3f1140,
    "PlayGlueMusic" : 0x3f1150,
    "PlayCreditsMusic" : 0x3f1240,
    "StopGlueMusic" : 0x3f1290,
    "LaunchURL" : 0x3f12b0,
    "GetServerName" : 0x3f1300,
    "IsConnectedToServer" : 0x3f1460,
    "EnterWorld" : 0x3f1490,
    "Screenshot" : 0x3f1530,
    "GetCursorPosition" : 0x3f15b0,
    "GetCursorDelta" : 0x3f1690,
    "ShowCursor" : 0x3f1790,
    "HideCursor" : 0x3f17b0,
    "GetBillingTimeRemaining" : 0x3f17d0,
    "GetBillingPlan" : 0x3f1810,
    "GetBillingTimeRested" : 0x3f18b0,
    "PlayGlueAmbience" : 0x3f11a0,
    "StopGlueAmbience" : 0x3f1230,
    "GetCreditsText" : 0x3f18e0,
    "GetCVar" : 0x3f1aa0,
    "GetCVarBool" : 0x3f1b30,
    "SetCVar" : 0x3f1980,
    "GetCVarDefault" : 0x3f1bb0,
    "GetNumDeclensionSets" : 0x3f1c50,
    "DeclineName" : 0x3f1d10,
    "StopAllSFX" : 0x3f1e70,
    "SetClearConfigData" : 0x3f1eb0,
    "RestartGx" : 0x3f1ef0,
    "IsStreamingMode" : 0x3f1f10,
    "GetLoginScreenBackground" : 0x3f1f30,
    "IsConsoleActive" : 0x3f1fe0,
    "RunScript" : 0x3f2010,
    "IsGMClient" : 0x3d6290,
    "LoadURLIndex" : 0x3f2060,
    "HasShownTrialPopUp" : 0x3f2160,
    "SetTrialPopUp" : 0x3f2190,
    "VisitPromotionURL" : 0x3f21a0,
    "WasScreenFirstDisplayed" : 0x3f22b0,
    "DebugLog" : 0x3f22d0,
    "SetWorldFrameStrata" : 0x3f2310,
    "ClearAccountCharacters" : 0x3f2390,
    "RequestAccountCharacters" : 0x3f23a0,
    "GetNumAccountCharacters" : 0x3f2430,
    "GetAccountCharacterInfo" : 0x3f2450,
    "CopyAccountCharacterFromLive" : 0x3f2540,
    "CopyAccountDataFromLive" : 0x3f2610,
    "InitializeCharacterScreenData" : 0x3f2980,
    "SetInCharacterSelect" : 0x3f2990,
    "SetInCharacterCreate" : 0x3f29c0,
    "LogAuroraClient" : 0x3f29f0,
    "HasCheckedSystemRequirements" : 0x3f2a50,
    "SetCheckedSystemRequirements" : 0x3f2a70,
    "GetKioskLoginInfo" : 0x3f26a0,
    "PlaySound" : 0xda3950,
    "PlayMusic" : 0xda3b10,
    "PlaySoundFile" : 0xda3ba0,
    "StopSound" : 0xda3cf0,
    "StopMusic" : 0xda3ce0,
    "Sound_GameSystem_GetNumInputDrivers" : 0xda3db0,
    "Sound_GameSystem_GetInputDriverNameByIndex" : 0xda3dd0,
    "Sound_GameSystem_GetNumOutputDrivers" : 0xda3e20,
    "Sound_GameSystem_GetOutputDriverNameByIndex" : 0xda3e50,
    "Sound_ChatSystem_GetNumInputDrivers" : 0xda3db0,
    "Sound_ChatSystem_GetInputDriverNameByIndex" : 0xda4030,
    "Sound_ChatSystem_GetNumOutputDrivers" : 0xda3db0,
    "Sound_ChatSystem_GetOutputDriverNameByIndex" : 0xda40b0,
    "Sound_GameSystem_RestartSoundSystem" : 0xda4130,
    "FrameXML_Debug" : 0xee22f0,
    "GetBuildInfo" : 0xee2360,
    "SetConsoleKey" : 0xee23c0,
    "Screenshot" : 0xee2fa0,
    "GetFramerate" : 0xee3040,
    "IsDebugBuild" : 0x3d6290,
    "RegisterCVar" : 0xee2840,
    "ResetTestCvars" : 0xee2900,
    "SetCVar" : 0xee2910,
    "GetCVar" : 0xee2a80,
    "SetCVarBitfield" : 0xee2b00,
    "GetCVarBitfield" : 0xee2cc0,
    "GetCVarBool" : 0xee2dd0,
    "GetCVarDefault" : 0xee2e60,
    "Stuck" : 0xee2f00,
    "Logout" : 0xee2f40,
    "Quit" : 0xee2f70,
    "SetCursor" : 0xee3070,
    "ResetCursor" : 0xee3680,
    "ClearCursor" : 0xee3690,
    "CursorHasItem" : 0xee36b0,
    "CursorHasSpell" : 0xee36f0,
    "CursorHasMacro" : 0xee3710,
    "CursorHasMoney" : 0xee3730,
    "GetCursorInfo" : 0xee3750,
    "EquipCursorItem" : 0xee3e30,
    "DeleteCursorItem" : 0xee4000,
    "SellCursorItem" : 0xee4130,
    "EquipPendingItem" : 0xee41f0,
    "CancelPendingEquip" : 0xee4260,
    "TargetUnit" : 0xee42d0,
    "TargetNearest" : 0xee43a0,
    "TargetNearestEnemy" : 0xee4480,
    "TargetNearestEnemyPlayer" : 0xee44e0,
    "TargetNearestFriend" : 0xee4540,
    "TargetNearestFriendPlayer" : 0xee45a0,
    "TargetNearestPartyMember" : 0xee4600,
    "TargetNearestRaidMember" : 0xee4640,
    "TargetPriorityHighlightStart" : 0xee4400,
    "TargetPriorityHighlightEnd" : 0xee4440,
    "TargetDirectionEnemy" : 0xee4680,
    "TargetDirectionFriend" : 0xee4740,
    "TargetDirectionFinished" : 0xee4800,
    "TargetLastTarget" : 0xee4820,
    "TargetLastEnemy" : 0xee48d0,
    "TargetLastFriend" : 0xee4900,
    "AttackTarget" : 0xee4930,
    "AssistUnit" : 0xee4970,
    "FollowUnit" : 0xee4b00,
    "InteractUnit" : 0xee4c50,
    "ReopenInteraction" : 0xee4d70,
    "ClearTarget" : 0xee4de0,
    "AutoEquipCursorItem" : 0xee4e50,
    "ToggleSheath" : 0xee4e70,
    "GetSheathState" : 0xee4e90,
    "GetZoneText" : 0xee4ee0,
    "GetRealZoneText" : 0xee4f10,
    "GetSubZoneText" : 0xee5010,
    "GetMinimapZoneText" : 0xee5040,
    "InitiateTrade" : 0xee5070,
    "CanInspect" : 0xee51c0,
    "NotifyInspect" : 0xee5330,
    "RequestTimePlayed" : 0xee5da0,
    "RepopMe" : 0xee5dd0,
    "HasNoReleaseAura" : 0xee5df0,
    "AcceptResurrect" : 0xee5e70,
    "DeclineResurrect" : 0xee5e90,
    "TimeoutResurrect" : 0xee5ec0,
    "ResurrectGetOfferer" : 0xee5ef0,
    "ResurrectHasSickness" : 0xee5f70,
    "ResurrectHasTimer" : 0xee5f90,
    "BeginTrade" : 0xee5fc0,
    "CancelTrade" : 0xee5fd0,
    "AcceptGuild" : 0xee5fe0,
    "DeclineGuild" : 0xee6000,
    "CancelLogout" : 0xee6020,
    "ForceLogout" : 0xee6050,
    "ForceQuit" : 0xee6070,
    "GetCursorMoney" : 0xee6090,
    "DropCursorMoney" : 0xee60c0,
    "PickupPlayerMoney" : 0xee6100,
    "GuildInvite" : 0xee61e0,
    "GuildUninvite" : 0xee6310,
    "GuildPromote" : 0xee6490,
    "GuildDemote" : 0xee6540,
    "GuildSetLeader" : 0xee6690,
    "GuildSetMOTD" : 0xee6780,
    "GuildLeave" : 0xee6850,
    "GuildDisband" : 0xee68b0,
    "GetScreenDPIScale" : 0xee68f0,
    "GetReleaseTimeRemaining" : 0xee6920,
    "GetCorpseRecoveryDelay" : 0xee6990,
    "GetInstanceBootTimeRemaining" : 0xee69e0,
    "GetSummonConfirmTimeLeft" : 0xee6a30,
    "GetSummonConfirmSummoner" : 0xee6a80,
    "GetSummonConfirmAreaName" : 0xee6af0,
    "ConfirmSummon" : 0xee6b80,
    "CancelSummon" : 0xee6bf0,
    "GetCursorPosition" : 0x3f15b0,
    "GetCursorDelta" : 0x3f1690,
    "GetNetStats" : 0xee6c20,
    "GetNetIpTypes" : 0xee6cb0,
    "SitStandOrDescendStart" : 0xee6d00,
    "StopCinematic" : 0xee6d80,
    "RunScript" : 0xee6dd0,
    "CheckInteractDistance" : 0xee6e30,
    "RandomRoll" : 0xee6f70,
    "OpeningCinematic" : 0xee7130,
    "InCinematic" : 0xee7150,
    "AcceptXPLoss" : 0xee7180,
    "CheckSpiritHealerDist" : 0xee71b0,
    "CheckTalentMasterDist" : 0xee7200,
    "CheckBinderDist" : 0xee7250,
    "RetrieveCorpse" : 0xee72a0,
    "ActionBindsItem" : 0xee72f0,
    "BindEnchant" : 0xee72f0,
    "ReplaceEnchant" : 0xee7310,
    "ReplaceTradeEnchant" : 0xee7350,
    "NotWhileDeadError" : 0xee7360,
    "GetRestState" : 0xee7380,
    "GetXPExhaustion" : 0xee7470,
    "GetTimeToWellRested" : 0xee7530,
    "GMRequestPlayerInfo" : 0xee7550,
    "GetCoinIcon" : 0xee7570,
    "GetCoinText" : 0xee7610,
    "GetCoinTextureString" : 0xee76f0,
    "IsSubZonePVPPOI" : 0xee77e0,
    "GetZonePVPInfo" : 0xee7860,
    "TogglePVP" : 0xee7cb0,
    "SetPVP" : 0xee7cd0,
    "GetPVPDesired" : 0xee7d40,
    "GetPVPTimer" : 0xee7da0,
    "IsPVPTimerRunning" : 0xee7de0,
    "ConfirmBindOnUse" : 0xee7e40,
    "ConfirmOnUse" : 0xee7e50,
    "ConfirmNoRefundOnUse" : 0xee7e50,
    "GetLocale" : 0x3f1110,
    "DropItemOnUnit" : 0xee7e60,
    "RestartGx" : 0x3f1ef0,
    "GetBindLocation" : 0xee8070,
    "ConfirmTalentWipe" : 0xee8120,
    "ConfirmPetUnlearn" : 0xee8120,
    "ConfirmBinder" : 0xee8160,
    "ShowingHelm" : 0xee8190,
    "ShowingCloak" : 0xee81f0,
    "ShowHelm" : 0xee8250,
    "ShowCloak" : 0xee82b0,
    "SetEuropeanNumbers" : 0xee8310,
    "IsEuropeanNumbers" : 0xee8330,
    "GetAreaSpiritHealerTime" : 0xee8360,
    "AcceptAreaSpiritHeal" : 0xee83c0,
    "CancelAreaSpiritHeal" : 0xee8400,
    "GetMouseFocus" : 0xee8430,
    "GetMouseClickFocus" : 0xee84a0,
    "GetMouseMotionFocus" : 0xee8430,
    "GetRealmName" : 0xee8510,
    "GetNormalizedRealmName" : 0xee8570,
    "GetItemQualityColor" : 0xee85f0,
    "GetItemInfo" : 0xee86c0,
    "GetItemInfoInstant" : 0xee8b40,
    "GetDetailedItemLevelInfo" : 0xee8f00,
    "GetItemSetInfo" : 0xee9180,
    "GetItemIcon" : 0xee9620,
    "GetItemFamily" : 0xee9700,
    "GetItemCount" : 0xee97d0,
    "GetItemSpell" : 0xee9980,
    "PickupItem" : 0xee9a70,
    "IsCurrentItem" : 0xee9b90,
    "IsUsableItem" : 0xee9c10,
    "IsHelpfulItem" : 0xee9ed0,
    "IsHarmfulItem" : 0xee9f70,
    "IsConsumableItem" : 0xeea010,
    "IsEquippableItem" : 0xeea380,
    "IsEquippedItem" : 0xeea450,
    "IsEquippedItemType" : 0xeea770,
    "IsDressableItem" : 0xeea4e0,
    "ItemHasRange" : 0xeea920,
    "IsItemInRange" : 0xeeaa10,
    "GetItemClassInfo" : 0xeeab20,
    "GetItemSubClassInfo" : 0xeeab90,
    "GetItemInventorySlotInfo" : 0xeead60,
    "GetAddOnMetadata" : 0xeeade0,
    "UpdateAddOnMemoryUsage" : 0xeeaec0,
    "GetAddOnMemoryUsage" : 0xeeaed0,
    "GetScriptCPUUsage" : 0xeeaf90,
    "UpdateAddOnCPUUsage" : 0xeeafc0,
    "GetAddOnCPUUsage" : 0xeeafd0,
    "GetFunctionCPUUsage" : 0xeeb080,
    "GetFrameCPUUsage" : 0xeeb130,
    "GetEventCPUUsage" : 0xeeb220,
    "ResetCPUUsage" : 0xeeb280,
    "GetCurrentEventID" : 0xeee3c0,
    "GetEventTime" : 0xeee3f0,
    "GetAddOnOptionalDependencies" : 0xeeb290,
    "ResetDisabledAddOns" : 0xeeb380,
    "IsAddOnLoadOnDemand" : 0xeeb3a0,
    "PartialPlayTime" : 0xeeb440,
    "NoPlayTime" : 0xeeb4c0,
    "GetBillingTimeRested" : 0x3f18b0,
    "CanShowResetInstances" : 0xee5410,
    "ResetInstances" : 0xee55a0,
    "IsInInstance" : 0xee55c0,
    "GetInstanceInfo" : 0xee5680,
    "IsOnTournamentRealm" : 0xee5a30,
    "IsPlayerInWorld" : 0xeed820,
    "GetDungeonInfo" : 0xee5a50,
    "ReportBug" : 0xee5d00,
    "ReportSuggestion" : 0xee5d50,
    "GetMirrorTimerInfo" : 0xeeb540,
    "GetMirrorTimerProgress" : 0xeeb680,
    "UseItemByName" : 0xeeb860,
    "EquipItemByName" : 0xeebad0,
    "InCombatLockdown" : 0xeec040,
    "StartAttack" : 0xeec0c0,
    "StopAttack" : 0xeec1f0,
    "SetTaxiBenchmarkMode" : 0xeec240,
    "GetTaxiBenchmarkMode" : 0xeec280,
    "Dismount" : 0xeec2e0,
    "SetUIVisibility" : 0xeec310,
    "SetInWorldUIVisibility" : 0xeec350,
    "IsReferAFriendLinked" : 0xeec390,
    "CanGrantLevel" : 0xeec400,
    "GrantLevel" : 0xeec470,
    "CanSummonFriend" : 0xeec500,
    "SummonFriend" : 0xeec570,
    "GetSummonFriendCooldown" : 0xeec6d0,
    "GetTotemInfo" : 0xeec780,
    "GetTotemTimeLeft" : 0xeec910,
    "GetTotemCannotDismiss" : 0xeec9d0,
    "TargetTotem" : 0xeeca50,
    "DestroyTotem" : 0xeecad0,
    "GetNumDeclensionSets" : 0xeecbd0,
    "DeclineName" : 0xeecc90,
    "AcceptLevelGrant" : 0xeecde0,
    "DeclineLevelGrant" : 0xeece40,
    "GameMovieFinished" : 0xeece60,
    "IsDesaturateSupported" : 0xeecec0,
    "GetItemUniqueness" : 0xee9230,
    "GetItemCreationContext" : 0xee94a0,
    "EndRefund" : 0xeecee0,
    "EndBoundTradeable" : 0xeecf40,
    "ToggleAnimKitDisplay" : 0x18f8f0,
    "ToggleDebugAIDisplay" : 0x18f8f0,
    "GetAllowLowLevelRaid" : 0xeed120,
    "SetAllowLowLevelRaid" : 0xeed180,
    "GetAutoDeclineGuildInvites" : 0xeed1e0,
    "SetAutoDeclineGuildInvites" : 0xeed240,
    "GetCemeteryPreference" : 0xeed290,
    "SetCemeteryPreference" : 0xeed2b0,
    "IsCemeterySelectionAvailable" : 0xeed3a0,
    "GetFileStreamingStatus" : 0xeed420,
    "GetBackgroundLoadingStatus" : 0xeed3c0,
    "GetAvailableBandwidth" : 0xeed450,
    "GetDownloadedPercentage" : 0xeed480,
    "MouseOverrideCinematicDisable" : 0xeed4b0,
    "GetMaxSpellStartRecoveryOffset" : 0xeed500,
    "GetSpellQueueWindow" : 0xeed500,
    "GetRestrictedAccountData" : 0xeed7b0,
    "SendSoRByText" : 0xeed540,
    "CanSendSoRByText" : 0xeed790,
    "GetNumSoRRemaining" : 0xeed800,
    "GetSchoolString" : 0xeed850,
    "CanLootUnit" : 0xeed8c0,
    "Ambiguate" : 0xeed9a0,
    "GetFileIDFromPath" : 0xeedd20,
    "GetAtlasInfo" : 0xeedd80,
    "GetUICameraInfo" : 0xeedf40,
    "IsPlayerMoving" : 0xeee090,
    "IsRestrictedAccount" : 0xeee0c0,
    "FlashClientIcon" : 0xeee0e0,
    "IsReplacingUnit" : 0xeee110,
    "CanDualWield" : 0xeee130,
    "HasIgnoreDualWieldWeapon" : 0xeee150,
    "ToggleSelfHighlight" : 0xeee1f0,
    "GetGameMessageInfo" : 0xeee230,
    "PlayVocalErrorSoundID" : 0xeee2e0,
    "ScriptsDisallowedForBeta" : 0x3d6290,
    "AreDangerousScriptsAllowed" : 0xeee330,
    "SetAllowDangerousScripts" : 0xeee360,
    "IsAccountSecured" : 0xeee580,
    "SpellIsTargeting" : 0x833b80,
    "SpellCanTargetItem" : 0x833bc0,
    "SpellTargetItem" : 0x833c10,
    "SpellCanTargetUnit" : 0x833fe0,
    "SpellTargetUnit" : 0x834080,
    "SpellCanTargetItemID" : 0x834200,
    "SpellStopTargeting" : 0x834250,
    "SpellStopCasting" : 0x834310,
    "CancelUnitBuff" : 0x834470,
    "CancelSpellByName" : 0x8346b0,
    "CancelItemTempEnchantment" : 0x834810,
    "CannotBeResurrected" : 0x8348f0,
    "SpellCancelQueuedSpell" : 0x8349b0,
    "SpellGetVisibilityInfo" : 0x8349d0,
    "SpellIsAlwaysShown" : 0x834be0,
    "SpellIsSelfBuff" : 0x834c50,
    "AcceptSpellConfirmationPrompt" : 0x834f30,
    "DeclineSpellConfirmationPrompt" : 0x8350f0,
    "GetSpellConfirmationPromptsInfo" : 0x8353e0,
    "CombatLogResetFilter" : 0xba3dc0,
    "CombatLogAddFilter" : 0xba3de0,
    "CombatLogSetRetentionTime" : 0xba4030,
    "CombatLogGetRetentionTime" : 0xba4090,
    "CombatLogGetNumEntries" : 0xba40b0,
    "CombatLogSetCurrentEntry" : 0xba4150,
    "CombatLogGetCurrentEntry" : 0xba4300,
    "CombatLogAdvanceEntry" : 0xba4340,
    "CombatLogClearEntries" : 0xba44b0,
    "CombatLog_Object_IsA" : 0xba4500,
    "CombatTextSetActiveUnit" : 0xba3d80,
    "DeathRecap_GetEvents" : 0xba4580,
    "DeathRecap_HasEvents" : 0xba46e0,
    "GetDeathRecapLink" : 0xba4760,
    "GetCurrentCombatTextEventInfo" : 0xba47c0,
    "CombatLogGetCurrentEventInfo" : 0xba4320,
    "GetAutoCompleteResults" : 0xeaed60,
    "IsRecognizedName" : 0xeaf040,
    "GetAutoCompletePresenceID" : 0xeaf100,
    "GetAutoCompleteRealms" : 0xeaf180,
    "SendChatMessage" : 0xebd9a0,
    "IsChatAFK" : 0xebe220,
    "IsChatDND" : 0xebe240,
    "SendSystemMessage" : 0xebe260,
    "GetNumLanguages" : 0xebe2b0,
    "GetLanguageByIndex" : 0xebe460,
    "GetDefaultLanguage" : 0xebe6d0,
    "GetAlternativeDefaultLanguage" : 0xebe780,
    "DoEmote" : 0xebe830,
    "CancelEmote" : 0xebebc0,
    "LoggingChat" : 0xebebe0,
    "LoggingCombat" : 0xebebf0,
    "JoinChannelByName" : 0xebecd0,
    "JoinTemporaryChannel" : 0xebecd0,
    "JoinPermanentChannel" : 0xebece0,
    "DeclineChannelInvite" : 0xebecf0,
    "LeaveChannelByName" : 0xebede0,
    "LeaveChannelByLocalID" : 0xebed80,
    "ListChannelByName" : 0xebee30,
    "ListChannels" : 0xebeec0,
    "GetChannelList" : 0xebf0d0,
    "SetChannelPassword" : 0xebf2f0,
    "SetChannelOwner" : 0xebf3a0,
    "DisplayChannelOwner" : 0xebf4c0,
    "GetChannelName" : 0xebf550,
    "ChannelModerator" : 0xebf650,
    "ChannelUnmoderator" : 0xebf770,
    "ChannelInvite" : 0xebf890,
    "ChannelKick" : 0xebf9b0,
    "ChannelBan" : 0xebfad0,
    "ChannelUnban" : 0xebfbf0,
    "ChannelToggleAnnouncements" : 0xebfd10,
    "ChannelSetPartyMemberSilent" : 0xebfda0,
    "ChannelSetAllSilent" : 0xebfed0,
    "ChangeChatColor" : 0xebffc0,
    "ResetChatColors" : 0xec0360,
    "GetChatTypeIndex" : 0xec0a70,
    "GetChatWindowInfo" : 0xec0cc0,
    "GetChatWindowSavedPosition" : 0xec0e30,
    "GetChatWindowSavedDimensions" : 0xec0f00,
    "GetChatWindowMessages" : 0xec0fa0,
    "GetChatWindowChannels" : 0xec1070,
    "AddChatWindowMessages" : 0xec11c0,
    "RemoveChatWindowMessages" : 0xec1420,
    "AddChatWindowChannel" : 0xec1740,
    "RemoveChatWindowChannel" : 0xec19b0,
    "SetChatWindowName" : 0xec1be0,
    "SetChatWindowSize" : 0xec1d40,
    "SetChatWindowColor" : 0xec1de0,
    "SetChatWindowAlpha" : 0xec1f00,
    "SetChatWindowLocked" : 0xec1fa0,
    "SetChatWindowDocked" : 0xec20a0,
    "SetChatWindowUninteractable" : 0xec2020,
    "SetChatWindowShown" : 0xec2140,
    "SetChatWindowSavedPosition" : 0xec21c0,
    "SetChatWindowSavedDimensions" : 0xec2310,
    "EnumerateServerChannels" : 0xec2400,
    "ResetChatWindows" : 0xec2960,
    "RedockChatWindows" : 0xec34d0,
    "SetPendingReportTarget" : 0xec3620,
    "SetPendingReportPetTarget" : 0xec3750,
    "GetNumDisplayChannels" : 0xec3860,
    "GetNumGroupChannels" : 0xec3890,
    "GetChannelDisplayInfo" : 0xec38c0,
    "GetSelectedDisplayChannel" : 0xec3cc0,
    "SetSelectedDisplayChannel" : 0xec3d10,
    "GetNumChannelMembers" : 0xec3db0,
    "IsDisplayChannelOwner" : 0xec3e80,
    "IsDisplayChannelModerator" : 0xec3ef0,
    "SetChatColorNameByClass" : 0xec0580,
    "IsChatChannelRaid" : 0xec0810,
    "SwapChatChannelByLocalID" : 0xec08a0,
    "CanBeRaidTarget" : 0xf3b5a0,
    "SetRaidTarget" : 0xf3b620,
    "SetRaidTargetProtected" : 0xf3b6c0,
    "GetRaidTargetIndex" : 0xf3b760,
    "CanResetTutorials" : 0xf42530,
    "FlagTutorial" : 0xf425b0,
    "IsTutorialFlagged" : 0xf42650,
    "TriggerTutorial" : 0xf42600,
    "ClearTutorials" : 0xf426d0,
    "ResetTutorials" : 0xf42860,
    "GetNextCompleatedTutorial" : 0xf42980,
    "GetPrevCompleatedTutorial" : 0xf42a30,
    "GetTutorialsEnabled" : 0xf42ae0,
    "DoesSpellExist" : 0xf5c220,
    "GetNumSpellTabs" : 0xf5c280,
    "GetSpellTabInfo" : 0xf5c310,
    "GetSpellBookItemName" : 0xf5c670,
    "GetSpellBookItemInfo" : 0xf5c900,
    "GetSpellLink" : 0xf5ca30,
    "GetSpellTradeSkillLink" : 0x18f8f0,
    "GetSpellInfo" : 0xf5cc70,
    "GetSpellSubtext" : 0xf5cf60,
    "GetSpellRank" : 0xf5d030,
    "GetSpellPowerCost" : 0xf5d890,
    "GetSpellCharges" : 0xf5cae0,
    "GetSpellDescription" : 0xf5d760,
    "GetSpellBookItemTexture" : 0xf5e1f0,
    "GetSpellTexture" : 0xf5e320,
    "GetSpellCount" : 0xf5e390,
    "GetSpellCooldown" : 0xf5e3f0,
    "GetSpellAutocast" : 0xf5e6a0,
    "ToggleSpellAutocast" : 0xf5e7d0,
    "EnableSpellAutocast" : 0xf5e8a0,
    "DisableSpellAutocast" : 0xf5e970,
    "SetSpellbookPetAction" : 0xf5ea40,
    "PickupSpellBookItem" : 0xf5eb80,
    "PickupSpell" : 0xf5ebd0,
    "CastSpell" : 0xf5ed90,
    "IsSelectedSpellBookItem" : 0xf5eef0,
    "IsPassiveSpell" : 0xf5ef60,
    "IsAttackSpell" : 0xf5efc0,
    "IsCurrentSpell" : 0xf5f060,
    "IsAutoRepeatSpell" : 0xf5f0c0,
    "IsUsableSpell" : 0xf5f1d0,
    "IsHelpfulSpell" : 0xf5f3a0,
    "IsHarmfulSpell" : 0xf5f440,
    "IsConsumableSpell" : 0xf5f4e0,
    "SpellHasRange" : 0xf5f710,
    "IsSpellInRange" : 0xf5f830,
    "HasPetSpells" : 0xf5f980,
    "GetNumShapeshiftForms" : 0xf5fa50,
    "GetShapeshiftForm" : 0xf5fa80,
    "GetShapeshiftFormID" : 0xf5fac0,
    "CancelShapeshiftForm" : 0xf5fb10,
    "GetShapeshiftFormInfo" : 0xf5fb30,
    "CastShapeshiftForm" : 0xf5fd80,
    "GetShapeshiftFormCooldown" : 0xf5fe90,
    "CastSpellByName" : 0xf5fff0,
    "CastSpellByID" : 0xf60450,
    "IsSpellKnown" : 0xf60840,
    "IsSpellKnownOrOverridesKnown" : 0xf608c0,
    "IsPlayerSpell" : 0xf609e0,
    "FindSpellBookSlotBySpellID" : 0xf60a60,
    "GetNumPrimaryProfessions" : 0xf60b10,
    "GetProfessionInfo" : 0xf60bc0,
    "GetCallPetSpellInfo" : 0xf60f40,
    "GetSpellBaseCooldown" : 0xf5e5b0,
    "GetSpellLossOfControlCooldown" : 0xf5e4f0,
    "FindSpellOverrideByID" : 0xf60f90,
    "FindBaseSpellByID" : 0xf61020,
    "GetNumGuildMembers" : 0xf87810,
    "GetGuildRosterMOTD" : 0xf87870,
    "GetGuildRosterInfo" : 0xf878c0,
    "GuildRosterSendSoR" : 0xf87e40,
    "GetGuildRosterLastOnline" : 0xf87ff0,
    "GuildRosterSetPublicNote" : 0xf881a0,
    "GuildRosterSetOfficerNote" : 0xf88340,
    "SetGuildRosterSelection" : 0xf884e0,
    "GetGuildRosterSelection" : 0xf88580,
    "CanGuildPromote" : 0xf88620,
    "CanGuildDemote" : 0xf88700,
    "CanGuildInvite" : 0xf887e0,
    "CanGuildRemove" : 0xf888c0,
    "CanEditMOTD" : 0xf889a0,
    "CanEditPublicNote" : 0xf88a80,
    "CanEditOfficerNote" : 0xf88b60,
    "CanViewOfficerNote" : 0xf88c40,
    "CanEditGuildInfo" : 0xf88d20,
    "IsInAuthenticatedRank" : 0xf88e00,
    "GetNumMembersInRank" : 0xf88ee0,
    "SortGuildRoster" : 0xf88f40,
    "SetGuildRosterShowOffline" : 0xf893d0,
    "GetGuildRosterShowOffline" : 0xf89410,
    "GuildControlGetNumRanks" : 0xf89430,
    "GuildControlGetRankName" : 0xf89460,
    "GuildControlSetRank" : 0xf89590,
    "GuildControlSetRankFlag" : 0xf896e0,
    "GuildControlSaveRank" : 0xf89a60,
    "GuildControlAddRank" : 0xf89fa0,
    "GuildControlDelRank" : 0xf8a050,
    "GuildControlShiftRankUp" : 0xf8a120,
    "GuildControlShiftRankDown" : 0xf8a1d0,
    "GuildControlGetAllowedShifts" : 0xf8a280,
    "GetPromotionRank" : 0xf8a370,
    "GetDemotionRank" : 0xf8a4e0,
    "IsGuildRankAssignmentAllowed" : 0xf8a650,
    "SetGuildMemberRank" : 0xf8a750,
    "CloseGuildRoster" : 0x18f8f0,
    "GuildRoster" : 0xf8a810,
    "GetGuildInfoText" : 0xf8a820,
    "SetGuildInfoText" : 0xf8a870,
    "GetGuildFactionGroup" : 0xf8a990,
    "ReplaceGuildMaster" : 0xf8a9d0,
    "CanReplaceGuildMaster" : 0xf8ab40,
    "GuildMasterAbsent" : 0xf8ab70,
    "GetGuildRenameRequired" : 0xf8aa10,
    "SubmitRequiredGuildRename" : 0xf8aa30,
    "GuildInfo" : 0xf8ac70,
    "IsGuildMember" : 0xf8ae60,
    "GetGMTicket" : 0x18f8f0,
    "DeleteGMTicket" : 0x18f8f0,
    "GMResponseResolve" : 0x18f8f0,
    "GetGMStatus" : 0xf96d40,
    "GMSurveyQuestion" : 0xf96d60,
    "GMSurveyNumAnswers" : 0xf96ff0,
    "GMSurveyAnswer" : 0xf96e90,
    "GMSurveyAnswerSubmit" : 0xf970e0,
    "GMSurveyCommentSubmit" : 0xf97220,
    "GMSurveySubmit" : 0xf972c0,
    "GMReportLag" : 0xf96c40,
    "RegisterStaticConstants" : 0xf96bb0,
    "GMSubmitSuggestion" : 0xf972d0,
    "GMSubmitBug" : 0xf97490,
    "GMQuickTicketSystemEnabled" : 0xf97650,
    "GMEuropaTicketsEnabled" : 0xf97670,
    "GMEuropaBugsEnabled" : 0xf976b0,
    "GMEuropaComplaintsEnabled" : 0xf976f0,
    "GMEuropaSuggestionsEnabled" : 0xf97730,
    "GMItemRestorationButtonEnabled" : 0xf97770,
    "GMQuickTicketSystemThrottled" : 0xf97790,
    "GetWebTicket" : 0xf96c80,
    "AcknowledgeSurvey" : 0xf96ca0,
    "GetGossipText" : 0xfa2710,
    "GetNumGossipOptions" : 0xfa2730,
    "GetNumGossipAvailableQuests" : 0xfa2760,
    "GetNumGossipActiveQuests" : 0xfa2790,
    "GetGossipOptions" : 0xfa27c0,
    "GetGossipAvailableQuests" : 0xfa28b0,
    "GetGossipActiveQuests" : 0xfa2b30,
    "SelectGossipOption" : 0xfa2dc0,
    "SelectGossipAvailableQuest" : 0xfa2e50,
    "SelectGossipActiveQuest" : 0xfa3070,
    "CloseGossip" : 0xfa3280,
    "ForceGossip" : 0xfa32b0,
    "GetNumSubgroupMembers" : 0xfa8090,
    "GetNumGroupMembers" : 0xfa8110,
    "UnitIsGroupLeader" : 0xfa8190,
    "UnitLeadsAnyGroup" : 0xfa82b0,
    "UnitIsGroupAssistant" : 0xfa83d0,
    "IsGUIDInGroup" : 0xfa84d0,
    "IsInGroup" : 0xfa85e0,
    "IsInGuildGroup" : 0xfa8650,
    "IsInRaid" : 0xfa86e0,
    "ConvertToRaid" : 0xfa8770,
    "ConvertToParty" : 0xfa8800,
    "GetLootMethod" : 0xfa8890,
    "SetLootMethod" : 0xfa8a80,
    "GetLootThreshold" : 0xfa8ef0,
    "SetLootThreshold" : 0xfa8f40,
    "LeaveParty" : 0xfa9080,
    "SetOptOutOfLoot" : 0xfa90b0,
    "GetOptOutOfLoot" : 0xfa9130,
    "InviteUnit" : 0xfa9150,
    "UninviteUnit" : 0xfa9250,
    "AcceptGroup" : 0xfa9480,
    "DeclineGroup" : 0xfa9500,
    "SetPartyAssignment" : 0xfa9530,
    "ClearPartyAssignment" : 0xfa9540,
    "GetPartyAssignment" : 0xfa9550,
    "GetRaidRosterInfo" : 0xfa95c0,
    "SetRaidSubgroup" : 0xfa9a30,
    "SwapRaidSubgroup" : 0xfa9b30,
    "PromoteToLeader" : 0xfa9c60,
    "PromoteToAssistant" : 0xfa9d30,
    "DemoteAssistant" : 0xfa9e10,
    "RequestRaidInfo" : 0xfa9ef0,
    "SetEveryoneIsAssistant" : 0xfa9f10,
    "IsEveryoneAssistant" : 0xfa9fa0,
    "DoReadyCheck" : 0xfa9ff0,
    "GetReadyCheckTimeLeft" : 0xfaa0e0,
    "ConfirmReadyCheck" : 0xfaa170,
    "GetReadyCheckStatus" : 0xfaa1f0,
    "UnitInOtherParty" : 0xfaa360,
    "IsMasterLooter" : 0xfaa520,
    "GetHomePartyInfo" : 0xfaa5e0,
    "GetGroupMemberCounts" : 0xfaa780,
    "GroupHasOfflineMember" : 0xfaaa40,
    "GetPendingInviteConfirmations" : 0xfaab90,
    "GetNextPendingInviteConfirmation" : 0xfaad00,
    "GetInviteConfirmationInfo" : 0xfaad80,
    "GetInviteReferralInfo" : 0xfaae90,
    "RespondToInviteConfirmation" : 0xfaaf50,
    "JoinBattlefield" : 0xfb65e0,
    "SetSelectedBattlefield" : 0xfb67d0,
    "GetSelectedBattlefield" : 0xfb6860,
    "AcceptBattlefieldPort" : 0xfb68c0,
    "GetBattlefieldStatus" : 0xfb6ae0,
    "GetBattlefieldPortExpiration" : 0xfb7030,
    "GetBattlefieldInstanceExpiration" : 0xfb70f0,
    "GetBattlefieldInstanceRunTime" : 0xfb7150,
    "GetBattlefieldEstimatedWaitTime" : 0xfb71a0,
    "GetBattlefieldTimeWaited" : 0xfb7250,
    "RequestBattlefieldScoreData" : 0xfb7300,
    "BattlefieldSetPendingReportTarget" : 0xfb73c0,
    "GetNumBattlefieldScores" : 0xfb7390,
    "GetBattlefieldScore" : 0xfb7450,
    "GetBattlefieldWinner" : 0xfb7830,
    "SetBattlefieldScoreFaction" : 0xfb7870,
    "LeaveBattlefield" : 0xfb7ad0,
    "InActiveBattlefield" : 0xfb7b40,
    "GetNumBattlefieldStats" : 0xfb78c0,
    "GetBattlefieldStatInfo" : 0xfb78f0,
    "GetBattlefieldStatData" : 0xfb7a10,
    "GetNumBattlefieldFlagPositions" : 0xfb7bf0,
    "GetBattlefieldFlagPosition" : 0xfb7c20,
    "CanJoinBattlefieldAsGroup" : 0xfb7f00,
    "GetBattlefieldMapIconScale" : 0xfb7f70,
    "GetBattlefieldTeamInfo" : 0xfb8190,
    "SortBattlefieldScoreData" : 0xfb82b0,
    "HearthAndResurrectFromArea" : 0xfb89f0,
    "CanHearthAndResurrectFromArea" : 0xfb8a10,
    "GetNumBattlefields" : 0xfb8b40,
    "GetBattlefieldInstanceInfo" : 0xfb8b70,
    "GetBattlegroundInfo" : 0xfb8c00,
    "RequestBattlegroundInstanceInfo" : 0xfb8ec0,
    "GetMaxBattlefieldID" : 0xfb7000,
    "ClearBattlemaster" : 0xfb9040,
    "GetBattlegroundPoints" : 0xfb9090,
    "KBSetup_BeginLoading" : 0x1013510,
    "KBSetup_IsLoaded" : 0x1013760,
    "KBSetup_GetLanguageCount" : 0x1013780,
    "KBSetup_GetLanguageData" : 0x10137c0,
    "KBSetup_GetCategoryCount" : 0x1013ad0,
    "KBSetup_GetCategoryData" : 0x1013b10,
    "KBSetup_GetSubCategoryCount" : 0x1013ca0,
    "KBSetup_GetSubCategoryData" : 0x1013d80,
    "KBSetup_GetArticleHeaderCount" : 0x1013f30,
    "KBSetup_GetArticleHeaderData" : 0x1013f70,
    "KBSetup_GetTotalArticleCount" : 0x10143b0,
    "KBQuery_BeginLoading" : 0x1014490,
    "KBQuery_IsLoaded" : 0x10146e0,
    "KBQuery_GetArticleHeaderCount" : 0x1014700,
    "KBQuery_GetArticleHeaderData" : 0x1014740,
    "KBQuery_GetTotalArticleCount" : 0x1014b80,
    "KBArticle_BeginLoading" : 0x1014c60,
    "KBArticle_IsLoaded" : 0x1014e90,
    "KBArticle_GetData" : 0x1014eb0,
    "KBSystem_GetMOTD" : 0x10153e0,
    "KBSystem_GetServerStatus" : 0x1015400,
    "KBSystem_GetServerNotice" : 0x1015420,
    "GetScreenResolutions" : 0x102f8c0,
    "GetCurrentResolution" : 0x102f9d0,
    "SetScreenResolution" : 0x102fb30,
    "SetupFullscreenScale" : 0x102fc10,
    "GetVideoCaps" : 0x102fd20,
    "SetSelectedScreenResolutionIndex" : 0x1030590,
    "GetMonitorCount" : 0x102f770,
    "GetMonitorName" : 0x102f830,
    "GetMonitorAspectRatio" : 0x102f7a0,
    "GetToolTipInfo" : 0x102fdc0,
    "GetCVarSettingValidity" : 0x102ff10,
    "SetDefaultVideoOptions" : 0x102fff0,
    "GetDefaultVideoOptions" : 0x10301b0,
    "GetDefaultVideoOption" : 0x1030280,
    "GetDefaultGraphicsQuality" : 0x1030320,
    "GetVideoOptions" : 0x1030420,
    "GetGraphicsDropdownIndexByMasterIndex" : 0x1030350,
    "GetGraphicsAPIs" : 0x1030530,
    "GetDefaultVideoQualityOption" : 0x1030040,
    "AntiAliasingSupported" : 0x10305e0,
    "MultiSampleAntiAliasingSupported" : 0x1030620,
    "SetCurrentGraphicsSetting" : 0x1030720,
    "GetCurrentGraphicsSetting" : 0x1030790,
    "AutoChooseCurrentGraphicsSetting" : 0x10307c0,
    "IsOutlineModeSupported" : 0x10307e0,
    "GetMaxRenderScale" : 0x1030810,
    "GetMinRenderScale" : 0x1030840,
    "GetCurrentScaledResolution" : 0x1030870,
    "BNGetInfo" : 0x10346a0,
    "BNGetDisplayName" : 0x1034770,
    "BNGetNumFriends" : 0x1034810,
    "BNGetFriendInfo" : 0x1034890,
    "BNGetFriendInfoByID" : 0x1034940,
    "BNSummonFriendByIndex" : 0x10349f0,
    "BNSendSoR" : 0x18f8f0,
    "BNGetNumFriendGameAccounts" : 0x1034cd0,
    "BNGetFriendGameAccountInfo" : 0x1034db0,
    "BNGetGameAccountInfo" : 0x1034f20,
    "BNGetGameAccountInfoByGUID" : 0x1034fb0,
    "BNRemoveFriend" : 0x1035040,
    "BNSetFriendNote" : 0x10350d0,
    "BNSetSelectedFriend" : 0x10368f0,
    "BNGetSelectedFriend" : 0x10369d0,
    "BNGetFriendIndex" : 0x1034b10,
    "BNGetNumFriendInvites" : 0x1035470,
    "BNGetFriendInviteInfo" : 0x10354d0,
    "BNSendFriendInvite" : 0x10355d0,
    "BNSendFriendInviteByID" : 0x1035700,
    "BNAcceptFriendInvite" : 0x10357b0,
    "BNDeclineFriendInvite" : 0x1035840,
    "BNCheckBattleTagInviteToUnit" : 0x1036b70,
    "BNCheckBattleTagInviteToGuildMember" : 0x1036c10,
    "BNSendVerifiedBattleTagInvite" : 0x1036c80,
    "BNSetAFK" : 0x10358d0,
    "BNSetDND" : 0x1035940,
    "BNSetCustomMessage" : 0x10359b0,
    "BNSendWhisper" : 0x1035b50,
    "BNSendGameData" : 0x1035d40,
    "BNGetNumBlocked" : 0x10361c0,
    "BNGetBlockedInfo" : 0x1036240,
    "BNIsBlocked" : 0x1036320,
    "BNSetBlocked" : 0x1036410,
    "BNSetSelectedBlock" : 0x10364c0,
    "BNGetSelectedBlock" : 0x1036590,
    "BNConnected" : 0x1036600,
    "BNFeaturesEnabledAndConnected" : 0x1036600,
    "IsBNLogin" : 0x1036630,
    "BNFeaturesEnabled" : 0x1036650,
    "BNRequestFOFInfo" : 0x1036680,
    "BNGetNumFOF" : 0x1036730,
    "BNGetFOFInfo" : 0x10367c0,
    "BNIsSelf" : 0x1036a40,
    "BNIsFriend" : 0x1036ae0,
    "BNTokenFindName" : 0x1034c00,
    "BNInviteFriend" : 0x10352a0,
    "BNRequestInviteFriend" : 0x1035350,
    "GetActionInfo" : 0x1038090,
    "GetActionTexture" : 0x10382b0,
    "GetActionCount" : 0x10384a0,
    "GetActionCooldown" : 0x1038520,
    "GetActionCharges" : 0x1038600,
    "GetActionLossOfControlCooldown" : 0x1038850,
    "GetActionAutocast" : 0x10388e0,
    "GetActionText" : 0x1038ae0,
    "HasAction" : 0x1038b80,
    "UseAction" : 0x1038c20,
    "PickupAction" : 0x1038cd0,
    "PlaceAction" : 0x1038e80,
    "IsAttackAction" : 0x1038ee0,
    "IsCurrentAction" : 0x1038f40,
    "IsAutoRepeatAction" : 0x1038fa0,
    "IsUsableAction" : 0x1039000,
    "IsConsumableAction" : 0x10390a0,
    "IsStackableAction" : 0x1039100,
    "IsItemAction" : 0x10391e0,
    "IsEquippedAction" : 0x1039260,
    "ActionHasRange" : 0x10393d0,
    "IsActionInRange" : 0x1039430,
    "GetBonusBarOffset" : 0x10394f0,
    "GetBonusBarIndex" : 0x1039530,
    "HasBonusActionBar" : 0x1039560,
    "GetTempShapeshiftBarIndex" : 0x1039580,
    "HasTempShapeshiftActionBar" : 0x10395a0,
    "GetMultiCastBarIndex" : 0x10395c0,
    "ChangeActionBarPage" : 0x10395e0,
    "GetActionBarPage" : 0x1039660,
    "GetActionBarToggles" : 0x1039680,
    "SetActionBarToggles" : 0x1039700,
    "SetActionUIButton" : 0x1039780,
    "GetNumBindings" : 0x1058420,
    "GetBinding" : 0x10584a0,
    "SetBinding" : 0x1058620,
    "SetBindingSpell" : 0x1058740,
    "SetBindingItem" : 0x1058a80,
    "SetBindingMacro" : 0x1058db0,
    "SetBindingClick" : 0x10590f0,
    "SetOverrideBinding" : 0x1059620,
    "SetOverrideBindingSpell" : 0x1059780,
    "SetOverrideBindingItem" : 0x1059ad0,
    "SetOverrideBindingMacro" : 0x1059e20,
    "SetOverrideBindingClick" : 0x105a170,
    "ClearOverrideBindings" : 0x105a690,
    "GetBindingKey" : 0x105a760,
    "GetBindingAction" : 0x105aa90,
    "GetBindingByKey" : 0x105acd0,
    "GetBindingText" : 0x105ade0,
    "RunBinding" : 0x105ae80,
    "GetCurrentBindingSet" : 0x105b000,
    "LoadBindings" : 0x105b080,
    "AttemptToSaveBindings" : 0x105b120,
    "GetNumModifiedClickActions" : 0x105b260,
    "GetModifiedClickAction" : 0x105b2e0,
    "SetModifiedClick" : 0x105b3f0,
    "GetModifiedClick" : 0x105b500,
    "IsModifiedClick" : 0x105b620,
    "GetClickFrame" : 0x105b6b0,
    "CloseMail" : 0x1068f20,
    "ClearSendMail" : 0x1068f40,
    "ClickSendMailItemButton" : 0x1068f60,
    "SetSendMailMoney" : 0x1069160,
    "GetSendMailMoney" : 0x1069210,
    "SetSendMailCOD" : 0x1069240,
    "GetSendMailCOD" : 0x10692e0,
    "HasSendMailItem" : 0x1069310,
    "GetSendMailItem" : 0x10693a0,
    "GetSendMailItemLink" : 0x1069520,
    "GetSendMailPrice" : 0x10695f0,
    "SendMail" : 0x1069670,
    "CheckInbox" : 0x10698c0,
    "GetInboxNumItems" : 0x1069950,
    "GetInboxHeaderInfo" : 0x1069990,
    "GetInboxText" : 0x1069e60,
    "GetInboxInvoiceInfo" : 0x106a3e0,
    "HasInboxItem" : 0x106a8f0,
    "GetInboxItem" : 0x106a9b0,
    "GetInboxItemLink" : 0x106ab60,
    "TakeInboxMoney" : 0x106ac20,
    "TakeInboxItem" : 0x106ad20,
    "TakeInboxTextItem" : 0x106ae40,
    "ReturnInboxItem" : 0x106afa0,
    "DeleteInboxItem" : 0x106b090,
    "InboxItemCanDelete" : 0x106b1d0,
    "HasNewMail" : 0x106b2b0,
    "ComplainInboxItem" : 0x106b2f0,
    "CanComplainInboxItem" : 0x106b340,
    "GetLatestThreeSenders" : 0x106b3a0,
    "SetSendMailShowing" : 0x1068ed0,
    "AutoLootMailItem" : 0x106b450,
    "RespondMailLockSendItem" : 0x106b550,
    "CloseMerchant" : 0x107b060,
    "GetMerchantNumItems" : 0x107b070,
    "GetMerchantItemInfo" : 0x107b090,
    "GetMerchantItemCostInfo" : 0x107b620,
    "GetMerchantItemCostItem" : 0x107b8c0,
    "GetBuybackItemInfo" : 0x107bcf0,
    "GetBuybackItemLink" : 0x107bf50,
    "GetMerchantItemLink" : 0x107c030,
    "GetMerchantItemID" : 0x107c240,
    "GetMerchantItemMaxStack" : 0x107c2e0,
    "PickupMerchantItem" : 0x107c3d0,
    "BuyMerchantItem" : 0x107c530,
    "BuybackItem" : 0x107c690,
    "CanMerchantRepair" : 0x107c790,
    "CanAffordMerchantItem" : 0x107c800,
    "ShowBuybackSellCursor" : 0x107cbf0,
    "ShowRepairCursor" : 0x107cd20,
    "HideRepairCursor" : 0x107cd90,
    "InRepairMode" : 0x107cdc0,
    "GetRepairAllCost" : 0x107cdf0,
    "RepairAllItems" : 0x107ce90,
    "GetNumBuybackItems" : 0x107cf90,
    "GetInventorySlotInfo" : 0x1080220,
    "GetInventoryItemsForSlot" : 0x10804f0,
    "GetInventoryItemTexture" : 0x1080d40,
    "GetInventoryItemBroken" : 0x1080fa0,
    "GetInventoryItemEquippedUnusable" : 0x1081120,
    "GetInventoryItemCount" : 0x1081290,
    "GetInventoryItemQuality" : 0x10814a0,
    "GetInventoryItemCooldown" : 0x1081760,
    "GetInventoryItemDurability" : 0x1081940,
    "GetInventoryItemLink" : 0x1081a10,
    "GetInventoryItemID" : 0x1081c10,
    "IsInventoryItemProfessionBag" : 0x1081dc0,
    "PickupInventoryItem" : 0x1081ee0,
    "UseInventoryItem" : 0x1081f10,
    "IsInventoryItemLocked" : 0x10821d0,
    "PutItemInBag" : 0x1082270,
    "PutItemInBackpack" : 0x10822c0,
    "PickupBagFromSlot" : 0x10822f0,
    "CursorCanGoInSlot" : 0x10824b0,
    "ShowInventorySellCursor" : 0x1082550,
    "SetInventoryPortraitTexture" : 0x10825e0,
    "GetGuildInfo" : 0x1082790,
    "GetInventoryAlertStatus" : 0x1082a80,
    "UpdateInventoryAlertStatus" : 0x1082af0,
    "HasInspectHonorData" : 0x1082b00,
    "RequestInspectHonorData" : 0x1082b20,
    "GetInspectHonorData" : 0x1082bb0,
    "ClearInspectPlayer" : 0x1082cd0,
    "GetWeaponEnchantInfo" : 0x1082d30,
    "HasWandEquipped" : 0x1082ee0,
    "IsQuestFlaggedCompleted" : 0x10864b0,
    "GetQuestsCompleted" : 0x1086510,
    "GetNumQuestLogEntries" : 0x1086660,
    "GetQuestTagInfo" : 0x10866f0,
    "GetQuestLogTitle" : 0x10868c0,
    "SelectQuestLogEntry" : 0x1087690,
    "GetQuestLogSelection" : 0x1087740,
    "SetAbandonQuest" : 0x10877a0,
    "GetAbandonQuestName" : 0x10877b0,
    "GetAbandonQuestItems" : 0x1087820,
    "AbandonQuest" : 0x1088030,
    "CanAbandonQuest" : 0x10880d0,
    "IsUnitOnQuest" : 0x1088130,
    "IsUnitOnQuestByQuestID" : 0x10881f0,
    "GetQuestLogQuestText" : 0x1088280,
    "GetNumQuestLeaderBoards" : 0x1088650,
    "GetQuestLogLeaderBoard" : 0x1088740,
    "GetNumQuestItemDrops" : 0x10888b0,
    "GetQuestLogItemDrop" : 0x10889f0,
    "GetQuestLogTimeLeft" : 0x1088b60,
    "IsCurrentQuestFailed" : 0x1088c60,
    "GetNumQuestLogRewards" : 0x1088d80,
    "GetNumQuestLogChoices" : 0x1088e80,
    "GetQuestLogRewardInfo" : 0x1088ef0,
    "GetQuestLogChoiceInfo" : 0x10891f0,
    "GetQuestLogItemLink" : 0x10894e0,
    "GetQuestLogSpellLink" : 0x1089890,
    "GetQuestLogRewardMoney" : 0x1089950,
    "GetNumQuestLogRewardSpells" : 0x1089bd0,
    "GetQuestLogRewardSpell" : 0x1089c80,
    "GetQuestLogRequiredMoney" : 0x108a030,
    "GetQuestLogPushable" : 0x108a110,
    "QuestLogPushQuest" : 0x108a1c0,
    "GetQuestTimers" : 0x108a280,
    "GetQuestIndexForTimer" : 0x108a470,
    "CollapseQuestHeader" : 0x108a5d0,
    "ExpandQuestHeader" : 0x108a640,
    "GetQuestGreenRange" : 0x108a6b0,
    "GetNumQuestWatches" : 0x108a720,
    "IsQuestWatched" : 0x108a750,
    "IsQuestHardWatched" : 0x108a840,
    "AddQuestWatch" : 0x108a920,
    "RemoveQuestWatch" : 0x108a9b0,
    "GetQuestIndexForWatch" : 0x108aa20,
    "SortQuestWatches" : 0x108aaf0,
    "GetQuestWatchIndex" : 0x108ab60,
    "GetQuestLogIndexByID" : 0x108ac50,
    "GetQuestLogQuestType" : 0x108adc0,
    "IsQuestComplete" : 0x108ae90,
    "GetQuestWatchInfo" : 0x1086f40,
    "HaveQuestData" : 0x1087290,
    "HaveQuestRewardData" : 0x1087320,
    "GetQuestFactionGroup" : 0x10875b0,
    "SortQuests" : 0x108ab50,
    "SortQuestSortTypes" : 0x108ab20,
    "SetSuperTrackedQuestID" : 0x108acd0,
    "GetSuperTrackedQuestID" : 0x108ada0,
    "SetTaxiMap" : 0x109f2a0,
    "GetTaxiMapID" : 0x109f380,
    "NumTaxiNodes" : 0x109f3b0,
    "TaxiNodeName" : 0x109f3e0,
    "TaxiNodePosition" : 0x109f4e0,
    "TaxiNodeCost" : 0x109f5a0,
    "TakeTaxiNode" : 0x109f620,
    "CloseTaxiMap" : 0x109f690,
    "TaxiNodeGetType" : 0x109f6a0,
    "TaxiGetNodeSlot" : 0x109f7f0,
    "TaxiGetSrcX" : 0x109f9d0,
    "TaxiGetSrcY" : 0x109fa80,
    "TaxiGetDestX" : 0x109fb30,
    "TaxiGetDestY" : 0x109fbe0,
    "GetNumRoutes" : 0x109f8b0,
    "TaxiIsDirectFlight" : 0x109f940,
    "ContainerIDToInventoryID" : 0x10b6a90,
    "GetContainerNumSlots" : 0x10b6b20,
    "GetContainerItemInfo" : 0x10b7370,
    "GetContainerItemID" : 0x10b7730,
    "GetContainerItemLink" : 0x10b7670,
    "GetContainerItemCooldown" : 0x10b77f0,
    "PickupContainerItem" : 0x10b7a80,
    "SplitContainerItem" : 0x10b8180,
    "UseContainerItem" : 0x10b8370,
    "ShowContainerSellCursor" : 0x10b8a20,
    "SetBagPortraitTexture" : 0x10b8b10,
    "GetBagName" : 0x10b8cd0,
    "SetBagSlotFlag" : 0x10b8e40,
    "GetBagSlotFlag" : 0x10b8fb0,
    "SetBankBagSlotFlag" : 0x10b9080,
    "GetBankBagSlotFlag" : 0x10b91f0,
    "GetInsertItemsLeftToRight" : 0x10b94e0,
    "SetInsertItemsLeftToRight" : 0x10b9530,
    "GetContainerItemDurability" : 0x10b7980,
    "GetContainerNumFreeSlots" : 0x10b6c50,
    "GetContainerFreeSlots" : 0x10b6e80,
    "IsContainerFiltered" : 0x10b7180,
    "GetContainerItemPurchaseInfo" : 0x10b9590,
    "GetContainerItemPurchaseItem" : 0x10b97f0,
    "ContainerRefundItemPurchase" : 0x10b9af0,
    "PlayerHasHearthstone" : 0x10b9c50,
    "UseHearthstone" : 0x10b9cb0,
    "GetItemCooldown" : 0x10b9d30,
    "SetItemSearch" : 0x10b9ef0,
    "IsBattlePayItem" : 0x10ba070,
    "IsBagSlotFlagEnabledOnOtherBags" : 0x10b92c0,
    "IsBagSlotFlagEnabledOnOtherBankBags" : 0x10b93d0,
    "CloseCraft" : 0x10bc850,
    "GetCraftName" : 0x10bc870,
    "GetCraftButtonToken" : 0x10bc910,
    "GetCraftDisplaySkillLine" : 0x10bc940,
    "GetNumCrafts" : 0x10bcbe0,
    "GetCraftInfo" : 0x10bcc00,
    "SelectCraft" : 0x10bd2a0,
    "GetCraftSelectionIndex" : 0x10bd3c0,
    "GetCraftIcon" : 0x10bd4b0,
    "GetCraftSkillLine" : 0x10bd540,
    "GetCraftItemLink" : 0x10bd600,
    "GetCraftNumReagents" : 0x10bd840,
    "GetCraftReagentInfo" : 0x10bd900,
    "GetCraftReagentItemLink" : 0x10bdba0,
    "GetCraftSpellFocus" : 0x10bdd30,
    "GetCraftDescription" : 0x10bdfb0,
    "CollapseCraftSkillLine" : 0x10be2e0,
    "ExpandCraftSkillLine" : 0x10be380,
    "DoCraft" : 0x10be420,
    "UnitHasIncomingResurrection" : 0x10cb5e0,
    "IsEncounterInProgress" : 0x10ccf80,
    "IsEncounterSuppressingRelease" : 0x3d6290,
    "IsEncounterLimitingResurrections" : 0x10ccfa0,
    "PetHasActionBar" : 0x10d24d0,
    "PetUsesPetFrame" : 0x10d2540,
    "PetHasSpellbook" : 0x10d24d0,
    "GetPetActionInfo" : 0x10d2620,
    "GetPetActionCooldown" : 0x10d2b10,
    "GetPetActionsUsable" : 0x10d2c60,
    "GetPetActionSlotUsable" : 0x10d2c90,
    "IsPetAttackActive" : 0x10d2d30,
    "PickupPetAction" : 0x10d2d90,
    "PickupPetSpell" : 0x10d2f10,
    "TogglePetAutocast" : 0x10d2ff0,
    "CastPetAction" : 0x10d30a0,
    "PetPassiveMode" : 0x10d32f0,
    "PetDefensiveMode" : 0x10d3330,
    "PetAggressiveMode" : 0x18f8f0,
    "PetWait" : 0x10d3370,
    "PetFollow" : 0x10d33b0,
    "PetMoveTo" : 0x10d33f0,
    "PetAttack" : 0x10d3470,
    "PetStopAttack" : 0x10d3540,
    "PetAbandon" : 0x10d35b0,
    "PetDismiss" : 0x10d36b0,
    "PetRename" : 0x10d36c0,
    "PetCanBeAbandoned" : 0x10d3960,
    "PetCanBeDismissed" : 0x10d3a30,
    "PetCanBeRenamed" : 0x10d3b10,
    "GetPetTimeRemaining" : 0x10d3be0,
    "HasPetUI" : 0x10d3c50,
    "GetPetLoyalty" : 0x10d3d10,
    "GetPetTrainingPoints" : 0x10d3df0,
    "GetPetExperience" : 0x10d3eb0,
    "GetPetHappiness" : 0x10d3f70,
    "GetPetFoodTypes" : 0x10d4320,
    "GetPetIcon" : 0x10d45b0,
    "GetPossessInfo" : 0x10d4680,
    "CancelPetPossess" : 0x10d47c0,
    "IsPetAttackAction" : 0x10d4870,
    "IsPetActive" : 0x10d2d50,
    "ClosePetStables" : 0x10e0e60,
    "PickupStablePet" : 0x10e1240,
    "SetPetStablePaperdoll" : 0x10e1340,
    "GetStablePetFoodTypes" : 0x10e1510,
    "UnstablePet" : 0x10e17f0,
    "StablePet" : 0x10e1860,
    "BuyStableSlot" : 0x10e1880,
    "GetNumStablePets" : 0x10e1a20,
    "GetNumStableSlots" : 0x10e1a50,
    "GetStablePetInfo" : 0x10e0ed0,
    "GetNextStableSlotCost" : 0x10e19b0,
    "ClickStablePet" : 0x10e10c0,
    "GetSelectedStablePet" : 0x10e12d0,
    "CloseTrade" : 0x10e2de0,
    "ClickTradeButton" : 0x10e2e40,
    "ClickTargetTradeButton" : 0x10e3240,
    "GetTradeTargetItemInfo" : 0x10e32c0,
    "GetTradeTargetItemLink" : 0x10e35c0,
    "GetTradePlayerItemInfo" : 0x10e3870,
    "GetTradePlayerItemLink" : 0x10e3b00,
    "AcceptTrade" : 0x10e3bb0,
    "CancelTradeAccept" : 0x10e3c30,
    "GetPlayerTradeMoney" : 0x10e3c80,
    "GetTargetTradeMoney" : 0x10e3cc0,
    "PickupTradeMoney" : 0x10e3cf0,
    "AddTradeMoney" : 0x10e3d90,
    "SetTradeMoney" : 0x10e3dc0,
    "CloseTradeSkill" : 0x10e5fb0,
    "GetNumTradeSkills" : 0x10e5fe0,
    "GetTradeSkillInfo" : 0x10e6000,
    "SelectTradeSkill" : 0x10e6390,
    "GetTradeSkillSelectionIndex" : 0x10e64b0,
    "GetTradeSkillCooldown" : 0x10e65a0,
    "GetTradeSkillIcon" : 0x10e6670,
    "GetTradeSkillNumMade" : 0x10e6990,
    "GetTradeSkillLine" : 0x10e6ab0,
    "GetTradeSkillItemStats" : 0x18f8f0,
    "GetTradeSkillItemLink" : 0x10e6c10,
    "GetTradeSkillNumReagents" : 0x10e6f90,
    "GetTradeSkillReagentInfo" : 0x10e7050,
    "GetTradeSkillReagentItemLink" : 0x10e72f0,
    "GetTradeSkillTools" : 0x10e7480,
    "GetTradeSkillSubClasses" : 0x10e76f0,
    "GetTradeSkillInvSlots" : 0x10e7d20,
    "SetTradeSkillSubClassFilter" : 0x10e7da0,
    "GetTradeSkillSubClassFilter" : 0x10e7f00,
    "SetTradeSkillInvSlotFilter" : 0x10e7fd0,
    "GetTradeSkillInvSlotFilter" : 0x10e8140,
    "CollapseTradeSkillSubClass" : 0x10e8230,
    "ExpandTradeSkillSubClass" : 0x10e82d0,
    "GetFirstTradeSkill" : 0x10e8370,
    "GetTradeskillRepeatCount" : 0x10e8440,
    "DoTradeSkill" : 0x10e8490,
    "SetLootPortrait" : 0x10f4060,
    "GetNumLootItems" : 0x10f4180,
    "GetLootSlotInfo" : 0x10f41b0,
    "GetLootInfo" : 0x10f43e0,
    "GetLootSlotLink" : 0x10f46b0,
    "LootSlotHasItem" : 0x10f4800,
    "GetLootSlotType" : 0x10f4870,
    "LootSlot" : 0x10f4940,
    "ConfirmLootSlot" : 0x10f4990,
    "CloseLoot" : 0x10f4ac0,
    "IsFishingLoot" : 0x10f4af0,
    "GetMasterLootCandidate" : 0x10f4b20,
    "GiveMasterLoot" : 0x10f4ce0,
    "GetLootRollItemInfo" : 0x10f4f00,
    "GetActiveLootRollIDs" : 0x10f4df0,
    "GetLootRollItemLink" : 0x10f3d50,
    "GetLootRollTimeLeft" : 0x10f3e10,
    "RollOnLoot" : 0x10f3ea0,
    "ConfirmLootRoll" : 0x10f3f20,
    "GetLootSourceInfo" : 0x10f3fa0,
    "LootMoneyNotify" : 0x10f3ff0,
    "SecureCmdOptionParse" : 0x10f8810,
    "RunMacro" : 0x10f88d0,
    "RunMacroText" : 0x10f8920,
    "StopMacro" : 0x10f8b50,
    "CreateMacro" : 0x10f8b80,
    "GetNumMacros" : 0x10f8ce0,
    "GetMacroInfo" : 0x10f8d20,
    "GetMacroBody" : 0x10f8d90,
    "DeleteMacro" : 0x10f8dd0,
    "EditMacro" : 0x10f8f00,
    "SetMacroItem" : 0x10f9030,
    "GetMacroItem" : 0x10f9180,
    "SetMacroSpell" : 0x10f9310,
    "GetMacroSpell" : 0x10f9460,
    "GetLooseMacroIcons" : 0x10f94c0,
    "GetLooseMacroItemIcons" : 0x10f83c0,
    "GetMacroItemIcons" : 0x10f9880,
    "GetMacroIcons" : 0x10f9610,
    "PickupMacro" : 0x10f8510,
    "GetMacroIndexByName" : 0x10f8550,
    "GetRunningMacro" : 0x10f85e0,
    "GetRunningMacroButton" : 0x10f8650,
    "GetPOITextureCoords" : 0x1106430,
    "GetObjectIconTextureCoords" : 0x11064d0,
    "BankButtonIDToInvSlotID" : 0x1117db0,
    "GetNumBankSlots" : 0x1117e30,
    "GetBankSlotCost" : 0x1117ea0,
    "PurchaseSlot" : 0x1117f30,
    "CloseBankFrame" : 0x1118060,
    "OpenTrainer" : 0x1118680,
    "CloseTrainer" : 0x11186b0,
    "GetNumTrainerServices" : 0x11186e0,
    "GetTrainerServiceInfo" : 0x1118710,
    "SelectTrainerService" : 0x11189b0,
    "IsTradeskillTrainer" : 0x1118a00,
    "GetTrainerSelectionIndex" : 0x1118a20,
    "GetTrainerGreetingText" : 0x1118ab0,
    "GetTrainerServiceIcon" : 0x1118ad0,
    "GetTrainerServiceSkillLine" : 0x1118ca0,
    "GetTrainerServiceCost" : 0x1118fe0,
    "GetTrainerServiceLevelReq" : 0x11192d0,
    "GetTrainerServiceSkillReq" : 0x1119370,
    "GetTrainerServiceNumAbilityReq" : 0x1119530,
    "GetTrainerServiceAbilityReq" : 0x1119600,
    "GetTrainerServiceDescription" : 0x1119900,
    "IsTrainerServiceLearnSpell" : 0x1119de0,
    "BuyTrainerService" : 0x1119f50,
    "SetTrainerServiceTypeFilter" : 0x111a0a0,
    "GetTrainerServiceTypeFilter" : 0x111a220,
    "GetTrainerServiceItemLink" : 0x111a2a0,
    "GetTrainerServiceStepIndex" : 0x111a480,
    "GetTrainerTradeskillRankValues" : 0x111a4b0,
    "CollapseTrainerSkillLine" : 0x111a770,
    "ExpandTrainerSkillLine" : 0x111a810,
    "GetGuildTabardFileNames" : 0x111eb00,
    "GetGuildLogoInfo" : 0x111ed30,
    "CloseQuest" : 0x1125af0,
    "GetQuestID" : 0x1125b50,
    "GetTitleText" : 0x1125b70,
    "GetGreetingText" : 0x1125b90,
    "GetQuestText" : 0x1125bb0,
    "GetObjectiveText" : 0x1125bd0,
    "GetProgressText" : 0x1125bf0,
    "GetRewardText" : 0x1125c10,
    "GetNumAvailableQuests" : 0x1125c30,
    "GetNumActiveQuests" : 0x1125c50,
    "GetCriteriaSpell" : 0x1125c70,
    "GetAvailableTitle" : 0x1125d30,
    "GetActiveTitle" : 0x1125db0,
    "GetAvailableLevel" : 0x1125e40,
    "GetActiveLevel" : 0x1125ec0,
    "IsAvailableQuestTrivial" : 0x1125f40,
    "IsActiveQuestTrivial" : 0x1125fd0,
    "SelectAvailableQuest" : 0x1126060,
    "SelectActiveQuest" : 0x1126120,
    "ShowQuestOffer" : 0x11261b0,
    "ShowQuestComplete" : 0x1126240,
    "AcceptQuest" : 0x11262f0,
    "DeclineQuest" : 0x11264b0,
    "IsQuestCompletable" : 0x11265c0,
    "CompleteQuest" : 0x1126610,
    "GetQuestReward" : 0x1126660,
    "GetRewardMoney" : 0x1126730,
    "GetRewardXP" : 0x1126750,
    "GetNumRewardSpells" : 0x1126770,
    "GetRewardSpell" : 0x11267b0,
    "GetQuestMoneyToGet" : 0x1126af0,
    "GetNumQuestRewards" : 0x1126b10,
    "GetNumQuestChoices" : 0x1126b50,
    "GetNumQuestItems" : 0x1126b80,
    "GetQuestItemInfo" : 0x1126bc0,
    "IsQuestItemHidden" : 0x1126cf0,
    "GetQuestItemLink" : 0x1126d70,
    "GetQuestSpellLink" : 0x1126ee0,
    "QuestChooseRewardError" : 0x1126f90,
    "ConfirmAcceptQuest" : 0x1126fb0,
    "GetQuestBackgroundMaterial" : 0x1126fe0,
    "GetQuestPortraitGiver" : 0x1127110,
    "GetQuestPortraitTurnIn" : 0x1127170,
    "GetNumFactions" : 0x112c700,
    "GetFactionInfo" : 0x112c730,
    "GetFactionInfoByID" : 0x112c7c0,
    "GetWatchedFactionInfo" : 0x112c810,
    "SetWatchedFactionIndex" : 0x112cce0,
    "FactionToggleAtWar" : 0x112c9f0,
    "CollapseFactionHeader" : 0x112cba0,
    "CollapseAllFactionHeaders" : 0x112cbf0,
    "SetFactionInactive" : 0x112ca80,
    "SetFactionActive" : 0x112cb10,
    "IsFactionInactive" : 0x112cc80,
    "ExpandFactionHeader" : 0x112cc30,
    "ExpandAllFactionHeaders" : 0x112cc10,
    "SetSelectedFaction" : 0x112cdf0,
    "GetSelectedFaction" : 0x112ce80,
    "StartDuel" : 0x115cd60,
    "AcceptDuel" : 0x115ce00,
    "CancelDuel" : 0x115ce50,
    "ForfeitDuel" : 0x115cea0,
    "ItemTextGetItem" : 0x1164cc0,
    "ItemTextGetCreator" : 0x1164d20,
    "ItemTextGetMaterial" : 0x1164dc0,
    "ItemTextGetPage" : 0x1164ef0,
    "ItemTextGetText" : 0x1164f20,
    "ItemTextHasNextPage" : 0x1164f40,
    "ItemTextPrevPage" : 0x1164f90,
    "ItemTextNextPage" : 0x1164fe0,
    "ItemTextIsFullPage" : 0x1165030,
    "CloseItemText" : 0x11650c0,
    "ClosePetition" : 0x117ad40,
    "GetPetitionInfo" : 0x117ad80,
    "GetNumPetitionNames" : 0x117aec0,
    "GetPetitionNameInfo" : 0x117aef0,
    "CanSignPetition" : 0x117afb0,
    "SignPetition" : 0x117b0f0,
    "OfferPetition" : 0x117b180,
    "RenamePetition" : 0x117b310,
    "CloseTabardCreation" : 0x1186240,
    "GetTabardCreationCost" : 0x1186250,
    "GetNumTalentTabs" : 0x1186400,
    "GetTalentTabInfo" : 0x1186430,
    "GetNumTalents" : 0x1186590,
    "GetTalentInfo" : 0x1186630,
    "GetTalentPrereqs" : 0x11869d0,
    "LearnTalent" : 0x1186d60,
    "GetNumSkillLines" : 0x11bd7d0,
    "GetSkillLineInfo" : 0x11bd800,
    "AbandonSkill" : 0x11bdd20,
    "CollapseSkillHeader" : 0x11bddc0,
    "ExpandSkillHeader" : 0x11bded0,
    "SetSelectedSkill" : 0x11bdfe0,
    "GetSelectedSkill" : 0x11be070,
    "CloseAuctionHouse" : 0x11cf040,
    "GetAuctionHouseDepositRate" : 0x11cf050,
    "GetAuctionDeposit" : 0x11cf0e0,
    "CalculateAuctionDeposit" : 0x11cf0d0,
    "ClickAuctionSellItemButton" : 0x11cf400,
    "GetAuctionSellItemInfo" : 0x11cf4f0,
    "PostAuction" : 0x11cf890,
    "StartAuction" : 0x11cf0d0,
    "QueryAuctionItems" : 0x11cfe40,
    "GetOwnerAuctionItems" : 0x11d03c0,
    "GetBidderAuctionItems" : 0x11d0420,
    "GetNumAuctionItems" : 0x11d04b0,
    "GetAuctionItemInfo" : 0x11d0670,
    "GetAuctionItemLink" : 0x11d0fc0,
    "GetAuctionItemBattlePetInfo" : 0x11d1290,
    "GetAuctionItemTimeLeft" : 0x11d14e0,
    "PlaceAuctionBid" : 0x11d1740,
    "GetAuctionItemSubClasses" : 0x11d1b70,
    "CanSendAuctionQuery" : 0x11d2420,
    "SortAuctionItems" : 0x11d25d0,
    "SetSelectedAuctionItem" : 0x11d28c0,
    "GetSelectedAuctionItem" : 0x11d2b50,
    "IsAuctionSortReversed" : 0x11d2dc0,
    "CancelAuction" : 0x11d3110,
    "CanCancelAuction" : 0x11d3040,
    "GetAuctionSort" : 0x11d3240,
    "SortAuctionClearSort" : 0x11d3520,
    "SortAuctionSetSort" : 0x11d3770,
    "SortAuctionApplySort" : 0x11d3980,
    "CancelSell" : 0x11d3b20,
    "SetAuctionsTabShowing" : 0x11d3b90,
    "GetNumSavedInstances" : 0x11e1ee0,
    "GetSavedInstanceInfo" : 0x11e1f10,
    "GetSavedInstanceEncounterInfo" : 0x11e2220,
    "GetSavedInstanceChatLink" : 0x11e2360,
    "GetNumRaidProfiles" : 0x11ed3f0,
    "GetRaidProfileName" : 0x11ed410,
    "GetRaidProfileFlattenedOptions" : 0x11ed490,
    "GetRaidProfileOption" : 0x11ed560,
    "SetRaidProfileOption" : 0x11ed670,
    "SetRaidProfileSavedPosition" : 0x11ed8e0,
    "SaveRaidProfileCopy" : 0x11edc80,
    "RestoreRaidProfileFromCopy" : 0x11edda0,
    "CreateNewRaidProfile" : 0x11ede40,
    "DeleteRaidProfile" : 0x11ee0c0,
    "RaidProfileHasUnsavedChanges" : 0x11ee230,
    "GetRaidProfileSavedPosition" : 0x11ed780,
    "RaidProfileExists" : 0x11ee2b0,
    "GetMaxNumCUFProfiles" : 0x11ee330,
    "HasLoadedCUFProfiles" : 0x11ee350,
    "CloseGuildRegistrar" : 0x121a860,
    "GetGuildCharterCost" : 0x121a8c0,
    "BuyGuildCharter" : 0x121a8f0,
    "TurnInGuildCharter" : 0x121aab0,
    "GetTabardInfo" : 0x121aad0,
    "JumpOrAscendStart" : 0x12abd60,
    "AscendStop" : 0x12abf00,
    "DescendStop" : 0x12abf20,
    "ToggleRun" : 0x12abf40,
    "ToggleAutoRun" : 0x12ac000,
    "StartAutoRun" : 0x12ac080,
    "StopAutoRun" : 0x12ac0a0,
    "MoveForwardStart" : 0x12ac0c0,
    "MoveForwardStop" : 0x12ac0e0,
    "MoveBackwardStart" : 0x12ac100,
    "MoveBackwardStop" : 0x12ac120,
    "TurnLeftStart" : 0x12ac140,
    "TurnLeftStop" : 0x12ac160,
    "TurnRightStart" : 0x12ac180,
    "TurnRightStop" : 0x12ac1a0,
    "StrafeLeftStart" : 0x12ac1c0,
    "StrafeLeftStop" : 0x12ac1e0,
    "StrafeRightStart" : 0x12ac200,
    "StrafeRightStop" : 0x12ac220,
    "PitchUpStart" : 0x12ac240,
    "PitchUpStop" : 0x12ac260,
    "PitchDownStart" : 0x12ac280,
    "PitchDownStop" : 0x12ac2a0,
    "TurnOrActionStart" : 0x12ac2c0,
    "TurnOrActionStop" : 0x12ac4b0,
    "CameraOrSelectOrMoveStart" : 0x12ac5e0,
    "CameraOrSelectOrMoveStop" : 0x12ac7d0,
    "MoveAndSteerStart" : 0x12ac920,
    "MoveAndSteerStop" : 0x12acbd0,
    "SetMouselookOverrideBinding" : 0x12acd30,
    "MouselookStart" : 0x12acf90,
    "MouselookStop" : 0x12ad1c0,
    "IsMouselooking" : 0x12ad350,
    "TaxiRequestEarlyLanding" : 0x12ad410,
    "CanCancelScene" : 0x12ad430,
    "IsInCinematicScene" : 0x12ad490,
    "CancelScene" : 0x12ad4d0,
    "DetectWowMouse" : 0x12ad510,
    "ToggleWindowed" : 0x12ad610,
    "CameraZoomIn" : 0x12bbd50,
    "CameraZoomOut" : 0x12bbe60,
    "GetCameraZoom" : 0x12bbf90,
    "MoveViewInStart" : 0x12bbfc0,
    "MoveViewInStop" : 0x12bbfd0,
    "MoveViewOutStart" : 0x12bbfe0,
    "MoveViewOutStop" : 0x12bbff0,
    "MoveViewLeftStart" : 0x12bc020,
    "MoveViewLeftStop" : 0x12bc030,
    "MoveViewRightStart" : 0x12bc000,
    "MoveViewRightStop" : 0x12bc010,
    "MoveViewUpStart" : 0x12bc040,
    "MoveViewUpStop" : 0x12bc050,
    "MoveViewDownStart" : 0x12bc060,
    "MoveViewDownStop" : 0x12bc070,
    "SetView" : 0x12bc080,
    "SaveView" : 0x12bc100,
    "ResetView" : 0x12bc270,
    "NextView" : 0x12bc2d0,
    "PrevView" : 0x12bc310,
    "FlipCameraYaw" : 0x12bc350,
    "GetTime" : 0x12db2b0,
    "GetTickTime" : 0x12db2f0,
    "GetGameTime" : 0x12db360,
    "GetLocalGameTime" : 0x12db3a0,
    "ConsoleExec" : 0x12db410,
    "GetSessionTime" : 0x12db320,
    "GetServerTime" : 0x12db3e0,
    "UnitExists" : 0x12db480,
    "UnitIsVisible" : 0x12db570,
    "UnitIsUnit" : 0x12db5b0,
    "UnitIsPlayer" : 0x12db750,
    "UnitIsInMyGuild" : 0x12d1a90,
    "UnitIsCorpse" : 0x12d1ce0,
    "UnitIsRaidOfficer" : 0x12d1d40,
    "UnitInParty" : 0x12d1dc0,
    "UnitInSubgroup" : 0x12d1e60,
    "UnitPlayerOrPetInParty" : 0x12d1f00,
    "UnitInRaid" : 0x12d1fb0,
    "UnitInAnyGroup" : 0x12d2070,
    "UnitPlayerOrPetInRaid" : 0x12d2290,
    "UnitPlayerControlled" : 0x12d2350,
    "UnitIsAFK" : 0x12d23c0,
    "UnitIsDND" : 0x12d24d0,
    "UnitIsPVP" : 0x12d2580,
    "UnitIsPVPSanctuary" : 0x12d2670,
    "UnitIsPVPFreeForAll" : 0x12d26e0,
    "UnitFactionGroup" : 0x12d27a0,
    "UnitReaction" : 0x12d2d00,
    "UnitIsEnemy" : 0x12d2ee0,
    "UnitIsFriend" : 0x12d3080,
    "UnitCanCooperate" : 0x12d33b0,
    "UnitCanAssist" : 0x12d35e0,
    "UnitCanAttack" : 0x12d36a0,
    "UnitIsCharmed" : 0x12d3760,
    "UnitIsPossessed" : 0x12d37d0,
    "PlayerCanTeleport" : 0x12d3840,
    "UnitClassification" : 0x12d38a0,
    "UnitSelectionColor" : 0x12d39b0,
    "UnitGUID" : 0x12d44d0,
    "UnitName" : 0x12d4590,
    "UnitFullName" : 0x12d49c0,
    "UnitRealmRelationship" : 0x12d4b00,
    "UnitPVPName" : 0x12d4bc0,
    "UnitXP" : 0x12d4c80,
    "UnitXPMax" : 0x12d4d20,
    "UnitTrialXP" : 0x12d4dc0,
    "UnitTrialBankedLevels" : 0x12d4e60,
    "UnitHealth" : 0x12d4f50,
    "UnitHealthMax" : 0x12d5070,
    "UnitPowerType" : 0x12d5170,
    "UnitOnTaxi" : 0x12d55c0,
    "UnitIsFeignDeath" : 0x12d5650,
    "UnitIsDead" : 0x12d56f0,
    "UnitIsGhost" : 0x12d5820,
    "UnitIsDeadOrGhost" : 0x12d5910,
    "UnitAffectingCombat" : 0x12d5a20,
    "UnitLevel" : 0x12d5ab0,
    "UnitInPhase" : 0x12d5ac0,
    "GetMoney" : 0x12d5c20,
    "UnitRace" : 0x12d5c90,
    "UnitResistance" : 0x12d5f20,
    "ResistancePercent" : 0x12d6100,
    "UnitStat" : 0x12d61f0,
    "UnitAttackBothHands" : 0x12d6380,
    "UnitDamage" : 0x12d6800,
    "UnitRangedDamage" : 0x12d6500,
    "UnitRangedAttack" : 0x12d6760,
    "UnitAttackSpeed" : 0x12d69c0,
    "UnitAttackPower" : 0x12d6bd0,
    "UnitRangedAttackPower" : 0x12d6d10,
    "UnitWeaponAttackPower" : 0x12d6e50,
    "PlayerEffectiveAttackPower" : 0x12d6f30,
    "UnitDefense" : 0x12d6fe0,
    "UnitArmor" : 0x12d70f0,
    "UnitCharacterPoints" : 0x12d71f0,
    "UnitBuff" : 0x12d7290,
    "UnitDebuff" : 0x12d72e0,
    "UnitAura" : 0x12d7330,
    "UnitIsTapDenied" : 0x12d7380,
    "UnitIsTrivial" : 0x12d7410,
    "UnitIsCivilian" : 0x12d74c0,
    "UnitHasRelicSlot" : 0x12d7550,
    "HasFullControl" : 0x12d7630,
    "GetComboPoints" : 0x12d76a0,
    "IsInGuild" : 0x12d3ad0,
    "IsGuildLeader" : 0x12d3b30,
    "IsResting" : 0x12d3b80,
    "GetDodgeChance" : 0x12d3be0,
    "GetDodgeChanceFromAttribute" : 0x12d3c40,
    "GetBlockChance" : 0x12d3ca0,
    "GetShieldBlock" : 0x12d3d00,
    "GetParryChance" : 0x12d3d60,
    "GetParryChanceFromAttribute" : 0x12d3dc0,
    "IsDualWielding" : 0x12d3e20,
    "HasDualWieldPenalty" : 0x12d3ea0,
    "IsRangedWeapon" : 0x12d3ef0,
    "GetCritChance" : 0x12d3f50,
    "GetRangedCritChance" : 0x12d3fb0,
    "GetSpellCritChance" : 0x12d4010,
    "GetSpellBonusDamage" : 0x12d4070,
    "GetSpellBonusHealing" : 0x12d4120,
    "GetPetSpellBonusDamage" : 0x12d4170,
    "GetSpellPenetration" : 0x12d41d0,
    "GetAttackPowerForStat" : 0x12d4230,
    "GetMeleeHaste" : 0x12d4300,
    "GetRangedHaste" : 0x12d4370,
    "GetPetMeleeHaste" : 0x12d43e0,
    "GetHaste" : 0x12d4460,
    "UnitCreatureType" : 0x12d7860,
    "UnitCreatureFamily" : 0x12d7920,
    "GetResSicknessDuration" : 0x12d79e0,
    "GetPVPSessionStats" : 0x12d7ba0,
    "GetPVPThisWeekStats" : 0x12d7cf0,
    "GetPVPLastWeekStats" : 0x12d7d80,
    "GetPVPYesterdayStats" : 0x12d7c30,
    "GetPVPLifetimeStats" : 0x12d7e60,
    "UnitPVPRank" : 0x12d7f40,
    "GetPVPRankInfo" : 0x12d7fe0,
    "GetPVPRankProgress" : 0x12d8140,
    "GetInspectPVPRankProgress" : 0x12d81b0,
    "CastingInfo" : 0x12d81e0,
    "ChannelInfo" : 0x12d85b0,
    "IsLoggedIn" : 0x12d8750,
    "IsIndoors" : 0x12d8780,
    "IsOutdoors" : 0x12d87d0,
    "IsOutOfBounds" : 0x12d8820,
    "IsFalling" : 0x12d8880,
    "IsSwimming" : 0x12d8910,
    "IsSubmerged" : 0x12d8990,
    "IsMounted" : 0x12d8a10,
    "IsStealthed" : 0x12d8a70,
    "UnitIsSameServer" : 0x12d8ac0,
    "GetUnitHealthModifier" : 0x12d8bf0,
    "GetUnitMaxHealthModifier" : 0x12d8ca0,
    "GetUnitPowerModifier" : 0x12d8d60,
    "GetManaRegen" : 0x12d8e10,
    "GetPowerRegen" : 0x12d8eb0,
    "GetPowerRegenForPowerType" : 0x12d8f60,
    "ReportPlayerIsPVPAFK" : 0x12d9030,
    "PlayerIsPVPInactive" : 0x12d90f0,
    "UnitInBattleground" : 0x12d21d0,
    "UnitInRange" : 0x12d9190,
    "UnitDistanceSquared" : 0x12d9460,
    "GetUnitSpeed" : 0x12d9620,
    "IsPlayerAttacking" : 0x12d9740,
    "CancelTrackingBuff" : 0x12d9ad0,
    "GetTrackingTexture" : 0x12d9880,
    "UnitIsControlling" : 0x12d9d10,
    "GetPlayerFacing" : 0x12d9d90,
    "GetPlayerInfoByGUID" : 0x12d9e30,
    "GetItemStats" : 0x12da090,
    "GetItemStatDelta" : 0x12da1c0,
    "FillLocalizedClassList" : 0x12da3a0,
    "IsGMClient" : 0x3d6290,
    "UnitSetRole" : 0x12da580,
    "GetHitModifier" : 0x12da7a0,
    "GetSpellHitModifier" : 0x12da7f0,
    "UnitHPPerStamina" : 0x12da840,
    "GetMaxPlayerLevel" : 0x12da8f0,
    "LoadURLIndex" : 0x12da910,
    "UnitIsOtherPlayersPet" : 0x12d19e0,
    "UnitIsUnconscious" : 0x12dac30,
    "SelectedRealmName" : 0xee8510,
    "UnitPosition" : 0x12dacf0,
    "UnitShouldDisplayName" : 0x12dae70,
    "ClosestUnitPosition" : 0x12daf00,
    "ClosestGameObjectPosition" : 0x12db010,
    "ShowBossFrameWhenUninteractable" : 0x12db120,
    "CaseAccentInsensitiveParse" : 0x12db190,
    "GetTime" : 0x12db2b0,
    "GetTickTime" : 0x12db2f0,
    "GetGameTime" : 0x12db360,
    "GetLocalGameTime" : 0x12db3a0,
    "ConsoleExec" : 0x12db410,
    "GetSessionTime" : 0x12db320,
    "GetServerTime" : 0x12db3e0,
    "IsMovieLocal" : 0x12ddd30,
    "PreloadMovie" : 0x12ddd90,
    "CancelPreloadingMovie" : 0x12ddde0,
    "GetMovieDownloadProgress" : 0x12dde30,
    "IsMoviePlayable" : 0x12ddef0,
    "IsOnGlueScreen" : 0x12de0a0,
    "SetPortraitToTexture" : 0x12de0d0,
    "IsWindowsClient" : 0xeecec0,
    "IsMacClient" : 0x3d6290,
    "IsLinuxClient" : 0x3d6290,
    "Is64BitClient" : 0xeecec0,
    "GetAvailableLocales" : 0x12ddf50,
    "GetOSLocale" : 0x12ddfc0,
    "GetCurrentRegion" : 0x12ddff0,
    "GetCurrentRegionName" : 0x12de020,
    "GetSecondsUntilParentalControlsKick" : 0x12de050,
    "IsTestBuild" : 0xeecec0,
    "IsPublicBuild" : 0xeecec0,
    "IsKioskModeEnabled" : 0x12df440,
    "IsCompetitiveModeEnabled" : 0x12df460,
    "GetCVarInfo" : 0x12df4a0,
    "LoadAddOn" : 0x12de2b0,
    "IsAddOnLoaded" : 0x12de520,
    "EnableAllAddOns" : 0x12de620,
    "DisableAllAddOns" : 0x12de6a0,
    "EnableAddOn" : 0x12de720,
    "DisableAddOn" : 0x12de860,
    "GetNumAddOns" : 0x12de990,
    "GetAddOnInfo" : 0x12de9c0,
    "GetAddOnDependencies" : 0x12deb70,
    "GetAddOnEnableState" : 0x12dec70,
    "SaveAddOns" : 0x12ded70,
    "ResetAddOns" : 0x12ded80,
    "IsAddonVersionCheckEnabled" : 0x12deda0,
    "SetAddonVersionCheck" : 0x12dedd0,
    "BreakUpLargeNumbers" : 0x12dedf0,
    "GetFonts" : 0x12dee80,
    "GetFontInfo" : 0x12def60,
    "CalculateStringEditDistance" : 0x12df590,
    "GetTimePreciseSec" : 0x12df770,
    "ConsoleAddMessage" : 0x12df7b0,
    "CopyToClipboard" : 0x12df810,
    "GetScreenWidth" : 0x12df990,
    "GetScreenHeight" : 0x12df9f0,
    "GetPhysicalScreenSize" : 0x12dfa50,
    "IsModifierKeyDown" : 0x12dfab0,
    "IsKeyDown" : 0x12dfb00,
    "IsLeftShiftKeyDown" : 0x12dfbf0,
    "IsRightShiftKeyDown" : 0x12dfc20,
    "IsShiftKeyDown" : 0x12dfc50,
    "IsLeftControlKeyDown" : 0x12dfcb0,
    "IsRightControlKeyDown" : 0x12dfce0,
    "IsControlKeyDown" : 0x12dfd10,
    "IsLeftAltKeyDown" : 0x12dfd70,
    "IsRightAltKeyDown" : 0x12dfda0,
    "IsAltKeyDown" : 0x12dfdd0,
    "IsMouseButtonDown" : 0x12dfe30,
    "GetMouseButtonName" : 0x12dfeb0,
    "GetMouseButtonClicked" : 0x12dff30,
    "GetUITextureKitInfo" : 0x12dffb0,
    "HandleAtlasMemberCommand" : 0x18f8f0,
    "GetText" : 0x1c78f30,
    "GetNumFrames" : 0x1c78ff0,
    "EnumerateFrames" : 0x1c790e0,
    "CreateFont" : 0x1c79250,
    "CreateFrame" : 0x1c792c0,
    "CreateForbiddenFrame" : 0x1c792d0,
    "DoesTemplateExist" : 0x1c792e0,
    "GetFramesRegisteredForEvent" : 0x1c79340,
    "GetCurrentKeyBoardFocus" : 0x1c79490,
    "StoreSecureReference" : 0x1c794e0,
    Misc offsets
    Code:
    "ObjMgrPtr" : 0x2517700,
    "LocalPlayerGUID" : 0xab60aa0,
    "MouseOverGUID" : 0xaa81d88,
    "CameraBase" : 0xaa828a8,
    "InGameFlag" : 0xaa81d80,
    "IsLoadingOrConnecting" : 0x2590a30,
    "CurrentGroundTargetSpell" : 0x25fd2d0,
    "CTMActionTypeTrigger" : 0x1fe2dc0,
    "PlayerName" : 0xab60ab8,
    "Date" : 0x1eec520,
    "Version" : 0x1eec50c,
    "Build" : 0x1eec514,
    Last edited by h42; 07-21-2019 at 05:10 PM. Reason: Updated some patterns

    [Classic] 1.13.2.31043 (Beta)
  2. Thanks Neer, imzz, crepto, aeo, knoxz, everytimer, DanThePman (7 members gave Thanks to h42 for this useful post)
  3. #2
    gowa's Avatar Member
    Reputation
    1
    Join Date
    Sep 2019
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good work.
    And may you send me a 31043 copy?

Similar Threads

  1. [Classic] - 1.13.2.30112 - (Beta)
    By Icesythe7 in forum WoW Memory Editing
    Replies: 0
    Last Post: 04-18-2019, 12:26 AM
  2. [Question] Simple bot for right clicking at xyz position Wow classic 1.13/Arctium
    By Andrehoejmark in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 02-11-2019, 04:50 AM
  3. WoW Classic 1.13 Sandbox
    By raido in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 10-24-2018, 06:23 PM
  4. [Selling] Level 60 Hunter. Classic Rank 13 Warlord
    By Tschaenter in forum WoW-EU Account Buy Sell Trade
    Replies: 1
    Last Post: 11-04-2013, 03:21 PM
  5. [Selling] ORIGIN ACCOUNT [BATTLEFIELD 3 + PREMIUM][FIFA 13, 12][BF4 BETA] [WTT] for FIFA 14
    By turqus in forum General Trading Buy Sell Trade
    Replies: 0
    Last Post: 10-05-2013, 04:25 PM
All times are GMT -5. The time now is 10:36 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search