You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1983 lines
74 KiB

5 years ago
-- DruidGuardian.lua
-- June 2018
local addon, ns = ...
local Hekili = _G[ addon ]
local class = Hekili.Class
local state = Hekili.State
local PTR = ns.PTR
-- Conduits
-- [x] savage_combatant
-- [ ] unchecked_aggression
-- Guardian Endurance
-- [-] layered_mane
-- [x] wellhoned_instincts
if UnitClassBase( "player" ) == "DRUID" then
local spec = Hekili:NewSpecialization( 104 )
spec:RegisterResource( Enum.PowerType.Rage, {
oakhearts_puny_quods = {
aura = "oakhearts_puny_quods",
last = function ()
local app = state.buff.oakhearts_puny_quods.applied
local t = state.query_time
return app + floor( t - app )
end,
interval = 1,
value = 10
},
raging_frenzy = {
aura = "frenzied_regeneration",
pvptalent = "raging_frenzy",
last = function ()
local app = state.buff.frenzied_regeneration.applied
local t = state.query_time
return app + floor( t - app )
end,
interval = 1,
value = 10 -- tooltip says 60, meaning this would be 20, but NOPE.
},
thrash_bear = {
aura = "thrash_bear",
talent = "blood_frenzy",
debuff = true,
last = function ()
return state.debuff.thrash_bear.applied + floor( state.query_time - state.debuff.thrash_bear.applied )
end,
interval = function () return class.auras.thrash_bear.tick_time end,
value = function () return 2 * state.active_dot.thrash_bear end,
}
} )
spec:RegisterResource( Enum.PowerType.LunarPower )
spec:RegisterResource( Enum.PowerType.Mana )
spec:RegisterResource( Enum.PowerType.ComboPoints )
spec:RegisterResource( Enum.PowerType.Energy )
-- Talents
spec:RegisterTalents( {
brambles = 22419, -- 203953
blood_frenzy = 22418, -- 203962
bristling_fur = 22420, -- 155835
tiger_dash = 19283, -- 252216
renewal = 18570, -- 108238
wild_charge = 18571, -- 102401
balance_affinity = 22163, -- 197488
feral_affinity = 22156, -- 202155
restoration_affinity = 22159, -- 197492
mighty_bash = 21778, -- 5211
mass_entanglement = 18576, -- 102359
heart_of_the_wild = 18577, -- 319454
soul_of_the_forest = 21709, -- 158477
galactic_guardian = 21707, -- 203964
incarnation = 22388, -- 102558
earthwarden = 22423, -- 203974
survival_of_the_fittest = 21713, -- 203965
guardian_of_elune = 22390, -- 155578
rend_and_tear = 22426, -- 204053
lunar_beam = 22427, -- 204066
pulverize = 22425, -- 80313
} )
-- PvP Talents
spec:RegisterPvpTalents( {
alpha_challenge = 842, -- 207017
charging_bash = 194, -- 228431
demoralizing_roar = 52, -- 201664
den_mother = 51, -- 236180
emerald_slumber = 197, -- 329042
entangling_claws = 195, -- 202226
freedom_of_the_herd = 3750, -- 213200
grove_protection = 5410, -- 354654
malornes_swiftness = 1237, -- 236147
master_shapeshifter = 49, -- 236144
overrun = 196, -- 202246
raging_frenzy = 192, -- 236153
sharpened_claws = 193, -- 202110
toughness = 50, -- 201259
} )
local mod_circle_hot = setfenv( function( x )
return legendary.circle_of_life_and_death.enabled and ( 0.85 * x ) or x
end, state )
local mod_circle_dot = setfenv( function( x )
return legendary.circle_of_life_and_death.enabled and ( 0.75 * x ) or x
end, state )
-- Auras
spec:RegisterAuras( {
aquatic_form = {
id = 276012,
duration = 3600,
max_stack = 1,
},
astral_influence = {
id = 197524,
},
barkskin = {
id = 22812,
duration = 12,
max_stack = 1,
},
bear_form = {
id = 5487,
duration = 3600,
max_stack = 1,
},
berserk = {
id = 50334,
duration = 15,
max_stack = 1,
copy = "berserk_bear"
},
bristling_fur = {
id = 155835,
duration = 8,
max_stack = 1,
},
cat_form = {
id = 768,
duration = 3600,
max_stack = 1,
},
convoke_the_spirits = {
id = 323764,
duration = 4,
max_stack = 1,
},
dash = {
id = 1850,
duration = 10,
max_stack = 1,
},
earthwarden = {
id = 203975,
duration = 3600,
max_stack = 3,
},
entangling_roots = {
id = 339,
duration = 30,
type = "Magic",
max_stack = 1,
},
feline_swiftness = {
id = 131768,
},
flight_form = {
id = 276029,
duration = 3600,
max_stack = 1,
},
frenzied_regeneration = {
id = 22842,
duration = 3,
max_stack = 1,
},
galactic_guardian = {
id = 213708,
duration = 15,
max_stack = 1,
},
gore = {
id = 93622,
duration = 10,
max_stack = 1,
},
growl = {
id = 6795,
duration = 3,
max_stack = 1,
},
guardian_of_elune = {
id = 213680,
duration = 15,
max_stack = 1,
},
heart_of_the_wild = {
id = 319454,
duration = 45,
max_stack = 1,
copy = { 319451, 319452, 319453 }
},
hibernate = {
id = 2637,
duration = 40,
max_stack = 1,
},
immobilized = {
id = 45334,
duration = 4,
max_stack = 1,
},
incapacitating_roar = {
id = 99,
duration = 3,
max_stack = 1,
},
incarnation = {
id = 102558,
duration = 30,
max_stack = 1,
copy = "incarnation_guardian_of_ursoc"
},
intimidating_roar = {
id = 236748,
duration = 3,
max_stack = 1,
},
ironfur = {
id = 192081,
duration = function () return buff.guardian_of_elune.up and 9 or 7 end,
max_stack = 5,
},
lightning_reflexes = {
id = 231065,
},
mass_entanglement = {
id = 102359,
duration = 30,
type = "Magic",
max_stack = 1,
},
mighty_bash = {
id = 5211,
duration = 4,
max_stack = 1,
},
moonfire = {
id = 164812,
duration = function () return mod_circle_dot( 16 ) end,
tick_time = function () return mod_circle_dot( 2 ) * haste end,
type = "Magic",
max_stack = 1,
},
moonkin_form = {
id = 197625,
duration = 3600,
max_stack = 1,
},
prowl = {
id = 5215,
duration = 3600,
max_stack = 1,
},
pulverize = {
id = 80313,
duration = 10,
max_stack = 1,
},
--[[ rake = {
id = 155722,
duration = 15,
max_stack = 1,
}, ]]
regrowth = {
id = 8936,
duration = function () return mod_circle_hot( 12 ) end,
type = "Magic",
max_stack = 1,
},
rejuvenation = {
id = 774,
duration = function () return mod_circle_hot( 15 ) end,
tick_time = function () return mod_circle_hot( 3 ) * haste end,
max_stack = 1,
},
soulshape = {
id = 310143,
duration = 3600,
max_stack = 1,
},
stampeding_roar = {
id = 77761,
duration = 8,
max_stack = 1,
},
sunfire = {
id = 164815,
duration = function () return mod_circle_dot( 12 ) end,
tick_time = function () return mod_circle_dot( 2 ) * haste end,
max_stack = 1,
type = "Magic",
},
survival_instincts = {
id = 61336,
duration = 6,
max_stack = 1,
},
thick_hide = {
id = 16931,
},
thrash_bear = {
id = 192090,
duration = function () return mod_circle_dot( 15 ) end,
tick_time = function () return mod_circle_dot( 3 ) * haste end,
max_stack = function () return legendary.luffainfused_embrace and 4 or 3 end,
},
--[[ thrash_cat = {
id = 106830,
duration = function () return mod_circle_dot( 15 ) end,
tick_time = function () return mod_circle_dot( 3 ) * haste end,
max_stack = 1,
}, ]]
tiger_dash = {
id = 252216,
duration = 5,
max_stack = 1,
},
tooth_and_claw = {
id = 135286,
duration = 15,
max_stack = 2
},
travel_form = {
id = 783,
duration = 3600,
max_stack = 1,
},
typhoon = {
id = 61391,
duration = 6,
max_stack = 1,
type = "Magic",
},
ursols_vortex = {
id = 127797,
duration = 3600,
max_stack = 1,
},
wild_charge = {
id = 102401,
duration = 0.5,
max_stack = 1,
},
wild_growth = {
id = 48438,
duration = 7,
max_stack = 1,
},
yseras_gift = {
id = 145108,
},
any_form = {
alias = { "bear_form", "cat_form", "moonkin_form" },
duration = 3600,
aliasMode = "first",
aliasType = "buff",
},
-- PvP Talents
demoralizing_roar = {
id = 201664,
duration = 8,
max_stack = 1,
},
den_mother = {
id = 236181,
duration = 3600,
max_stack = 1,
},
focused_assault = {
id = 206891,
duration = 6,
max_stack = 1,
},
grove_protection_defense = {
id = 354704,
duration = 12,
max_stack = 1,
},
grove_protection_offense = {
id = 354789,
duration = 12,
max_stack = 1,
},
master_shapeshifter_feral = {
id = 236188,
duration = 3600,
max_stack = 1,
},
overrun = {
id = 202244,
duration = 3,
max_stack = 1,
},
protector_of_the_pack = {
id = 201940,
duration = 3600,
max_stack = 1,
},
sharpened_claws = {
id = 279943,
duration = 6,
max_stack = 1,
},
-- Azerite
masterful_instincts = {
id = 273349,
duration = 30,
max_stack = 1,
},
-- Legendary
lycaras_fleeting_glimpse = {
id = 340060,
duration = 5,
max_stack = 1
},
ursocs_fury_remembered = {
id = 345048,
duration = 15,
max_stack = 1,
},
} )
-- Function to remove any form currently active.
spec:RegisterStateFunction( "unshift", function()
if conduit.tireless_pursuit.enabled and ( buff.cat_form.up or buff.travel_form.up ) then applyBuff( "tireless_pursuit" ) end
removeBuff( "cat_form" )
removeBuff( "bear_form" )
removeBuff( "travel_form" )
removeBuff( "moonkin_form" )
removeBuff( "travel_form" )
removeBuff( "aquatic_form" )
removeBuff( "stag_form" )
if legendary.oath_of_the_elder_druid.enabled and debuff.oath_of_the_elder_druid_icd.down and talent.restoration_affinity.enabled then
applyBuff( "heart_of_the_wild" )
applyDebuff( "player", "oath_of_the_elder_druid_icd" )
end
end )
local affinities = {
bear_form = "guardian_affinity",
cat_form = "feral_affinity",
moonkin_form = "balance_affinity",
}
-- Function to apply form that is passed into it via string.
spec:RegisterStateFunction( "shift", function( form )
if conduit.tireless_pursuit.enabled and ( buff.cat_form.up or buff.travel_form.up ) then applyBuff( "tireless_pursuit" ) end
removeBuff( "cat_form" )
removeBuff( "bear_form" )
removeBuff( "travel_form" )
removeBuff( "moonkin_form" )
removeBuff( "travel_form" )
removeBuff( "aquatic_form" )
removeBuff( "stag_form" )
applyBuff( form )
if affinities[ form ] and legendary.oath_of_the_elder_druid.enabled and debuff.oath_of_the_elder_druid_icd.down and talent[ affinities[ form ] ].enabled then
applyBuff( "heart_of_the_wild" )
applyDebuff( "player", "oath_of_the_elder_druid_icd" )
end
end )
spec:RegisterStateExpr( "ironfur_damage_threshold", function ()
return ( settings.ironfur_damage_threshold or 0 ) / 100 * ( health.max )
end )
-- Gear.
spec:RegisterGear( "class", 139726, 139728, 139723, 139730, 139725, 139729, 139727, 139724 )
spec:RegisterGear( "tier19", 138330, 138336, 138366, 138324, 138327, 138333 )
spec:RegisterGear( "tier20", 147136, 147138, 147134, 147133, 147135, 147137 ) -- Bonuses NYI
spec:RegisterGear( "tier21", 152127, 152129, 152125, 152124, 152126, 152128 )
spec:RegisterGear( "ailuro_pouncers", 137024 )
spec:RegisterGear( "behemoth_headdress", 151801 )
spec:RegisterGear( "chatoyant_signet", 137040 )
spec:RegisterGear( "dual_determination", 137041 )
spec:RegisterGear( "ekowraith_creator_of_worlds", 137015 )
spec:RegisterGear( "elizes_everlasting_encasement", 137067 )
spec:RegisterGear( "fiery_red_maimers", 144354 )
spec:RegisterGear( "lady_and_the_child", 144295 )
spec:RegisterGear( "luffa_wrappings", 137056 )
spec:RegisterGear( "oakhearts_puny_quods", 144432 )
spec:RegisterAura( "oakhearts_puny_quods", {
id = 236479,
duration = 3,
max_stack = 1,
} )
spec:RegisterGear( "skysecs_hold", 137025 )
spec:RegisterAura( "skysecs_hold", {
id = 208218,
duration = 3,
max_stack = 1,
} )
spec:RegisterGear( "the_wildshapers_clutch", 137094 )
spec:RegisterGear( "soul_of_the_archdruid", 151636 )
spec:RegisterStateExpr( "lunar_eclipse", function ()
return eclipse.wrath_counter
end )
spec:RegisterStateExpr( "solar_eclipse", function ()
return eclipse.starfire_counter
end )
local LycarasHandler = setfenv( function ()
if buff.travel_form.up then state:RunHandler( "stampeding_roar" )
elseif buff.moonkin_form.up then state:RunHandler( "starfall" )
elseif buff.bear_form.up then state:RunHandler( "barkskin" )
elseif buff.cat_form.up then state:RunHandler( "primal_wrath" )
else state:RunHandle( "wild_growth" ) end
end, state )
local SinfulHysteriaHandler = setfenv( function ()
applyBuff( "ravenous_frenzy_sinful_hysteria" )
end, state )
spec:RegisterHook( "reset_precast", function ()
if azerite.masterful_instincts.enabled and buff.survival_instincts.up and buff.masterful_instincts.down then
applyBuff( "masterful_instincts", buff.survival_instincts.remains + 30 )
end
if buff.lycaras_fleeting_glimpse.up then
state:QueueAuraExpiration( "lycaras_fleeting_glimpse", LycarasHandler, buff.lycaras_fleeting_glimpse.expires )
end
if legendary.sinful_hysteria.enabled and buff.ravenous_frenzy.up then
state:QueueAuraExpiration( "ravenous_frenzy", SinfulHysteriaHandler, buff.ravenous_frenzy.expires )
end
eclipse.reset() -- from Balance.
end )
spec:RegisterHook( "runHandler", function( ability )
local a = class.abilities[ ability ]
if not a or a.startsCombat then
break_stealth()
end
if buff.ravenous_frenzy.up and ability ~= "ravenous_frenzy" then
addStack( "ravenous_frenzy", nil, 1 )
end
end )
spec:RegisterStateTable( "druid", setmetatable( {
}, {
__index = function( t, k )
if k == "catweave_bear" then
return talent.feral_affinity.enabled and settings.catweave_bear
elseif k == "owlweave_bear" then
return talent.balance_affinity.enabled and settings.owlweave_bear
elseif k == "no_cds" then return not toggle.cooldowns
elseif k == "primal_wrath" then return debuff.rip
elseif k == "lunar_inspiration" then return debuff.moonfire_cat
elseif debuff[ k ] ~= nil then return debuff[ k ]
end
end
} ) )
-- Abilities
spec:RegisterAbilities( {
alpha_challenge = {
id = 207017,
cast = 0,
cooldown = 20,
gcd = "spell",
pvptalent = "alpha_challenge",
startsCombat = true,
texture = 132270,
handler = function ()
applyDebuff( "target", "focused_assault" )
end,
},
barkskin = {
id = 22812,
cast = 0,
cooldown = function () return ( talent.survival_of_the_fittest.enabled and 40 or 60 ) * ( 1 + ( conduit.tough_as_bark.mod * 0.01 ) ) end,
gcd = "off",
startsCombat = false,
texture = 136097,
toggle = "defensives",
defensive = true,
usable = function ()
if not tanking then return false, "player is not tanking right now"
elseif incoming_damage_3s == 0 then return false, "player has taken no damage in 3s" end
return true
end,
handler = function ()
applyBuff( "barkskin" )
if legendary.the_natural_orders_will.enabled and buff.bear_form.up then
applyBuff( "ironfur" )
applyBuff( "frenzied_regeneration" )
end
end,
},
bear_form = {
id = 5487,
cast = 0,
cooldown = 0,
gcd = "spell",
spend = -25,
spendType = "rage",
startsCombat = false,
texture = 132276,
essential = true,
noform = "bear_form",
handler = function ()
shift( "bear_form" )
if conduit.ursine_vigor.enabled then applyBuff( "ursine_vigor" ) end
end,
},
berserk = {
id = 50334,
cast = 0,
cooldown = function () return legendary.legacy_of_the_sleeper.enabled and 150 or 180 end,
gcd = "off",
toggle = "cooldowns",
startsCombat = true,
texture = 236149,
notalent = "incarnation",
handler = function ()
applyBuff( "berserk" )
end,
copy = "berserk_bear"
},
bristling_fur = {
id = 155835,
cast = 0,
cooldown = 40,
gcd = "spell",
startsCombat = false,
texture = 1033476,
talent = "bristling_fur",
usable = function ()
if incoming_damage_3s < health.max * 0.1 then return false, "player has not taken 10% health in dmg in 3s" end
return true
end,
handler = function ()
applyBuff( "bristling_fur" )
end,
},
cat_form = {
id = 768,
cast = 0,
cooldown = 0,
gcd = "spell",
startsCombat = false,
texture = 132115,
noform = "cat_form",
handler = function ()
shift( "cat_form" )
if pvptalent.master_shapeshifter.enabled and talent.feral_affinity.enabled then
applyBuff( "master_shapeshifter_feral" )
end
end,
},
cyclone = {
id = 33786,
cast = 1.7,
cooldown = 0,
gcd = "spell",
spend = 0.1,
spendType = "mana",
startsCombat = true,
texture = 136022,
handler = function ()
applyDebuff( "target", "cyclone" )
end,
},
dash = {
id = 1850,
cast = 0,
cooldown = 120,
gcd = "spell",
startsCombat = false,
texture = 132120,
handler = function ()
shift( "cat_form" )
applyBuff( "dash" )
end,
},
demoralizing_roar = {
id = 201664,
cast = 0,
cooldown = 30,
gcd = "spell",
pvptalent = "demoralizing_roar",
startsCombat = true,
texture = 132117,
handler = function ()
applyDebuff( "demoralizing_roar" )
active_dot.demoralizing_roar = active_enemies
end,
},
emerald_slumber = {
id = 329042,
cast = 8,
cooldown = 120,
channeled = true,
gcd = "spell",
toggle = "cooldowns",
pvptalent = "emerald_slumber",
startsCombat = false,
texture = 1394953,
handler = function ()
end,
},
entangling_roots = {
id = 339,
cast = function () return pvptalent.entangling_claws.enabled and 0 or 1.7 end,
cooldown = function () return pvptalent.entangling_claws.enabled and 6 or 0 end,
gcd = "spell",
spend = 0.06,
spendType = "mana",
startsCombat = true,
texture = 136100,
handler = function ()
applyDebuff( "target", "entangling_roots" )
end,
},
--[[ ferocious_bite = {
id = 22568,
cast = 0,
cooldown = 0,
gcd = "spell",
spend = function () return args.max_energy == 1 and 50 or 25 end,
spendType = "energy",
startsCombat = true,
texture = 132127,
form = "cat_form",
usable = function ()
if combo_points.current == 0 then return false, "player has no combo points" end
return true
end,
handler = function ()
spend( min( 5, combo_points.current ), "combo_points" )
end,
}, ]]
frenzied_regeneration = {
id = 22842,
cast = 0,
charges = 2,
cooldown = function () return buff.berserk.up and ( level > 57 and 9 or 18 ) or 36 end,
recharge = function () return buff.berserk.up and ( level > 57 and 9 or 18 ) or 36 end,
hasteCD = true,
gcd = "spell",
spend = 10,
spendType = "rage",
startsCombat = false,
texture = 132091,
toggle = "defensives",
defensive = true,
form = "bear_form",
nobuff = "frenzied_regeneration",
handler = function ()
applyBuff( "frenzied_regeneration" )
gain( health.max * 0.08, "health" )
end,
auras = {
-- Conduit (ICD)
wellhoned_instincts = {
id = 340556,
duration = function ()
if conduit.wellhoned_instincts.enabled then return conduit.wellhoned_instincts.mod end
return 90
end,
max_stack = 1
}
}
},
grove_protection = {
id = 354654,
cast = 0,
cooldown = 60,
gcd = "spell",
toggle = "defensives",
startsCombat = false,
texture = 4067364,
handler = function ()
-- Don't apply auras; position dependent.
end,
},
growl = {
id = 6795,
cast = 0,
cooldown = function () return buff.berserk.up and ( level > 57 and 2 or 4 ) or 8 end,
gcd = "spell",
nopvptalent = "alpha_challenge",
startsCombat = true,
texture = 132270,
handler = function ()
applyDebuff( "target", "growl" )
end,
},
heart_of_the_wild = {
id = 319454,
cast = 0,
cooldown = function () return 300 * ( 1 - ( conduit.born_of_the_wilds.mod * 0.01 ) ) end,
gcd = "spell",
toggle = "cooldowns",
startsCombat = false,
texture = 135879,
handler = function ()
applyBuff( "heart_of_the_wild" )
if talent.balance_affinity.enabled then
shift( "moonkin_form" )
elseif talent.feral_affinity.enabled then
shift( "cat_form" )
elseif talent.restoration_affinity.enabled then
unshift()
end
end,
},
hibernate = {
id = 2637,
cast = 1.5,
cooldown = 0,
gcd = "spell",
spend = 0.06,
spendType = "mana",
startsCombat = false,
texture = 136090,
handler = function ()
applyDebuff( "target", "hibernate" )
end,
},
incapacitating_roar = {
id = 99,
cast = 0,
cooldown = 30,
gcd = "spell",
startsCombat = true,
texture = 132121,
handler = function ()
applyDebuff( "target", "incapacitating_roar" )
end,
},
incarnation = {
id = 102558,
cast = 0,
cooldown = function () return legendary.legacy_of_the_sleeper.enabled and 150 or 180 end,
gcd = "off",
toggle = "cooldowns",
startsCombat = false,
texture = 571586,
talent = "incarnation",
handler = function ()
applyBuff( "incarnation" )
end,
copy = { "incarnation_guardian_of_ursoc", "Incarnation" }
},
ironfur = {
id = 192081,
cast = 0,
cooldown = 0.5,
gcd = "off",
spend = function () return buff.berserk.up and 20 or 40 end,
spendType = "rage",
startsCombat = false,
texture = 1378702,
toggle = "defensives",
defensive = true,
form = "bear_form",
usable = function ()
if not tanking then return false, "player is not tanking right now"
elseif incoming_damage_3s == 0 then return false, "player has taken no damage in 3s" end
return true
end,
handler = function ()
applyBuff( "ironfur" )
removeBuff( "guardian_of_elune" )
end,
},
lunar_beam = {
id = 204066,
cast = 0,
cooldown = 75,
gcd = "spell",
toggle = "defensives",
startsCombat = true,
texture = 136057,
talent = "lunar_beam",
handler = function ()
applyBuff( "lunar_beam" )
end,
auras = {
lunar_beam = {
duration = 8,
max_stack = 1,
generate = function( t )
local applied = action.lunar_beam.lastCast
if not t.name then t.name = class.auras.lunar_beam.name end
if applied and now - applied < 8 then
t.count = 1
t.expires = applied + 8
t.applied = applied
t.caster = "player"
return
end
t.count = 0
t.expires = 0
t.applied = 0
t.caster = "nobody"
end,
},
}
},
maim = {
id = 22570,
cast = 0,
cooldown = 20,
gcd = "spell",
spend = 30,
spendType = "energy",
startsCombat = true,
texture = 132134,
talent = "feral_affinity",
form = "cat_form",
usable = function () return combo_points.current > 0, "requires combo_points" end,
handler = function ()
applyDebuff( "target", "maim", combo_points.current )
spend( combo_points.current, "combo_points" )
end,
},
mangle = {
id = 33917,
cast = 0,
cooldown = function () return ( buff.berserk.up and ( level > 57 and 1.5 or 3 ) or 6 ) * haste end,
gcd = "spell",
spend = function () return buff.gore.up and -19 or -15 end,
spendType = "rage",
startsCombat = true,
texture = 132135,
form = "bear_form",
handler = function ()
if talent.guardian_of_elune.enabled then applyBuff( "guardian_of_elune" ) end
removeBuff( "gore" )
if conduit.savage_combatant.enabled then addStack( "savage_combatant", nil, 1 ) end
end,
auras = {
-- Conduit
savage_combatant = {
id = 340613,
duration = 15,
max_stack = 3
}
}
},
mass_entanglement = {
id = 102359,
cast = 0,
cooldown = 30,
gcd = "spell",
startsCombat = false,
texture = 538515,
talent = "mass_entanglement",
handler = function ()
applyDebuff( "target", "mass_entanglement" )
end,
},
maul = {
id = 6807,
cast = 0,
cooldown = 0,
gcd = "spell",
spend = 40,
spendType = "rage",
startsCombat = true,
texture = 132136,
form = "bear_form",
usable = function ()
if settings.maul_rage > 0 and rage.current - cost < settings.maul_rage then return false, "not enough additional rage" end
return true
end,
handler = function ()
if pvptalent.sharpened_claws.enabled or essence.conflict_and_strife.major then applyBuff( "sharpened_claws" ) end
removeBuff( "savage_combatant" )
end,
},
mighty_bash = {
id = 5211,
cast = 0,
cooldown = 60,
gcd = "spell",
startsCombat = true,
texture = 132114,
talent = "mighty_bash",
handler = function ()
applyDebuff( "target", "mighty_bash" )
end,
},
moonfire = {
id = 8921,
cast = 0,
cooldown = 0,
gcd = "spell",
spend = 0.06,
spendType = "mana",
startsCombat = true,
texture = 136096,
handler = function ()
applyDebuff( "target", "moonfire" )
if buff.galactic_guardian.up then
gain( 8, "rage" )
removeBuff( "galactic_guardian" )
end
end,
},
moonkin_form = {
id = 197625,
cast = 0,
cooldown = 0,
gcd = "spell",
startsCombat = false,
texture = 136036,
noform = "moonkin_form",
talent = "balance_affinity",
handler = function ()
shift( "moonkin_form" )
end,
},
overrun = {
id = 202246,
cast = 0,
cooldown = 25,
gcd = "spell",
startsCombat = true,
texture = 1408833,
pvptalent = "overrun",
handler = function ()
applyDebuff( "target", "overrun" )
setDistance( 5 )
end,
},
prowl = {
id = 5215,
cast = 0,
cooldown = 6,
gcd = "spell",
startsCombat = false,
texture = 514640,
usable = function ()
if time > 0 and ( not boss or not buff.shadowmeld.up ) then return false, "cannot stealth in combat"
elseif buff.prowl.up then return false, "player is already prowling" end
return true
end,
handler = function ()
shift( "cat_form" )
applyBuff( "prowl" )
end,
},
pulverize = {
id = 80313,
cast = 0,
cooldown = 45,
gcd = "spell",
startsCombat = true,
texture = 1033490,
talent = "pulverize",
form = "bear_form",
usable = function ()
if debuff.thrash_bear.stack < 2 then return false, "target has fewer than 2 thrash stacks" end
return true
end,
handler = function ()
if debuff.thrash_bear.count > 2 then debuff.thrash_bear.count = debuff.thrash_bear.count - 2
else removeDebuff( "target", "thrash_bear" ) end
applyBuff( "pulverize" )
end,
},
--[[ rake = {
id = 1822,
cast = 0,
cooldown = 0,
gcd = "spell",
spend = 35,
spendType = "energy",
startsCombat = true,
texture = 132122,
talent = "feral_affinity",
form = "cat_form",
handler = function ()
applyDebuff( "target", "rake" )
debuff.rake.pmultiplier = persistent_multiplier
gain( 1, "combo_points" )
end,
}, ]]
--[[ rebirth = {
id = 20484,
cast = 2,
cooldown = 600,
gcd = "spell",
spend = 0,
spendType = "rage",
startsCombat = true,
texture = 136080,
handler = function ()
end,
}, ]]
regrowth = {
id = 8936,
cast = 1.5,
cooldown = 0,
gcd = "spell",
spend = 0.14,
spendType = "mana",
startsCombat = false,
texture = 136085,
talent = "restoration_affinity",
usable = function ()
if not ( buff.bear_form.down and buff.cat_form.down and buff.travel_form.down and buff.moonkin_form.down ) then return false, "player is in a form" end
return true
end,
handler = function ()
applyBuff( "regrowth" )
end,
},
rejuvenation = {
id = 774,
cast = 0,
cooldown = 0,
gcd = "spell",
spend = 0.1,
spendType = "mana",
startsCombat = false,
texture = 136081,
talent = "restoration_affinity",
usable = function ()
if not ( buff.bear_form.down and buff.cat_form.down and buff.travel_form.down and buff.moonkin_form.down ) then return false, "player is in a form" end
return true
end,
handler = function ()
applyBuff( "rejuvenation" )
end,
},
remove_corruption = {
id = 2782,
cast = 0,
cooldown = 8,
gcd = "spell",
spend = 0.06,
spendType = "mana",
startsCombat = false,
texture = 135952,
usable = function ()
if buff.dispellable_poison.down and buff.dispellable_curse.down then return false, "player has no dispellable auras" end
return true
end,
handler = function ()
removeBuff( "dispellable_poison" )
removeBuff( "dispellable_curse" )
end,
},
renewal = {
id = 108238,
cast = 0,
cooldown = 90,
gcd = "spell",
toggle = "defensives",
defensive = true,
startsCombat = true,
texture = 136059,
talent = "renewal",
handler = function ()
gain( 0.3 * health.max, "health" )
end,
},
--[[ revive = {
id = 50769,
cast = 10,
cooldown = 0,
gcd = "spell",
spend = 0.04,
spendType = "mana",
startsCombat = true,
texture = 132132,
handler = function ()
end,
}, ]]
--[[ rip = {
id = 1079,
cast = 0,
cooldown = 0,
gcd = "spell",
spend = 30,
spendType = "energy",
startsCombat = true,
texture = 132152,
talent = "feral_affinity",
form = "cat_form",
usable = function ()
if combo_points.current == 0 then return false, "player has no combo points" end
return true
end,
handler = function ()
applyDebuff( "target", "rip" )
end,
}, ]]
--[[ shred = {
id = 5221,
cast = 0,
cooldown = 0,
gcd = "spell",
spend = 40,
spendType = "energy",
startsCombat = true,
texture = 136231,
handler = function ()
end,
}, ]]
skull_bash = {
id = 106839,
cast = 0,
cooldown = 15,
gcd = "spell",
startsCombat = true,
texture = 236946,
toggle = "interrupts",
debuff = "casting",
readyTime = state.timeToInterrupt,
handler = function ()
interrupt()
end,
},
soothe = {
id = 2908,
cast = 0,
cooldown = 10,
gcd = "spell",
spend = 0.06,
spendType = "mana",
startsCombat = true,
texture = 132163,
debuff = "dispellable_enrage",
handler = function ()
removeDebuff( "target", "dispellable_enrage" )
end,
},
stampeding_roar = {
id = 106898,
cast = 0,
cooldown = function () return pvptalent.freedom_of_the_herd.enabled and 0 or 60 end,
gcd = "spell",
startsCombat = false,
texture = 464343,
handler = function ()
applyBuff( "stampeding_roar" )
if buff.bear_form.down and buff.cat_form.down then
shift( "bear_form" )
end
end,
},
--[[ starfire = {
id = 197628,
cast = 2.5,
cooldown = 0,
gcd = "spell",
spend = 0.03,
spendType = "mana",
startsCombat = true,
texture = 135753,
talent = "balance_affinity",
form = "moonkin_form",
handler = function ()
end,
}, ]]
starsurge = {
id = 197626,
cast = function () return buff.heart_of_the_wild.up and 0 or 2 end,
cooldown = 10,
gcd = "spell",
spend = 0.03,
spendType = "mana",
startsCombat = true,
texture = 135730,
talent = "balance_affinity",
form = "moonkin_form",
handler = function ()
addStack( "lunar_empowerment" )
addStack( "solar_empowerment" )
end,
},
sunfire = {
id = 197630,
cast = 0,
cooldown = 0,
gcd = "spell",
spend = 0.12,
spendType = "mana",
startsCombat = true,
texture = 236216,
talent = "balance_affinity",
form = "moonkin_form",
handler = function ()
applyDebuff( "target", "sunfire" )
active_dot.sunfire = active_enemies
end,
},
survival_instincts = {
id = 61336,
cast = 0,
charges = 2,
cooldown = function () return ( essence.vision_of_perfection.enabled and 0.87 or 1 ) * ( talent.survival_of_the_fittest.enabled and ( 2/3 ) or 1 ) * 180 end,
recharge = function () return ( essence.vision_of_perfection.enabled and 0.87 or 1 ) * ( talent.survival_of_the_fittest.enabled and ( 2/3 ) or 1 ) * 180 end,
gcd = "off",
startsCombat = false,
texture = 236169,
toggle = "defensives",
defensive = true,
usable = function ()
if not tanking then return false, "player is not tanking right now"
elseif incoming_damage_3s == 0 then return false, "player has taken no damage in 3s" end
return true
end,
handler = function ()
applyBuff( "survival_instincts" )
if azerite.masterful_instincts.enabled and buff.survival_instincts.up and buff.masterful_instincts.down then
applyBuff( "masterful_instincts", buff.survival_instincts.remains + 30 )
end
end,
},
swiftmend = {
id = 18562,
cast = 0,
charges = 1,
cooldown = 25,
recharge = 25,
gcd = "spell",
spend = 0.14,
spendType = "mana",
startsCombat = false,
texture = 134914,
talent = "restoration_affinity",
toggle = "defensives",
defensive = true,
usable = function ()
return IsSpellUsable( 18562 ) or buff.regrowth.up or buff.wild_growth.up or buff.rejuvenation.up, "requires a HoT"
end,
handler = function ()
unshift()
if buff.regrowth.up then removeBuff( "regrowth" )
elseif buff.wild_growth.up then removeBuff( "wild_growth" )
elseif buff.rejuvenation.up then removeBuff( "rejuvenation" ) end
end,
},
swipe_bear = {
id = 213771,
known = 213764,
suffix = "(Bear)",
cast = 0,
cooldown = 0,
gcd = "spell",
startsCombat = true,
texture = 134296,
form = "bear_form",
handler = function ()
end,
copy = { "swipe", 213764 },
bind = { "swipe_bear", "swipe_cat", "swipe" }
},
--[[ teleport_moonglade = {
id = 18960,
cast = 10,
cooldown = 0,
gcd = "spell",
spend = 4,
spendType = "mana",
startsCombat = true,
texture = 135758,
handler = function ()
end,
}, ]]
thrash_bear = {
id = 77758,
known = 106832,
suffix = "(Bear)",
cast = 0,
cooldown = function () return ( buff.berserk.up and ( level > 57 and 1.5 or 3 ) or 6 ) * haste end,
gcd = "spell",
spend = -5,
spendType = "rage",
startsCombat = true,
texture = 451161,
form = "bear_form",
bind = "thrash",
handler = function ()
applyDebuff( "target", "thrash_bear", 15, debuff.thrash_bear.count + 1 )
active_dot.thrash_bear = active_enemies
if legendary.ursocs_fury_remembered.enabled then
applyBuff( "ursocs_fury_remembered" )
end
end,
},
tiger_dash = {
id = 252216,
cast = 0,
cooldown = 45,
gcd = "spell",
startsCombat = false,
texture = 1817485,
talent = "tiger_dash",
handler = function ()
applyBuff( "tiger_dash" )
end,
},
travel_form = {
id = 783,
cast = 0,
cooldown = 0,
gcd = "spell",
startsCombat = false,
texture = 132144,
handler = function ()
shift( "travel_form" )
end,
},
typhoon = {
id = 132469,
cast = 0,
cooldown = 30,
gcd = "spell",
startsCombat = true,
texture = 236170,
talent = "balance_affinity",
handler = function ()
if target.distance < 15 then
applyDebuff( "target", "typhoon" )
end
end,
},
ursols_vortex = {
id = 102793,
cast = 0,
cooldown = 60,
gcd = "spell",
talent = "restoration_affinity",
startsCombat = true,
texture = 571588,
handler = function ()
applyDebuff( "target", "ursols_vortex" )
end,
},
wild_charge = {
id = function ()
if buff.bear_form.up then return 16979
elseif buff.cat_form.up then return 49376
elseif buff.moonkin_form.up then return 102383 end
return 102401
end,
known = 102401,
cast = 0,
cooldown = 15,
gcd = "spell",
startsCombat = true,
-- texture = 538771,
talent = "wild_charge",
usable = function () return target.exists and target.distance > 7, "target must be 8+ yards away" end,
handler = function ()
if buff.bear_form.up then target.distance = 5; applyDebuff( "target", "immobilized" )
elseif buff.cat_form.up then target.distance = 5; applyDebuff( "target", "dazed" ) end
end,
copy = { 49376, 16979, 102401, 102383 }
},
wild_growth = {
id = 48438,
cast = 1.5,
cooldown = 10,
gcd = "spell",
spend = 0.22,
spendType = "mana",
startsCombat = false,
texture = 236153,
handler = function ()
applyBuff( "wild_growth" )
end,
},
--[[ wrath = {
id = 5176,
cast = 1.5,
cooldown = 0,
gcd = "spell",
spend = 0.01,
spendType = "mana",
startsCombat = true,
texture = 535045,
handler = function ()
if buff.moonkin_form.down then unshift() end
removeStack( "solar_empowerment" )
end,
}, ]]
} )
spec:RegisterOptions( {
enabled = true,
aoe = 3,
nameplates = true,
nameplateRange = 8,
damage = true,
damageExpiration = 6,
potion = "spectral_agility",
package = "Guardian",
} )
spec:RegisterSetting( "maul_rage", 20, {
name = "Excess Rage for |T132136:0|t Maul",
desc = "If set above zero, the addon will recommend |T132136:0|t Maul only if you have at least this much excess Rage.",
type = "range",
min = 0,
max = 60,
step = 0.1,
width = "full"
} )
spec:RegisterSetting( "mangle_more", false, {
name = "Use |T132135:0|t Mangle More in Multi-Target",
desc = "If checked, the default priority will recommend |T132135:0|t Mangle more often in |cFFFFD100multi-target|r scenarios. This will generate roughly 15% more Rage and allow for more mitigation (or |T132136:0|t Maul) than otherwise, " ..
"funnel slightly more damage into your primary target, but will |T134296:0|t Swipe less often, dealing less damage/threat to your secondary targets.",
type = "toggle",
width = "full",
} )
spec:RegisterSetting( "ironfur_damage_threshold", 5, {
name = "Required Damage % for |T1378702:0|t Ironfur",
desc = "If set above zero, the addon will not recommend |T1378702:0|t Ironfur unless your incoming damage for the past 5 seconds is greater than this percentage of your maximum health.",
type = "range",
min = 0,
max = 100,
step = 0.1,
width = "full"
} )
spec:RegisterSetting( "shift_for_convoke", false, {
name = "|T3636839:0|t Powershift for Convoke the Spirits",
desc = "If checked and you are a Night Fae, the addon will recommend swapping to your Feral/Balance Affinity specialization before using |T3636839:0|t Convoke the Spirits. " ..
"This is a DPS gain unless you die horribly.",
type = "toggle",
width = "full"
} )
spec:RegisterSetting( "catweave_bear", false, {
name = "|T132115:0|t Attempt Catweaving (Experimental)",
desc = function()
local affinity
if state.talent.feral_affinity.enabled then
affinity = "|cFF00FF00" .. ( GetSpellInfo( 202155 ) ) .. "|r"
else
affinity = "|cFFFF0000" .. ( GetSpellInfo( 202155 ) ) .. "|r"
end
return "If checked, the addon will use the experimental |cFFFFD100catweave|r priority included in the default priority pack.\n\nRequires " .. affinity .. "."
end,
type = "toggle",
width = "full",
} )
spec:RegisterSetting( "owlweave_bear", false, {
name = "|T136036:0|t Attempt Owlweaving (Experimental)",
desc = function()
local affinity
if state.talent.balance_affinity.enabled then
affinity = "|cFF00FF00" .. ( GetSpellInfo( 197488 ) ) .. "|r"
else
affinity = "|cFFFF0000" .. ( GetSpellInfo( 197488 ) ) .. "|r"
end
return "If checked, the addon will use the experimental |cFFFFD100owlweave|r priority included in the default priority pack.\n\nRequires " .. affinity .. "."
end,
type = "toggle",
width = "full"
} )
spec:RegisterPack( "Guardian", 20210705, [[dCeCRbqivqpsLuztOIpjijJsL4uQqRsqk8kvGzbPClvsr2fL(ffXWGu1XOiTmvk9muLAAcsCnuLSniv03eKuJtLu4CQKswNkPOmpvsUhQ0(uP4GQKsLfkiEOkPktuLuuDrbPOpQskLtcPsTsvQMPkPQ6MQKsv7evv)esL4PqmvufFvLuv2lk)LudgQdtSyqEmjtwQUmYMf6ZqYOLsNw0QHuj9AkQzlPBtHDR43knCP44qQWYv1ZLy6uDDqTDv03fy8cs15rvz9csP5lO2pWmtz8Wq6Itm(Vf93Ak6d1ONxw0Fn4fVV9AWqC(AigsJOmlOigYiged5Adw(EkddPr4RUsNXddPSWVIyiTU3uUMzIjOsVfgYQwdtkPbCv8Ch1lr3KsAOmHHabNvhDpmigsxCIX)TO)wtrFOg98YI(RbV49THAgIa7T7ZqqsJRhdPn7DAyqmKovumKRny57Pma818ho7G73HR8bW8cna(w0Fl6b3b3VETYGIkxZa3VMay09O2VzFXja(6jUjx73DmNda385(PNubGVKraUqUNdkaolaSQLuMP(rl4(1eaJUh1(n7lobWBJN7aW(cWL2m6a8L9b4z9Jamef3Na4R3oNRzYYqQzXlmEyiv(uYllJhg)MY4HHikp3HHyS7yohDCFdgcncuL6SqyoZziqK8mEy8BkJhgcncuL6SqyiQpD6tHHCiadbhJwisEDCFdlCddruEUddbIKxh33G5m(VLXddruEUdd5LtAw4Io(0eA5JHqJavPoleMZ4N3mEyi0iqvQZcHHO(0PpfgYHaC)HZUvjEajNKgIKhG5aWhcW9ho72nOgqYjPHi5ziIYZDyiQDoxZK2BjDPj)0lmNXFOW4HHqJavPolegI6tN(uyixayi4y0(YjnlCrhFAcT8zHBa4WHb4dby1EsJmU9KgVLVhGpYqeLN7WqGOVqVzMZ4NxmEyi0iqvQZcHHO(0PpfgYfagcogTVCsZcx0XNMqlFw4gaoCya(qawTN0iJBpPXB57b4Jmer55omKCuYpIN7WCg)OtgpmeAeOk1zHWquF60Ncd5cadbhJwi6l0BwdrYBHBa4WHbyi4y0MJs(r8Chnky57Pm6nQH)YQSWna8rgIO8Chgce9f6nNdkMZ4puZ4HHqJavPolegI6tN(uyixa4db4(6wPlnEEs6sG8g6UyiOiRNkZ5GcG5aWhcWIYZDSsxA88K0La5n0DXqqr2C0XAIQ1byoa8fa(qaUVUv6sJNNKUeiVHULKQ1tL5CqbWHddW91TsxA88K0La5n0TKuTpzi5ua4BayEdWhb4WHb4(6wPlnEEs6sG8g6UyiOiBXfLza(kaM3amhaUVUv6sJNNKUeiVHUlgckY(KHKtbGVcG5faZbG7RBLU045jPlbYBO7IHGISEQmNdka(idruEUddr6sJNNKUeiVbZz8Fny8WqOrGQuNfcdr9PtFkmKNIpvAfOkbWHddW91TE7lLwnejVT4IYmaFfaZBaoCya(ca3x36TVuA1qK82IlkZa8vaCOaWCa4hEO4(OiBfogLCIWfQRjdOxuKLqhWztd1b4JaC4WaSO88K00qgjva4B4cWHcdruEUddXBFP0QHi5zoJ)RfJhgcncuL6SqyiQpD6tHHCbGVaWqWXOfLufLNknky57Pmw4ga(iaZbGfLNNKMgYiPcaFfaFlaFeGdhgGVaWxayi4y0IsQIYtLgfS89uglCdaFeG5aWhcW91Tg7oX8jRNkZ5GcG5aWIYZtstdzKubGVbGnfG5aWU8Oi36PbP9v3tcGVbGn9wa(idruEUddXy3jMpXCg)MIEgpmeAeOk1zHWquF60Ncd5ca3x3AS7eZNSpzi5ua4R4cW8gG5aWxayi4y0IsQIYtLgfS89uglCdaFeG5aWIYZtstdzKubGVbG5faZbGD5rrU1tds7RUNeaFdaB6Ta8rgIO8ChgIXUtmFI5m(n1ugpmeAeOk1zHWquF60Ncd5fuKTtXuLoaFdaBk6byoaCHCphufRHmOQK2yFIHikp3HHyidQkXCg)MElJhgcncuL6SqyiQpD6tHHCbGFk(uPvGQeaZbGfLNNKMgYiPcaFfaFlaZbGD5rrU1tds7RUNeaFdaB6Ta8raoCya(caFia3x3AS7eZNSEQmNdkaMdalkppjnnKrsfa(ga2uaMda7YJICRNgK2xDpja(ga20Bb4Jmer55omeJDNy(eZz8BkVz8WqOrGQuNfcdr9PtFkmKYcxHYPBBGloCL00d345owAeOk1byoa8fa(caR2T23GX6TVuA1qK82NmKCka8nam6byoaSA3AFdgRHmOQK9jdjNcaFdaJEa(iaZbGVaW91Tg7oX8j7tgsofa(gUamVb4Jamha(cadbhJ2CuYpIN7OrblFpLrVrn8xwLTVbdaZbGHGJrle9f6nRHi5T9nyayoameCmArjvr5PsJcw(EkJTVbdaFeGpcWHddWLfUcLt3EUvXZkPlB9Kg3sJavPodjhN(hUX1zKHuw4kuoD75wfpRKUS1tACoxu7w7BWy92xkTAisE7tgsoLBqph1U1(gmwdzqvj7tgsoLBq)rgsoo9pCJRtddQNItmetziIYZDyiXkvAvVeDgsoo9pCJRrvxiPYqmL5m(nnuy8WqOrGQuNfcdr9PtFkmei4y0MJs(r8Chnky57Pm6nQH)YQS9nyayoameCmAHOVqVznejVTVbdaZbGfLNNKMgYiPcaFdxaouyiIYZDyiLGSH0qK8mNXVP8IXddHgbQsDwime1No9PWqGGJrBok5hXZDSWnamhawuEEsAAiJKka8va8TaC4WameCmAHOVqVznejVfUbG5aWIYZtstdzKubGVcGVLHikp3HHyiWvMZ43u0jJhgcncuL6SqyiQpD6tHHCbGHGJrBrofuKwTgqIlJBlUOmdW3WfGnfGpcWCa4lameCmA9D9wTmDTQkbw4ga(iaZbGHGJrBok5hXZDSWnamhawuEEsAAiJKkamxa(wgIO8ChgIHaxzoJFtd1mEyi0iqvQZcHHO(0PpfgceCmAZrj)iEUJfUbG5aWIYZtstdzKubGVIlaZBgIO8ChgIHmOQeZz8B61GXddHgbQsDwime1No9PWqUaWxa4lameCmA9D9wTmDTQkb2IlkZa8nCb4Bb4JaC4Wa8fagcogT(UERwMUwvLalCdaZbGHGJrRVR3QLPRvvjW(KHKtbGVcGn1Yla(iahomaFbGHGJrBrofuKwTgqIlJBlUOmdW3WfG5naFeGpcWCayr55jPPHmsQaWxbW8gGpYqeLN7Wqme4kZz8B61IXddHgbQsDwime1No9PWqeLNNKMgYiPcaFdaBkdruEUddXBFP0QHi5zoJ)BrpJhgcncuL6SqyiQpD6tHHCbGVaWVGIa4Ra4Rf6b4JamhawuEEsAAiJKka8vamVb4JaC4Wa8fa(ca)ckcGVcGVg8cGpcWCayr55jPPHmsQaWxbW8gG5aWUuPXTLfUQ3O2BjDCFQ4wAeOk1b4Jmer55omedzqvjMZ4)wtz8WqOrGQuNfcdruEUddPbUEsFgAjgI6tN(uyi91TE7lLwnejVT4IYmaFdaFldrXNQsAxEuKxy8BkZz8F7TmEyiIYZDyiE7lLwnejpdHgbQsDwimNX)T8MXddHgbQsDwime1No9PWqeLNNKMgYiPcaFfaZBgIO8ChgIHaxzoJ)Bdfgpmer55omKsq2qAisEgcncuL6SqyoJ)B5fJhgcncuL6SqyiQpD6tHH8ckY2PyQshGVcGdf0dWCayi4y0M)or43(KHKtbGVcGrVLxmer55omK83jc)mN5meJ0tuIN7W4HXVPmEyi0iqvQZcHHO(0PpfgsoQ1ihu6UyiOinVka8naC(7eHFDxmeuK2BFQ0U1oaZbGHGJrB(7eHF7tgsofa(kaM3aCOba3kfNyiIYZDyi5Vte(zoJ)Bz8WqOrGQuNfcdr9PtFkmexgZ5GcG5aWTKu9wBJYb4Ray0jVyiIYZDyipnuGuzoJFEZ4HHqJavPolegI6tN(uyiUmMZbfaZbGBjP6T2gLdWxbWOtEXqeLN
end