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.
1015 lines
55 KiB
1015 lines
55 KiB
|
5 years ago
|
-- HunterMarksmanship.lua
|
||
|
|
-- June 2018
|
||
|
|
|
||
|
|
local addon, ns = ...
|
||
|
|
local Hekili = _G[ addon ]
|
||
|
|
|
||
|
|
local class = Hekili.Class
|
||
|
|
local state = Hekili.State
|
||
|
|
|
||
|
|
local PTR = ns.PTR
|
||
|
|
|
||
|
|
|
||
|
|
-- Shadowlands Legendaries
|
||
|
|
-- [x] Eagletalon's True Focus
|
||
|
|
-- [-] Surging Shots (passive/reactive)
|
||
|
|
-- [-] Serpentstalker's Trickery (passive/reactive)
|
||
|
|
-- [-] Secrets of the Unblinking Vigil (passive/reactive)
|
||
|
|
|
||
|
|
-- Conduits
|
||
|
|
-- [x] Brutal Projectiles
|
||
|
|
-- [-] Deadly Chain
|
||
|
|
-- [-] Powerful Precision
|
||
|
|
-- [x] Sharpshooter's Focus
|
||
|
|
|
||
|
|
|
||
|
|
if UnitClassBase( "player" ) == "HUNTER" then
|
||
|
|
local spec = Hekili:NewSpecialization( 254, true )
|
||
|
|
|
||
|
|
spec:RegisterResource( Enum.PowerType.Focus, {
|
||
|
|
death_chakram = {
|
||
|
|
aura = "death_chakram",
|
||
|
|
|
||
|
|
last = function ()
|
||
|
|
return state.buff.death_chakram.applied + floor( state.query_time - state.buff.death_chakram.applied )
|
||
|
|
end,
|
||
|
|
|
||
|
|
interval = function () return class.auras.death_chakram.tick_time end,
|
||
|
|
value = function () return state.conduit.necrotic_barrage.enabled and 5 or 3 end,
|
||
|
|
},
|
||
|
|
rapid_fire = {
|
||
|
|
channel = "rapid_fire",
|
||
|
|
|
||
|
|
last = function ()
|
||
|
|
local app = state.buff.casting.applied
|
||
|
|
local t = state.query_time
|
||
|
|
|
||
|
|
return app + floor( ( t - app ) / class.auras.rapid_fire.tick_time ) * class.auras.rapid_fire.tick_time
|
||
|
|
end,
|
||
|
|
|
||
|
|
interval = function () return class.auras.rapid_fire.tick_time * ( state.buff.trueshot.up and 0.667 or 1 ) end,
|
||
|
|
value = 1,
|
||
|
|
}
|
||
|
|
} )
|
||
|
|
|
||
|
|
-- Talents
|
||
|
|
spec:RegisterTalents( {
|
||
|
|
master_marksman = 22279, -- 260309
|
||
|
|
serpent_sting = 22501, -- 271788
|
||
|
|
a_murder_of_crows = 22289, -- 131894
|
||
|
|
|
||
|
|
careful_aim = 22495, -- 260228
|
||
|
|
barrage = 22497, -- 120360
|
||
|
|
explosive_shot = 22498, -- 212431
|
||
|
|
|
||
|
|
trailblazer = 19347, -- 199921
|
||
|
|
natural_mending = 19348, -- 270581
|
||
|
|
camouflage = 23100, -- 199483
|
||
|
|
|
||
|
|
steady_focus = 22267, -- 193533
|
||
|
|
streamline = 22286, -- 260367
|
||
|
|
chimaera_shot = 21998, -- 342049
|
||
|
|
|
||
|
|
born_to_be_wild = 22268, -- 266921
|
||
|
|
posthaste = 22276, -- 109215
|
||
|
|
binding_shackles = 23463, -- 321468
|
||
|
|
|
||
|
|
lethal_shots = 23063, -- 260393
|
||
|
|
dead_eye = 23104, -- 321460
|
||
|
|
double_tap = 22287, -- 260402
|
||
|
|
|
||
|
|
calling_the_shots = 22274, -- 260404
|
||
|
|
lock_and_load = 22308, -- 194595
|
||
|
|
volley = 22288, -- 260243
|
||
|
|
} )
|
||
|
|
|
||
|
|
-- PvP Talents
|
||
|
|
spec:RegisterPvpTalents( {
|
||
|
|
dire_beast_basilisk = 825, -- 205691
|
||
|
|
dire_beast_hawk = 824, -- 208652
|
||
|
|
dragonscale_armor = 3600, -- 202589
|
||
|
|
hiexplosive_trap = 3605, -- 236776
|
||
|
|
hunting_pack = 3730, -- 203235
|
||
|
|
interlope = 1214, -- 248518
|
||
|
|
roar_of_sacrifice = 3612, -- 53480
|
||
|
|
scorpid_sting = 3604, -- 202900
|
||
|
|
spider_sting = 3603, -- 202914
|
||
|
|
survival_tactics = 3599, -- 202746
|
||
|
|
the_beast_within = 693, -- 212668
|
||
|
|
viper_sting = 3602, -- 202797
|
||
|
|
wild_protector = 821, -- 204190
|
||
|
|
} )
|
||
|
|
|
||
|
|
-- Auras
|
||
|
|
spec:RegisterAuras( {
|
||
|
|
a_murder_of_crows = {
|
||
|
|
id = 131894,
|
||
|
|
duration = 15,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
aspect_of_the_turtle = {
|
||
|
|
id = 186265,
|
||
|
|
duration = 8,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
binding_shot = {
|
||
|
|
id = 117526,
|
||
|
|
duration = 8,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
bursting_shot = {
|
||
|
|
id = 186387,
|
||
|
|
duration = 6,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
camouflage = {
|
||
|
|
id = 199483,
|
||
|
|
duration = 60,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
concussive_shot = {
|
||
|
|
id = 5116,
|
||
|
|
duration = 6,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
dead_eye = {
|
||
|
|
id = 321461,
|
||
|
|
duration = 3,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
double_tap = {
|
||
|
|
id = 260402,
|
||
|
|
duration = 15,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
eagle_eye = {
|
||
|
|
id = 6197,
|
||
|
|
},
|
||
|
|
explosive_shot = {
|
||
|
|
id = 212431,
|
||
|
|
duration = 3,
|
||
|
|
type = "Magic",
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
feign_death = {
|
||
|
|
id = 5384,
|
||
|
|
duration = 360,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
freezing_trap = {
|
||
|
|
id = 3355,
|
||
|
|
duration = 60,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
hunters_mark = {
|
||
|
|
id = 257284,
|
||
|
|
duration = 3600,
|
||
|
|
type = "Magic",
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
lethal_shots = {
|
||
|
|
id = 260393,
|
||
|
|
duration = 3600,
|
||
|
|
},
|
||
|
|
lock_and_load = {
|
||
|
|
id = 194594,
|
||
|
|
duration = 15,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
lone_wolf = {
|
||
|
|
id = 164273,
|
||
|
|
duration = 3600,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
master_marksman = {
|
||
|
|
id = 269576,
|
||
|
|
duration = 12,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
misdirection = {
|
||
|
|
id = 34477,
|
||
|
|
duration = 8,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
pathfinding = {
|
||
|
|
id = 264656,
|
||
|
|
duration = 3600,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
posthaste = {
|
||
|
|
id = 118922,
|
||
|
|
duration = 4,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
precise_shots = {
|
||
|
|
id = 260242,
|
||
|
|
duration = 15,
|
||
|
|
max_stack = 2,
|
||
|
|
},
|
||
|
|
rapid_fire = {
|
||
|
|
id = 257044,
|
||
|
|
duration = function () return 2 * haste end,
|
||
|
|
tick_time = function ()
|
||
|
|
return ( 2 * haste ) / ( buff.double_tap.up and 14 or 7 )
|
||
|
|
end,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
serpent_sting = {
|
||
|
|
id = 271788,
|
||
|
|
duration = 18,
|
||
|
|
type = "Poison",
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
steady_focus = {
|
||
|
|
id = 193534,
|
||
|
|
duration = 15,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
streamline = {
|
||
|
|
id = 342076,
|
||
|
|
duration = 15,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
survival_of_the_fittest = {
|
||
|
|
id = 281195,
|
||
|
|
duration = 6,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
tar_trap = {
|
||
|
|
id = 135299,
|
||
|
|
duration = 30,
|
||
|
|
max_stack = 1
|
||
|
|
},
|
||
|
|
trailblazer = {
|
||
|
|
id = 231390,
|
||
|
|
duration = 3600,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
trick_shots = {
|
||
|
|
id = 257622,
|
||
|
|
duration = 20,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
trueshot = {
|
||
|
|
id = 288613,
|
||
|
|
duration = function () return ( legendary.eagletalons_true_focus.enabled and 20 or 15 ) * ( 1 + ( conduit.sharpshooters_focus.mod * 0.01 ) ) end,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
volley = {
|
||
|
|
id = 257622,
|
||
|
|
duration = 6,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
-- Legendaries
|
||
|
|
nessingwarys_trapping_apparatus = {
|
||
|
|
id = 336744,
|
||
|
|
duration = 5,
|
||
|
|
max_stack = 1,
|
||
|
|
copy = { "nesingwarys_trapping_apparatus", "nesingwarys_apparatus", "nessingwarys_apparatus" }
|
||
|
|
}
|
||
|
|
} )
|
||
|
|
|
||
|
|
|
||
|
|
spec:RegisterStateExpr( "ca_execute", function ()
|
||
|
|
return talent.careful_aim.enabled and ( target.health.pct > 70 )
|
||
|
|
end )
|
||
|
|
|
||
|
|
spec:RegisterStateExpr( "ca_active", function ()
|
||
|
|
return talent.careful_aim.enabled and ( target.health.pct > 70 )
|
||
|
|
end )
|
||
|
|
|
||
|
|
|
||
|
|
local steady_focus_applied = 0
|
||
|
|
|
||
|
|
spec:RegisterEvent( "COMBAT_LOG_EVENT_UNFILTERED", function( event, _, subtype, _, sourceGUID, sourceName, _, _, destGUID, destName, destFlags, _, spellID, spellName, _, amount, interrupt, a, b, c, d, offhand, multistrike, ... )
|
||
|
|
local _, subtype, _, sourceGUID, sourceName, _, _, destGUID, destName, destFlags, _, spellID, spellName = CombatLogGetCurrentEventInfo()
|
||
|
|
|
||
|
|
if sourceGUID == state.GUID and ( subtype == "SPELL_AURA_APPLIED" or subtype == "SPELL_AURA_REFRESH" or subtype == "SPELL_AURA_APPLIED_DOSE" ) and spellID == 193534 then -- Steady Aim.
|
||
|
|
steady_focus_applied = GetTime()
|
||
|
|
end
|
||
|
|
end )
|
||
|
|
|
||
|
|
spec:RegisterStateExpr( "last_steady_focus", function ()
|
||
|
|
return steady_focus_applied
|
||
|
|
end )
|
||
|
|
|
||
|
|
|
||
|
|
local ExpireNesingwarysTrappingApparatus = setfenv( function()
|
||
|
|
focus.regen = focus.regen * 0.5
|
||
|
|
forecastResources( "focus" )
|
||
|
|
end, state )
|
||
|
|
|
||
|
|
|
||
|
|
spec:RegisterHook( "reset_precast", function ()
|
||
|
|
if now - action.serpent_sting.lastCast < gcd.execute * 2 and target.unit == action.serpent_sting.lastUnit then
|
||
|
|
applyDebuff( "target", "serpent_sting" )
|
||
|
|
end
|
||
|
|
|
||
|
|
if debuff.tar_trap.up then
|
||
|
|
debuff.tar_trap.expires = debuff.tar_trap.applied + 30
|
||
|
|
end
|
||
|
|
|
||
|
|
if buff.nesingwarys_apparatus.up then
|
||
|
|
state:QueueAuraExpiration( "nesingwarys_apparatus", ExpireCelestialAlignment, buff.nesingwarys_apparatus.expires )
|
||
|
|
end
|
||
|
|
|
||
|
|
if now - action.volley.lastCast < 6 then applyBuff( "volley", 6 - ( now - action.volley.lastCast ) ) end
|
||
|
|
|
||
|
|
if now - action.resonating_arrow.lastCast < 6 then applyBuff( "resonating_arrow", 10 - ( now - action.resonating_arrow.lastCast ) ) end
|
||
|
|
|
||
|
|
last_steady_focus = nil
|
||
|
|
end )
|
||
|
|
|
||
|
|
|
||
|
|
spec:RegisterStateTable( "tar_trap", setmetatable( {}, {
|
||
|
|
__index = function( t, k )
|
||
|
|
return debuff.tar_trap[ k ]
|
||
|
|
end
|
||
|
|
}, state ) )
|
||
|
|
|
||
|
|
|
||
|
|
-- Abilities
|
||
|
|
spec:RegisterAbilities( {
|
||
|
|
a_murder_of_crows = {
|
||
|
|
id = 131894,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 60,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 645217,
|
||
|
|
|
||
|
|
talent = "a_murder_of_crows",
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyDebuff( "target", "a_murder_of_crows" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
aimed_shot = {
|
||
|
|
id = 19434,
|
||
|
|
cast = function ()
|
||
|
|
if buff.lock_and_load.up then return 0 end
|
||
|
|
return 2.5 * haste * ( buff.trueshot.up and 0.5 or 1 ) * ( buff.streamline.up and 0.7 or 1 )
|
||
|
|
end,
|
||
|
|
|
||
|
|
charges = 2,
|
||
|
|
cooldown = function () return haste * ( buff.trueshot.up and 4.8 or 12 ) end,
|
||
|
|
recharge = function () return haste * ( buff.trueshot.up and 4.8 or 12 ) end,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function () return buff.lock_and_load.up and 0 or ( ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 35 ) end,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 135130,
|
||
|
|
|
||
|
|
cycle = function () return runeforge.serpentstalkers_trickery.enabled and "serpent_sting" or nil end,
|
||
|
|
|
||
|
|
usable = function ()
|
||
|
|
if action.aimed_shot.cast > 0 and moving and settings.prevent_hardcasts then return false, "prevent_hardcasts is checked and player is moving" end
|
||
|
|
return true
|
||
|
|
end,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyBuff( "precise_shots" )
|
||
|
|
removeBuff( "lock_and_load" )
|
||
|
|
removeBuff( "double_tap" )
|
||
|
|
if buff.volley.down then removeBuff( "trick_shots" ) end
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
arcane_shot = {
|
||
|
|
id = 185358,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 0,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 132218,
|
||
|
|
|
||
|
|
notalent = "chimaera_shot",
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
if talent.calling_the_shots.enabled then cooldown.trueshot.expires = max( 0, cooldown.trueshot.expires - 2.5 ) end
|
||
|
|
removeStack( "precise_shots" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
aspect_of_the_cheetah = {
|
||
|
|
id = 186257,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = function () return ( 180 * ( legendary.call_of_the_wild.enabled and 0.75 or 1 ) * ( talent.born_to_be_wild.enabled and 0.8 or 1 ) ) + ( conduit.cheetahs_vigor.mod * 0.001 ) end,
|
||
|
|
gcd = "off",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 132242,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyBuff( "aspect_of_the_cheetah" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
aspect_of_the_turtle = {
|
||
|
|
id = 186265,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = function () return ( 180 * ( legendary.call_of_the_wild.enabled and 0.75 or 1 ) * ( talent.born_to_be_wild.enabled and 0.8 or 1 ) ) + ( conduit.harmony_of_the_tortollan.mod * 0.001 ) end,
|
||
|
|
gcd = "off",
|
||
|
|
|
||
|
|
toggle = "defensives",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 132199,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyBuff( "aspect_of_the_turtle" )
|
||
|
|
setCooldown( "global_cooldown", 5 )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
barrage = {
|
||
|
|
id = 120360,
|
||
|
|
cast = 3,
|
||
|
|
channeled = true,
|
||
|
|
cooldown = 20,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 30 end,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 236201,
|
||
|
|
|
||
|
|
talent = "barrage",
|
||
|
|
|
||
|
|
start = function ()
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
binding_shot = {
|
||
|
|
id = 109248,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 45,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 462650,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyDebuff( "target", "binding_shot" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
bursting_shot = {
|
||
|
|
id = 186387,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 30,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 10 end,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 1376038,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyDebuff( "target", "bursting_shot" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
camouflage = {
|
||
|
|
id = 199483,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 60,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 461113,
|
||
|
|
|
||
|
|
usable = function () return time == 0 end,
|
||
|
|
handler = function ()
|
||
|
|
applyBuff( "camouflage" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
concussive_shot = {
|
||
|
|
id = 5116,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 5,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 135860,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyDebuff( "target", "concussive_shot" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
chimaera_shot = {
|
||
|
|
id = 342049,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 0,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 236176,
|
||
|
|
|
||
|
|
talent = "chimaera_shot",
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
if talent.calling_the_shots.enabled then cooldown.trueshot.expires = max( 0, cooldown.trueshot.expires - 2.5 ) end
|
||
|
|
removeStack( "precise_shots" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
counter_shot = {
|
||
|
|
id = 147362,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 24,
|
||
|
|
gcd = "off",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 249170,
|
||
|
|
|
||
|
|
toggle = "interrupts",
|
||
|
|
|
||
|
|
debuff = "casting",
|
||
|
|
readyTime = state.timeToInterrupt,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
if conduit.reversal_of_fortune.enabled then
|
||
|
|
gain( conduit.reversal_of_fortune.mod, "focus" )
|
||
|
|
end
|
||
|
|
|
||
|
|
interrupt()
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
disengage = {
|
||
|
|
id = 781,
|
||
|
|
cast = 0,
|
||
|
|
charges = 1,
|
||
|
|
cooldown = 20,
|
||
|
|
recharge = 20,
|
||
|
|
gcd = "off",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 132294,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
if talent.posthaste.enabled then applyBuff( "posthaste" ) end
|
||
|
|
if conduit.tactical_retreat.enabled and target.within8 then applyDebuff( "target", "tactical_retreat" ) end
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
double_tap = {
|
||
|
|
id = 260402,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 60,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
toggle = "cooldowns",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 537468,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyBuff( "double_tap" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
--[[ eagle_eye = {
|
||
|
|
id = 6197,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 0,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 132172,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
end,
|
||
|
|
}, ]]
|
||
|
|
|
||
|
|
|
||
|
|
exhilaration = {
|
||
|
|
id = 109304,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 120,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
toggle = "defensives",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 461117,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
gain( 0.3 * health.max, "health" )
|
||
|
|
if conduit.rejuvenating_wind.enabled then applyBuff( "rejuvenating_wind" ) end
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
explosive_shot = {
|
||
|
|
id = 212431,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 30,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 236178,
|
||
|
|
|
||
|
|
talent = "explosive_shot",
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyDebuff( "target", "explosive_shot" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
--[[ Using from BM module.
|
||
|
|
feign_death = {
|
||
|
|
id = 5384,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 30,
|
||
|
|
gcd = "off",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 132293,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyBuff( "feign_death" )
|
||
|
|
end,
|
||
|
|
}, ]]
|
||
|
|
|
||
|
|
|
||
|
|
--[[ flare = {
|
||
|
|
id = 1543,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 20,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 135815,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
end,
|
||
|
|
}, ]]
|
||
|
|
|
||
|
|
|
||
|
|
freezing_trap = {
|
||
|
|
id = 187650,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 30,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function ()
|
||
|
|
if legendary.nessingwarys_trapping_apparatus.enabled then
|
||
|
|
return -45, "focus"
|
||
|
|
end
|
||
|
|
end,
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 135834,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyDebuff( "target", "freezing_trap" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
hunters_mark = {
|
||
|
|
id = 257284,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 0,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 236188,
|
||
|
|
|
||
|
|
usable = function () return debuff.hunters_mark.down end,
|
||
|
|
handler = function ()
|
||
|
|
applyDebuff( "target", "hunters_mark" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
masters_call = {
|
||
|
|
id = 272682,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 45,
|
||
|
|
gcd = "off",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 236189,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyBuff( "masters_call" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
misdirection = {
|
||
|
|
id = 34477,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 30,
|
||
|
|
gcd = "off",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 132180,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyBuff( "misdirection" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
multishot = {
|
||
|
|
id = 257620,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 0,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 20 end,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 132330,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
if talent.calling_the_shots.enabled then cooldown.trueshot.expires = max( 0, cooldown.trueshot.expires - 2.5 ) end
|
||
|
|
if active_enemies > 2 then applyBuff( "trick_shots" ) end
|
||
|
|
removeStack( "precise_shots" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
rapid_fire = {
|
||
|
|
id = 257044,
|
||
|
|
cast = function () return ( 2 * haste ) end,
|
||
|
|
channeled = true,
|
||
|
|
cooldown = function () return ( buff.trueshot.up and 8 or 20 ) * haste end,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = 0,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 461115,
|
||
|
|
|
||
|
|
start = function ()
|
||
|
|
applyBuff( "rapid_fire" )
|
||
|
|
if buff.volley.down then removeBuff( "trick_shots" ) end
|
||
|
|
if talent.streamline.enabled then applyBuff( "streamline" ) end
|
||
|
|
removeBuff( "brutal_projectiles" )
|
||
|
|
end,
|
||
|
|
|
||
|
|
finish = function ()
|
||
|
|
removeBuff( "double_tap" )
|
||
|
|
end,
|
||
|
|
|
||
|
|
auras = {
|
||
|
|
-- Conduit
|
||
|
|
brutal_projectiles = {
|
||
|
|
id = 339929,
|
||
|
|
duration = 3600,
|
||
|
|
max_stack = 1,
|
||
|
|
},
|
||
|
|
}
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
serpent_sting = {
|
||
|
|
id = 271788,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 0,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function () return ( legendary.eagletalons_true_focus.enabled and buff.trueshot.up and 0.5 or 1 ) * 10 end,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 1033905,
|
||
|
|
|
||
|
|
velocity = 45,
|
||
|
|
|
||
|
|
talent = "serpent_sting",
|
||
|
|
|
||
|
|
impact = function ()
|
||
|
|
applyDebuff( "target", "serpent_sting" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
steady_shot = {
|
||
|
|
id = 56641,
|
||
|
|
cast = 1.8,
|
||
|
|
cooldown = 0,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function () return buff.trueshot.up and -15 or -10 end,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 132213,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
if talent.steady_focus.enabled and prev[1].steady_shot and action.steady_shot.lastCast > last_steady_focus then
|
||
|
|
applyBuff( "steady_focus" )
|
||
|
|
last_steady_focus = query_time
|
||
|
|
end
|
||
|
|
if debuff.concussive_shot.up then debuff.concussive_shot.expires = debuff.concussive_shot.expires + 3 end
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
summon_pet = {
|
||
|
|
id = 883,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 0,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
essential = true,
|
||
|
|
|
||
|
|
texture = function () return GetStablePetInfo(1) or 'Interface\\ICONS\\Ability_Hunter_BeastCall' end,
|
||
|
|
nomounted = true,
|
||
|
|
|
||
|
|
usable = function () return false and not pet.exists end, -- turn this into a pref!
|
||
|
|
handler = function ()
|
||
|
|
summonPet( "made_up_pet", 3600, "ferocity" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
survival_of_the_fittest = {
|
||
|
|
id = function () return pet.exists and 264735 or 281195 end,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 180,
|
||
|
|
gcd = "off",
|
||
|
|
known = function ()
|
||
|
|
if not pet.exists then return 155228 end
|
||
|
|
end,
|
||
|
|
|
||
|
|
toggle = "defensives",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
|
||
|
|
usable = function ()
|
||
|
|
return not pet.exists or pet.alive, "requires either no pet or a living pet"
|
||
|
|
end,
|
||
|
|
handler = function ()
|
||
|
|
applyBuff( "survival_of_the_fittest" )
|
||
|
|
end,
|
||
|
|
|
||
|
|
copy = { 264735, 281195, 155228 }
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
tar_trap = {
|
||
|
|
id = 187698,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = function () return level > 55 and 25 or 30 end,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = function ()
|
||
|
|
if legendary.nessingwarys_trapping_apparatus.enabled then
|
||
|
|
return -45, "focus"
|
||
|
|
end
|
||
|
|
end,
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 576309,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyDebuff( "target", "tar_trap" )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
trueshot = {
|
||
|
|
id = 288613,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 120,
|
||
|
|
gcd = "off",
|
||
|
|
|
||
|
|
spend = 0,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
toggle = "cooldowns",
|
||
|
|
|
||
|
|
startsCombat = false,
|
||
|
|
texture = 132329,
|
||
|
|
|
||
|
|
nobuff = function ()
|
||
|
|
if settings.trueshot_vop_overlap then return end
|
||
|
|
return "trueshot"
|
||
|
|
end,
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
focus.regen = focus.regen * 1.5
|
||
|
|
reduceCooldown( "aimed_shot", ( 1 - 0.3077 ) * 12 * haste )
|
||
|
|
reduceCooldown( "rapid_fire", ( 1 - 0.3077 ) * 20 * haste )
|
||
|
|
applyBuff( "trueshot" )
|
||
|
|
|
||
|
|
if azerite.unerring_vision.enabled then
|
||
|
|
applyBuff( "unerring_vision" )
|
||
|
|
end
|
||
|
|
end,
|
||
|
|
|
||
|
|
meta = {
|
||
|
|
duration_guess = function( t )
|
||
|
|
return talent.calling_the_shots.enabled and 90 or t.duration
|
||
|
|
end,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
volley = {
|
||
|
|
id = 260243,
|
||
|
|
cast = 0,
|
||
|
|
cooldown = 45,
|
||
|
|
gcd = "spell",
|
||
|
|
|
||
|
|
spend = 0,
|
||
|
|
spendType = "focus",
|
||
|
|
|
||
|
|
startsCombat = true,
|
||
|
|
texture = 132205,
|
||
|
|
|
||
|
|
talent = "volley",
|
||
|
|
|
||
|
|
handler = function ()
|
||
|
|
applyBuff( "volley" )
|
||
|
|
applyBuff( "trick_shots", 6 )
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
} )
|
||
|
|
|
||
|
|
|
||
|
|
spec:RegisterOptions( {
|
||
|
|
enabled = true,
|
||
|
|
|
||
|
|
aoe = 3,
|
||
|
|
|
||
|
|
nameplates = false,
|
||
|
|
nameplateRange = 8,
|
||
|
|
|
||
|
|
damage = true,
|
||
|
|
damageExpiration = 6,
|
||
|
|
|
||
|
|
potion = "spectral_agility",
|
||
|
|
|
||
|
|
package = "Marksmanship",
|
||
|
|
} )
|
||
|
|
|
||
|
|
|
||
|
|
spec:RegisterSetting( "prevent_hardcasts", false, {
|
||
|
|
name = "Prevent Hardcasts of |T135130:0|t Aimed Shot During Movement",
|
||
|
|
desc = "If checked, the addon will not recommend |T135130:0|t Aimed Shot if it has a cast time and you are moving.",
|
||
|
|
type = "toggle",
|
||
|
|
width = "full"
|
||
|
|
} )
|
||
|
|
|
||
|
|
spec:RegisterSetting( "eagletalon_swap", false, {
|
||
|
|
name = "Use |T132329:0|t Trueshot with Eagletalon's True Focus Runeforge",
|
||
|
|
desc = "If checked, the default priority includes usage of |T132329:0|t Trueshot pre-pull, assuming you will successfully swap " ..
|
||
|
|
"your legendary on your own. The addon will not tell you to swap your gear.",
|
||
|
|
type = "toggle",
|
||
|
|
width = "full",
|
||
|
|
} )
|
||
|
|
|
||
|
|
|
||
|
|
spec:RegisterPack( "Marksmanship", 20210706, [[d8KEccqicQhHaQUeci2er1NqqJcu1PavwLKa6vsIMLQe3cjr7cYVuLQHPkWXOkTmjPNPkLMgscDneOTjjOVHKGXjjqDojHkRdb4Dscj18Ok6EQI2hvH)jjq6GscLwisspuvkMOKqrxusiAJscj(OKqQrkjKKtkjewjbzMQc6Mscf2PQK(jcizOsceTujHQEkv1uvf6RiGuJfjL9Qs)vvnyGdlSyc9yQmzvCzuBgP(mImAq50kTAjbcVgrnBjUTKA3u(TOHtGJJaklxXZHA6KUoiBhj(ocnEKuDEIY6LeG5tK9l1xV3hV(Nq57RvFqvVpGk8Gke59TVLkqfj41xLjGV(cch5GeF9TOMV(vmIHmUommSvW1xqiRKX5(41hNqJJV(e4naMQcWeW7VtAvyqIixw)oERHkHUP5MGwFhV1U3V(IqBrRiSR41)ekFFT6dQ69buHhuHiVV9TuH3wHx)asHLZ13FRFZ1h2EoSDfV(hg7U(vmIHmUommSvqdQOcYuEAHecQiRbv4lnO6dQ696xwSIVpE91zDKXWsfFF8(Q37JxF2cXcFUu967Mv5zJRVgf2uew54i7tNoimITqSWNgiVbR9PlljyAdK3ariAAew54i7tNoimA46ynCd8Sbe86hoDt76JvooY(yyPE17RvVpE9zlel85s1RVBwLNnU(UKcBHPiYYMnSgiVbUmlNKOHggNwORr6hZKerdxhRHBGNnGK70ajPgiCdCjf2ctrKLnBynqEdeUbUKcBHPiBjbt)0b3ajPg4skSfMISLem9thCdK3a4BGlZYjjAiIB58Xc2zvmA46ynCd8SbKCNgij1axMLts0qe3Y5JfSZQy0W1XA4g4rdE7dAaCnqsQbAmKyfPBn)18FwUbE2aVpObssnWLz5Ken0W40cDns)yMKiA46ynCd8ObEFqdK3GWPlf(ZgxVmUbE0G3E9dNUPD9pjKyH)Ai4Q3xF79XRpBHyHpxQE9DZQ8SX1FGmMohsmcNqf6CiXFUwKhmITqSWNgiVbAmFDcbOHRJ1WnWZgqYDAG8g4YSCsIgIUedJgUowd3apBaj356hoDt76RX81jeC17RuX7JxF2cXcFUu96hoDt76txIHV(UzvE246RX81jeGGe0a5nyGmMohsmcNqf6CiXFUwKhmITqSWNRFzn(7ox)Qe8Q3xj49XRF40nTRptDbLeVu4pgwQxF2cXcFUu9Q3xRW7Jx)WPBAxFIB58Xc2zv81NTqSWNlvV69vQW9XRpBHyHpxQE9DZQ8SX13Lz5Ken0W40cDns)yMKiA46ynCd8SbKCNgiVbW3aHBGgf2uetDbLeVu4pgwQi2cXcFAGKudeHOPrILmpfiSIGe0a4AGKudeUbUKcBHPiYYMnSgij1axMLts0qdJtl01i9JzsIOHRJ1WnWJg49bnqsQbIjg3a5nGEjbt)dxhRHBGNnGGx)WPBAxFIXwwJ0pMjjE17RvW3hV(SfIf(CP613nRYZgxFriAA0jHel8xdbiibnqsQbc3ankSPOtcjw4VgcqSfIf(0ajPgiMyCdK3a6Lem9pCDSgUbE2aVvV(Ht30U(dJtl01i9JzsIx9(Af39XRpBHyHpxQE9DZQ8SX1xeIMgnmoTqxJ0pMjjIGe0ajPgiCdCjf2ctrKLnByx)WPBAxFkzPWYU69vVp4(41pC6M21xmMjiXxF2cXcFUu9Q3x969(41pC6M21xhigdl1RpBHyHpxQE17REREF86Zwiw4ZLQxF3SkpBC9hiJPZHeJWqdP1i9XWsfJylel8PbYBa8nWLz5Ken0W40cDns)yMKiA46ynCd8ObEFqdKKAGWnWLuylmfrw2SH1ajPgiCd0OWMIojKyH)AiaXwiw4tdGRbYBGiennsN1r(JHLkgnCDSgUbE8Sbm1zhKYFDR5RF40nTR)ec2ZNEh(Q3x9(27JxF2cXcFUu96hoDt76hBnF(yyPE9DZQ8SX1xeIMgPZ6i)XWsfJgUowd3apE2aM6Sds5VU1CdK3a4BGiennsWWUfZFmSuXOts0AGKudOHkL)WoyXqI)6wZnWZg4cS(1TMBqLnGK70ajPgicrtJ0bIXWsfbjObWD9DYCf(RXqIv89vVx9(QxQ49XRpBHyHpxQE9DZQ8SX1NoDq4guzdCbw)dtITg4zdOthegvhu)6hoDt76F4qH9DWcYtuF17REj49XRpBHyHpxQE9DZQ8SX1h(g4YSCsIg6KqIf(RHa0W1XA4g4rdi5onOcSbeSbYBWazmDoKyegAiTgPpgwQyeBHyHpnqsQbc3axsHTWuezzZgwdKKAGWnqJcBk6KqIf(RHaeBHyHpnaUgiVb0Pdc3GkBGlW6FysS1apBaD6GWO6G6nqEdGVbIq00Otcjw4VgcqNKO1ajPgOrHnfH1HJ6YAmITqSWNga31pC6M21Fcb75tVdF17RERW7JxF2cXcFUu967Mv5zJRViennsN1r(JHLkgDsIwdKKAGiennsWWUfZFmSuXiibnqEdOtheUbE0axI1guzdcNUPHITMpFmSurUeRnqEdGVbc3ankSPihSTo4j(yyPIylel8PbssniC6sH)SX1lJBGhn4TnaURF40nTRFnurxmSuV69vVuH7JxF2cXcFUu967Mv5zJRViennsWWUfZFmSuXiibnqEdOtheUbE0axI1guzdcNUPHITMpFmSurUeRnqEdcNUu4pBC9Y4g4zdOIx)WPBAxFhSTo4j(yyPE17RERGVpE9zlel85s1RVBwLNnU(Iq00OdhNplJrNKOD9dNUPD9jVLYhdl1REF1Bf39XRF40nTRF8RHMdp)K(7MKi(6Zwiw4ZLQx9(A1hCF86hoDt76txcz85JHL61NTqSWNlvV691QEVpE9zlel85s1RF40nTRpMhbSPFSUgPRVBwLNnU(dtpmgwiw4RVtMRWFngsSIVV69Q3xRw9(41NTqSWNlvV(UzvE246tNoiCd8ObUeRnOYgeoDtdfBnF(yyPICjwBG8gaFdCzwojrdnmoTqxJ0pMjjIgUowd3apAabBGKudeUbUKcBHPiYYMnSgij1a60bHBqLnWfy9pmj2AGhnGoDqyuDq9ga31pC6M21VgQOlgwQx9(A13EF86Zwiw4ZLQxF3SkpBC9hiJPZHeJmgJxJeXyKH)6eceSgPFiqqmHcHrSfIf(C9dNUPD91y(6ecU691QuX7JxF2cXcFUu967Mv5zJR)azmDoKyKXy8AKigJm8xNqGG1i9dbcIjuimITqSWNRF40nTRp9WCfWAK(6ecU691Qe8(41NTqSWNlvV(UzvE246lcrtJ0bIXWsfDsI21pC6M21xmi9t6VoRJm(Q3xRwH3hV(Ht30U(yLJJSpgwQxF2cXcFUu9Qx96Fy6aQO3hVV69(41pC6M213LqMYZhdl1RpBHyHpxQE17RvVpE9zlel85s1RF40nTRVlHmLNpgwQxF3SkpBC9hiJPZHeJWSayqva4VGjDLOo0nneBHyHpnqsQb4eQiU2bzRSa)1ml4VGCXPHylel8Pbssna(g4s7aTkAyk8GJYpP)05OqgJylel8PbYBGWnyGmMohsmcZcGbvbG)cM0vI6q30qSfIf(0a4U(L14V7C9F7dU6913EF86Zwiw4ZLQx)WPBAxFDcJadAlBfWAK(yyPE9pm2nRaDt76xrNniGXXPbHDAWJtyeyqBzRa4g8AfKVPbSX1lJFPbe5gCsJqTbNSbkSf3a6CAGGsiJhCdezxaH5gSkHNgiYnqZSbybrDTSge2Pbe5g4cJqTbdhNTiRbpoHrG1aSa2T0RRbIq00y013nRYZgxFHBGgdjwrl(lOeY45Q3xPI3hV(SfIf(CP613nRYZgxFxsHTWuezzZgwdK3axMLts0q6aXyyPIgUowd3a5nWLz5Ken0W40cDns)yMKiA46ynCdKKAGWnWLuylmfrw2SH1a5nWLz5KenKoqmgwQOHRJ1Wx)WPBAxFxuk)WPBA)YI1RFzX63IA(6RZAKzfF17Re8(41NTqSWNlvV(Ht30U(UOu(Ht30(LfRx)YI1Vf1813DWx9(AfEF86Zwi
|
||
|
|
|
||
|
|
|
||
|
|
end
|