# This file is a template makefile used to create the real makefile that # that is passed to NMAKE to build the PRC project. The batch file # make.bat creates the lists of source files and uses ssed to merge them # into this file where the \ placeholders are, then runs the # resultant makefile to build the project. Thus the bat file and this # makefile template form a pair of files that do the build in tandem. # The following directory tree is what the files expect to see: # # scripts - contains all of the source scripts # # 2das - Contains all of the source 2da files # # tlk - Contains the custom tlk file # # gfx - Contains all of the graphic images, icons, textures, etc. that # go in the prc pack. # # others - Contains various other files that go in the hak such as # creature blueprints, item blueprints, etc. # # tools - Contains all of the EXE files used by the makefile to do the build. # # objs - All of the compiled script object files are placed here. If this # directory does not exist it will be created. # # setup - Builds the NSIS Setup.exe install application. This REQUIRES # NSIS to be installed on your PC. # # There is some outside information that the makefile needs to know, it expects # this information to be set in variables in the config.make file. The variables # it expects to be set are as follows: # # NWN_DIR - The folder where you have NWN installed. # # PRC_VERSION - The version number of the PRC build, this is only used for the RAR # file name # # PRC_INSTALLVERSION - The version number of the PRC build, this is placed in # the HIF file and the NSIS install script, so it is shown to the user. # # If just run w/o any arguments the makefile will build all haks/erfs/etc. and # install them in the appropriate spots in your NWN directory. The following # additional build targets are supported, they are passed on the command # line to make.bat, eg. "make rar" # # hak - This is the same as specifying no arguments, i.e. the haks/erfs/etc. are # built and are installed in the NWN directory. # # rar - Does what hak does, then builds a rar file containing all of the output # files. # # nsis - You must run hak or rar before running this. Requires NSIS to be installed. # Builds .exe installer for the PRC # # Include the file with the NWN_DIR definition and version number !include config.make # If we are told not to abort on erros, copy the error text to a log file COMPILER_CALL_SUFFIX = !IFDEF IGNOREERRORS COMPILER_CALL_SUFFIX = 2>&1 | tools\tee -a compile_errors.log !ENDIF # Names of the output files. # NOTE: For version 2.0 this is going to change and there will be 2 haks, # the exact names are TBD. RAR = $(OUTPATH)\PRC$(PRC_VERSION).rar ERF = $(OUTPATH)\prc8_consortium.erf INCLUDEHAK = $(OUTPATH)\prc8_include.hak HAK = $(OUTPATH)\prc8_consortium.hak TLK = $(TLKPATH)\prc8_consortium.tlk TLKXML = $(TLKPATH)\prc8_consortium.tlk.xml HIF = "$(OUTPATH)\PRC8.hif" #README = prc8_consortium.htm MISCRESOURCES = $(OUTPATH)\PRC8ModuleUpdater.exe MISCRESOURCES2 = tools\nwnsc.exe #MISCRESOURCES3 = $(OUTPATH)\PRCModuleUpdater-Classic.exe # Version 2.0 haks SCRIPTSHAK = $(OUTPATH)\prc8_scripts.hak SPELLSHAK = $(OUTPATH)\prc8_spells.hak EPICSPELLSCRIPTSHAK = $(OUTPATH)\prc8_epicspells.hak 2DASHAK = $(OUTPATH)\prc8_2das.hak MISCHAK = $(OUTPATH)\prc8_misc.hak TEXTURESHAK = $(OUTPATH)\prc8_textures.hak CRAFT2DASHAK = $(OUTPATH)\prc8_craft2das.hak RACEHAK = $(OUTPATH)\prc8_race.hak PSIONICSHAK = $(OUTPATH)\prc8_psionics.hak NEWSPELLBOOKHAK = $(OUTPATH)\prc8_nsb.hak # Original campaigns compatibility fix files OCFIX_ERF = $(OUTPATH)\prc8_ocfix.erf OCFIX_HIF = $(OUTPATH)\prc_ocfix.hif # The BioDB files that contain precached spell/power -related data #DATABASEFILES = $(OUTPATH)\PRC_DATA.CDX $(OUTPATH)\PRC_DATA.DBF $(OUTPATH)\PRC_DATA.FPT # The NSIS script used to build setup.exe INSTALLSCRIPT = Setup\install-EE.nsi # The list of include paths to look for nss include files. If there are multiple # folders separate by ';', eg. include1;include2;include3 NSSINCLUDE = include # This variable contains all of the files that need to be installed in the # NWN override directory for the prc pack to work. If this list is changed # then the updates should be made here. NOTE: You NEED to put the paths # to the subdirectories on there as well. #OVERRIDEFILES = $(2DAPATH)\classes.2da OVERRIDEFILES = $(OUTPATH)\personal_switch.2da # If an install path for NSIS is not given, assume "C:\program files\nsis" !IFNDEF NSISPATH NSISPATH = C:\program files (x86)\nsis !ENDIF # If no pretty install version is defined then just use the PRC_VERSION !IFNDEF PRC_INSTALLVERSION PRC_INSTALLVERSION = PRC_VERSION !ENDIF # Define the locations of the various EXE's used by the makefile. All # should be in the tools folder, except the script compiler which # comes with NWN. PRCJAR = java -Xmx200m -jar tools\prc.jar RARCOMPILER = tools\rar ERFCOMPILER = tools\erf #NSSCOMPILER = tools\nwnnsscomp NSSCOMPILER = tools\nwnsc NSISCOMPILER = "$(NSISPATH)\makensis.exe" SED = tools\ssed XML2TLK = tools\xml2tlk.exe # Redefine various paths set by the bat file to give them prettier more # generic names. OUTPATH = CompiledResources ERFFILESPATH = $(MAKEERFPATH) 2DAPATH = $(MAKE2DAPATH) OBJPATH = $(MAKEOBJSPATH) SPELLOBJPATH = $(MAKESPELLOBJSPATH) EPICSPELLOBJSPATH = $(MAKEEPICSPELLOBJSPATH) SRCPATH = $(MAKESCRIPTPATH) SPELLSRCPATH = $(MAKESPELLSPATH) EPICSPELLSRCPATH = $(MAKEEPICSPELLSCRIPTPATH) TLKPATH = $(MAKETLKPATH) CRAFT2DASPATH = $(MAKECRAFT2DASPATH) RACE2DASPATH = $(MAKERACE2DASPATH) RACESRCPATH = $(MAKERACESRCPATH) RACEOBJSPATH = $(MAKERACEOBJSPATH) PSIONICSSRCPATH = $(MAKEPSIONICSSRCPATH) PSIONICSOBJSPATH = $(MAKEPSIONICSOBJSPATH) NEWSPELLBOOKSRCPATH = $(MAKENEWSPELLBOOKPATH) NEWSPELLBOOKOBJSPATH = $(MAKENEWSPELLBOOKOBJSPATH) # TEMPPATH = $(MAKETEMPPATH) MISCPATH = $(MAKEMISCPATH) OCFIXERFPATH = $(MAKEOCFIXERFPATH) OCFIXERFOBJSPATH = $(MAKEOCFIXERFOBJSPATH) GFXPATH = gfx # Paths for the various folders in the NWN install directory. NWN_ERF = $(NWN_DOC_DIR)\erf NWN_HAK = $(NWN_DOC_DIR)\hak NWN_TLK = $(NWN_DOC_DIR)\tlk NWN_OVERRIDE = $(NWN_DOC_DIR)\override NWN_DATABASE = $(NWN_DOC_DIR)\database NWN_MODULES = $(NWN_DOC_DIR)\modules # Arguments for various rules !IFDEF DEBUG NSS_FLAGS = -cq -I "$(MAKEDIR)\include" !ELSE #NSS_FLAGS = -cgoq -I "$(MAKEDIR)\include" #NSS_FLAGS = -qw -i "$(MAKEDIR)\include" -n "C:\Program Files (x86)\Steam\steamapps\common\Neverwinter Nights" NSS_FLAGS_OBJ = -qw -i "$(MAKEDIR)\include" -n "$(NWN_DIR)" -b "$(MAKEDIR)\objs" NSS_FLAGS_SPELLS = -qw -i "$(MAKEDIR)\include" -n "$(NWN_DIR)" -b "$(MAKEDIR)\spellobjs" NSS_FLAGS_ESS = -qw -i "$(MAKEDIR)\include" -n "$(NWN_DIR)" -b "$(MAKEDIR)\epicspellobjs" NSS_FLAGS_RACE = -qw -i "$(MAKEDIR)\include" -n "$(NWN_DIR)" -b "$(MAKEDIR)\raceobjs" NSS_FLAGS_PSI = -qw -i "$(MAKEDIR)\include" -n "$(NWN_DIR)" -b "$(MAKEDIR)\psionicsobjs" NSS_FLAGS_NSB = -qw -i "$(MAKEDIR)\include" -n "$(NWN_DIR)" -b "$(MAKEDIR)\newspellbookobjs" NSS_FLAGS_OCFIX = -qw -i "$(MAKEDIR)\include" -n "$(NWN_DIR)" -b "$(MAKEDIR)\ocfixerfobjs" !ENDIF !IFDEF DEBUG MOVE_DEBUGFILE_TO_OVERRIDE = move /Y "$(MAKEDIR)\$*.ndb" "$(NWN_OVERRIDE)" !ELSE MOVE_DEBUGFILE_TO_OVERRIDE = !ENDIF # suffixes for inference rules. .SUFFIXES: .nss .ncs .erf .hak .zip .rar # variables to hold all of the contents of the various directories. ERFFILES= \ erf\desolateanddespa.are \ erf\desolateanddespa.gic \ erf\desolateanddespa.git \ erf\ey_dpcon_erewood.are \ erf\ey_dpcon_erewood.gic \ erf\ey_dpcon_erewood.git \ erf\frostedpits.are \ erf\frostedpits.gic \ erf\frostedpits.git \ erf\frozentimes.are \ erf\frozentimes.gic \ erf\frozentimes.git \ erf\limbo001.are \ erf\limbo001.gic \ erf\limbo001.git \ erf\mordmagman01.are \ erf\mordmagman01.gic \ erf\mordmagman01.git \ erf\mordmagman02.are \ erf\mordmagman02.gic \ erf\mordmagman02.git \ erf\mordmagman03.are \ erf\mordmagman03.gic \ erf\mordmagman03.git \ erf\mordmagman04.are \ erf\mordmagman04.gic \ erf\mordmagman04.git \ erf\mordmagman05.are \ erf\mordmagman05.gic \ erf\mordmagman05.git \ erf\mordmagman06.are \ erf\mordmagman06.gic \ erf\mordmagman06.git \ erf\prc_maze_01.are \ erf\prc_maze_01.gic \ erf\prc_maze_01.git \ erf\ruinedminds001.are \ erf\ruinedminds001.gic \ erf\ruinedminds001.git \ erf\thequietofthemin.are \ erf\thequietofthemin.gic \ erf\thequietofthemin.git INCLUDE= \ include\bnd_inc_bndfunc.nss \ include\bnd_vestig_const.nss \ include\inc_2dacache.nss \ include\inc_abil_damage.nss \ include\inc_acp.nss \ include\inc_addragebonus.nss \ include\inc_area.nss \ include\inc_array_sort.nss \ include\inc_cache_setup.nss \ include\inc_debug.nss \ include\inc_dispel.nss \ include\inc_draw.nss \ include\inc_draw_prc.nss \ include\inc_draw_text.nss \ include\inc_draw_tools.nss \ include\inc_dynconv.nss \ include\inc_ecl.nss \ include\inc_epicspellai.nss \ include\inc_epicspelldef.nss \ include\inc_epicspellfnc.nss \ include\inc_epicspells.nss \ include\inc_eventhook.nss \ include\inc_heap.nss \ include\inc_item_props.nss \ include\inc_logmessage.nss \ include\inc_lookups.nss \ include\inc_metalocation.nss \ include\inc_newspellbook.nss \ include\inc_npc.nss \ include\inc_nwnx_funcs.nss \ include\inc_pers_array.nss \ include\inc_persist_loca.nss \ include\inc_persistsql.nss \ include\inc_poison.nss \ include\inc_prc_npc.nss \ include\inc_prc_poly.nss \ include\inc_rand_equip.nss \ include\inc_ravage.nss \ include\inc_rend.nss \ include\inc_sbr_readme.nss \ include\inc_set.nss \ include\inc_sp_gain_mem.nss \ include\inc_spirit_weapn.nss \ include\inc_sql.nss \ include\inc_switch_setup.nss \ include\inc_target_list.nss \ include\inc_threads.nss \ include\inc_time.nss \ include\inc_timestop.nss \ include\inc_uniqueid.nss \ include\inc_utility.nss \ include\inc_vfx_const.nss \ include\inv_inc_blast.nss \ include\inv_inc_invfunc.nss \ include\inv_inc_invknown.nss \ include\inv_inc_invoke.nss \ include\inv_invoc_const.nss \ include\inv_invokehook.nss \ include\lookup_2da_spell.nss \ include\moi_inc_moifunc.nss \ include\moi_meld_const.nss \ include\nw_o2_coninclude.nss \ include\pnp_lich_inc.nss \ include\pnp_shft_main.nss \ include\pnp_shft_poly.nss \ include\prc_add_spell_dc.nss \ include\prc_add_spl_pen.nss \ include\prc_allow_const.nss \ include\prc_alterations.nss \ include\prc_ccc_const.nss \ include\prc_ccc_readme.nss \ include\prc_class_const.nss \ include\prc_compan_inc.nss \ include\prc_craft_inc.nss \ include\prc_effect_inc.nss \ include\prc_feat_const.nss \ include\prc_getbest_inc.nss \ include\prc_inc_actions.nss \ include\prc_inc_array.nss \ include\prc_inc_assoc.nss \ include\prc_inc_breath.nss \ include\prc_inc_burn.nss \ include\prc_inc_castlvl.nss \ include\prc_inc_chat.nss \ include\prc_inc_chat_dm.nss \ include\prc_inc_chat_pow.nss \ include\prc_inc_chat_shf.nss \ include\prc_inc_clsfunc.nss \ include\prc_inc_combat.nss \ include\prc_inc_combmove.ncs \ include\prc_inc_combmove.nss \ include\prc_inc_core.nss \ include\prc_inc_damage.nss \ include\prc_inc_descrptr.nss \ include\prc_inc_domain.nss \ include\prc_inc_dragsham.nss \ include\prc_inc_drugfunc.nss \ include\prc_inc_effect.nss \ include\prc_inc_factotum.nss \ include\prc_inc_fork.nss \ include\prc_inc_function.nss \ include\prc_inc_hextor.nss \ include\prc_inc_itmrstr.nss \ include\prc_inc_leadersh.nss \ include\prc_inc_listener.nss \ include\prc_inc_material.nss \ include\prc_inc_nat_hb.nss \ include\prc_inc_natweap.nss \ include\prc_inc_newip.nss \ include\prc_inc_nwscript.nss \ include\prc_inc_onhit.nss \ include\prc_inc_racial.nss \ include\prc_inc_s_det.nss \ include\prc_inc_sb_const.nss \ include\prc_inc_sbheir.nss \ include\prc_inc_scry.nss \ include\prc_inc_shifting.nss \ include\prc_inc_skills.nss \ include\prc_inc_skin.nss \ include\prc_inc_smite.nss \ include\prc_inc_sneak.nss \ include\prc_inc_sp_tch.nss \ include\prc_inc_spells.nss \ include\prc_inc_stunfist.nss \ include\prc_inc_switch.nss \ include\prc_inc_teleport.nss \ include\prc_inc_template.nss \ include\prc_inc_turning.nss \ include\prc_inc_unarmed.nss \ include\prc_inc_util.nss \ include\prc_inc_wpnrest.nss \ include\prc_ip_srcost.nss \ include\prc_ipfeat_const.nss \ include\prc_misc_const.nss \ include\prc_racial_const.nss \ include\prc_shifter_info.nss \ include\prc_sp_func.nss \ include\prc_spell_const.nss \ include\prc_spellf_inc.nss \ include\prc_spellhook.nss \ include\prc_template_con.nss \ include\prc_weap_apt.nss \ include\prc_x2_craft.nss \ include\prc_x2_itemprop.nss \ include\prcsp_archmaginc.nss \ include\prcsp_engine.nss \ include\prcsp_reputation.nss \ include\prgt_inc.nss \ include\prgt_inc_trap.nss \ include\psi_inc_ac_const.nss \ include\psi_inc_ac_convo.nss \ include\psi_inc_ac_manif.nss \ include\psi_inc_ac_spawn.nss \ include\psi_inc_augment.nss \ include\psi_inc_const.nss \ include\psi_inc_core.nss \ include\psi_inc_enrgypow.nss \ include\psi_inc_metapsi.nss \ include\psi_inc_onhit.nss \ include\psi_inc_powknown.nss \ include\psi_inc_ppoints.nss \ include\psi_inc_psicraft.nss \ include\psi_inc_psifunc.nss \ include\psi_inc_pwresist.nss \ include\psi_inc_soulkn.nss \ include\psi_power_const.nss \ include\psi_spellhook.nss \ include\sbr_include.nss \ include\shd_inc_metashd.nss \ include\shd_inc_myst.nss \ include\shd_inc_mystknwn.nss \ include\shd_inc_shdfunc.nss \ include\shd_myst_const.nss \ include\shd_mysthook.nss \ include\spinc_bolt.nss \ include\spinc_burst.nss \ include\spinc_cone.nss \ include\spinc_dimdoor.nss \ include\spinc_engimm.nss \ include\spinc_fdisk.nss \ include\spinc_greenfire.nss \ include\spinc_lessorb.nss \ include\spinc_maze.nss \ include\spinc_necro_cyst.nss \ include\spinc_orb.nss \ include\spinc_remeffct.nss \ include\spinc_telecircle.nss \ include\spinc_teleport.nss \ include\spinc_trans.nss \ include\tob_inc_martlore.nss \ include\tob_inc_move.nss \ include\tob_inc_moveknwn.nss \ include\tob_inc_recovery.nss \ include\tob_inc_tobfunc.nss \ include\tob_move_const.nss \ include\tob_movehook.nss \ include\true_inc_metautr.nss \ include\true_inc_truespk.nss \ include\true_inc_trufunc.nss \ include\true_inc_truknwn.nss \ include\true_inc_utter.nss \ include\true_utter_const.nss \ include\true_utterhook.nss \ include\utl_i_sqluuid.nss \ include\x0_i0_transport.nss \ include\x2_inc_cutscenep.nss \ include\x2_inc_spellhook.nss \ include\x3_inc_horse.nss \ include\xchst_inc.nss SCRIPTS= \ scripts\acp_auto.nss \ scripts\acp_s3_diffstyle.nss \ scripts\alien_xtrasummon.nss \ scripts\animobj_convo.nss \ scripts\animobj_death.nss \ scripts\animobj_hb.nss \ scripts\animobj_killself.nss \ scripts\animobj_spawn.nss \ scripts\archmage_fire.nss \ scripts\archmage_spelllk.nss \ scripts\blades_songfury.nss \ scripts\bodyofflame.nss \ scripts\bond_familiar.nss \ scripts\bonsum_shapelem.nss \ scripts\cd_s2_thouface.nss \ scripts\codi_prc_pod_1.nss \ scripts\codi_prc_toe_1.nss \ scripts\codi_pre_chmon.nss \ scripts\codi_pre_chper.nss \ scripts\codi_pre_death.nss \ scripts\codi_pre_dis.nss \ scripts\codi_pre_fear.nss \ scripts\codi_pre_flst.nss \ scripts\codi_pre_infw.nss \ scripts\codi_pre_sleep.nss \ scripts\codi_pre_slow.nss \ scripts\codi_pre_tele.nss \ scripts\codi_s0_healcirc.nss \ scripts\codi_s0_implcfo1.nss \ scripts\codi_s0_implcfo2.nss \ scripts\codi_s0_implcfo3.nss \ scripts\codi_s0_implcfoe.nss \ scripts\codi_s0_inflame.nss \ scripts\codi_s0_mashaste.nss \ scripts\codi_s0_masheal.nss \ scripts\codi_s0_rally.nss \ scripts\codi_s2_ancdai.nss \ scripts\codi_s2_ancdaic.nss \ scripts\default.nss \ scripts\door_destroyed.nss \ scripts\door_ud.nss \ scripts\dslyr_songcomp.nss \ scripts\dslyr_songfear.nss \ scripts\dslyr_songfeara.nss \ scripts\dslyr_songfearb.nss \ scripts\dslyr_songheal.nss \ scripts\dslyr_songspeed.nss \ scripts\dslyr_songstr.nss \ scripts\dslyr_songstra.nss \ scripts\dslyr_songstrb.nss \ scripts\dslyr_songstrc.nss \ scripts\dynconv_abort.nss \ scripts\dynconv_end.nss \ scripts\dynconv_end_w.nss \ scripts\dynconv_main_w.nss \ scripts\dynconv_next_a.nss \ scripts\dynconv_next_w.nss \ scripts\dynconv_prev_a.nss \ scripts\dynconv_prev_w.nss \ scripts\dynconv_rep0_a.nss \ scripts\dynconv_rep0_w.nss \ scripts\dynconv_rep1_a.nss \ scripts\dynconv_rep1_w.nss \ scripts\dynconv_rep2_a.nss \ scripts\dynconv_rep2_w.nss \ scripts\dynconv_rep3_a.nss \ scripts\dynconv_rep3_w.nss \ scripts\dynconv_rep4_a.nss \ scripts\dynconv_rep4_w.nss \ scripts\dynconv_rep5_a.nss \ scripts\dynconv_rep5_w.nss \ scripts\dynconv_rep6_a.nss \ scripts\dynconv_rep6_w.nss \ scripts\dynconv_rep7_a.nss \ scripts\dynconv_rep7_w.nss \ scripts\dynconv_rep8_a.nss \ scripts\dynconv_rep8_w.nss \ scripts\dynconv_rep9_a.nss \ scripts\dynconv_rep9_w.nss \ scripts\dynconv_template.nss \ scripts\dynconv_wait_w.nss \ scripts\eog_cth.nss \ scripts\eog_spittle.nss \ scripts\fdisk_attacked.nss \ scripts\fdisk_blocked.nss \ scripts\fdisk_convstart.nss \ scripts\fdisk_empty_conv.nss \ scripts\fdisk_empty2.nss \ scripts\fdisk_end.nss \ scripts\fdisk_heartbeat.nss \ scripts\fdisk_onconv.nss \ scripts\fdisk_onspawn.nss \ scripts\fdisk_onspellc.nss \ scripts\fdisk_openinv.nss \ scripts\fist_circevila.nss \ scripts\fist_circevilb.nss \ scripts\fistraz_circevil.nss \ scripts\ft_bloodwarlord.nss \ scripts\ft_bloodwarlord1.nss \ scripts\ft_bloodwarlord2.nss \ scripts\ft_disc_sun.nss \ scripts\ft_divclean.nss \ scripts\ft_divresis.nss \ scripts\ft_divvigor.nss \ scripts\ft_dw_armor.nss \ scripts\ft_dw_weap.nss \ scripts\ft_epicvigor.nss \ scripts\ft_fistiron.nss \ scripts\ft_invokwrath.nss \ scripts\ft_lingdmg.nss \ scripts\ft_lipsrap.nss \ scripts\ft_manyshot.nss \ scripts\ft_metamagic.nss \ scripts\ft_nim_light.nss \ scripts\ft_pinpointaccu.nss \ scripts\ft_poweratk.nss \ scripts\ft_sanctmartial.nss \ scripts\ft_servheaven.nss \ scripts\ft_shockweap.nss \ scripts\ft_smiteraziel.nss \ scripts\ft_spontsummon.nss \ scripts\ft_tears_ever.nss \ scripts\gen_sptouchice.nss \ scripts\gensp_holyrad.nss \ scripts\gensp_holyrada.nss \ scripts\gensp_holyradc.nss \ scripts\gensp_stigmata.nss \ scripts\hellblast.nss \ scripts\hellfire.nss \ scripts\hellfire_storm.nss \ scripts\hellfireshield.nss \ scripts\hellflare.nss \ scripts\hellgrasp.nss \ scripts\ini_epicinc.nss \ scripts\inidra_dragfire.nss \ scripts\inidra_draggas.nss \ scripts\inidra_dragpris.nss \ scripts\inidra_incrshape.nss \ scripts\inidra_shapedrag.nss \ scripts\initdr_aurafeara.nss \ scripts\initdra_aurafear.nss \ scripts\is_bagofgold.nss \ scripts\is_prc_target.nss \ scripts\is_prc_tome.nss \ scripts\is_xchst.nss \ scripts\manat_furass.nss \ scripts\mer_dimdoor.nss \ scripts\mer_dimdoors.nss \ scripts\mer_stinkbeetle.nss \ scripts\mer_wwolf.nss \ scripts\mh_art_act1.nss \ scripts\mh_art_act2.nss \ scripts\mh_art_act3.nss \ scripts\mh_art_test1.nss \ scripts\mh_art_test2.nss \ scripts\mh_at_001.nss \ scripts\mh_at_002.nss \ scripts\mh_at_003.nss \ scripts\mh_at_004.nss \ scripts\mh_cancreateinst.nss \ scripts\mh_ins_test1.nss \ scripts\mh_ins_test2.nss \ scripts\mh_ins_test3.nss \ scripts\mh_ins_test4.nss \ scripts\mh_s1_lliira_ent.nss \ scripts\mh_s1_lliira_sor.nss \ scripts\mh_s1_lliiraaura.nss \ scripts\mh_s2_instrument.nss \ scripts\mh_s2_lycanbane.nss \ scripts\mh_s2_mharpitem.nss \ scripts\mh_s2_mielikki.nss \ scripts\mh_spell_at_inst.nss \ scripts\ml_daylight.nss \ scripts\ml_greaterturn.nss \ scripts\ml_maxturn.nss \ scripts\ml_radiance.nss \ scripts\ml_rejuvenate.nss \ scripts\ml_searingray.nss \ scripts\mord_enter.nss \ scripts\mord_exit.nss \ scripts\mos_summon.nss \ scripts\nightsh_invisib.nss \ scripts\nightsh_poison.nss \ scripts\nightsh_poisonsp.nss \ scripts\nightsh_shadwalk.nss \ scripts\nightsh_web.nss \ scripts\nightsh_webb.nss \ scripts\nw_c2_default9.nss \ scripts\nw_c2_defaultd.nss \ scripts\nw_ch_ac9.nss \ scripts\nw_ch_acd.nss \ scripts\nw_ch_fm_st_01.nss \ scripts\nw_ch_fm_st_11.nss \ scripts\nw_g0_conversat.nss \ scripts\nw_s0_1sassone.nss \ scripts\old_lich_alter.nss \ scripts\ow_fin_rage.nss \ scripts\ow_hb.nss \ scripts\ow_inspire.nss \ scripts\ow_rel_horde.nss \ scripts\ow_sum_axe.nss \ scripts\ow_sum_barb.nss \ scripts\ow_sum_fght.nss \ scripts\ow_sum_sham.nss \ scripts\pnp_lich_alter.nss \ scripts\pnp_lich_camulet.nss \ scripts\pnp_lich_craftwo.nss \ scripts\pnp_lich_csgem.nss \ scripts\pnp_lich_faura.nss \ scripts\pnp_lich_isdemi.nss \ scripts\pnp_lich_level.nss \ scripts\pnp_lich_touch.nss \ scripts\pnp_lich_trap.nss \ scripts\pnp_shft_ewshape.nss \ scripts\pnp_shft_gwshape.nss \ scripts\pnp_shft_lrnshap.nss \ scripts\pnp_shft_options.nss \ scripts\pnp_shft_true.nss \ scripts\poison_1d1_cha.nss \ scripts\poison_1d1_con.nss \ scripts\poison_1d1_dex.nss \ scripts\poison_1d1_int.nss \ scripts\poison_1d1_str.nss \ scripts\poison_1d1_wis.nss \ scripts\poison_1d2_cha.nss \ scripts\poison_1d2_con.nss \ scripts\poison_1d2_dex.nss \ scripts\poison_1d2_int.nss \ scripts\poison_1d2_str.nss \ scripts\poison_1d2_wis.nss \ scripts\poison_1d3_cha.nss \ scripts\poison_1d3_con.nss \ scripts\poison_1d3_dex.nss \ scripts\poison_1d3_int.nss \ scripts\poison_1d3_str.nss \ scripts\poison_1d3_wis.nss \ scripts\poison_1d4_cha.nss \ scripts\poison_1d4_con.nss \ scripts\poison_1d4_dex.nss \ scripts\poison_1d4_int.nss \ scripts\poison_1d4_str.nss \ scripts\poison_1d4_wis.nss \ scripts\poison_1d6_cha.nss \ scripts\poison_1d6_con.nss \ scripts\poison_1d6_dex.nss \ scripts\poison_1d6_int.nss \ scripts\poison_1d6_str.nss \ scripts\poison_1d6_wis.nss \ scripts\poison_1d8_cha.nss \ scripts\poison_1d8_con.nss \ scripts\poison_1d8_dex.nss \ scripts\poison_1d8_int.nss \ scripts\poison_1d8_str.nss \ scripts\poison_1d8_wis.nss \ scripts\poison_2d6_cha.nss \ scripts\poison_2d6_con.nss \ scripts\poison_2d6_dex.nss \ scripts\poison_2d6_int.nss \ scripts\poison_2d6_str.nss \ scripts\poison_2d6_wis.nss \ scripts\poison_2d8_cha.nss \ scripts\poison_2d8_con.nss \ scripts\poison_2d8_dex.nss \ scripts\poison_2d8_int.nss \ scripts\poison_2d8_str.nss \ scripts\poison_2d8_wis.nss \ scripts\poison_3d6_cha.nss \ scripts\poison_3d6_con.nss \ scripts\poison_3d6_dex.nss \ scripts\poison_3d6_int.nss \ scripts\poison_3d6_str.nss \ scripts\poison_3d6_wis.nss \ scripts\poison_appl_food.nss \ scripts\poison_appl_item.nss \ scripts\poison_appl_weap.nss \ scripts\poison_cleanitem.nss \ scripts\poison_eat_hook.nss \ scripts\poison_eyeblast.nss \ scripts\poison_is_food.nss \ scripts\poison_onaquire.nss \ scripts\poison_onequip.nss \ scripts\poison_sufrfume.nss \ scripts\poison_ungol2.nss \ scripts\poison_vialthrow.nss \ scripts\poison_wpn_onhit.nss \ scripts\prc_abil_monitor.nss \ scripts\prc_abjcha_abab.nss \ scripts\prc_abjcha_abac.nss \ scripts\prc_abjcha_abdmg.nss \ scripts\prc_abjcha_aber.nss \ scripts\prc_abjcha_absv.nss \ scripts\prc_acolyte.nss \ scripts\prc_ad_blur.nss \ scripts\prc_ad_chosewep.nss \ scripts\prc_ad_dexatk.nss \ scripts\prc_ad_falskeen.nss \ scripts\prc_ad_flurry.nss \ scripts\prc_ad_mirror.nss \ scripts\prc_addct_ag.nss \ scripts\prc_addct_dw.nss \ scripts\prc_addct_lhx.nss \ scripts\prc_addct_msh.nss \ scripts\prc_addct_snh.nss \ scripts\prc_addct_tb.nss \ scripts\prc_addct_vdr.nss \ scripts\prc_ai_coh_conv.nss \ scripts\prc_ai_coh_hb.nss \ scripts\prc_ai_con_attck.nss \ scripts\prc_ai_con_block.nss \ scripts\prc_ai_con_combt.nss \ scripts\prc_ai_con_conv.nss \ scripts\prc_ai_con_damag.nss \ scripts\prc_ai_con_death.nss \ scripts\prc_ai_con_distb.nss \ scripts\prc_ai_con_heart.nss \ scripts\prc_ai_con_percp.nss \ scripts\prc_ai_con_rest.nss \ scripts\prc_ai_con_spawn.nss \ scripts\prc_ai_con_spell.nss \ scripts\prc_ai_con_userd.nss \ scripts\prc_ai_fam_attck.nss \ scripts\prc_ai_fam_block.nss \ scripts\prc_ai_fam_combt.nss \ scripts\prc_ai_fam_conv.nss \ scripts\prc_ai_fam_damag.nss \ scripts\prc_ai_fam_death.nss \ scripts\prc_ai_fam_distb.nss \ scripts\prc_ai_fam_heart.nss \ scripts\prc_ai_fam_percp.nss \ scripts\prc_ai_fam_rest.nss \ scripts\prc_ai_fam_spawn.nss \ scripts\prc_ai_fam_spell.nss \ scripts\prc_ai_fam_userd.nss \ scripts\prc_ai_mob_attck.nss \ scripts\prc_ai_mob_block.nss \ scripts\prc_ai_mob_combt.nss \ scripts\prc_ai_mob_conv.nss \ scripts\prc_ai_mob_damag.nss \ scripts\prc_ai_mob_death.nss \ scripts\prc_ai_mob_distb.nss \ scripts\prc_ai_mob_heart.nss \ scripts\prc_ai_mob_percp.nss \ scripts\prc_ai_mob_rest.nss \ scripts\prc_ai_mob_spawn.nss \ scripts\prc_ai_mob_spell.nss \ scripts\prc_ai_mob_userd.nss \ scripts\prc_ai_sum_attck.nss \ scripts\prc_ai_sum_block.nss \ scripts\prc_ai_sum_combt.nss \ scripts\prc_ai_sum_conv.nss \ scripts\prc_ai_sum_damag.nss \ scripts\prc_ai_sum_death.nss \ scripts\prc_ai_sum_distb.nss \ scripts\prc_ai_sum_heart.nss \ scripts\prc_ai_sum_percp.nss \ scripts\prc_ai_sum_rest.nss \ scripts\prc_ai_sum_spawn.nss \ scripts\prc_ai_sum_spell.nss \ scripts\prc_ai_sum_userd.nss \ scripts\prc_alag_cmight.nss \ scripts\prc_alag_cstrike.nss \ scripts\prc_alag_rckbrst.nss \ scripts\prc_alaghar.nss \ scripts\prc_alcpm_convo.nss \ scripts\prc_alien_summon.nss \ scripts\prc_alienist.nss \ scripts\prc_amn.nss \ scripts\prc_arc_feat1.nss \ scripts\prc_arc_feat2.nss \ scripts\prc_arc_strike.nss \ scripts\prc_arcduel.nss \ scripts\prc_archer.nss \ scripts\prc_archivist.nss \ scripts\prc_archv_dk.nss \ scripts\prc_archv_lspell.nss \ scripts\prc_assassin_da.nss \ scripts\prc_assn_da_hb.nss \ scripts\prc_at_isa.nss \ scripts\prc_at_legerlock.nss \ scripts\prc_at_legertrap.nss \ scripts\prc_attack.nss \ scripts\prc_baal_beguile.nss \ scripts\prc_baal_inspla.nss \ scripts\prc_baal_suggest.nss \ scripts\prc_baal_sum1.nss \ scripts\prc_baal_sum2.nss \ scripts\prc_baalzebul.nss \ scripts\prc_bab_caller.nss \ scripts\prc_baeln_tch.nss \ scripts\prc_baelnorn.nss \ scripts\prc_battlesmith.nss \ scripts\prc_battletempus.nss \ scripts\prc_bbc.nss \ scripts\prc_bfz.nss \ scripts\prc_bfz_stride.nss \ scripts\prc_blackguard.nss \ scripts\prc_bladesinger.nss \ scripts\prc_blank_test.nss \ scripts\prc_bld_arch.nss \ scripts\prc_bldarch_ab.nss \ scripts\prc_bldarch_pb.nss \ scripts\prc_blight_anim.nss \ scripts\prc_blight_fire.nss \ scripts\prc_blight_plagu.nss \ scripts\prc_blight_touch.nss \ scripts\prc_blight_unbnd.nss \ scripts\prc_blight_undws.nss \ scripts\prc_blightlord.nss \ scripts\prc_blkgrd_aod_a.nss \ scripts\prc_blkgrd_aod_b.nss \ scripts\prc_blm_blcomp.nss \ scripts\prc_blm_bldseek.nss \ scripts\prc_blm_dthknell.nss \ scripts\prc_blm_wakebld.nss \ scripts\prc_bloodmagus.nss \ scripts\prc_blue_guts.nss \ scripts\prc_bn_eyes.nss \ scripts\prc_bn_prj_event.nss \ scripts\prc_bn_project.nss \ scripts\prc_bond_death.nss \ scripts\prc_bondedsumm.nss \ scripts\prc_brager.nss \ scripts\prc_brager_dam.nss \ scripts\prc_brawl_xatt.nss \ scripts\prc_brawler.nss \ scripts\prc_breath_enlrg.nss \ scripts\prc_breath_entgl.nss \ scripts\prc_breath_immun.nss \ scripts\prc_breath_max.nss \ scripts\prc_breath_shape.nss \ scripts\prc_breath_spred.nss \ scripts\prc_breath_tmpst.nss \ scripts\prc_breath_wall.nss \ scripts\prc_bsmth_boost.nss \ scripts\prc_bsmth_temper.nss \ scripts\prc_burnselect.nss \ scripts\prc_cbtmed.nss \ scripts\prc_cbtmed_hkck1.nss \ scripts\prc_cbtmed_hkck2.nss \ scripts\prc_cbtmed_hkck3.nss \ scripts\prc_cbtmed_spnhl.nss \ scripts\prc_cc_desretrib.nss \ scripts\prc_chan_feat.nss \ scripts\prc_chn_iborighu.nss \ scripts\prc_chngshp_conv.nss \ scripts\prc_chngshp_lern.nss \ scripts\prc_chngshp_opts.nss \ scripts\prc_chngshp_quik.nss \ scripts\prc_chngshp_true.nss \ scripts\prc_chosen_evil.nss \ scripts\prc_class_sla.nss \ scripts\prc_cloak_dance.nss \ scripts\prc_coc.nss \ scripts\prc_coc_damage.nss \ scripts\prc_coc_heal.nss \ scripts\prc_coc_wrath.nss \ scripts\prc_cohort_convo.nss \ scripts\prc_combatmove.nss \ scripts\prc_con_gol_w_ma.nss \ scripts\prc_contemplate.nss \ scripts\prc_contendkord.nss \ scripts\prc_contmp_whole.nss \ scripts\prc_craft.nss \ scripts\prc_craft_listen.nss \ scripts\prc_crftbaseitms.nss \ scripts\prc_csm_shdride.nss \ scripts\prc_csm_shdwalk.nss \ scripts\prc_cwsamurai.nss \ scripts\prc_cwsm_fright.nss \ scripts\prc_cwsm_kiai.nss \ scripts\prc_cwsm_msstare.nss \ scripts\prc_cwsm_stare.nss \ scripts\prc_dark_power.nss \ scripts\prc_dark_speech.nss \ scripts\prc_dark_whisp.nss \ scripts\prc_daunt_pres.nss \ scripts\prc_dbldracaura.nss \ scripts\prc_debug_hfeatm.nss \ scripts\prc_detectevil.nss \ scripts\prc_dfrm_eyes.nss \ scripts\prc_dfrm_face.nss \ scripts\prc_dfrm_mad.nss \ scripts\prc_dfrm_parst.nss \ scripts\prc_diabl_diab.nss \ scripts\prc_diabl_vdiab.nss \ scripts\prc_dimdoor_aux.nss \ scripts\prc_dirge_awake.nss \ scripts\prc_dirge_bolstr.nss \ scripts\prc_dirge_grief.nss \ scripts\prc_dirge_horror.nss \ scripts\prc_dirge_sorrow.nss \ scripts\prc_discasmodeus.nss \ scripts\prc_discmeph.nss \ scripts\prc_disp_gtrhws.nss \ scripts\prc_disp_irnbdy.nss \ scripts\prc_disp_irnhws.nss \ scripts\prc_disp_irnskn.nss \ scripts\prc_disp_rust.nss \ scripts\prc_disp_summ.nss \ scripts\prc_dispater.nss \ scripts\prc_dj_comspider.nss \ scripts\prc_dj_judgement.nss \ scripts\prc_dj_mryspawn.nss \ scripts\prc_dj_phaspawn.nss \ scripts\prc_dj_selwrath.nss \ scripts\prc_dj_spidgrace.nss \ scripts\prc_dj_sumspider.nss \ scripts\prc_dj_warstrike.nss \ scripts\prc_dm_bottlepro.nss \ scripts\prc_dm_brthflm.nss \ scripts\prc_dm_drnkdemon.nss \ scripts\prc_dm_drnknembr.nss \ scripts\prc_dm_drnknrage.nss \ scripts\prc_dm_formedprp.nss \ scripts\prc_dm_lurch.nss \ scripts\prc_dm_stagger.nss \ scripts\prc_dnc_chrnltch.nss \ scripts\prc_dnc_fearaura.nss \ scripts\prc_dnc_frauraa.nss \ scripts\prc_dnc_negburst.nss \ scripts\prc_dnc_nrvtch.nss \ scripts\prc_dnc_scabtch.nss \ scripts\prc_doa_charm.nss \ scripts\prc_doa_command.nss \ scripts\prc_doa_drdmight.nss \ scripts\prc_doa_evilauth.nss \ scripts\prc_doa_hellcat.nss \ scripts\prc_doa_lrnscrt.nss \ scripts\prc_doa_mjrdevil.nss \ scripts\prc_dom_sun.nss \ scripts\prc_domain_cast.nss \ scripts\prc_domain_charm.nss \ scripts\prc_domain_check.nss \ scripts\prc_domain_conv.nss \ scripts\prc_domain_death.nss \ scripts\prc_domain_destr.nss \ scripts\prc_domain_famly.nss \ scripts\prc_domain_half.nss \ scripts\prc_domain_hate.nss \ scripts\prc_domain_metal.nss \ scripts\prc_domain_noble.nss \ scripts\prc_domain_orc.nss \ scripts\prc_domain_prtct.nss \ scripts\prc_domain_renew.nss \ scripts\prc_domain_skin.nss \ scripts\prc_domain_str.nss \ scripts\prc_domain_travl.nss \ scripts\prc_domain_war.nss \ scripts\prc_door_close.nss \ scripts\prc_door_damaged.nss \ scripts\prc_door_death.nss \ scripts\prc_door_fail.nss \ scripts\prc_door_hb.nss \ scripts\prc_door_lock.nss \ scripts\prc_door_open.nss \ scripts\prc_door_phyatt.nss \ scripts\prc_door_spell.nss \ scripts\prc_door_transit.nss \ scripts\prc_door_ud.nss \ scripts\prc_door_unlock.nss \ scripts\prc_doprecache.nss \ scripts\prc_dracactive.nss \ scripts\prc_dracaura_in.nss \ scripts\prc_dracaura_out.nss \ scripts\prc_dracaura_tgl.nss \ scripts\prc_dracfeat.nss \ scripts\prc_dracmars_tgl.nss \ scripts\prc_dracxtra_tgl.nss \ scripts\prc_dradis.nss \ scripts\prc_dradisfang.nss \ scripts\prc_dragdev.nss \ scripts\prc_dragfire_atk.nss \ scripts\prc_dragonshaman.nss \ scripts\prc_dreadnecro.nss \ scripts\prc_drgfr_active.nss \ scripts\prc_drgfr_assact.nss \ scripts\prc_drgfr_channl.nss \ scripts\prc_drgfr_insact.nss \ scripts\prc_drgnthrall.nss \ scripts\prc_drgshm_breth.nss \ scripts\prc_drgshm_touch.nss \ scripts\prc_drunk.nss \ scripts\prc_duel_charge.nss \ scripts\prc_duelist.nss \ scripts\prc_dusk_channel.nss \ scripts\prc_dusk_qckcast.nss \ scripts\prc_duskblade.nss \ scripts\prc_ea_return.nss \ scripts\prc_ef_arcfis.nss \ scripts\prc_ef_arcrej.nss \ scripts\prc_ef_foe.nss \ scripts\prc_ef_spell.nss \ scripts\prc_elemsavant.nss \ scripts\prc_end_trees.nss \ scripts\prc_energz_ptn.nss \ scripts\prc_enforce_feat.nss \ scripts\prc_enforce_mark.nss \ scripts\prc_enlfis.nss \ scripts\prc_eog.nss \ scripts\prc_equip.nss \ scripts\prc_equip_rstr.nss \ scripts\prc_event_bladeb.nss \ scripts\prc_evilbrand.nss \ scripts\prc_evnt_arrbone.nss \ scripts\prc_evnt_bonebld.nss \ scripts\prc_evnt_brtbn.nss \ scripts\prc_evnt_clbebil.nss \ scripts\prc_evnt_dvnsac.nss \ scripts\prc_evnt_embfr.nss \ scripts\prc_evnt_serparw.nss \ scripts\prc_evnt_snshld.nss \ scripts\prc_evnt_spirwep.nss \ scripts\prc_evnt_strmtl.nss \ scripts\prc_fact_cunbri.nss \ scripts\prc_fact_cunchk.nss \ scripts\prc_fact_cunconv.nss \ scripts\prc_fact_cunning.nss \ scripts\prc_fact_sklconv.nss \ scripts\prc_fact_splcast.nss \ scripts\prc_fact_splchk.nss \ scripts\prc_fact_splconv.nss \ scripts\prc_factotum.nss \ scripts\prc_fam_quasit.nss \ scripts\prc_favouredsoul.nss \ scripts\prc_favsoulweap.nss \ scripts\prc_fb_auto_fre.nss \ scripts\prc_fb_deathless.nss \ scripts\prc_feats.nss \ scripts\prc_fh_da.nss \ scripts\prc_fh_da_hb.nss \ scripts\prc_fh_dr.nss \ scripts\prc_fh_ranc.nss \ scripts\prc_fm_deeproots.nss \ scripts\prc_fm_forestdom.nss \ scripts\prc_fm_icy_mal.nss \ scripts\prc_fm_shock_mal.nss \ scripts\prc_fmm_shield.nss \ scripts\prc_fochlyr.nss \ scripts\prc_foe_hntr.nss \ scripts\prc_forcerest.nss \ scripts\prc_forestmaster.nss \ scripts\prc_forsake_abil.nss \ scripts\prc_forsake_heal.nss \ scripts\prc_forsaker.nss \ scripts\prc_frebzk.nss \ scripts\prc_frenzy.nss \ scripts\prc_fright_pres.nss \ scripts\prc_frostmage.nss \ scripts\prc_frostrager.nss \ scripts\prc_frtrgr_onetw.nss \ scripts\prc_frtrgr_punch.nss \ scripts\prc_ft_anvlthndr.nss \ scripts\prc_ft_apmagval.nss \ scripts\prc_ft_attngemsl.nss \ scripts\prc_ft_attunegem.nss \ scripts\prc_ft_aweblow.nss \ scripts\prc_ft_bbless.nss \ scripts\prc_ft_cldconj.nss \ scripts\prc_ft_dblwnd.nss \ scripts\prc_ft_despana.nss \ scripts\prc_ft_dmeta_emp.nss \ scripts\prc_ft_dmeta_ext.nss \ scripts\prc_ft_dmeta_max.nss \ scripts\prc_ft_fightdef.nss \ scripts\prc_ft_highlow.nss \ scripts\prc_ft_hmmredge.nss \ scripts\prc_ft_hntmldy.nss \ scripts\prc_ft_inlindl.nss \ scripts\prc_ft_intrcssn.nss \ scripts\prc_ft_lolthboon.nss \ scripts\prc_ft_mstrwnd.nss \ scripts\prc_ft_prfnagony.nss \ scripts\prc_ft_rcklsswnd.nss \ scripts\prc_ft_rngdisarm.nss \ scripts\prc_ft_scorpgrsp.nss \ scripts\prc_ft_secauth.nss \ scripts\prc_ft_sklltal.nss \ scripts\prc_ft_spnhlbrd.nss \ scripts\prc_ft_sudemp.nss \ scripts\prc_ft_sudext.nss \ scripts\prc_ft_sudmax.nss \ scripts\prc_ft_sudwide.nss \ scripts\prc_ft_trapeng.nss \ scripts\prc_ft_wndstrk.nss \ scripts\prc_ft_wptrch.nss \ scripts\prc_gfkill_fattk.nss \ scripts\prc_gfkill_gstep.nss \ scripts\prc_glist_onconv.nss \ scripts\prc_glist_onhb.nss \ scripts\prc_glist_onspwn.nss \ scripts\prc_golmeraada50.nss \ scripts\prc_golmeraada55.nss \ scripts\prc_golmeraada60.nss \ scripts\prc_golmeraada65.nss \ scripts\prc_golmeraada70.nss \ scripts\prc_golmeraada75.nss \ scripts\prc_golmeraada80.nss \ scripts\prc_golmeracla12.nss \ scripts\prc_golmeracla17.nss \ scripts\prc_golmeracla22.nss \ scripts\prc_golmeracla27.nss \ scripts\prc_golmeracla32.nss \ scripts\prc_golmerafle10.nss \ scripts\prc_golmerafle15.nss \ scripts\prc_golmerafle20.nss \ scripts\prc_golmerafle25.nss \ scripts\prc_golmerairo19.nss \ scripts\prc_golmerairo24.nss \ scripts\prc_golmerairo29.nss \ scripts\prc_golmerairo34.nss \ scripts\prc_golmerairo39.nss \ scripts\prc_golmerairo44.nss \ scripts\prc_golmerairo49.nss \ scripts\prc_golmerairo54.nss \ scripts\prc_golmeramit37.nss \ scripts\prc_golmeramit42.nss \ scripts\prc_golmeramit47.nss \ scripts\prc_golmeramit52.nss \ scripts\prc_golmeramit57.nss \ scripts\prc_golmeramit62.nss \ scripts\prc_golmeramit67.nss \ scripts\prc_golmeramit72.nss \ scripts\prc_golmeraspawn.nss \ scripts\prc_golmerasto15.nss \ scripts\prc_golmerasto20.nss \ scripts\prc_golmerasto25.nss \ scripts\prc_golmerasto30.nss \ scripts\prc_golmerasto35.nss \ scripts\prc_golmerasto40.nss \ scripts\prc_golmertcost.nss \ scripts\prc_grapple.nss \ scripts\prc_grappleend.nss \ scripts\prc_ham_barbs.nss \ scripts\prc_hath_cohort.nss \ scripts\prc_hath_fear.nss \ scripts\prc_heal_blind.nss \ scripts\prc_heal_comp.nss \ scripts\prc_heal_disease.nss \ scripts\prc_heal_fear.nss \ scripts\prc_heal_paral.nss \ scripts\prc_heal_poison.nss \ scripts\prc_heal_regen.nss \ scripts\prc_heal_res.nss \ scripts\prc_heal_restore.nss \ scripts\prc_heal_stflesh.nss \ scripts\prc_heartwarder.nss \ scripts\prc_hen_death.nss \ scripts\prc_hen_heart.nss \ scripts\prc_hen_spawn.nss \ scripts\prc_henshin.nss \ scripts\prc_hexbl_comp.nss \ scripts\prc_hexbl_comp_a.nss \ scripts\prc_hexbl_comp_c.nss \ scripts\prc_hexbl_compai.nss \ scripts\prc_hexbl_curse.nss \ scripts\prc_hexbl_unluck.nss \ scripts\prc_hext_fright.nss \ scripts\prc_hext_strbst.nss \ scripts\prc_hextor.nss \ scripts\prc_hextor_dam.nss \ scripts\prc_hextor_mode.nss \ scripts\prc_hips.nss \ scripts\prc_hm_hitsudo.nss \ scripts\prc_hm_rdlaware.nss \ scripts\prc_hm_rdlinter.nss \ scripts\prc_hm_wlkmount.nss \ scripts\prc_hotwm_ts.nss \ scripts\prc_hvcm_btlcst.nss \ scripts\prc_iaijutsu.nss \ scripts\prc_iaijutsu_cut.nss \ scripts\prc_iaijutsu_edg.nss \ scripts\prc_iaijutsu_mst.nss \ scripts\prc_iaijutsu_spr.nss \ scripts\prc_initdraconic.nss \ scripts\prc_insfre.nss \ scripts\prc_intuiatk.nss \ scripts\prc_is_ethereal.nss \ scripts\prc_is_incorp.nss \ scripts\prc_judicator.nss \ scripts\prc_juggernaut.nss \ scripts\prc_keep_onhit_a.nss \ scripts\prc_knght_battle.nss \ scripts\prc_knght_block.nss \ scripts\prc_knght_blwrk.nss \ scripts\prc_knght_blwrka.nss \ scripts\prc_knght_blwrkb.nss \ scripts\prc_knght_bond.nss \ scripts\prc_knght_daunt.nss \ scripts\prc_knght_fight.nss \ scripts\prc_knght_ishart.nss \ scripts\prc_knght_ishlly.nss \ scripts\prc_knght_loyal.nss \ scripts\prc_knght_mettle.nss \ scripts\prc_knght_shally.nss \ scripts\prc_knght_vigil.nss \ scripts\prc_knght_vigila.nss \ scripts\prc_knght_vigilb.nss \ scripts\prc_knghtch.nss \ scripts\prc_kngtwv_dam.nss \ scripts\prc_kngtwv_heal.nss \ scripts\prc_knight.nss \ scripts\prc_knight_dam.nss \ scripts\prc_kotmc_combat.nss \ scripts\prc_kotmc_tstrk.nss \ scripts\prc_lasher.nss \ scripts\prc_lasher_crack.nss \ scripts\prc_lasher_death.nss \ scripts\prc_lasher_lashw.nss \ scripts\prc_lasher_stun.nss \ scripts\prc_lasher_third.nss \ scripts\prc_levelup.nss \ scripts\prc_lgdr_unmove.nss \ scripts\prc_lgdr_unstop.nss \ scripts\prc_lolthmeat.nss \ scripts\prc_lucky_shot.nss \ scripts\prc_maa_dam.nss \ scripts\prc_maester_id.nss \ scripts\prc_magekill.nss \ scripts\prc_manatarms.nss \ scripts\prc_marsh_maj1.nss \ scripts\prc_marsh_maj1a.nss \ scripts\prc_marsh_maj1b.nss \ scripts\prc_marsh_min1.nss \ scripts\prc_marsh_min1a.nss \ scripts\prc_marsh_min1b.nss \ scripts\prc_marsh_move.nss \ scripts\prc_masterh.nss \ scripts\prc_masters_will.nss \ scripts\prc_maze_convo.nss \ scripts\prc_maze_en_trig.nss \ scripts\prc_maze_mvtrig.nss \ scripts\prc_maze_onenter.nss \ scripts\prc_maze_onexit.nss \ scripts\prc_metabrth_cnv.nss \ scripts\prc_metabrth_con.nss \ scripts\prc_metabrth_max.nss \ scripts\prc_metabrth_off.nss \ scripts\prc_metabrth_qs.nss \ scripts\prc_metamagic.nss \ scripts\prc_mithral.nss \ scripts\prc_morninglord.nss \ scripts\prc_mystbklsh.nss \ scripts\prc_nbl_coord.nss \ scripts\prc_nbl_favor.nss \ scripts\prc_nbl_favorcnv.nss \ scripts\prc_nbl_great.nss \ scripts\prc_nbl_inspire.nss \ scripts\prc_ncyst_event.nss \ scripts\prc_nightshade.nss \ scripts\prc_ninjca.nss \ scripts\prc_ninjca_gkido.nss \ scripts\prc_ninjca_gstep.nss \ scripts\prc_ninjca_gstp2.nss \ scripts\prc_ninjca_gstrk.nss \ scripts\prc_ninjca_gwalk.nss \ scripts\prc_ninjca_kido.nss \ scripts\prc_noteletrig_a.nss \ scripts\prc_noteletrig_b.nss \ scripts\prc_npc_blocked.nss \ scripts\prc_npc_combat.nss \ scripts\prc_npc_conv.nss \ scripts\prc_npc_damaged.nss \ scripts\prc_npc_death.nss \ scripts\prc_npc_disturb.nss \ scripts\prc_npc_hb.nss \ scripts\prc_npc_percep.nss \ scripts\prc_npc_physatt.nss \ scripts\prc_npc_rested.nss \ scripts\prc_npc_spawn.nss \ scripts\prc_npc_spellat.nss \ scripts\prc_npc_userdef.nss \ scripts\prc_nwnx_funcs.nss \ scripts\prc_ollam.nss \ scripts\prc_ollam_inscon.nss \ scripts\prc_ollam_insres.nss \ scripts\prc_onactivate.nss \ scripts\prc_onaquire.nss \ scripts\prc_oncutabort.nss \ scripts\prc_ondeath.nss \ scripts\prc_ondying.nss \ scripts\prc_onenter.nss \ scripts\prc_onenter_cd.nss \ scripts\prc_onhb_indiv.nss \ scripts\prc_onheartbeat.nss \ scripts\prc_onhitcast.nss \ scripts\prc_onleave.nss \ scripts\prc_onleveldown.nss \ scripts\prc_onmodload.nss \ scripts\prc_onplayerchat.nss \ scripts\prc_onplaytarget.nss \ scripts\prc_onrespawn.nss \ scripts\prc_onunaquire.nss \ scripts\prc_onuserdef.nss \ scripts\prc_ootbi.nss \ scripts\prc_ootbi_gwfcs.nss \ scripts\prc_ootbi_rngprc.nss \ scripts\prc_oozemstr.nss \ scripts\prc_pa_fletch.nss \ scripts\prc_pa_ps.nss \ scripts\prc_pdk_fear.nss \ scripts\prc_pdk_inspire.nss \ scripts\prc_pdk_rally.nss \ scripts\prc_pdk_stand.nss \ scripts\prc_pdk_wrath.nss \ scripts\prc_peak_smitemg.nss \ scripts\prc_peerless.nss \ scripts\prc_plc_click.nss \ scripts\prc_plc_close.nss \ scripts\prc_plc_damaged.nss \ scripts\prc_plc_death.nss \ scripts\prc_plc_disturb.nss \ scripts\prc_plc_hb.nss \ scripts\prc_plc_lock.nss \ scripts\prc_plc_open.nss \ scripts\prc_plc_physatt.nss \ scripts\prc_plc_spell.nss \ scripts\prc_plc_ud.nss \ scripts\prc_plc_unlock.nss \ scripts\prc_plc_used.nss \ scripts\prc_pnp_fam_conv.nss \ scripts\prc_pnp_fam_hide.nss \ scripts\prc_pnp_fam_scry.nss \ scripts\prc_pnp_school.nss \ scripts\prc_pnp_shcc_s.nss \ scripts\prc_powatk_chf.nss \ scripts\prc_powatk_chqs.nss \ scripts\prc_powatk_chs.nss \ scripts\prc_powatk_equ.nss \ scripts\prc_powatk_eval.nss \ scripts\prc_powatk_off.nss \ scripts\prc_powatk_qslt.nss \ scripts\prc_prereq.nss \ scripts\prc_prflflch.nss \ scripts\prc_radialbug.nss \ scripts\prc_rapid_metab.nss \ scripts\prc_rava_cut.nss \ scripts\prc_rava_fear.nss \ scripts\prc_rava_pain.nss \ scripts\prc_rava_visage.nss \ scripts\prc_reapmauler.nss \ scripts\prc_reckl_offens.nss \ scripts\prc_reducedasf.nss \ scripts\prc_reflx_psych.nss \ scripts\prc_remfre.nss \ scripts\prc_reservaoe.nss \ scripts\prc_reservbnalft.nss \ scripts\prc_reservcoe.nss \ scripts\prc_reservdimrch.nss \ scripts\prc_reservdj.nss \ scripts\prc_reservefeat.nss \ scripts\prc_reservfcqs.nss \ scripts\prc_reservheal.nss \ scripts\prc_reservhrbrth.nss \ scripts\prc_reservinvndl.nss \ scripts\prc_reservlern.nss \ scripts\prc_reservoptn.nss \ scripts\prc_reservprtwrd.nss \ scripts\prc_reservrng.nss \ scripts\prc_reservself.nss \ scripts\prc_reservshrt.nss \ scripts\prc_reservsmnelm.nss \ scripts\prc_reservtch.nss \ scripts\prc_rest.nss \ scripts\prc_rotdfeat.nss \ scripts\prc_rune_chant.nss \ scripts\prc_rune_charges.nss \ scripts\prc_rune_clear.nss \ scripts\prc_rune_cntone.nss \ scripts\prc_rune_cntten.nss \ scripts\prc_rune_inscrib.nss \ scripts\prc_rune_max.nss \ scripts\prc_rune_perday.nss \ scripts\prc_runescarred.nss \ scripts\prc_s_auravsdem.nss \ scripts\prc_s_censuredm.nss \ scripts\prc_s_conscaura.nss \ scripts\prc_s_conscauraa.nss \ scripts\prc_s_conscaurab.nss \ scripts\prc_s_courheavn.nss \ scripts\prc_s_courheavna.nss \ scripts\prc_s_courheavnb.nss \ scripts\prc_s_deadshout.nss \ scripts\prc_s_kiheal.nss \ scripts\prc_s_kisave.nss \ scripts\prc_s_kiskill.nss \ scripts\prc_s_shoutstun.nss \ scripts\prc_s_spellb.nss \ scripts\prc_s_spellgain.nss \ scripts\prc_sacpur_strik.nss \ scripts\prc_sacrdvit.nss \ scripts\prc_sacredfist.nss \ scripts\prc_sacrveng.nss \ scripts\prc_sb_enxpctd.nss \ scripts\prc_sb_ephmrl.nss \ scripts\prc_sb_farshad.nss \ scripts\prc_sb_shdstlth.nss \ scripts\prc_sb_shdstrk.nss \ scripts\prc_sb_unerrng.nss \ scripts\prc_sb_uwactiv.nss \ scripts\prc_sbheir.nss \ scripts\prc_sbheir_brill.nss \ scripts\prc_sbheir_holy.nss \ scripts\prc_sbheir_shock.nss \ scripts\prc_sch_arcanep.nss \ scripts\prc_sch_cosmfire.nss \ scripts\prc_sch_timeless.nss \ scripts\prc_schord.nss \ scripts\prc_scout.nss \ scripts\prc_scry_end.nss \ scripts\prc_sereneguard.nss \ scripts\prc_sergrd_boom.nss \ scripts\prc_setalign.nss \ scripts\prc_setcompatt.nss \ scripts\prc_shadowlord.nss \ scripts\prc_shadstalker.nss \ scripts\prc_shaman.nss \ scripts\prc_shaman_ancp.nss \ scripts\prc_shar_confuse.nss \ scripts\prc_shar_dominat.nss \ scripts\prc_shar_fascint.nss \ scripts\prc_shar_haste.nss \ scripts\prc_shar_sanc.nss \ scripts\prc_shatterdpeak.nss \ scripts\prc_shdwbn_brlgt.nss \ scripts\prc_shdwbn_psdhw.nss \ scripts\prc_shdwbn_sacdf.nss \ scripts\prc_shdwbn_sacsh.nss \ scripts\prc_shdwbn_sacst.nss \ scripts\prc_shdwbn_smite.nss \ scripts\prc_shft_effap.nss \ scripts\prc_shift_convo.nss \ scripts\prc_shift_debug.nss \ scripts\prc_shift_quicks.nss \ scripts\prc_shift_relvl.nss \ scripts\prc_shou.nss \ scripts\prc_shou_flryall.nss \ scripts\prc_shou_flrylgt.nss \ scripts\prc_shou_flurry.nss \ scripts\prc_size.nss \ scripts\prc_skullclan.nss \ scripts\prc_slayerdomiel.nss \ scripts\prc_sleat_edrain.nss \ scripts\prc_sleat_sblast.nss \ scripts\prc_sleat_sradia.nss \ scripts\prc_sneak_att.nss \ scripts\prc_snowflake.nss \ scripts\prc_sod_deathtch.nss \ scripts\prc_sod_divgrace.nss \ scripts\prc_sohei.nss \ scripts\prc_sohei_frenzy.nss \ scripts\prc_soldoflight.nss \ scripts\prc_soul_rot.nss \ scripts\prc_sp_event.nss \ scripts\prc_speed.nss \ scripts\prc_spellbook.nss \ scripts\prc_spellf_eval.nss \ scripts\prc_spellfire.nss \ scripts\prc_spellfire_hb.nss \ scripts\prc_spellswd.nss \ scripts\prc_spldnc_cnf.nss \ scripts\prc_spldnc_dnc.nss \ scripts\prc_spldnc_emp.nss \ scripts\prc_spldnc_ent.nss \ scripts\prc_spldnc_ext.nss \ scripts\prc_spldnc_max.nss \ scripts\prc_spldnc_slp.nss \ scripts\prc_sptshm_chast.nss \ scripts\prc_stormlord.nss \ scripts\prc_stunfist.nss \ scripts\prc_suel_disstrk.nss \ scripts\prc_suelarchana.nss \ scripts\prc_swashbuckler.nss \ scripts\prc_swashdam.nss \ scripts\prc_swashheal.nss \ scripts\prc_swashweak.nss \ scripts\prc_swftwg_bol.nss \ scripts\prc_swftwg_wing.nss \ scripts\prc_swiftwing.nss \ scripts\prc_switches.nss \ scripts\prc_switchesc.nss \ scripts\prc_talona.nss \ scripts\prc_talontiamat.nss \ scripts\prc_taltia_brth.nss \ scripts\prc_taltia_dom.nss \ scripts\prc_telecirc_aux.nss \ scripts\prc_telecirc_dis.nss \ scripts\prc_telecirc_oe.nss \ scripts\prc_telep_end_qs.nss \ scripts\prc_telep_lname.nss \ scripts\prc_telep_mrkloc.nss \ scripts\prc_telep_mrkrst.nss \ scripts\prc_telep_odlg_s.nss \ scripts\prc_telep_optdlg.nss \ scripts\prc_telep_quicks.nss \ scripts\prc_teleport_aux.nss \ scripts\prc_teleprt_conv.nss \ scripts\prc_tempest.nss \ scripts\prc_templates.nss \ scripts\prc_thaykn_dam.nss \ scripts\prc_thayknight.nss \ scripts\prc_timer_dying.nss \ scripts\prc_tk_fnlstnd.nss \ scripts\prc_tlbl_dmblght.nss \ scripts\prc_tn_cgund.nss \ scripts\prc_tn_clund.nss \ scripts\prc_tn_des_100.nss \ scripts\prc_tn_des_20.nss \ scripts\prc_tn_des_a.nss \ scripts\prc_tn_des_b.nss \ scripts\prc_tn_des_c.nss \ scripts\prc_tn_endrain.nss \ scripts\prc_tn_unsum.nss \ scripts\prc_to_carrion.nss \ scripts\prc_to_carriona.nss \ scripts\prc_to_dthtch.nss \ scripts\prc_to_fear.nss \ scripts\prc_to_mjrund.nss \ scripts\prc_to_mnrund.nss \ scripts\prc_to_nightwing.nss \ scripts\prc_to_pallor.nss \ scripts\prc_to_pallora.nss \ scripts\prc_tp_mgmt_eval.nss \ scripts\prc_trapfind_act.nss \ scripts\prc_trapfind_pas.nss \ scripts\prc_trueappear.nss \ scripts\prc_tw_rend.nss \ scripts\prc_unarm_pen.nss \ scripts\prc_unequip.nss \ scripts\prc_unequip_cw.nss \ scripts\prc_uni_shift.nss \ scripts\prc_ur_siphon.nss \ scripts\prc_ur_siphoncnv.nss \ scripts\prc_uranger.nss \ scripts\prc_vassal.nss \ scripts\prc_vassal_treas.nss \ scripts\prc_vb_dw_armor.nss \ scripts\prc_vb_dw_weap.nss \ scripts\prc_vigilant.nss \ scripts\prc_virtuoso.nss \ scripts\prc_vows.nss \ scripts\prc_wallbreatha.nss \ scripts\prc_wallbreathc.nss \ scripts\prc_warchief.nss \ scripts\prc_warsling.nss \ scripts\prc_wchf_bodygrd.nss \ scripts\prc_wchf_frenzy.nss \ scripts\prc_weap_apt_app.nss \ scripts\prc_weap_apt_opt.nss \ scripts\prc_weapmas.nss \ scripts\prc_werewolf.nss \ scripts\prc_wild_def.nss \ scripts\prc_wild_rod.nss \ scripts\prc_wild_strike.nss \ scripts\prc_wipensb.nss \ scripts\prc_witch_lspell.nss \ scripts\prc_wwcurse.nss \ scripts\prc_wwempwolf.nss \ scripts\prc_wwformwolf.nss \ scripts\prc_wwhybridwolf.nss \ scripts\prc_wwoc_widen.nss \ scripts\prc_wwunpoly.nss \ scripts\prc_wyzfeat.nss \ scripts\prc_xtradracaura.nss \ scripts\prc_zoa.nss \ scripts\prgt_kit.nss \ scripts\prgt_spawneg.nss \ scripts\prgt_trap_disa.nss \ scripts\prgt_trap_fire.nss \ scripts\ravage_cllghtbl1.nss \ scripts\ravage_cllghtbl2.nss \ scripts\ravage_gldn_ice1.nss \ scripts\ravage_gldn_ice2.nss \ scripts\ravage_jade_wtr1.nss \ scripts\ravage_jade_wtr2.nss \ scripts\ravage_prfdctlv1.nss \ scripts\ravage_prfdctlv2.nss \ scripts\ravage_uncrnbld1.nss \ scripts\ravage_uncrnbld2.nss \ scripts\rm_spellfury.nss \ scripts\rm_spellrage.nss \ scripts\rm_warriorcry.nss \ scripts\rs_regen_wounds.nss \ scripts\rune_bers.nss \ scripts\rune_conv.nss \ scripts\rune_convb.nss \ scripts\rune_dim_door.nss \ scripts\rune_face.nss \ scripts\rune_leftarm.nss \ scripts\rune_leftchest.nss \ scripts\rune_lefthand.nss \ scripts\rune_rightarm.nss \ scripts\rune_rightchest.nss \ scripts\rune_righthand.nss \ scripts\sac_flames.nss \ scripts\sac_innerarmor.nss \ scripts\sac_speed.nss \ scripts\sbr_onacquire.nss \ scripts\sbr_onactivate.nss \ scripts\sbr_onrest.nss \ scripts\sbr_restful_obj.nss \ scripts\shadp_shaddoub.nss \ scripts\shadp_shadwalk.nss \ scripts\shadp_shieldshad.nss \ scripts\skill_climb.nss \ scripts\skill_jump.nss \ scripts\sla_script1.nss \ scripts\sla_script2.nss \ scripts\sla_script3.nss \ scripts\sla_script4.nss \ scripts\sla_script5.nss \ scripts\sol_boltxagya.nss \ scripts\sol_divengeance.nss \ scripts\sol_energon.nss \ scripts\sol_energyburst.nss \ scripts\sol_smitundead.nss \ scripts\soul_spawn.nss \ scripts\sp_disc_crown.nss \ scripts\spl_arcane_fire.nss \ scripts\spl_maste_shape.nss \ scripts\spl_mastery_elem.nss \ scripts\spl_ooze_glob.nss \ scripts\spl_ooze_touch.nss \ scripts\spl_slime_wave.nss \ scripts\spl_spell_like.nss \ scripts\strat_fiendglare.nss \ scripts\strat_pitglare.nss \ scripts\strat_sumfiend.nss \ scripts\summon_hama.nss \ scripts\taltia_aurafear.nss \ scripts\taltia_aurafeara.nss \ scripts\tempus_dg_enh.nss \ scripts\tempus_dg_enh2.nss \ scripts\tempus_dg_enh3.nss \ scripts\tempus_dg_sanar.nss \ scripts\tempus_dg_saxio.nss \ scripts\tempus_dg_sbarsk.nss \ scripts\tempus_dg_scold.nss \ scripts\tempus_dg_sconec.nss \ scripts\tempus_dg_sdarkn.nss \ scripts\tempus_dg_sdisr.nss \ scripts\tempus_dg_selec.nss \ scripts\tempus_dg_senh.nss \ scripts\tempus_dg_senh2.nss \ scripts\tempus_dg_senh3.nss \ scripts\tempus_dg_set.nss \ scripts\tempus_dg_sfire.nss \ scripts\tempus_dg_sfireb.nss \ scripts\tempus_dg_shaste.nss \ scripts\tempus_dg_sholy.nss \ scripts\tempus_dg_sinvis.nss \ scripts\tempus_dg_skeen.nss \ scripts\tempus_dg_slight.nss \ scripts\tempus_dg_smissi.nss \ scripts\tempus_dg_sunho.nss \ scripts\tempus_dg_svampi.nss \ scripts\tempus_dg_svic1.nss \ scripts\tempus_dg_svic10.nss \ scripts\tempus_dg_svic11.nss \ scripts\tempus_dg_svic12.nss \ scripts\tempus_dg_svic13.nss \ scripts\tempus_dg_svic14.nss \ scripts\tempus_dg_svic15.nss \ scripts\tempus_dg_svic16.nss \ scripts\tempus_dg_svic17.nss \ scripts\tempus_dg_svic18.nss \ scripts\tempus_dg_svic19.nss \ scripts\tempus_dg_svic2.nss \ scripts\tempus_dg_svic20.nss \ scripts\tempus_dg_svic21.nss \ scripts\tempus_dg_svic22.nss \ scripts\tempus_dg_svic23.nss \ scripts\tempus_dg_svic24.nss \ scripts\tempus_dg_svic3.nss \ scripts\tempus_dg_svic4.nss \ scripts\tempus_dg_svic5.nss \ scripts\tempus_dg_svic6.nss \ scripts\tempus_dg_svic7.nss \ scripts\tempus_dg_svic8.nss \ scripts\tempus_dg_svic9.nss \ scripts\tempus_dg_sweb.nss \ scripts\tempus_dg_swound.nss \ scripts\tempus_enchweap.nss \ scripts\tempus_ft_army.nss \ scripts\tempus_identify.nss \ scripts\test_new_poly.nss \ scripts\tf_startconvo.nss \ scripts\tfshad_10000gp.nss \ scripts\tfshad_blindness.nss \ scripts\tfshad_givetoken.nss \ scripts\tfshad_jump.nss \ scripts\tmp_blooded_cry.nss \ scripts\tmp_hdrag_breath.nss \ scripts\tmp_lich_touch.nss \ scripts\tmp_m_alhoon.nss \ scripts\tmp_m_blooded.nss \ scripts\tmp_m_celest.nss \ scripts\tmp_m_cryptspawn.nss \ scripts\tmp_m_curst.nss \ scripts\tmp_m_dark.nss \ scripts\tmp_m_fiend.nss \ scripts\tmp_m_gravetouch.nss \ scripts\tmp_m_halftroll.nss \ scripts\tmp_m_hceles.nss \ scripts\tmp_m_hdragon.nss \ scripts\tmp_m_hfiend.nss \ scripts\tmp_m_lich.nss \ scripts\tmp_m_licha.nss \ scripts\tmp_m_mineral.nss \ scripts\tmp_m_necropol.nss \ scripts\tmp_m_saint.nss \ scripts\tmp_mineral_smt.nss \ scripts\tmp_protectaura.nss \ scripts\tmp_sla.nss \ scripts\tmp_smite.nss \ scripts\tmp_t_alhoon.nss \ scripts\tmp_t_blooded.nss \ scripts\tmp_t_celest.nss \ scripts\tmp_t_cryptspawn.nss \ scripts\tmp_t_curst.nss \ scripts\tmp_t_dark.nss \ scripts\tmp_t_fiend.nss \ scripts\tmp_t_gravetouch.nss \ scripts\tmp_t_halftroll.nss \ scripts\tmp_t_hcelest.nss \ scripts\tmp_t_hdragon.nss \ scripts\tmp_t_hfiend.nss \ scripts\tmp_t_lich.nss \ scripts\tmp_t_licha.nss \ scripts\tmp_t_lichd.nss \ scripts\tmp_t_mineral.nss \ scripts\tmp_t_necropol.nss \ scripts\tmp_t_saint.nss \ scripts\tog.nss \ scripts\tog_charm.nss \ scripts\tog_spawn_demon.nss \ scripts\tog_sum_balor.nss \ scripts\tog_sum_glab.nss \ scripts\tog_sum_mar.nss \ scripts\tog_sum_suc.nss \ scripts\tog_sum_vrock.nss \ scripts\unarmed_caller.nss \ scripts\urang_anicomp.nss \ scripts\urang_favenemy.nss \ scripts\urang_haste.nss \ scripts\urang_hips.nss \ scripts\wol_a_bbb.nss \ scripts\wol_a_dymond.nss \ scripts\wol_a_enter.nss \ scripts\wol_a_exit.nss \ scripts\wol_a_flavor.nss \ scripts\wol_m_aradros.nss \ scripts\wol_m_arik.nss \ scripts\wol_m_blackarch.nss \ scripts\wol_m_blackrzr.nss \ scripts\wol_m_btevstar.nss \ scripts\wol_m_bully.nss \ scripts\wol_m_calad.nss \ scripts\wol_m_corals.nss \ scripts\wol_m_cptmortum.nss \ scripts\wol_m_crimruin.nss \ scripts\wol_m_desrtwind.nss \ scripts\wol_m_devious.nss \ scripts\wol_m_direwind.nss \ scripts\wol_m_divspark.nss \ scripts\wol_m_durind.nss \ scripts\wol_m_dwtob.nss \ scripts\wol_m_dymond.nss \ scripts\wol_m_eventide.nss \ scripts\wol_m_exordius.nss \ scripts\wol_m_faithful.nss \ scripts\wol_m_fiendkll.nss \ scripts\wol_m_flay.nss \ scripts\wol_m_flmcaster.nss \ scripts\wol_m_fullmoon.nss \ scripts\wol_m_guurgal.nss \ scripts\wol_m_hillcrus.nss \ scripts\wol_m_infil.nss \ scripts\wol_m_kamate.nss \ scripts\wol_m_lastcit.nss \ scripts\wol_m_lipeng.nss \ scripts\wol_m_lorestlr.nss \ scripts\wol_m_mndsplntr.nss \ scripts\wol_m_notched.nss \ scripts\wol_m_quickspr.nss \ scripts\wol_m_ramthene.nss \ scripts\wol_m_ravenkind.nss \ scripts\wol_m_scales.nss \ scripts\wol_m_shishio.nss \ scripts\wol_m_simplebow.nss \ scripts\wol_m_stalker.nss \ scripts\wol_m_steadfast.nss \ scripts\wol_m_sunsword.nss \ scripts\wol_m_supernal.nss \ scripts\wol_m_thaas.nss \ scripts\wol_m_tigerfng.nss \ scripts\wol_m_treebro.nss \ scripts\wol_m_umbral.nss \ scripts\wol_m_unfetter.nss \ scripts\wol_m_ur.nss \ scripts\wol_m_vicious.nss \ scripts\wol_m_wargirds.nss \ scripts\wol_m_whelm.nss \ scripts\wol_m_witches.nss \ scripts\wol_m_wyrmbane.nss \ scripts\wol_sla_aradros.nss \ scripts\wol_sla_bbb.nss \ scripts\wol_sla_blackrzr.nss \ scripts\wol_sla_btevstar.nss \ scripts\wol_sla_bully.nss \ scripts\wol_sla_calad.nss \ scripts\wol_sla_crimruin.nss \ scripts\wol_sla_devious.nss \ scripts\wol_sla_direwind.nss \ scripts\wol_sla_divspark.nss \ scripts\wol_sla_dsrtwind.nss \ scripts\wol_sla_durind.nss \ scripts\wol_sla_dwtob.nss \ scripts\wol_sla_dymond.nss \ scripts\wol_sla_eventide.nss \ scripts\wol_sla_exordius.nss \ scripts\wol_sla_faithful.nss \ scripts\wol_sla_fiendkll.nss \ scripts\wol_sla_flay.nss \ scripts\wol_sla_flmcstr.nss \ scripts\wol_sla_fullmoon.nss \ scripts\wol_sla_guurgal.nss \ scripts\wol_sla_hillcrus.nss \ scripts\wol_sla_kamate.nss \ scripts\wol_sla_lastcit.nss \ scripts\wol_sla_lorestlr.nss \ scripts\wol_sla_mindspli.nss \ scripts\wol_sla_notched.nss \ scripts\wol_sla_quickspr.nss \ scripts\wol_sla_ramthene.nss \ scripts\wol_sla_ravenknd.nss \ scripts\wol_sla_scales.nss \ scripts\wol_sla_shishio.nss \ scripts\wol_sla_simplebw.nss \ scripts\wol_sla_stalker.nss \ scripts\wol_sla_steadfst.nss \ scripts\wol_sla_sunsword.nss \ scripts\wol_sla_supernal.nss \ scripts\wol_sla_thaas.nss \ scripts\wol_sla_tigerfng.nss \ scripts\wol_sla_treebro.nss \ scripts\wol_sla_umbral.nss \ scripts\wol_sla_unfetter.nss \ scripts\wol_sla_ur.nss \ scripts\wol_sla_wargirds.nss \ scripts\wol_sla_whelm.nss \ scripts\wol_sla_witches.nss \ scripts\wol_sla_wyrmbane.nss \ scripts\wol_t_aradros.nss \ scripts\wol_t_arik.nss \ scripts\wol_t_blackarch.nss \ scripts\wol_t_blackrzr.nss \ scripts\wol_t_btevstar.nss \ scripts\wol_t_bully.nss \ scripts\wol_t_calad.nss \ scripts\wol_t_corals.nss \ scripts\wol_t_cptmortum.nss \ scripts\wol_t_crimruin.nss \ scripts\wol_t_desrtwind.nss \ scripts\wol_t_devious.nss \ scripts\wol_t_direwind.nss \ scripts\wol_t_divspark.nss \ scripts\wol_t_durind.nss \ scripts\wol_t_dymond.nss \ scripts\wol_t_eventide.nss \ scripts\wol_t_exordius.nss \ scripts\wol_t_faithful.nss \ scripts\wol_t_fiendkll.nss \ scripts\wol_t_flay.nss \ scripts\wol_t_flmcaster.nss \ scripts\wol_t_fullmoon.nss \ scripts\wol_t_guurgal.nss \ scripts\wol_t_hillcrus.nss \ scripts\wol_t_infil.nss \ scripts\wol_t_kamate.nss \ scripts\wol_t_lastcit.nss \ scripts\wol_t_lipeng.nss \ scripts\wol_t_lorestlr.nss \ scripts\wol_t_mndsplntr.nss \ scripts\wol_t_notched.nss \ scripts\wol_t_quickspr.nss \ scripts\wol_t_ramthene.nss \ scripts\wol_t_ravenkind.nss \ scripts\wol_t_scales.nss \ scripts\wol_t_shishio.nss \ scripts\wol_t_simplebow.nss \ scripts\wol_t_stalker.nss \ scripts\wol_t_steadfast.nss \ scripts\wol_t_sunsword.nss \ scripts\wol_t_supernal.nss \ scripts\wol_t_thaas.nss \ scripts\wol_t_tigerfng.nss \ scripts\wol_t_treebro.nss \ scripts\wol_t_umbral.nss \ scripts\wol_t_unfetter.nss \ scripts\wol_t_ur.nss \ scripts\wol_t_vicious.nss \ scripts\wol_t_wargirds.nss \ scripts\wol_t_whelm.nss \ scripts\wol_t_witches.nss \ scripts\wol_t_wyrmbane.nss \ scripts\xchst_chat.nss \ scripts\xchst_exit.nss \ scripts\xchst_hb.nss \ scripts\xchst_onused.nss SPELLS= \ spells\nw_c2_default7.nss \ spells\nw_s0_2pitfiend.nss \ spells\nw_s0_abilbuff.nss \ spells\nw_s0_acidarrow.nss \ spells\nw_s0_acidfog.nss \ spells\nw_s0_acidfoga.nss \ spells\nw_s0_acidfogb.nss \ spells\nw_s0_acidfogc.nss \ spells\nw_s0_aid.nss \ spells\nw_s0_animdead.nss \ spells\nw_s0_auravital.nss \ spells\nw_s0_awaken.nss \ spells\nw_s0_barkskin.nss \ spells\nw_s0_bescurse.nss \ spells\nw_s0_bladebar.nss \ spells\nw_s0_bladebara.nss \ spells\nw_s0_bladebarc.nss \ spells\nw_s0_bless.nss \ spells\nw_s0_blinddeaf.nss \ spells\nw_s0_burnhand.nss \ spells\nw_s0_calllghtn.nss \ spells\nw_s0_charmani.nss \ spells\nw_s0_charmmon.nss \ spells\nw_s0_charmper.nss \ spells\nw_s0_chlightn.nss \ spells\nw_s0_circchaosa.nss \ spells\nw_s0_circchaosb.nss \ spells\nw_s0_circdeath.nss \ spells\nw_s0_circdoom.nss \ spells\nw_s0_circevila.nss \ spells\nw_s0_circevilb.nss \ spells\nw_s0_circgooda.nss \ spells\nw_s0_circgoodb.nss \ spells\nw_s0_circlawa.nss \ spells\nw_s0_circlawb.nss \ spells\nw_s0_circle.nss \ spells\nw_s0_clairadvo.nss \ spells\nw_s0_clarity.nss \ spells\nw_s0_cloudkill.nss \ spells\nw_s0_cloudkilla.nss \ spells\nw_s0_cloudkillb.nss \ spells\nw_s0_cloudkillc.nss \ spells\nw_s0_colspray.nss \ spells\nw_s0_conecold.nss \ spells\nw_s0_confusion.nss \ spells\nw_s0_contagion.nss \ spells\nw_s0_conund.nss \ spells\nw_s0_crgrund.nss \ spells\nw_s0_crpdoom.nss \ spells\nw_s0_crpdooma.nss \ spells\nw_s0_crpdoomb.nss \ spells\nw_s0_crpdoomc.nss \ spells\nw_s0_crundead.nss \ spells\nw_s0_curinflict.nss \ spells\nw_s0_darkness.nss \ spells\nw_s0_darknessa.nss \ spells\nw_s0_darknessb.nss \ spells\nw_s0_daze.nss \ spells\nw_s0_deaward.nss \ spells\nw_s0_delfirea.nss \ spells\nw_s0_delfirebal.nss \ spells\nw_s0_destruc.nss \ spells\nw_s0_dismagic.nss \ spells\nw_s0_dismissal.nss \ spells\nw_s0_divpower.nss \ spells\nw_s0_dmgred.nss \ spells\nw_s0_doman.nss \ spells\nw_s0_dommon.nss \ spells\nw_s0_dompers.nss \ spells\nw_s0_doom.nss \ spells\nw_s0_elements.nss \ spells\nw_s0_eleswarm.nss \ spells\nw_s0_enebuffer.nss \ spells\nw_s0_enedrain.nss \ spells\nw_s0_enervat.nss \ spells\nw_s0_entangle.nss \ spells\nw_s0_entangleb.nss \ spells\nw_s0_entanglec.nss \ spells\nw_s0_ethervis.nss \ spells\nw_s0_evards.nss \ spells\nw_s0_evardsa.nss \ spells\nw_s0_evardsb.nss \ spells\nw_s0_evardsc.nss \ spells\nw_s0_extrathf.nss \ spells\nw_s0_fear.nss \ spells\nw_s0_feebmind.nss \ spells\nw_s0_findtrap.nss \ spells\nw_s0_fingdeath.nss \ spells\nw_s0_fireball.nss \ spells\nw_s0_fireshld.nss \ spells\nw_s0_firestrm.nss \ spells\nw_s0_flmarrow.nss \ spells\nw_s0_flmlash.nss \ spells\nw_s0_flmstrike.nss \ spells\nw_s0_freemove.nss \ spells\nw_s0_gate.nss \ spells\nw_s0_ghostvis.nss \ spells\nw_s0_ghoultch.nss \ spells\nw_s0_ghoultcha.nss \ spells\nw_s0_globeinv.nss \ spells\nw_s0_grbullstr.nss \ spells\nw_s0_grcatsgr.nss \ spells\nw_s0_grdispel.nss \ spells\nw_s0_greaglesp.nss \ spells\nw_s0_grease.nss \ spells\nw_s0_greasea.nss \ spells\nw_s0_greaseb.nss \ spells\nw_s0_greasec.nss \ spells\nw_s0_grendur.nss \ spells\nw_s0_grfoxscu.nss \ spells\nw_s0_growlwis.nss \ spells\nw_s0_grplanar.nss \ spells\nw_s0_grspbrch.nss \ spells\nw_s0_grspmant.nss \ spells\nw_s0_grspturn.nss \ spells\nw_s0_hammgods.nss \ spells\nw_s0_haste.nss \ spells\nw_s0_healcirc.nss \ spells\nw_s0_healharm.nss \ spells\nw_s0_holdanim.nss \ spells\nw_s0_holdmon.nss \ spells\nw_s0_holdpers.nss \ spells\nw_s0_holyaura.nss \ spells\nw_s0_horrwilt.nss \ spells\nw_s0_icestorm.nss \ spells\nw_s0_identify.nss \ spells\nw_s0_implosion.nss \ spells\nw_s0_imprinvis.nss \ spells\nw_s0_inccloud.nss \ spells\nw_s0_incclouda.nss \ spells\nw_s0_inccloudb.nss \ spells\nw_s0_inccloudc.nss \ spells\nw_s0_invisib.nss \ spells\nw_s0_invpurge.nss \ spells\nw_s0_invpurgea.nss \ spells\nw_s0_invsph.nss \ spells\nw_s0_invspha.nss \ spells\nw_s0_invsphb.nss \ spells\nw_s0_knock.nss \ spells\nw_s0_lghtnbolt.nss \ spells\nw_s0_light.nss \ spells\nw_s0_lore.nss \ spells\nw_s0_lsdispel.nss \ spells\nw_s0_lsmndblk.nss \ spells\nw_s0_lsplanar.nss \ spells\nw_s0_lsspbrch.nss \ spells\nw_s0_lsspmant.nss \ spells\nw_s0_magearm.nss \ spells\nw_s0_magmiss.nss \ spells\nw_s0_mashaste.nss \ spells\nw_s0_massbldf.nss \ spells\nw_s0_metswarm.nss \ spells\nw_s0_mindblk.nss \ spells\nw_s0_mindfog.nss \ spells\nw_s0_mindfoga.nss \ spells\nw_s0_mindfogb.nss \ spells\nw_s0_minglobe.nss \ spells\nw_s0_morddisj.nss \ spells\nw_s0_mordswrd.nss \ spells\nw_s0_mscharm.nss \ spells\nw_s0_naturebal.nss \ spells\nw_s0_negburst.nss \ spells\nw_s0_negprot.nss \ spells\nw_s0_negray.nss \ spells\nw_s0_phankill.nss \ spells\nw_s0_planar.nss \ spells\nw_s0_poison.nss \ spells\nw_s0_polyself.nss \ spells\nw_s0_prayer.nss \ spells\nw_s0_prisspray.nss \ spells\nw_s0_protection.nss \ spells\nw_s0_prspells.nss \ spells\nw_s0_pwkill.nss \ spells\nw_s0_pwstun.nss \ spells\nw_s0_rayenfeeb.nss \ spells\nw_s0_rayfrost.nss \ spells\nw_s0_regen.nss \ spells\nw_s0_remeffect.nss \ spells\nw_s0_res.nss \ spells\nw_s0_resis.nss \ spells\nw_s0_rmvfear.nss \ spells\nw_s0_rmvparal.nss \ spells\nw_s0_sanctuary.nss \ spells\nw_s0_scare.nss \ spells\nw_s0_searlght.nss \ spells\nw_s0_seeinvis.nss \ spells\nw_s0_shadshld.nss \ spells\nw_s0_shapechg.nss \ spells\nw_s0_silence.nss \ spells\nw_s0_silencea.nss \ spells\nw_s0_silenceb.nss \ spells\nw_s0_silencec.nss \ spells\nw_s0_slaylive.nss \ spells\nw_s0_sleep.nss \ spells\nw_s0_slow.nss \ spells\nw_s0_sndburst.nss \ spells\nw_s0_splresis.nss \ spells\nw_s0_spmantle.nss \ spells\nw_s0_stinkcld.nss \ spells\nw_s0_stinkclda.nss \ spells\nw_s0_stinkcldc.nss \ spells\nw_s0_stoneskn.nss \ spells\nw_s0_stormvenc.nss \ spells\nw_s0_stormveng.nss \ spells\nw_s0_summon.nss \ spells\nw_s0_summshad.nss \ spells\nw_s0_summshad02.nss \ spells\nw_s0_sunbeam.nss \ spells\nw_s0_tenstrans.nss \ spells\nw_s0_timestop.nss \ spells\nw_s0_truesee.nss \ spells\nw_s0_unhaura.nss \ spells\nw_s0_vamptch.nss \ spells\nw_s0_virtue.nss \ spells\nw_s0_wailbansh.nss \ spells\nw_s0_wallfire.nss \ spells\nw_s0_wallfirea.nss \ spells\nw_s0_wallfirec.nss \ spells\nw_s0_warcry.nss \ spells\nw_s0_web.nss \ spells\nw_s0_weba.nss \ spells\nw_s0_webb.nss \ spells\nw_s0_webc.nss \ spells\nw_s0_weird.nss \ spells\nw_s0_wordfaith.nss \ spells\nw_s1_aurablind.nss \ spells\nw_s1_auracold.nss \ spells\nw_s1_auradrag.nss \ spells\nw_s1_auraelec.nss \ spells\nw_s1_aurafear.nss \ spells\nw_s1_aurafeara.nss \ spells\nw_s1_aurafire.nss \ spells\nw_s1_auramenac.nss \ spells\nw_s1_auraprot.nss \ spells\nw_s1_aurastun.nss \ spells\nw_s1_auraunear.nss \ spells\nw_s1_auraunnat.nss \ spells\nw_s1_barbrage.nss \ spells\nw_s1_dragacid.nss \ spells\nw_s1_dragcold.nss \ spells\nw_s1_dragfire.nss \ spells\nw_s1_draggas.nss \ spells\nw_s1_draglight.nss \ spells\nw_s1_dragparal.nss \ spells\nw_s1_dragsleep.nss \ spells\nw_s1_dragslow.nss \ spells\nw_s1_dragweak.nss \ spells\nw_s1_howldoom.nss \ spells\nw_s1_pulsdrwn.nss \ spells\nw_s2_animalcom.nss \ spells\nw_s2_bardsong.nss \ spells\nw_s2_divstr.nss \ spells\nw_s2_divtrick.nss \ spells\nw_s2_elemshape.nss \ spells\nw_s2_familiar.nss \ spells\nw_s2_layonhand.nss \ spells\nw_s2_turndead.nss \ spells\nw_s2_wholeness.nss \ spells\nw_s2_wildshape.nss \ spells\nw_s3_alcohol.nss \ spells\power_leech.nss \ spells\prc_od_conc.nss \ spells\prc_prespell.nss \ spells\prc_scry_conv.nss \ spells\prc_vampdrain.nss \ spells\pt_enter.nss \ spells\pt_exit.nss \ spells\sp_aberrate.nss \ spells\sp_absorb_str.nss \ spells\sp_abyssal_mght.nss \ spells\sp_acidicfire.nss \ spells\sp_acidorb.nss \ spells\sp_acidstorm.nss \ spells\sp_addiction.nss \ spells\sp_agnazscorch.nss \ spells\sp_agony.nss \ spells\sp_ai_sphereofud.nss \ spells\sp_alcfrost.nss \ spells\sp_alcslpgas.nss \ spells\sp_alcspark.nss \ spells\sp_amber_sarc.nss \ spells\sp_angry_ache.nss \ spells\sp_animal_pwr.nss \ spells\sp_animaltrance.nss \ spells\sp_animobj.nss \ spells\sp_antimagic.nss \ spells\sp_antitoxin.nss \ spells\sp_apoc_sky.nss \ spells\sp_arcaneeye.nss \ spells\sp_armordark.nss \ spells\sp_arrow_of_bone.nss \ spells\sp_arrow_storm.nss \ spells\sp_arrowsplit.nss \ spells\sp_aug_famil.nss \ spells\sp_avas_mass.nss \ spells\sp_avasclt.nss \ spells\sp_avasmassb.nss \ spells\sp_avasmassc.nss \ spells\sp_ayailla_rb.nss \ spells\sp_baccaran.nss \ spells\sp_bale_polym.nss \ spells\sp_baletrans.nss \ spells\sp_belburnbld.nss \ spells\sp_benitrans.nss \ spells\sp_bestow_wnd.nss \ spells\sp_bigby_sf.nss \ spells\sp_bigby_trip.nss \ spells\sp_biledrop.nss \ spells\sp_blacklight.nss \ spells\sp_blacklighta.nss \ spells\sp_blacklightb.nss \ spells\sp_blade_blood.nss \ spells\sp_blades_ofire.nss \ spells\sp_blasphemy.nss \ spells\sp_blastfrc.nss \ spells\sp_bldfrz_arrow.nss \ spells\sp_blendcrm.nss \ spells\sp_bless_water.nss \ spells\sp_blessbahamut.nss \ spells\sp_blink.nss \ spells\sp_blnd_glory.nss \ spells\sp_blnd_glorya.nss \ spells\sp_blnd_gloryb.nss \ spells\sp_blood_martyr.nss \ spells\sp_blsflm.nss \ spells\sp_blur.nss \ spells\sp_bodak_birth.nss \ spells\sp_bolt_glory.nss \ spells\sp_bone_blade.nss \ spells\sp_boneblast.nss \ spells\sp_bonesearth.nss \ spells\sp_bonesearthft.nss \ spells\sp_brill_eman.nss \ spells\sp_brill_emana.nss \ spells\sp_brill_emanb.nss \ spells\sp_brill_enarr.nss \ spells\sp_brittlebn.nss \ spells\sp_brk_enchant.nss \ spells\sp_burnbol.nss \ spells\sp_call_dretch.nss \ spells\sp_call_fserv.nss \ spells\sp_call_lemure.nss \ spells\sp_calm_emotiona.nss \ spells\sp_calm_emotionb.nss \ spells\sp_calm_emotions.nss \ spells\sp_celest_bld.nss \ spells\sp_chaavs_lgh.nss \ spells\sp_chan_pyrob.nss \ spells\sp_changestaff.nss \ spells\sp_chasperfect.nss \ spells\sp_chilltouch.nss \ spells\sp_chngshp_lern.nss \ spells\sp_chngshp_opts.nss \ spells\sp_chngshp_quik.nss \ spells\sp_clarityofmind.nss \ spells\sp_claw_bebil.nss \ spells\sp_claws_savage.nss \ spells\sp_close_wounds.nss \ spells\sp_cloud_achai.nss \ spells\sp_cloud_achaia.nss \ spells\sp_cloud_achaib.nss \ spells\sp_clutch_orcus.nss \ spells\sp_cnv_bldmartyr.nss \ spells\sp_cnv_trures.nss \ spells\sp_coldorb.nss \ spells\sp_comm_undead.nss \ spells\sp_command.nss \ spells\sp_consecrate.nss \ spells\sp_consecratea.nss \ spells\sp_consecrateb.nss \ spells\sp_contagious.nss \ spells\sp_controlwea.nss \ spells\sp_convert_wand.nss \ spells\sp_convict.nss \ spells\sp_cracklepdr.nss \ spells\sp_cracklepdra.nss \ spells\sp_cracklepdrb.nss \ spells\sp_craftbless.nss \ spells\sp_craftcurse.nss \ spells\sp_createtatoo.nss \ spells\sp_crown_mght.nss \ spells\sp_crown_prot.nss \ spells\sp_crsh_despair.nss \ spells\sp_crush_fs.nss \ spells\sp_crush_fsai.nss \ spells\sp_ct_min13.nss \ spells\sp_ct_min7.nss \ spells\sp_ct_scribe.nss \ spells\sp_ct_scribe_1ac.nss \ spells\sp_ct_scribe_1at.nss \ spells\sp_ct_scribe_2at.nss \ spells\sp_ct_scribe_cha.nss \ spells\sp_ct_scribe_con.nss \ spells\sp_ct_scribe_dex.nss \ spells\sp_ct_scribe_for.nss \ spells\sp_ct_scribe_int.nss \ spells\sp_ct_scribe_ref.nss \ spells\sp_ct_scribe_sav.nss \ spells\sp_ct_scribe_sr.nss \ spells\sp_ct_scribe_str.nss \ spells\sp_ct_scribe_wil.nss \ spells\sp_ct_scribe_wis.nss \ spells\sp_ct_start.nss \ spells\sp_curimpbl.nss \ spells\sp_curpfail.nss \ spells\sp_curse_phusk.nss \ spells\sp_curse_water.nss \ spells\sp_curse_watera.nss \ spells\sp_cursed_blade.nss \ spells\sp_damng_dark.nss \ spells\sp_damng_darka.nss \ spells\sp_damng_darkb.nss \ spells\sp_dancg_web.nss \ spells\sp_danclight.nss \ spells\sp_danclightch.nss \ spells\sp_danclightcs.nss \ spells\sp_danclightd.nss \ spells\sp_darkbolt.nss \ spells\sp_darkbolt1.nss \ spells\sp_daylight.nss \ spells\sp_daylighta.nss \ spells\sp_daylightb.nss \ spells\sp_dblstr_arrow.nss \ spells\sp_deathknell.nss \ spells\sp_deep_slumber.nss \ spells\sp_deepdarkness.nss \ spells\sp_deepslumber.nss \ spells\sp_deflect.nss \ spells\sp_demoncall.nss \ spells\sp_demonflesh.nss \ spells\sp_desecrate.nss \ spells\sp_despoil.nss \ spells\sp_det_favenmy.nss \ spells\sp_det_undead.nss \ spells\sp_detect_chaos.nss \ spells\sp_detect_evil.nss \ spells\sp_detect_good.nss \ spells\sp_detect_law.nss \ spells\sp_detect_magic.nss \ spells\sp_devils_ego.nss \ spells\sp_devils_eye.nss \ spells\sp_devilweed.nss \ spells\sp_dictum.nss \ spells\sp_dimens_anch.nss \ spells\sp_dimens_door.nss \ spells\sp_dimens_hop.nss \ spells\sp_dimens_lock.nss \ spells\sp_dimens_lock_a.nss \ spells\sp_dimens_lock_b.nss \ spells\sp_dimens_lock_c.nss \ spells\sp_dimens_lock_x.nss \ spells\sp_discernloc.nss \ spells\sp_disint.nss \ spells\sp_dispell_tch.nss \ spells\sp_disrpt_undead.nss \ spells\sp_divine_insp.nss \ spells\sp_divine_sac.nss \ spells\sp_divprot.nss \ spells\sp_dmnd_spray.nss \ spells\sp_doom_scarab.nss \ spells\sp_drac_might.nss \ spells\sp_dragfireinsp.nss \ spells\sp_dread_word.nss \ spells\sp_drgn_ally.nss \ spells\sp_drgn_cloud.nss \ spells\sp_drkflm_arrow.nss \ spells\sp_drug_resist.nss \ spells\sp_dth_thorns.nss \ spells\sp_ecto_enhnc.nss \ spells\sp_eiacid.nss \ spells\sp_eicold.nss \ spells\sp_eielec.nss \ spells\sp_eifire.nss \ spells\sp_eimmunity.nss \ spells\sp_eisonic.nss \ spells\sp_elation.nss \ spells\sp_elecorb.nss \ spells\sp_elemconf.nss \ spells\sp_elemstrike.nss \ spells\sp_embalmfire.nss \ spells\sp_energy_ebb.nss \ spells\sp_energy_srg.nss \ spells\sp_energz_ptn.nss \ spells\sp_enred.nss \ spells\sp_enrgy_aegis.nss \ spells\sp_enthrall.nss \ spells\sp_etercharmmon.nss \ spells\sp_etercharmper.nss \ spells\sp_etern_tortr.nss \ spells\sp_evil_eye.nss \ spells\sp_evil_wthr.nss \ spells\sp_exalt_fury.nss \ spells\sp_exaltd_raim.nss \ spells\sp_extr_wtrele.nss \ spells\sp_extract_drug.nss \ spells\sp_eye_behold.nss \ spells\sp_eyebite.nss \ spells\sp_eyes_avoral.nss \ spells\sp_faerie_fire.nss \ spells\sp_false_life.nss \ spells\sp_fareyeoil.nss \ spells\sp_fester_death.nss \ spells\sp_festerbmb.nss \ spells\sp_fiend_clarity.nss \ spells\sp_fire_blood.nss \ spells\sp_fire_trap.nss \ spells\sp_fire_trapa.nss \ spells\sp_fireburst.nss \ spells\sp_fireorb.nss \ spells\sp_fist_stone.nss \ spells\sp_flashburst.nss \ spells\sp_flashpllt.nss \ spells\sp_flensing.nss \ spells\sp_flesh_armor.nss \ spells\sp_flesh_rip.nss \ spells\sp_floatingdisk.nss \ spells\sp_fogcloud.nss \ spells\sp_forceblast.nss \ spells\sp_forcemissiles.nss \ spells\sp_forceorb.nss \ spells\sp_foresight.nss \ spells\sp_frogs_fish.nss \ spells\sp_gas_form.nss \ spells\sp_gdust.nss \ spells\sp_gen_exit.nss \ spells\sp_gfireburst.nss \ spells\sp_gheroism.nss \ spells\sp_ghlgaunt.nss \ spells\sp_glibness.nss \ spells\sp_greatcommand.nss \ spells\sp_green_fogc.nss \ spells\sp_greenfire.nss \ spells\sp_greenfire_en.nss \ spells\sp_greenfire_ex.nss \ spells\sp_greenfire_hb.nss \ spells\sp_grim_revng.nss \ spells\sp_grscrying.nss \ spells\sp_grtr_teleport.nss \ spells\sp_gutwrench.nss \ spells\sp_hailofstone.nss \ spells\sp_halt.nss \ spells\sp_halt_undd.nss \ spells\sp_ham_right.nss \ spells\sp_heal_anmcomp.nss \ spells\sp_healrbm.nss \ spells\sp_heart_ripr.nss \ spells\sp_heartache.nss \ spells\sp_heartclutch.nss \ spells\sp_hellfire.nss \ spells\sp_heroism.nss \ spells\sp_hf_storm.nss \ spells\sp_hide_anim.nss \ spells\sp_hide_undead.nss \ spells\sp_holy_aura.nss \ spells\sp_holyword.nss \ spells\sp_hound_doom.nss \ spells\sp_hypattern.nss \ spells\sp_ice_knife.nss \ spells\sp_iceburst.nss \ spells\sp_ilyykmant.nss \ spells\sp_impmagearm.nss \ spells\sp_insanity.nss \ spells\sp_ironbody.nss \ spells\sp_jump.nss \ spells\sp_keenearb.nss \ spells\sp_kelgore_fb.nss \ spells\sp_lacidorb.nss \ spells\sp_lahms_fd.nss \ spells\sp_lantrn_lght.nss \ spells\sp_lcoldorb.nss \ spells\sp_lconvict.nss \ spells\sp_lcurimpbl.nss \ spells\sp_lcurpfail.nss \ spells\sp_lelecorb.nss \ spells\sp_leonl_roar.nss \ spells\sp_less_shivtch.nss \ spells\sp_lfireorb.nss \ spells\sp_life_bolt.nss \ spells\sp_lionheart.nss \ spells\sp_liquid_pain.nss \ spells\sp_livund.nss \ spells\sp_loccreature.nss \ spells\sp_lockslip.nss \ spells\sp_locobject.nss \ spells\sp_longstrdr.nss \ spells\sp_lowersr.nss \ spells\sp_lshlfat.nss \ spells\sp_lsonicorb.nss \ spells\sp_lst_jdgmnt.nss \ spells\sp_luhix.nss \ spells\sp_luminousa.nss \ spells\sp_lumins_armr.nss \ spells\sp_magehand.nss \ spells\sp_magicstone.nss \ spells\sp_masochism.nss \ spells\sp_mass_frshld.nss \ spells\sp_maze.nss \ spells\sp_mcontagion.nss \ spells\sp_mdrown.nss \ spells\sp_megmht.nss \ spells\sp_mholdmon.nss \ spells\sp_mholdper.nss \ spells\sp_mirror.nss \ spells\sp_mislead.nss \ spells\sp_mislead_x.nss \ spells\sp_mjmagmiss.nss \ spells\sp_mmmansion.nss \ spells\sp_moral_undn.nss \ spells\sp_mshrmpdr.nss \ spells\sp_natdraught.nss \ spells\sp_natureavatar.nss \ spells\sp_nec_aware.nss \ spells\sp_nec_bloat.nss \ spells\sp_nec_burst.nss \ spells\sp_nec_cyst.nss \ spells\sp_nec_domin.nss \ spells\sp_nec_empower.nss \ spells\sp_nec_erupt.nss \ spells\sp_nec_term.nss \ spells\sp_nerv.nss \ spells\sp_nght_caress.nss \ spells\sp_nondetection.nss \ spells\sp_nybgentrem.nss \ spells\sp_nybsternrep.nss \ spells\sp_obscmist.nss \ spells\sp_obscmist_ent.nss \ spells\sp_obscmist_exit.nss \ spells\sp_obscobj.nss \ spells\sp_orb_force.nss \ spells\sp_ot_frz_sphere.nss \ spells\sp_otiluke_rs.nss \ spells\sp_otiluke_rsa.nss \ spells\sp_otiluke_rsb.nss \ spells\sp_panacea.nss \ spells\sp_pattern.nss \ spells\sp_pest_aura_hb.nss \ spells\sp_pest_aura_oe.nss \ spells\sp_pest_aux.nss \ spells\sp_pestilence.nss \ spells\sp_phantomsteed.nss \ spells\sp_phiern_rslv.nss \ spells\sp_phoenix_fire.nss \ spells\sp_plaguedead.nss \ spells\sp_plantshape.nss \ spells\sp_pnp_frshld.nss \ spells\sp_polar_ray.nss \ spells\sp_power_leech.nss \ spells\sp_pox.nss \ spells\sp_prism_wall.nss \ spells\sp_prism_walla.nss \ spells\sp_prismat_ray.nss \ spells\sp_prismt_sphr.nss \ spells\sp_prismt_sphra.nss \ spells\sp_prismt_sphrb.nss \ spells\sp_prot_arrows.nss \ spells\sp_pwblind.nss \ spells\sp_pyrotechnics.nss \ spells\sp_pyrotechnicsa.nss \ spells\sp_pyrotechnicsb.nss \ spells\sp_rage.nss \ spells\sp_rain_bloodc.nss \ spells\sp_rain_btul.nss \ spells\sp_rain_btula.nss \ spells\sp_rain_btulb.nss \ spells\sp_rain_ember.nss \ spells\sp_rain_ffishc.nss \ spells\sp_rain_rose.nss \ spells\sp_rain_rosea.nss \ spells\sp_rain_roseb.nss \ spells\sp_rain_rosec.nss \ spells\sp_rainbow_blast.nss \ spells\sp_raptr_ruptr.nss \ spells\sp_ray_charmm.nss \ spells\sp_ray_charmp.nss \ spells\sp_ray_disint.nss \ spells\sp_ray_exhst.nss \ spells\sp_ray_fear.nss \ spells\sp_ray_flshstn.nss \ spells\sp_ray_fngdth.nss \ spells\sp_ray_hope.nss \ spells\sp_ray_inflmod.nss \ spells\sp_ray_sleep.nss \ spells\sp_ray_slow.nss \ spells\sp_readmagic.nss \ spells\sp_real_blind.nss \ spells\sp_recitat.nss \ spells\sp_red_fester.nss \ spells\sp_regen_wounds.nss \ spells\sp_regroup.nss \ spells\sp_repel_vermin.nss \ spells\sp_repel_vermina.nss \ spells\sp_repulsion.nss \ spells\sp_repulsiona.nss \ spells\sp_repulsionb.nss \ spells\sp_repulsionc.nss \ spells\sp_res_resist.nss \ spells\sp_revivify.nss \ spells\sp_right_smt.nss \ spells\sp_rightmt.nss \ spells\sp_ring_blds.nss \ spells\sp_ring_bldsa.nss \ spells\sp_ring_bldsc.nss \ spells\sp_rotcurse_urf.nss \ spells\sp_rouse.nss \ spells\sp_sannish.nss \ spells\sp_sarc_stone.nss \ spells\sp_scint_pattrn.nss \ spells\sp_scorch_ray.nss \ spells\sp_scrmngfl.nss \ spells\sp_scrying.nss \ spells\sp_seeking_ray.nss \ spells\sp_seeth_eyebn.nss \ spells\sp_sequester.nss \ spells\sp_serp_arrow.nss \ spells\sp_serp_sigh.nss \ spells\sp_shad_arrow.nss \ spells\sp_shadspray.nss \ spells\sp_shedden.nss \ spells\sp_shield_other.nss \ spells\sp_shiver_tch.nss \ spells\sp_shock_grasp.nss \ spells\sp_shout.nss \ spells\sp_shriveling.nss \ spells\sp_sickn_evil.nss \ spells\sp_sickn_evila.nss \ spells\sp_sickn_evilb.nss \ spells\sp_sinsbbolt.nss \ spells\sp_slash_displ.nss \ spells\sp_slashdark.nss \ spells\sp_sleet_storm.nss \ spells\sp_sleet_storma.nss \ spells\sp_sleet_stormb.nss \ spells\sp_sleet_stormc.nss \ spells\sp_snare.nss \ spells\sp_snarea.nss \ spells\sp_snsnow.nss \ spells\sp_snsnowsw.nss \ spells\sp_sobriety.nss \ spells\sp_softfoot.nss \ spells\sp_solid_fog.nss \ spells\sp_solid_foga.nss \ spells\sp_solid_fogb.nss \ spells\sp_song_discord.nss \ spells\sp_sonic_shld.nss \ spells\sp_sonicorb.nss \ spells\sp_sorrow.nss \ spells\sp_soulscour.nss \ spells\sp_speed_wind.nss \ spells\sp_spellturning.nss \ spells\sp_sphere_spawn.nss \ spells\sp_sphereud.nss \ spells\sp_spiderskin.nss \ spells\sp_spiritweapon.nss \ spells\sp_spiritworm.nss \ spells\sp_splresismass.nss \ spells\sp_spore_vrock.nss \ spells\sp_spslay_arrow.nss \ spells\sp_stalagmite.nss \ spells\sp_starmantle.nss \ spells\sp_stn_scrch.nss \ spells\sp_stop_hrt.nss \ spells\sp_strm_shard.nss \ spells\sp_sum_undead.nss \ spells\sp_sunmantle.nss \ spells\sp_sure_strike.nss \ spells\sp_swordconsc.nss \ spells\sp_symbol.nss \ spells\sp_symbola.nss \ spells\sp_symbolc.nss \ spells\sp_tch_idiocy.nss \ spells\sp_tch_juiblex.nss \ spells\sp_telecircle.nss \ spells\sp_teleport.nss \ spells\sp_terran_brndy.nss \ spells\sp_thous_ndls.nss \ spells\sp_throw_ep.nss \ spells\sp_tng_baalz.nss \ spells\sp_tomb_light.nss \ spells\sp_tortoiseshell.nss \ spells\sp_touch_fatigue.nss \ spells\sp_towering_oak.nss \ spells\sp_transviaplant.nss \ spells\sp_treeshape.nss \ spells\sp_tru_truefrnd.nss \ spells\sp_true_res.nss \ spells\sp_truecasting.nss \ spells\sp_twlght_luck.nss \ spells\sp_undetectali.nss \ spells\sp_unheavened.nss \ spells\sp_unliv_weap.nss \ spells\sp_unnerv_gz.nss \ spells\sp_unyieldroots.nss \ spells\sp_utterdark.nss \ spells\sp_utterdarka.nss \ spells\sp_utterdarkb.nss \ spells\sp_vigor.nss \ spells\sp_vigor_mass.nss \ spells\sp_vile_death.nss \ spells\sp_violet_rainc.nss \ spells\sp_viscidglob.nss \ spells\sp_visheaven.nss \ spells\sp_vodare.nss \ spells\sp_walldispel.nss \ spells\sp_walldispela.nss \ spells\sp_walldispelc.nss \ spells\sp_wallfrost.nss \ spells\sp_wallfrosta.nss \ spells\sp_wallfrostc.nss \ spells\sp_water_brth.nss \ spells\sp_wave_exhst.nss \ spells\sp_wave_grief.nss \ spells\sp_wave_pain.nss \ spells\sp_waves_fatg.nss \ spells\sp_weepstn.nss \ spells\sp_whrl_blade.nss \ spells\sp_wolfskin.nss \ spells\sp_wordbal.nss \ spells\sp_wordofchaos.nss \ spells\sp_wordofrecall.nss \ spells\sp_wrack.nss \ spells\sp_wrtch_blght.nss \ spells\tsspellhook.nss \ spells\x0_ch_hen_rest.nss \ spells\x0_ch_hen_spawn.nss \ spells\x0_s0_acidsplash.nss \ spells\x0_s0_amplify.nss \ spells\x0_s0_auraglory.nss \ spells\x0_s0_bane.nss \ spells\x0_s0_banishment.nss \ spells\x0_s0_bigby1.nss \ spells\x0_s0_bigby2.nss \ spells\x0_s0_bigby3.nss \ spells\x0_s0_bigby4.nss \ spells\x0_s0_bigby5.nss \ spells\x0_s0_bldfrenzy.nss \ spells\x0_s0_bombard.nss \ spells\x0_s0_camo.nss \ spells\x0_s0_clight.nss \ spells\x0_s0_dirge.nss \ spells\x0_s0_dirgeen.nss \ spells\x0_s0_dirgeex.nss \ spells\x0_s0_dirgehb.nss \ spells\x0_s0_displace.nss \ spells\x0_s0_divfav.nss \ spells\x0_s0_drown.nss \ spells\x0_s0_earthquake.nss \ spells\x0_s0_elecjolt.nss \ spells\x0_s0_enten.nss \ spells\x0_s0_entex.nss \ spells\x0_s0_entrshield.nss \ spells\x0_s0_ether.nss \ spells\x0_s0_exretreat.nss \ spells\x0_s0_firebrand.nss \ spells\x0_s0_flare.nss \ spells\x0_s0_fleshsto.nss \ spells\x0_s0_gmagicfang.nss \ spells\x0_s0_gustwind.nss \ spells\x0_s0_inferno.nss \ spells\x0_s0_ironhorn.nss \ spells\x0_s0_laugh.nss \ spells\x0_s0_magicfang.nss \ spells\x0_s0_masscamo.nss \ spells\x0_s0_missstorm1.nss \ spells\x0_s0_missstorm2.nss \ spells\x0_s0_oneland.nss \ spells\x0_s0_owlins.nss \ spells\x0_s0_planar.nss \ spells\x0_s0_quillfire.nss \ spells\x0_s0_shield.nss \ spells\x0_s0_shieldfait.nss \ spells\x0_s0_spikegro.nss \ spells\x0_s0_spikegroen.nss \ spells\x0_s0_spikegrohb.nss \ spells\x0_s0_stoflesh.nss \ spells\x0_s0_sunburst.nss \ spells\x0_s0_truestrike.nss \ spells\x0_s0_udetfoe.nss \ spells\x0_s0_woundwhis.nss \ spells\x0_s1_petrbreath.nss \ spells\x0_s1_petrgaze.nss \ spells\x0_s1_petrtouch.nss \ spells\x0_s2_blkdead.nss \ spells\x0_s2_divmight.nss \ spells\x0_s2_divshield.nss \ spells\x0_s3_caltrop.nss \ spells\x0_s3_holy.nss \ spells\x0_s3_rodwonder.nss \ spells\x1_s2_imbuearrow.nss \ spells\x2_o0_glyphhb.nss \ spells\x2_o0_glyphspell.nss \ spells\x2_pc_craft.nss \ spells\x2_pc_umdcheck.nss \ spells\x2_s0_acidbrth.nss \ spells\x2_s0_acidshth.nss \ spells\x2_s0_auraglory.nss \ spells\x2_s0_balllghtng.nss \ spells\x2_s0_batttide.nss \ spells\x2_s0_batttidea.nss \ spells\x2_s0_batttideb.nss \ spells\x2_s0_blckblde.nss \ spells\x2_s0_cldbewld.nss \ spells\x2_s0_cldbewlda.nss \ spells\x2_s0_cldbewldc.nss \ spells\x2_s0_combust.nss \ spells\x2_s0_crshadow.nss \ spells\x2_s0_crumble.nss \ spells\x2_s0_cureother.nss \ spells\x2_s0_dtharm.nss \ spells\x2_s0_elecloop.nss \ spells\x2_s0_enhweap.nss \ spells\x2_s0_evilblight.nss \ spells\x2_s0_glphward.nss \ spells\x2_s0_glphwarda.nss \ spells\x2_s0_glphwardx.nss \ spells\x2_s0_grtthdclp.nss \ spells\x2_s0_hasteslow.nss \ spells\x2_s0_healstng.nss \ spells\x2_s0_hellfire.nss \ spells\x2_s0_hellfirea.nss \ spells\x2_s0_hellfirec.nss \ spells\x2_s0_hellinfern.nss \ spells\x2_s0_horiboom.nss \ spells\x2_s0_icedagg.nss \ spells\x2_s0_infestmag.nss \ spells\x2_s0_ironguts.nss \ spells\x2_s0_magcvest.nss \ spells\x2_s0_persblde.nss \ spells\x2_s0_restother.nss \ spells\x2_s0_scntsphere.nss \ spells\x2_s0_stnbones.nss \ spells\x2_s0_stnehold.nss \ spells\x2_s0_stneholda.nss \ spells\x2_s0_stneholdc.nss \ spells\x2_s0_tidebattle.nss \ spells\x2_s0_undeath.nss \ spells\x2_s0_vinemcam.nss \ spells\x2_s0_vinemcama.nss \ spells\x2_s0_vinemcamb.nss \ spells\x2_s0_vinement.nss \ spells\x2_s0_vinementb.nss \ spells\x2_s0_vinementc.nss \ spells\x2_s0_vinemhmp.nss \ spells\x2_s0_vinemhmpa.nss \ spells\x2_s0_vinemhmpb.nss \ spells\x2_s0_vinemhmpc.nss \ spells\x2_s1_beholdray.nss \ spells\x2_s1_chaosspit.nss \ spells\x2_s1_dragneg.nss \ spells\x2_s1_petrgaze.nss \ spells\x2_s1_psibarr.nss \ spells\x2_s2_cursesong.nss \ spells\x2_s2_discbreath.nss \ spells\x2_s2_dragknght.nss \ spells\x2_s2_epicward.nss \ spells\x2_s2_epmagearm.nss \ spells\x2_s2_gwildshp.nss \ spells\x2_s2_mumdust.nss \ spells\x2_s2_sumgrund.nss \ spells\x2_s2_sumundead.nss \ spells\x2_s2_wildshape.nss \ spells\x2_s2_wildshpedk.nss \ spells\x2_s3_darkfire.nss \ spells\x2_s3_deafclng.nss \ spells\x2_s3_flamingd.nss \ spells\x2_s3_sequencer.nss \ spells\x2_s3_slayraks.nss EPICSPELLSCRIPTS= \ epicspellscripts\_ev_onitemactiv.nss \ epicspellscripts\_plc_rsrch_ep_sp.nss \ epicspellscripts\activate_epspell.nss \ epicspellscripts\activate_seeds.nss \ epicspellscripts\aoe_rainfire_ent.nss \ epicspellscripts\aoe_rainfire_ext.nss \ epicspellscripts\aoe_rainfire_hb.nss \ epicspellscripts\at_contingentreu.nss \ epicspellscripts\at_contre0_reset.nss \ epicspellscripts\at_contre1_reset.nss \ epicspellscripts\at_contre2_reset.nss \ epicspellscripts\at_contre3_reset.nss \ epicspellscripts\at_contre4_reset.nss \ epicspellscripts\at_contre5_reset.nss \ epicspellscripts\at_contreu_iaffl.nss \ epicspellscripts\at_contreu_ibadl.nss \ epicspellscripts\at_contreu_idead.nss \ epicspellscripts\at_contreu_idyin.nss \ epicspellscripts\at_contreu_iinca.nss \ epicspellscripts\at_contreu_inear.nss \ epicspellscripts\at_contreu_taffl.nss \ epicspellscripts\at_contreu_tbadl.nss \ epicspellscripts\at_contreu_tdead.nss \ epicspellscripts\at_contreu_tdyin.nss \ epicspellscripts\at_contreu_tinca.nss \ epicspellscripts\at_contreu_tnear.nss \ epicspellscripts\at_contrez_reset.nss \ epicspellscripts\at_council_npca.nss \ epicspellscripts\at_council_npcb.nss \ epicspellscripts\at_dest_whipshar.nss \ epicspellscripts\at_destroyself.nss \ epicspellscripts\at_fwords_npca.nss \ epicspellscripts\at_fwords_npcb.nss \ epicspellscripts\at_ident_items.nss \ epicspellscripts\at_runmymartyr.nss \ epicspellscripts\contingent_reun.nss \ epicspellscripts\council_npca.nss \ epicspellscripts\council_npcb.nss \ epicspellscripts\etern_free.nss \ epicspellscripts\fwords_npca.nss \ epicspellscripts\fwords_npcb.nss \ epicspellscripts\run_all_martyr.nss \ epicspellscripts\run_gemcage_gem.nss \ epicspellscripts\run_whipofshar.nss \ epicspellscripts\sc_cont_reunion.nss \ epicspellscripts\sc_contreu0_yes.nss \ epicspellscripts\sc_contreu1_yes.nss \ epicspellscripts\sc_contreu2_yes.nss \ epicspellscripts\sc_contreu3_yes.nss \ epicspellscripts\sc_contreu4_yes.nss \ epicspellscripts\sc_contreu5_yes.nss \ epicspellscripts\sc_contrez_yes.nss \ epicspellscripts\sc_epicradial_0.nss \ epicspellscripts\sc_epicradial_ok.nss \ epicspellscripts\sc_has_loreskill.nss \ epicspellscripts\sc_isepiccaster.nss \ epicspellscripts\sc_ret_false.nss \ epicspellscripts\sc_runmymartyr.nss \ epicspellscripts\ss_ep_achilles.nss \ epicspellscripts\ss_ep_allhoplost.nss \ epicspellscripts\ss_ep_alliedmart.nss \ epicspellscripts\ss_ep_anarchys.nss \ epicspellscripts\ss_ep_animusblas.nss \ epicspellscripts\ss_ep_animusbliz.nss \ epicspellscripts\ss_ep_armyunfall.nss \ epicspellscripts\ss_ep_audi_stone.nss \ epicspellscripts\ss_ep_celestcoun.nss \ epicspellscripts\ss_ep_champvalor.nss \ epicspellscripts\ss_ep_cont_resur.nss \ epicspellscripts\ss_ep_continreun.nss \ epicspellscripts\ss_ep_deadeye.nss \ epicspellscripts\ss_ep_direwinter.nss \ epicspellscripts\ss_ep_dragonkn.nss \ epicspellscripts\ss_ep_dreamscape.nss \ epicspellscripts\ss_ep_dullblades.nss \ epicspellscripts\ss_ep_dweomerthf.nss \ epicspellscripts\ss_ep_enslave.nss \ epicspellscripts\ss_ep_epicrepuls.nss \ epicspellscripts\ss_ep_eterfree.nss \ epicspellscripts\ss_ep_fiendwords.nss \ epicspellscripts\ss_ep_fleetness.nss \ epicspellscripts\ss_ep_gem_cage.nss \ epicspellscripts\ss_ep_godsmite.nss \ epicspellscripts\ss_ep_gr_ruin.nss \ epicspellscripts\ss_ep_gr_spres.nss \ epicspellscripts\ss_ep_grtimestop.nss \ epicspellscripts\ss_ep_hellball.nss \ epicspellscripts\ss_ep_hercuall.nss \ epicspellscripts\ss_ep_hercuemp.nss \ epicspellscripts\ss_ep_impenetrab.nss \ epicspellscripts\ss_ep_killwnd.nss \ epicspellscripts\ss_ep_leech.nss \ epicspellscripts\ss_ep_mage_arm.nss \ epicspellscripts\ss_ep_magmabu.nss \ epicspellscripts\ss_ep_maspenguin.nss \ epicspellscripts\ss_ep_mom_mori.nss \ epicspellscripts\ss_ep_mumdust.nss \ epicspellscripts\ss_ep_nailedsky.nss \ epicspellscripts\ss_ep_orderresto.nss \ epicspellscripts\ss_ep_pathsknown.nss \ epicspellscripts\ss_ep_pestilen.nss \ epicspellscripts\ss_ep_piousparly.nss \ epicspellscripts\ss_ep_planarcell.nss \ epicspellscripts\ss_ep_psionicsal.nss \ epicspellscripts\ss_ep_rainoffire.nss \ epicspellscripts\ss_ep_ruin.nss \ epicspellscripts\ss_ep_singsunder.nss \ epicspellscripts\ss_ep_spellrefle.nss \ epicspellscripts\ss_ep_spellworm.nss \ epicspellscripts\ss_ep_strmmant.nss \ epicspellscripts\ss_ep_summonaber.nss \ epicspellscripts\ss_ep_sup_disp.nss \ epicspellscripts\ss_ep_thewitheri.nss \ epicspellscripts\ss_ep_transvital.nss \ epicspellscripts\ss_ep_twnfiend.nss \ epicspellscripts\ss_ep_unholydisc.nss \ epicspellscripts\ss_ep_unimpinged.nss \ epicspellscripts\ss_ep_unseenwand.nss \ epicspellscripts\ss_ep_warding.nss \ epicspellscripts\ss_ep_whipshar.nss \ epicspellscripts\tm_s0_epkillwnda.nss \ epicspellscripts\tm_s0_epkillwndb.nss \ epicspellscripts\tm_s0_epleecha.nss \ epicspellscripts\tm_s0_epleechb.nss \ epicspellscripts\tm_s0_epmagmabua.nss \ epicspellscripts\tm_s0_epmagmabub.nss \ epicspellscripts\tm_s0_epmagmabuc.nss \ epicspellscripts\trans_vital.nss \ epicspellscripts\wander_unseen.nss OBJS= \ objs\acp_auto.ncs \ objs\acp_s3_diffstyle.ncs \ objs\alien_xtrasummon.ncs \ objs\animobj_convo.ncs \ objs\animobj_death.ncs \ objs\animobj_hb.ncs \ objs\animobj_killself.ncs \ objs\animobj_spawn.ncs \ objs\archmage_fire.ncs \ objs\archmage_spelllk.ncs \ objs\blades_songfury.ncs \ objs\bodyofflame.ncs \ objs\bond_familiar.ncs \ objs\bonsum_shapelem.ncs \ objs\cd_s2_thouface.ncs \ objs\codi_prc_pod_1.ncs \ objs\codi_prc_toe_1.ncs \ objs\codi_pre_chmon.ncs \ objs\codi_pre_chper.ncs \ objs\codi_pre_death.ncs \ objs\codi_pre_dis.ncs \ objs\codi_pre_fear.ncs \ objs\codi_pre_flst.ncs \ objs\codi_pre_infw.ncs \ objs\codi_pre_sleep.ncs \ objs\codi_pre_slow.ncs \ objs\codi_pre_tele.ncs \ objs\codi_s0_healcirc.ncs \ objs\codi_s0_implcfo1.ncs \ objs\codi_s0_implcfo2.ncs \ objs\codi_s0_implcfo3.ncs \ objs\codi_s0_implcfoe.ncs \ objs\codi_s0_inflame.ncs \ objs\codi_s0_mashaste.ncs \ objs\codi_s0_masheal.ncs \ objs\codi_s0_rally.ncs \ objs\codi_s2_ancdai.ncs \ objs\codi_s2_ancdaic.ncs \ objs\default.ncs \ objs\door_destroyed.ncs \ objs\door_ud.ncs \ objs\dslyr_songcomp.ncs \ objs\dslyr_songfear.ncs \ objs\dslyr_songfeara.ncs \ objs\dslyr_songfearb.ncs \ objs\dslyr_songheal.ncs \ objs\dslyr_songspeed.ncs \ objs\dslyr_songstr.ncs \ objs\dslyr_songstra.ncs \ objs\dslyr_songstrb.ncs \ objs\dslyr_songstrc.ncs \ objs\dynconv_abort.ncs \ objs\dynconv_end.ncs \ objs\dynconv_end_w.ncs \ objs\dynconv_main_w.ncs \ objs\dynconv_next_a.ncs \ objs\dynconv_next_w.ncs \ objs\dynconv_prev_a.ncs \ objs\dynconv_prev_w.ncs \ objs\dynconv_rep0_a.ncs \ objs\dynconv_rep0_w.ncs \ objs\dynconv_rep1_a.ncs \ objs\dynconv_rep1_w.ncs \ objs\dynconv_rep2_a.ncs \ objs\dynconv_rep2_w.ncs \ objs\dynconv_rep3_a.ncs \ objs\dynconv_rep3_w.ncs \ objs\dynconv_rep4_a.ncs \ objs\dynconv_rep4_w.ncs \ objs\dynconv_rep5_a.ncs \ objs\dynconv_rep5_w.ncs \ objs\dynconv_rep6_a.ncs \ objs\dynconv_rep6_w.ncs \ objs\dynconv_rep7_a.ncs \ objs\dynconv_rep7_w.ncs \ objs\dynconv_rep8_a.ncs \ objs\dynconv_rep8_w.ncs \ objs\dynconv_rep9_a.ncs \ objs\dynconv_rep9_w.ncs \ objs\dynconv_template.ncs \ objs\dynconv_wait_w.ncs \ objs\eog_cth.ncs \ objs\eog_spittle.ncs \ objs\fdisk_attacked.ncs \ objs\fdisk_blocked.ncs \ objs\fdisk_convstart.ncs \ objs\fdisk_empty_conv.ncs \ objs\fdisk_empty2.ncs \ objs\fdisk_end.ncs \ objs\fdisk_heartbeat.ncs \ objs\fdisk_onconv.ncs \ objs\fdisk_onspawn.ncs \ objs\fdisk_onspellc.ncs \ objs\fdisk_openinv.ncs \ objs\fist_circevila.ncs \ objs\fist_circevilb.ncs \ objs\fistraz_circevil.ncs \ objs\ft_bloodwarlord.ncs \ objs\ft_bloodwarlord1.ncs \ objs\ft_bloodwarlord2.ncs \ objs\ft_disc_sun.ncs \ objs\ft_divclean.ncs \ objs\ft_divresis.ncs \ objs\ft_divvigor.ncs \ objs\ft_dw_armor.ncs \ objs\ft_dw_weap.ncs \ objs\ft_epicvigor.ncs \ objs\ft_fistiron.ncs \ objs\ft_invokwrath.ncs \ objs\ft_lingdmg.ncs \ objs\ft_lipsrap.ncs \ objs\ft_manyshot.ncs \ objs\ft_metamagic.ncs \ objs\ft_nim_light.ncs \ objs\ft_pinpointaccu.ncs \ objs\ft_poweratk.ncs \ objs\ft_sanctmartial.ncs \ objs\ft_servheaven.ncs \ objs\ft_shockweap.ncs \ objs\ft_smiteraziel.ncs \ objs\ft_spontsummon.ncs \ objs\ft_tears_ever.ncs \ objs\gen_sptouchice.ncs \ objs\gensp_holyrad.ncs \ objs\gensp_holyrada.ncs \ objs\gensp_holyradc.ncs \ objs\gensp_stigmata.ncs \ objs\hellblast.ncs \ objs\hellfire.ncs \ objs\hellfire_storm.ncs \ objs\hellfireshield.ncs \ objs\hellflare.ncs \ objs\hellgrasp.ncs \ objs\ini_epicinc.ncs \ objs\inidra_dragfire.ncs \ objs\inidra_draggas.ncs \ objs\inidra_dragpris.ncs \ objs\inidra_incrshape.ncs \ objs\inidra_shapedrag.ncs \ objs\initdr_aurafeara.ncs \ objs\initdra_aurafear.ncs \ objs\is_bagofgold.ncs \ objs\is_prc_target.ncs \ objs\is_prc_tome.ncs \ objs\is_xchst.ncs \ objs\manat_furass.ncs \ objs\mer_dimdoor.ncs \ objs\mer_dimdoors.ncs \ objs\mer_stinkbeetle.ncs \ objs\mer_wwolf.ncs \ objs\mh_art_act1.ncs \ objs\mh_art_act2.ncs \ objs\mh_art_act3.ncs \ objs\mh_art_test1.ncs \ objs\mh_art_test2.ncs \ objs\mh_at_001.ncs \ objs\mh_at_002.ncs \ objs\mh_at_003.ncs \ objs\mh_at_004.ncs \ objs\mh_cancreateinst.ncs \ objs\mh_ins_test1.ncs \ objs\mh_ins_test2.ncs \ objs\mh_ins_test3.ncs \ objs\mh_ins_test4.ncs \ objs\mh_s1_lliira_ent.ncs \ objs\mh_s1_lliira_sor.ncs \ objs\mh_s1_lliiraaura.ncs \ objs\mh_s2_instrument.ncs \ objs\mh_s2_lycanbane.ncs \ objs\mh_s2_mharpitem.ncs \ objs\mh_s2_mielikki.ncs \ objs\mh_spell_at_inst.ncs \ objs\ml_daylight.ncs \ objs\ml_greaterturn.ncs \ objs\ml_maxturn.ncs \ objs\ml_radiance.ncs \ objs\ml_rejuvenate.ncs \ objs\ml_searingray.ncs \ objs\mord_enter.ncs \ objs\mord_exit.ncs \ objs\mos_summon.ncs \ objs\nightsh_invisib.ncs \ objs\nightsh_poison.ncs \ objs\nightsh_poisonsp.ncs \ objs\nightsh_shadwalk.ncs \ objs\nightsh_web.ncs \ objs\nightsh_webb.ncs \ objs\nw_c2_default9.ncs \ objs\nw_c2_defaultd.ncs \ objs\nw_ch_ac9.ncs \ objs\nw_ch_acd.ncs \ objs\nw_ch_fm_st_01.ncs \ objs\nw_ch_fm_st_11.ncs \ objs\nw_g0_conversat.ncs \ objs\nw_s0_1sassone.ncs \ objs\old_lich_alter.ncs \ objs\ow_fin_rage.ncs \ objs\ow_hb.ncs \ objs\ow_inspire.ncs \ objs\ow_rel_horde.ncs \ objs\ow_sum_axe.ncs \ objs\ow_sum_barb.ncs \ objs\ow_sum_fght.ncs \ objs\ow_sum_sham.ncs \ objs\pnp_lich_alter.ncs \ objs\pnp_lich_camulet.ncs \ objs\pnp_lich_craftwo.ncs \ objs\pnp_lich_csgem.ncs \ objs\pnp_lich_faura.ncs \ objs\pnp_lich_isdemi.ncs \ objs\pnp_lich_level.ncs \ objs\pnp_lich_touch.ncs \ objs\pnp_lich_trap.ncs \ objs\pnp_shft_ewshape.ncs \ objs\pnp_shft_gwshape.ncs \ objs\pnp_shft_lrnshap.ncs \ objs\pnp_shft_options.ncs \ objs\pnp_shft_true.ncs \ objs\poison_1d1_cha.ncs \ objs\poison_1d1_con.ncs \ objs\poison_1d1_dex.ncs \ objs\poison_1d1_int.ncs \ objs\poison_1d1_str.ncs \ objs\poison_1d1_wis.ncs \ objs\poison_1d2_cha.ncs \ objs\poison_1d2_con.ncs \ objs\poison_1d2_dex.ncs \ objs\poison_1d2_int.ncs \ objs\poison_1d2_str.ncs \ objs\poison_1d2_wis.ncs \ objs\poison_1d3_cha.ncs \ objs\poison_1d3_con.ncs \ objs\poison_1d3_dex.ncs \ objs\poison_1d3_int.ncs \ objs\poison_1d3_str.ncs \ objs\poison_1d3_wis.ncs \ objs\poison_1d4_cha.ncs \ objs\poison_1d4_con.ncs \ objs\poison_1d4_dex.ncs \ objs\poison_1d4_int.ncs \ objs\poison_1d4_str.ncs \ objs\poison_1d4_wis.ncs \ objs\poison_1d6_cha.ncs \ objs\poison_1d6_con.ncs \ objs\poison_1d6_dex.ncs \ objs\poison_1d6_int.ncs \ objs\poison_1d6_str.ncs \ objs\poison_1d6_wis.ncs \ objs\poison_1d8_cha.ncs \ objs\poison_1d8_con.ncs \ objs\poison_1d8_dex.ncs \ objs\poison_1d8_int.ncs \ objs\poison_1d8_str.ncs \ objs\poison_1d8_wis.ncs \ objs\poison_2d6_cha.ncs \ objs\poison_2d6_con.ncs \ objs\poison_2d6_dex.ncs \ objs\poison_2d6_int.ncs \ objs\poison_2d6_str.ncs \ objs\poison_2d6_wis.ncs \ objs\poison_2d8_cha.ncs \ objs\poison_2d8_con.ncs \ objs\poison_2d8_dex.ncs \ objs\poison_2d8_int.ncs \ objs\poison_2d8_str.ncs \ objs\poison_2d8_wis.ncs \ objs\poison_3d6_cha.ncs \ objs\poison_3d6_con.ncs \ objs\poison_3d6_dex.ncs \ objs\poison_3d6_int.ncs \ objs\poison_3d6_str.ncs \ objs\poison_3d6_wis.ncs \ objs\poison_appl_food.ncs \ objs\poison_appl_item.ncs \ objs\poison_appl_weap.ncs \ objs\poison_cleanitem.ncs \ objs\poison_eat_hook.ncs \ objs\poison_eyeblast.ncs \ objs\poison_is_food.ncs \ objs\poison_onaquire.ncs \ objs\poison_onequip.ncs \ objs\poison_sufrfume.ncs \ objs\poison_ungol2.ncs \ objs\poison_vialthrow.ncs \ objs\poison_wpn_onhit.ncs \ objs\prc_abil_monitor.ncs \ objs\prc_abjcha_abab.ncs \ objs\prc_abjcha_abac.ncs \ objs\prc_abjcha_abdmg.ncs \ objs\prc_abjcha_aber.ncs \ objs\prc_abjcha_absv.ncs \ objs\prc_acolyte.ncs \ objs\prc_ad_blur.ncs \ objs\prc_ad_chosewep.ncs \ objs\prc_ad_dexatk.ncs \ objs\prc_ad_falskeen.ncs \ objs\prc_ad_flurry.ncs \ objs\prc_ad_mirror.ncs \ objs\prc_addct_ag.ncs \ objs\prc_addct_dw.ncs \ objs\prc_addct_lhx.ncs \ objs\prc_addct_msh.ncs \ objs\prc_addct_snh.ncs \ objs\prc_addct_tb.ncs \ objs\prc_addct_vdr.ncs \ objs\prc_ai_coh_conv.ncs \ objs\prc_ai_coh_hb.ncs \ objs\prc_ai_con_attck.ncs \ objs\prc_ai_con_block.ncs \ objs\prc_ai_con_combt.ncs \ objs\prc_ai_con_conv.ncs \ objs\prc_ai_con_damag.ncs \ objs\prc_ai_con_death.ncs \ objs\prc_ai_con_distb.ncs \ objs\prc_ai_con_heart.ncs \ objs\prc_ai_con_percp.ncs \ objs\prc_ai_con_rest.ncs \ objs\prc_ai_con_spawn.ncs \ objs\prc_ai_con_spell.ncs \ objs\prc_ai_con_userd.ncs \ objs\prc_ai_fam_attck.ncs \ objs\prc_ai_fam_block.ncs \ objs\prc_ai_fam_combt.ncs \ objs\prc_ai_fam_conv.ncs \ objs\prc_ai_fam_damag.ncs \ objs\prc_ai_fam_death.ncs \ objs\prc_ai_fam_distb.ncs \ objs\prc_ai_fam_heart.ncs \ objs\prc_ai_fam_percp.ncs \ objs\prc_ai_fam_rest.ncs \ objs\prc_ai_fam_spawn.ncs \ objs\prc_ai_fam_spell.ncs \ objs\prc_ai_fam_userd.ncs \ objs\prc_ai_mob_attck.ncs \ objs\prc_ai_mob_block.ncs \ objs\prc_ai_mob_combt.ncs \ objs\prc_ai_mob_conv.ncs \ objs\prc_ai_mob_damag.ncs \ objs\prc_ai_mob_death.ncs \ objs\prc_ai_mob_distb.ncs \ objs\prc_ai_mob_heart.ncs \ objs\prc_ai_mob_percp.ncs \ objs\prc_ai_mob_rest.ncs \ objs\prc_ai_mob_spawn.ncs \ objs\prc_ai_mob_spell.ncs \ objs\prc_ai_mob_userd.ncs \ objs\prc_ai_sum_attck.ncs \ objs\prc_ai_sum_block.ncs \ objs\prc_ai_sum_combt.ncs \ objs\prc_ai_sum_conv.ncs \ objs\prc_ai_sum_damag.ncs \ objs\prc_ai_sum_death.ncs \ objs\prc_ai_sum_distb.ncs \ objs\prc_ai_sum_heart.ncs \ objs\prc_ai_sum_percp.ncs \ objs\prc_ai_sum_rest.ncs \ objs\prc_ai_sum_spawn.ncs \ objs\prc_ai_sum_spell.ncs \ objs\prc_ai_sum_userd.ncs \ objs\prc_alag_cmight.ncs \ objs\prc_alag_cstrike.ncs \ objs\prc_alag_rckbrst.ncs \ objs\prc_alaghar.ncs \ objs\prc_alcpm_convo.ncs \ objs\prc_alien_summon.ncs \ objs\prc_alienist.ncs \ objs\prc_amn.ncs \ objs\prc_arc_feat1.ncs \ objs\prc_arc_feat2.ncs \ objs\prc_arc_strike.ncs \ objs\prc_arcduel.ncs \ objs\prc_archer.ncs \ objs\prc_archivist.ncs \ objs\prc_archv_dk.ncs \ objs\prc_archv_lspell.ncs \ objs\prc_assassin_da.ncs \ objs\prc_assn_da_hb.ncs \ objs\prc_at_isa.ncs \ objs\prc_at_legerlock.ncs \ objs\prc_at_legertrap.ncs \ objs\prc_attack.ncs \ objs\prc_baal_beguile.ncs \ objs\prc_baal_inspla.ncs \ objs\prc_baal_suggest.ncs \ objs\prc_baal_sum1.ncs \ objs\prc_baal_sum2.ncs \ objs\prc_baalzebul.ncs \ objs\prc_bab_caller.ncs \ objs\prc_baeln_tch.ncs \ objs\prc_baelnorn.ncs \ objs\prc_battlesmith.ncs \ objs\prc_battletempus.ncs \ objs\prc_bbc.ncs \ objs\prc_bfz.ncs \ objs\prc_bfz_stride.ncs \ objs\prc_blackguard.ncs \ objs\prc_bladesinger.ncs \ objs\prc_blank_test.ncs \ objs\prc_bld_arch.ncs \ objs\prc_bldarch_ab.ncs \ objs\prc_bldarch_pb.ncs \ objs\prc_blight_anim.ncs \ objs\prc_blight_fire.ncs \ objs\prc_blight_plagu.ncs \ objs\prc_blight_touch.ncs \ objs\prc_blight_unbnd.ncs \ objs\prc_blight_undws.ncs \ objs\prc_blightlord.ncs \ objs\prc_blkgrd_aod_a.ncs \ objs\prc_blkgrd_aod_b.ncs \ objs\prc_blm_blcomp.ncs \ objs\prc_blm_bldseek.ncs \ objs\prc_blm_dthknell.ncs \ objs\prc_blm_wakebld.ncs \ objs\prc_bloodmagus.ncs \ objs\prc_blue_guts.ncs \ objs\prc_bn_eyes.ncs \ objs\prc_bn_prj_event.ncs \ objs\prc_bn_project.ncs \ objs\prc_bond_death.ncs \ objs\prc_bondedsumm.ncs \ objs\prc_brager.ncs \ objs\prc_brager_dam.ncs \ objs\prc_brawl_xatt.ncs \ objs\prc_brawler.ncs \ objs\prc_breath_enlrg.ncs \ objs\prc_breath_entgl.ncs \ objs\prc_breath_immun.ncs \ objs\prc_breath_max.ncs \ objs\prc_breath_shape.ncs \ objs\prc_breath_spred.ncs \ objs\prc_breath_tmpst.ncs \ objs\prc_breath_wall.ncs \ objs\prc_bsmth_boost.ncs \ objs\prc_bsmth_temper.ncs \ objs\prc_burnselect.ncs \ objs\prc_cbtmed.ncs \ objs\prc_cbtmed_hkck1.ncs \ objs\prc_cbtmed_hkck2.ncs \ objs\prc_cbtmed_hkck3.ncs \ objs\prc_cbtmed_spnhl.ncs \ objs\prc_cc_desretrib.ncs \ objs\prc_chan_feat.ncs \ objs\prc_chn_iborighu.ncs \ objs\prc_chngshp_conv.ncs \ objs\prc_chngshp_lern.ncs \ objs\prc_chngshp_opts.ncs \ objs\prc_chngshp_quik.ncs \ objs\prc_chngshp_true.ncs \ objs\prc_chosen_evil.ncs \ objs\prc_class_sla.ncs \ objs\prc_cloak_dance.ncs \ objs\prc_coc.ncs \ objs\prc_coc_damage.ncs \ objs\prc_coc_heal.ncs \ objs\prc_coc_wrath.ncs \ objs\prc_cohort_convo.ncs \ objs\prc_combatmove.ncs \ objs\prc_con_gol_w_ma.ncs \ objs\prc_contemplate.ncs \ objs\prc_contendkord.ncs \ objs\prc_contmp_whole.ncs \ objs\prc_craft.ncs \ objs\prc_craft_listen.ncs \ objs\prc_crftbaseitms.ncs \ objs\prc_csm_shdride.ncs \ objs\prc_csm_shdwalk.ncs \ objs\prc_cwsamurai.ncs \ objs\prc_cwsm_fright.ncs \ objs\prc_cwsm_kiai.ncs \ objs\prc_cwsm_msstare.ncs \ objs\prc_cwsm_stare.ncs \ objs\prc_dark_power.ncs \ objs\prc_dark_speech.ncs \ objs\prc_dark_whisp.ncs \ objs\prc_daunt_pres.ncs \ objs\prc_dbldracaura.ncs \ objs\prc_debug_hfeatm.ncs \ objs\prc_detectevil.ncs \ objs\prc_dfrm_eyes.ncs \ objs\prc_dfrm_face.ncs \ objs\prc_dfrm_mad.ncs \ objs\prc_dfrm_parst.ncs \ objs\prc_diabl_diab.ncs \ objs\prc_diabl_vdiab.ncs \ objs\prc_dimdoor_aux.ncs \ objs\prc_dirge_awake.ncs \ objs\prc_dirge_bolstr.ncs \ objs\prc_dirge_grief.ncs \ objs\prc_dirge_horror.ncs \ objs\prc_dirge_sorrow.ncs \ objs\prc_discasmodeus.ncs \ objs\prc_discmeph.ncs \ objs\prc_disp_gtrhws.ncs \ objs\prc_disp_irnbdy.ncs \ objs\prc_disp_irnhws.ncs \ objs\prc_disp_irnskn.ncs \ objs\prc_disp_rust.ncs \ objs\prc_disp_summ.ncs \ objs\prc_dispater.ncs \ objs\prc_dj_comspider.ncs \ objs\prc_dj_judgement.ncs \ objs\prc_dj_mryspawn.ncs \ objs\prc_dj_phaspawn.ncs \ objs\prc_dj_selwrath.ncs \ objs\prc_dj_spidgrace.ncs \ objs\prc_dj_sumspider.ncs \ objs\prc_dj_warstrike.ncs \ objs\prc_dm_bottlepro.ncs \ objs\prc_dm_brthflm.ncs \ objs\prc_dm_drnkdemon.ncs \ objs\prc_dm_drnknembr.ncs \ objs\prc_dm_drnknrage.ncs \ objs\prc_dm_formedprp.ncs \ objs\prc_dm_lurch.ncs \ objs\prc_dm_stagger.ncs \ objs\prc_dnc_chrnltch.ncs \ objs\prc_dnc_fearaura.ncs \ objs\prc_dnc_frauraa.ncs \ objs\prc_dnc_negburst.ncs \ objs\prc_dnc_nrvtch.ncs \ objs\prc_dnc_scabtch.ncs \ objs\prc_doa_charm.ncs \ objs\prc_doa_command.ncs \ objs\prc_doa_drdmight.ncs \ objs\prc_doa_evilauth.ncs \ objs\prc_doa_hellcat.ncs \ objs\prc_doa_lrnscrt.ncs \ objs\prc_doa_mjrdevil.ncs \ objs\prc_dom_sun.ncs \ objs\prc_domain_cast.ncs \ objs\prc_domain_charm.ncs \ objs\prc_domain_check.ncs \ objs\prc_domain_conv.ncs \ objs\prc_domain_death.ncs \ objs\prc_domain_destr.ncs \ objs\prc_domain_famly.ncs \ objs\prc_domain_half.ncs \ objs\prc_domain_hate.ncs \ objs\prc_domain_metal.ncs \ objs\prc_domain_noble.ncs \ objs\prc_domain_orc.ncs \ objs\prc_domain_prtct.ncs \ objs\prc_domain_renew.ncs \ objs\prc_domain_skin.ncs \ objs\prc_domain_str.ncs \ objs\prc_domain_travl.ncs \ objs\prc_domain_war.ncs \ objs\prc_door_close.ncs \ objs\prc_door_damaged.ncs \ objs\prc_door_death.ncs \ objs\prc_door_fail.ncs \ objs\prc_door_hb.ncs \ objs\prc_door_lock.ncs \ objs\prc_door_open.ncs \ objs\prc_door_phyatt.ncs \ objs\prc_door_spell.ncs \ objs\prc_door_transit.ncs \ objs\prc_door_ud.ncs \ objs\prc_door_unlock.ncs \ objs\prc_doprecache.ncs \ objs\prc_dracactive.ncs \ objs\prc_dracaura_in.ncs \ objs\prc_dracaura_out.ncs \ objs\prc_dracaura_tgl.ncs \ objs\prc_dracfeat.ncs \ objs\prc_dracmars_tgl.ncs \ objs\prc_dracxtra_tgl.ncs \ objs\prc_dradis.ncs \ objs\prc_dradisfang.ncs \ objs\prc_dragdev.ncs \ objs\prc_dragfire_atk.ncs \ objs\prc_dragonshaman.ncs \ objs\prc_dreadnecro.ncs \ objs\prc_drgfr_active.ncs \ objs\prc_drgfr_assact.ncs \ objs\prc_drgfr_channl.ncs \ objs\prc_drgfr_insact.ncs \ objs\prc_drgnthrall.ncs \ objs\prc_drgshm_breth.ncs \ objs\prc_drgshm_touch.ncs \ objs\prc_drunk.ncs \ objs\prc_duel_charge.ncs \ objs\prc_duelist.ncs \ objs\prc_dusk_channel.ncs \ objs\prc_dusk_qckcast.ncs \ objs\prc_duskblade.ncs \ objs\prc_ea_return.ncs \ objs\prc_ef_arcfis.ncs \ objs\prc_ef_arcrej.ncs \ objs\prc_ef_foe.ncs \ objs\prc_ef_spell.ncs \ objs\prc_elemsavant.ncs \ objs\prc_end_trees.ncs \ objs\prc_energz_ptn.ncs \ objs\prc_enforce_feat.ncs \ objs\prc_enforce_mark.ncs \ objs\prc_enlfis.ncs \ objs\prc_eog.ncs \ objs\prc_equip.ncs \ objs\prc_equip_rstr.ncs \ objs\prc_event_bladeb.ncs \ objs\prc_evilbrand.ncs \ objs\prc_evnt_arrbone.ncs \ objs\prc_evnt_bonebld.ncs \ objs\prc_evnt_brtbn.ncs \ objs\prc_evnt_clbebil.ncs \ objs\prc_evnt_dvnsac.ncs \ objs\prc_evnt_embfr.ncs \ objs\prc_evnt_serparw.ncs \ objs\prc_evnt_snshld.ncs \ objs\prc_evnt_spirwep.ncs \ objs\prc_evnt_strmtl.ncs \ objs\prc_fact_cunbri.ncs \ objs\prc_fact_cunchk.ncs \ objs\prc_fact_cunconv.ncs \ objs\prc_fact_cunning.ncs \ objs\prc_fact_sklconv.ncs \ objs\prc_fact_splcast.ncs \ objs\prc_fact_splchk.ncs \ objs\prc_fact_splconv.ncs \ objs\prc_factotum.ncs \ objs\prc_fam_quasit.ncs \ objs\prc_favouredsoul.ncs \ objs\prc_favsoulweap.ncs \ objs\prc_fb_auto_fre.ncs \ objs\prc_fb_deathless.ncs \ objs\prc_feats.ncs \ objs\prc_fh_da.ncs \ objs\prc_fh_da_hb.ncs \ objs\prc_fh_dr.ncs \ objs\prc_fh_ranc.ncs \ objs\prc_fm_deeproots.ncs \ objs\prc_fm_forestdom.ncs \ objs\prc_fm_icy_mal.ncs \ objs\prc_fm_shock_mal.ncs \ objs\prc_fmm_shield.ncs \ objs\prc_fochlyr.ncs \ objs\prc_foe_hntr.ncs \ objs\prc_forcerest.ncs \ objs\prc_forestmaster.ncs \ objs\prc_forsake_abil.ncs \ objs\prc_forsake_heal.ncs \ objs\prc_forsaker.ncs \ objs\prc_frebzk.ncs \ objs\prc_frenzy.ncs \ objs\prc_fright_pres.ncs \ objs\prc_frostmage.ncs \ objs\prc_frostrager.ncs \ objs\prc_frtrgr_onetw.ncs \ objs\prc_frtrgr_punch.ncs \ objs\prc_ft_anvlthndr.ncs \ objs\prc_ft_apmagval.ncs \ objs\prc_ft_attngemsl.ncs \ objs\prc_ft_attunegem.ncs \ objs\prc_ft_aweblow.ncs \ objs\prc_ft_bbless.ncs \ objs\prc_ft_cldconj.ncs \ objs\prc_ft_dblwnd.ncs \ objs\prc_ft_despana.ncs \ objs\prc_ft_dmeta_emp.ncs \ objs\prc_ft_dmeta_ext.ncs \ objs\prc_ft_dmeta_max.ncs \ objs\prc_ft_fightdef.ncs \ objs\prc_ft_highlow.ncs \ objs\prc_ft_hmmredge.ncs \ objs\prc_ft_hntmldy.ncs \ objs\prc_ft_inlindl.ncs \ objs\prc_ft_intrcssn.ncs \ objs\prc_ft_lolthboon.ncs \ objs\prc_ft_mstrwnd.ncs \ objs\prc_ft_prfnagony.ncs \ objs\prc_ft_rcklsswnd.ncs \ objs\prc_ft_rngdisarm.ncs \ objs\prc_ft_scorpgrsp.ncs \ objs\prc_ft_secauth.ncs \ objs\prc_ft_sklltal.ncs \ objs\prc_ft_spnhlbrd.ncs \ objs\prc_ft_sudemp.ncs \ objs\prc_ft_sudext.ncs \ objs\prc_ft_sudmax.ncs \ objs\prc_ft_sudwide.ncs \ objs\prc_ft_trapeng.ncs \ objs\prc_ft_wndstrk.ncs \ objs\prc_ft_wptrch.ncs \ objs\prc_gfkill_fattk.ncs \ objs\prc_gfkill_gstep.ncs \ objs\prc_glist_onconv.ncs \ objs\prc_glist_onhb.ncs \ objs\prc_glist_onspwn.ncs \ objs\prc_golmeraada50.ncs \ objs\prc_golmeraada55.ncs \ objs\prc_golmeraada60.ncs \ objs\prc_golmeraada65.ncs \ objs\prc_golmeraada70.ncs \ objs\prc_golmeraada75.ncs \ objs\prc_golmeraada80.ncs \ objs\prc_golmeracla12.ncs \ objs\prc_golmeracla17.ncs \ objs\prc_golmeracla22.ncs \ objs\prc_golmeracla27.ncs \ objs\prc_golmeracla32.ncs \ objs\prc_golmerafle10.ncs \ objs\prc_golmerafle15.ncs \ objs\prc_golmerafle20.ncs \ objs\prc_golmerafle25.ncs \ objs\prc_golmerairo19.ncs \ objs\prc_golmerairo24.ncs \ objs\prc_golmerairo29.ncs \ objs\prc_golmerairo34.ncs \ objs\prc_golmerairo39.ncs \ objs\prc_golmerairo44.ncs \ objs\prc_golmerairo49.ncs \ objs\prc_golmerairo54.ncs \ objs\prc_golmeramit37.ncs \ objs\prc_golmeramit42.ncs \ objs\prc_golmeramit47.ncs \ objs\prc_golmeramit52.ncs \ objs\prc_golmeramit57.ncs \ objs\prc_golmeramit62.ncs \ objs\prc_golmeramit67.ncs \ objs\prc_golmeramit72.ncs \ objs\prc_golmeraspawn.ncs \ objs\prc_golmerasto15.ncs \ objs\prc_golmerasto20.ncs \ objs\prc_golmerasto25.ncs \ objs\prc_golmerasto30.ncs \ objs\prc_golmerasto35.ncs \ objs\prc_golmerasto40.ncs \ objs\prc_golmertcost.ncs \ objs\prc_grapple.ncs \ objs\prc_grappleend.ncs \ objs\prc_ham_barbs.ncs \ objs\prc_hath_cohort.ncs \ objs\prc_hath_fear.ncs \ objs\prc_heal_blind.ncs \ objs\prc_heal_comp.ncs \ objs\prc_heal_disease.ncs \ objs\prc_heal_fear.ncs \ objs\prc_heal_paral.ncs \ objs\prc_heal_poison.ncs \ objs\prc_heal_regen.ncs \ objs\prc_heal_res.ncs \ objs\prc_heal_restore.ncs \ objs\prc_heal_stflesh.ncs \ objs\prc_heartwarder.ncs \ objs\prc_hen_death.ncs \ objs\prc_hen_heart.ncs \ objs\prc_hen_spawn.ncs \ objs\prc_henshin.ncs \ objs\prc_hexbl_comp.ncs \ objs\prc_hexbl_comp_a.ncs \ objs\prc_hexbl_comp_c.ncs \ objs\prc_hexbl_compai.ncs \ objs\prc_hexbl_curse.ncs \ objs\prc_hexbl_unluck.ncs \ objs\prc_hext_fright.ncs \ objs\prc_hext_strbst.ncs \ objs\prc_hextor.ncs \ objs\prc_hextor_dam.ncs \ objs\prc_hextor_mode.ncs \ objs\prc_hips.ncs \ objs\prc_hm_hitsudo.ncs \ objs\prc_hm_rdlaware.ncs \ objs\prc_hm_rdlinter.ncs \ objs\prc_hm_wlkmount.ncs \ objs\prc_hotwm_ts.ncs \ objs\prc_hvcm_btlcst.ncs \ objs\prc_iaijutsu.ncs \ objs\prc_iaijutsu_cut.ncs \ objs\prc_iaijutsu_edg.ncs \ objs\prc_iaijutsu_mst.ncs \ objs\prc_iaijutsu_spr.ncs \ objs\prc_initdraconic.ncs \ objs\prc_insfre.ncs \ objs\prc_intuiatk.ncs \ objs\prc_is_ethereal.ncs \ objs\prc_is_incorp.ncs \ objs\prc_judicator.ncs \ objs\prc_juggernaut.ncs \ objs\prc_keep_onhit_a.ncs \ objs\prc_knght_battle.ncs \ objs\prc_knght_block.ncs \ objs\prc_knght_blwrk.ncs \ objs\prc_knght_blwrka.ncs \ objs\prc_knght_blwrkb.ncs \ objs\prc_knght_bond.ncs \ objs\prc_knght_daunt.ncs \ objs\prc_knght_fight.ncs \ objs\prc_knght_ishart.ncs \ objs\prc_knght_ishlly.ncs \ objs\prc_knght_loyal.ncs \ objs\prc_knght_mettle.ncs \ objs\prc_knght_shally.ncs \ objs\prc_knght_vigil.ncs \ objs\prc_knght_vigila.ncs \ objs\prc_knght_vigilb.ncs \ objs\prc_knghtch.ncs \ objs\prc_kngtwv_dam.ncs \ objs\prc_kngtwv_heal.ncs \ objs\prc_knight.ncs \ objs\prc_knight_dam.ncs \ objs\prc_kotmc_combat.ncs \ objs\prc_kotmc_tstrk.ncs \ objs\prc_lasher.ncs \ objs\prc_lasher_crack.ncs \ objs\prc_lasher_death.ncs \ objs\prc_lasher_lashw.ncs \ objs\prc_lasher_stun.ncs \ objs\prc_lasher_third.ncs \ objs\prc_levelup.ncs \ objs\prc_lgdr_unmove.ncs \ objs\prc_lgdr_unstop.ncs \ objs\prc_lolthmeat.ncs \ objs\prc_lucky_shot.ncs \ objs\prc_maa_dam.ncs \ objs\prc_maester_id.ncs \ objs\prc_magekill.ncs \ objs\prc_manatarms.ncs \ objs\prc_marsh_maj1.ncs \ objs\prc_marsh_maj1a.ncs \ objs\prc_marsh_maj1b.ncs \ objs\prc_marsh_min1.ncs \ objs\prc_marsh_min1a.ncs \ objs\prc_marsh_min1b.ncs \ objs\prc_marsh_move.ncs \ objs\prc_masterh.ncs \ objs\prc_masters_will.ncs \ objs\prc_maze_convo.ncs \ objs\prc_maze_en_trig.ncs \ objs\prc_maze_mvtrig.ncs \ objs\prc_maze_onenter.ncs \ objs\prc_maze_onexit.ncs \ objs\prc_metabrth_cnv.ncs \ objs\prc_metabrth_con.ncs \ objs\prc_metabrth_max.ncs \ objs\prc_metabrth_off.ncs \ objs\prc_metabrth_qs.ncs \ objs\prc_metamagic.ncs \ objs\prc_mithral.ncs \ objs\prc_morninglord.ncs \ objs\prc_mystbklsh.ncs \ objs\prc_nbl_coord.ncs \ objs\prc_nbl_favor.ncs \ objs\prc_nbl_favorcnv.ncs \ objs\prc_nbl_great.ncs \ objs\prc_nbl_inspire.ncs \ objs\prc_ncyst_event.ncs \ objs\prc_nightshade.ncs \ objs\prc_ninjca.ncs \ objs\prc_ninjca_gkido.ncs \ objs\prc_ninjca_gstep.ncs \ objs\prc_ninjca_gstp2.ncs \ objs\prc_ninjca_gstrk.ncs \ objs\prc_ninjca_gwalk.ncs \ objs\prc_ninjca_kido.ncs \ objs\prc_noteletrig_a.ncs \ objs\prc_noteletrig_b.ncs \ objs\prc_npc_blocked.ncs \ objs\prc_npc_combat.ncs \ objs\prc_npc_conv.ncs \ objs\prc_npc_damaged.ncs \ objs\prc_npc_death.ncs \ objs\prc_npc_disturb.ncs \ objs\prc_npc_hb.ncs \ objs\prc_npc_percep.ncs \ objs\prc_npc_physatt.ncs \ objs\prc_npc_rested.ncs \ objs\prc_npc_spawn.ncs \ objs\prc_npc_spellat.ncs \ objs\prc_npc_userdef.ncs \ objs\prc_nwnx_funcs.ncs \ objs\prc_ollam.ncs \ objs\prc_ollam_inscon.ncs \ objs\prc_ollam_insres.ncs \ objs\prc_onactivate.ncs \ objs\prc_onaquire.ncs \ objs\prc_oncutabort.ncs \ objs\prc_ondeath.ncs \ objs\prc_ondying.ncs \ objs\prc_onenter.ncs \ objs\prc_onenter_cd.ncs \ objs\prc_onhb_indiv.ncs \ objs\prc_onheartbeat.ncs \ objs\prc_onhitcast.ncs \ objs\prc_onleave.ncs \ objs\prc_onleveldown.ncs \ objs\prc_onmodload.ncs \ objs\prc_onplayerchat.ncs \ objs\prc_onplaytarget.ncs \ objs\prc_onrespawn.ncs \ objs\prc_onunaquire.ncs \ objs\prc_onuserdef.ncs \ objs\prc_ootbi.ncs \ objs\prc_ootbi_gwfcs.ncs \ objs\prc_ootbi_rngprc.ncs \ objs\prc_oozemstr.ncs \ objs\prc_pa_fletch.ncs \ objs\prc_pa_ps.ncs \ objs\prc_pdk_fear.ncs \ objs\prc_pdk_inspire.ncs \ objs\prc_pdk_rally.ncs \ objs\prc_pdk_stand.ncs \ objs\prc_pdk_wrath.ncs \ objs\prc_peak_smitemg.ncs \ objs\prc_peerless.ncs \ objs\prc_plc_click.ncs \ objs\prc_plc_close.ncs \ objs\prc_plc_damaged.ncs \ objs\prc_plc_death.ncs \ objs\prc_plc_disturb.ncs \ objs\prc_plc_hb.ncs \ objs\prc_plc_lock.ncs \ objs\prc_plc_open.ncs \ objs\prc_plc_physatt.ncs \ objs\prc_plc_spell.ncs \ objs\prc_plc_ud.ncs \ objs\prc_plc_unlock.ncs \ objs\prc_plc_used.ncs \ objs\prc_pnp_fam_conv.ncs \ objs\prc_pnp_fam_hide.ncs \ objs\prc_pnp_fam_scry.ncs \ objs\prc_pnp_school.ncs \ objs\prc_pnp_shcc_s.ncs \ objs\prc_powatk_chf.ncs \ objs\prc_powatk_chqs.ncs \ objs\prc_powatk_chs.ncs \ objs\prc_powatk_equ.ncs \ objs\prc_powatk_eval.ncs \ objs\prc_powatk_off.ncs \ objs\prc_powatk_qslt.ncs \ objs\prc_prereq.ncs \ objs\prc_prflflch.ncs \ objs\prc_radialbug.ncs \ objs\prc_rapid_metab.ncs \ objs\prc_rava_cut.ncs \ objs\prc_rava_fear.ncs \ objs\prc_rava_pain.ncs \ objs\prc_rava_visage.ncs \ objs\prc_reapmauler.ncs \ objs\prc_reckl_offens.ncs \ objs\prc_reducedasf.ncs \ objs\prc_reflx_psych.ncs \ objs\prc_remfre.ncs \ objs\prc_reservaoe.ncs \ objs\prc_reservbnalft.ncs \ objs\prc_reservcoe.ncs \ objs\prc_reservdimrch.ncs \ objs\prc_reservdj.ncs \ objs\prc_reservefeat.ncs \ objs\prc_reservfcqs.ncs \ objs\prc_reservheal.ncs \ objs\prc_reservhrbrth.ncs \ objs\prc_reservinvndl.ncs \ objs\prc_reservlern.ncs \ objs\prc_reservoptn.ncs \ objs\prc_reservprtwrd.ncs \ objs\prc_reservrng.ncs \ objs\prc_reservself.ncs \ objs\prc_reservshrt.ncs \ objs\prc_reservsmnelm.ncs \ objs\prc_reservtch.ncs \ objs\prc_rest.ncs \ objs\prc_rotdfeat.ncs \ objs\prc_rune_chant.ncs \ objs\prc_rune_charges.ncs \ objs\prc_rune_clear.ncs \ objs\prc_rune_cntone.ncs \ objs\prc_rune_cntten.ncs \ objs\prc_rune_inscrib.ncs \ objs\prc_rune_max.ncs \ objs\prc_rune_perday.ncs \ objs\prc_runescarred.ncs \ objs\prc_s_auravsdem.ncs \ objs\prc_s_censuredm.ncs \ objs\prc_s_conscaura.ncs \ objs\prc_s_conscauraa.ncs \ objs\prc_s_conscaurab.ncs \ objs\prc_s_courheavn.ncs \ objs\prc_s_courheavna.ncs \ objs\prc_s_courheavnb.ncs \ objs\prc_s_deadshout.ncs \ objs\prc_s_kiheal.ncs \ objs\prc_s_kisave.ncs \ objs\prc_s_kiskill.ncs \ objs\prc_s_shoutstun.ncs \ objs\prc_s_spellb.ncs \ objs\prc_s_spellgain.ncs \ objs\prc_sacpur_strik.ncs \ objs\prc_sacrdvit.ncs \ objs\prc_sacredfist.ncs \ objs\prc_sacrveng.ncs \ objs\prc_sb_enxpctd.ncs \ objs\prc_sb_ephmrl.ncs \ objs\prc_sb_farshad.ncs \ objs\prc_sb_shdstlth.ncs \ objs\prc_sb_shdstrk.ncs \ objs\prc_sb_unerrng.ncs \ objs\prc_sb_uwactiv.ncs \ objs\prc_sbheir.ncs \ objs\prc_sbheir_brill.ncs \ objs\prc_sbheir_holy.ncs \ objs\prc_sbheir_shock.ncs \ objs\prc_sch_arcanep.ncs \ objs\prc_sch_cosmfire.ncs \ objs\prc_sch_timeless.ncs \ objs\prc_schord.ncs \ objs\prc_scout.ncs \ objs\prc_scry_end.ncs \ objs\prc_sereneguard.ncs \ objs\prc_sergrd_boom.ncs \ objs\prc_setalign.ncs \ objs\prc_setcompatt.ncs \ objs\prc_shadowlord.ncs \ objs\prc_shadstalker.ncs \ objs\prc_shaman.ncs \ objs\prc_shaman_ancp.ncs \ objs\prc_shar_confuse.ncs \ objs\prc_shar_dominat.ncs \ objs\prc_shar_fascint.ncs \ objs\prc_shar_haste.ncs \ objs\prc_shar_sanc.ncs \ objs\prc_shatterdpeak.ncs \ objs\prc_shdwbn_brlgt.ncs \ objs\prc_shdwbn_psdhw.ncs \ objs\prc_shdwbn_sacdf.ncs \ objs\prc_shdwbn_sacsh.ncs \ objs\prc_shdwbn_sacst.ncs \ objs\prc_shdwbn_smite.ncs \ objs\prc_shft_effap.ncs \ objs\prc_shift_convo.ncs \ objs\prc_shift_debug.ncs \ objs\prc_shift_quicks.ncs \ objs\prc_shift_relvl.ncs \ objs\prc_shou.ncs \ objs\prc_shou_flryall.ncs \ objs\prc_shou_flrylgt.ncs \ objs\prc_shou_flurry.ncs \ objs\prc_size.ncs \ objs\prc_skullclan.ncs \ objs\prc_slayerdomiel.ncs \ objs\prc_sleat_edrain.ncs \ objs\prc_sleat_sblast.ncs \ objs\prc_sleat_sradia.ncs \ objs\prc_sneak_att.ncs \ objs\prc_snowflake.ncs \ objs\prc_sod_deathtch.ncs \ objs\prc_sod_divgrace.ncs \ objs\prc_sohei.ncs \ objs\prc_sohei_frenzy.ncs \ objs\prc_soldoflight.ncs \ objs\prc_soul_rot.ncs \ objs\prc_sp_event.ncs \ objs\prc_speed.ncs \ objs\prc_spellbook.ncs \ objs\prc_spellf_eval.ncs \ objs\prc_spellfire.ncs \ objs\prc_spellfire_hb.ncs \ objs\prc_spellswd.ncs \ objs\prc_spldnc_cnf.ncs \ objs\prc_spldnc_dnc.ncs \ objs\prc_spldnc_emp.ncs \ objs\prc_spldnc_ent.ncs \ objs\prc_spldnc_ext.ncs \ objs\prc_spldnc_max.ncs \ objs\prc_spldnc_slp.ncs \ objs\prc_sptshm_chast.ncs \ objs\prc_stormlord.ncs \ objs\prc_stunfist.ncs \ objs\prc_suel_disstrk.ncs \ objs\prc_suelarchana.ncs \ objs\prc_swashbuckler.ncs \ objs\prc_swashdam.ncs \ objs\prc_swashheal.ncs \ objs\prc_swashweak.ncs \ objs\prc_swftwg_bol.ncs \ objs\prc_swftwg_wing.ncs \ objs\prc_swiftwing.ncs \ objs\prc_switches.ncs \ objs\prc_switchesc.ncs \ objs\prc_talona.ncs \ objs\prc_talontiamat.ncs \ objs\prc_taltia_brth.ncs \ objs\prc_taltia_dom.ncs \ objs\prc_telecirc_aux.ncs \ objs\prc_telecirc_dis.ncs \ objs\prc_telecirc_oe.ncs \ objs\prc_telep_end_qs.ncs \ objs\prc_telep_lname.ncs \ objs\prc_telep_mrkloc.ncs \ objs\prc_telep_mrkrst.ncs \ objs\prc_telep_odlg_s.ncs \ objs\prc_telep_optdlg.ncs \ objs\prc_telep_quicks.ncs \ objs\prc_teleport_aux.ncs \ objs\prc_teleprt_conv.ncs \ objs\prc_tempest.ncs \ objs\prc_templates.ncs \ objs\prc_thaykn_dam.ncs \ objs\prc_thayknight.ncs \ objs\prc_timer_dying.ncs \ objs\prc_tk_fnlstnd.ncs \ objs\prc_tlbl_dmblght.ncs \ objs\prc_tn_cgund.ncs \ objs\prc_tn_clund.ncs \ objs\prc_tn_des_100.ncs \ objs\prc_tn_des_20.ncs \ objs\prc_tn_des_a.ncs \ objs\prc_tn_des_b.ncs \ objs\prc_tn_des_c.ncs \ objs\prc_tn_endrain.ncs \ objs\prc_tn_unsum.ncs \ objs\prc_to_carrion.ncs \ objs\prc_to_carriona.ncs \ objs\prc_to_dthtch.ncs \ objs\prc_to_fear.ncs \ objs\prc_to_mjrund.ncs \ objs\prc_to_mnrund.ncs \ objs\prc_to_nightwing.ncs \ objs\prc_to_pallor.ncs \ objs\prc_to_pallora.ncs \ objs\prc_tp_mgmt_eval.ncs \ objs\prc_trapfind_act.ncs \ objs\prc_trapfind_pas.ncs \ objs\prc_trueappear.ncs \ objs\prc_tw_rend.ncs \ objs\prc_unarm_pen.ncs \ objs\prc_unequip.ncs \ objs\prc_unequip_cw.ncs \ objs\prc_uni_shift.ncs \ objs\prc_ur_siphon.ncs \ objs\prc_ur_siphoncnv.ncs \ objs\prc_uranger.ncs \ objs\prc_vassal.ncs \ objs\prc_vassal_treas.ncs \ objs\prc_vb_dw_armor.ncs \ objs\prc_vb_dw_weap.ncs \ objs\prc_vigilant.ncs \ objs\prc_virtuoso.ncs \ objs\prc_vows.ncs \ objs\prc_wallbreatha.ncs \ objs\prc_wallbreathc.ncs \ objs\prc_warchief.ncs \ objs\prc_warsling.ncs \ objs\prc_wchf_bodygrd.ncs \ objs\prc_wchf_frenzy.ncs \ objs\prc_weap_apt_app.ncs \ objs\prc_weap_apt_opt.ncs \ objs\prc_weapmas.ncs \ objs\prc_werewolf.ncs \ objs\prc_wild_def.ncs \ objs\prc_wild_rod.ncs \ objs\prc_wild_strike.ncs \ objs\prc_wipensb.ncs \ objs\prc_witch_lspell.ncs \ objs\prc_wwcurse.ncs \ objs\prc_wwempwolf.ncs \ objs\prc_wwformwolf.ncs \ objs\prc_wwhybridwolf.ncs \ objs\prc_wwoc_widen.ncs \ objs\prc_wwunpoly.ncs \ objs\prc_wyzfeat.ncs \ objs\prc_xtradracaura.ncs \ objs\prc_zoa.ncs \ objs\prgt_kit.ncs \ objs\prgt_spawneg.ncs \ objs\prgt_trap_disa.ncs \ objs\prgt_trap_fire.ncs \ objs\ravage_cllghtbl1.ncs \ objs\ravage_cllghtbl2.ncs \ objs\ravage_gldn_ice1.ncs \ objs\ravage_gldn_ice2.ncs \ objs\ravage_jade_wtr1.ncs \ objs\ravage_jade_wtr2.ncs \ objs\ravage_prfdctlv1.ncs \ objs\ravage_prfdctlv2.ncs \ objs\ravage_uncrnbld1.ncs \ objs\ravage_uncrnbld2.ncs \ objs\rm_spellfury.ncs \ objs\rm_spellrage.ncs \ objs\rm_warriorcry.ncs \ objs\rs_regen_wounds.ncs \ objs\rune_bers.ncs \ objs\rune_conv.ncs \ objs\rune_convb.ncs \ objs\rune_dim_door.ncs \ objs\rune_face.ncs \ objs\rune_leftarm.ncs \ objs\rune_leftchest.ncs \ objs\rune_lefthand.ncs \ objs\rune_rightarm.ncs \ objs\rune_rightchest.ncs \ objs\rune_righthand.ncs \ objs\sac_flames.ncs \ objs\sac_innerarmor.ncs \ objs\sac_speed.ncs \ objs\sbr_onacquire.ncs \ objs\sbr_onactivate.ncs \ objs\sbr_onrest.ncs \ objs\sbr_restful_obj.ncs \ objs\shadp_shaddoub.ncs \ objs\shadp_shadwalk.ncs \ objs\shadp_shieldshad.ncs \ objs\skill_climb.ncs \ objs\skill_jump.ncs \ objs\sla_script1.ncs \ objs\sla_script2.ncs \ objs\sla_script3.ncs \ objs\sla_script4.ncs \ objs\sla_script5.ncs \ objs\sol_boltxagya.ncs \ objs\sol_divengeance.ncs \ objs\sol_energon.ncs \ objs\sol_energyburst.ncs \ objs\sol_smitundead.ncs \ objs\soul_spawn.ncs \ objs\sp_disc_crown.ncs \ objs\spl_arcane_fire.ncs \ objs\spl_maste_shape.ncs \ objs\spl_mastery_elem.ncs \ objs\spl_ooze_glob.ncs \ objs\spl_ooze_touch.ncs \ objs\spl_slime_wave.ncs \ objs\spl_spell_like.ncs \ objs\strat_fiendglare.ncs \ objs\strat_pitglare.ncs \ objs\strat_sumfiend.ncs \ objs\summon_hama.ncs \ objs\taltia_aurafear.ncs \ objs\taltia_aurafeara.ncs \ objs\tempus_dg_enh.ncs \ objs\tempus_dg_enh2.ncs \ objs\tempus_dg_enh3.ncs \ objs\tempus_dg_sanar.ncs \ objs\tempus_dg_saxio.ncs \ objs\tempus_dg_sbarsk.ncs \ objs\tempus_dg_scold.ncs \ objs\tempus_dg_sconec.ncs \ objs\tempus_dg_sdarkn.ncs \ objs\tempus_dg_sdisr.ncs \ objs\tempus_dg_selec.ncs \ objs\tempus_dg_senh.ncs \ objs\tempus_dg_senh2.ncs \ objs\tempus_dg_senh3.ncs \ objs\tempus_dg_set.ncs \ objs\tempus_dg_sfire.ncs \ objs\tempus_dg_sfireb.ncs \ objs\tempus_dg_shaste.ncs \ objs\tempus_dg_sholy.ncs \ objs\tempus_dg_sinvis.ncs \ objs\tempus_dg_skeen.ncs \ objs\tempus_dg_slight.ncs \ objs\tempus_dg_smissi.ncs \ objs\tempus_dg_sunho.ncs \ objs\tempus_dg_svampi.ncs \ objs\tempus_dg_svic1.ncs \ objs\tempus_dg_svic10.ncs \ objs\tempus_dg_svic11.ncs \ objs\tempus_dg_svic12.ncs \ objs\tempus_dg_svic13.ncs \ objs\tempus_dg_svic14.ncs \ objs\tempus_dg_svic15.ncs \ objs\tempus_dg_svic16.ncs \ objs\tempus_dg_svic17.ncs \ objs\tempus_dg_svic18.ncs \ objs\tempus_dg_svic19.ncs \ objs\tempus_dg_svic2.ncs \ objs\tempus_dg_svic20.ncs \ objs\tempus_dg_svic21.ncs \ objs\tempus_dg_svic22.ncs \ objs\tempus_dg_svic23.ncs \ objs\tempus_dg_svic24.ncs \ objs\tempus_dg_svic3.ncs \ objs\tempus_dg_svic4.ncs \ objs\tempus_dg_svic5.ncs \ objs\tempus_dg_svic6.ncs \ objs\tempus_dg_svic7.ncs \ objs\tempus_dg_svic8.ncs \ objs\tempus_dg_svic9.ncs \ objs\tempus_dg_sweb.ncs \ objs\tempus_dg_swound.ncs \ objs\tempus_enchweap.ncs \ objs\tempus_ft_army.ncs \ objs\tempus_identify.ncs \ objs\test_new_poly.ncs \ objs\tf_startconvo.ncs \ objs\tfshad_10000gp.ncs \ objs\tfshad_blindness.ncs \ objs\tfshad_givetoken.ncs \ objs\tfshad_jump.ncs \ objs\tmp_blooded_cry.ncs \ objs\tmp_hdrag_breath.ncs \ objs\tmp_lich_touch.ncs \ objs\tmp_m_alhoon.ncs \ objs\tmp_m_blooded.ncs \ objs\tmp_m_celest.ncs \ objs\tmp_m_cryptspawn.ncs \ objs\tmp_m_curst.ncs \ objs\tmp_m_dark.ncs \ objs\tmp_m_fiend.ncs \ objs\tmp_m_gravetouch.ncs \ objs\tmp_m_halftroll.ncs \ objs\tmp_m_hceles.ncs \ objs\tmp_m_hdragon.ncs \ objs\tmp_m_hfiend.ncs \ objs\tmp_m_lich.ncs \ objs\tmp_m_licha.ncs \ objs\tmp_m_mineral.ncs \ objs\tmp_m_necropol.ncs \ objs\tmp_m_saint.ncs \ objs\tmp_mineral_smt.ncs \ objs\tmp_protectaura.ncs \ objs\tmp_sla.ncs \ objs\tmp_smite.ncs \ objs\tmp_t_alhoon.ncs \ objs\tmp_t_blooded.ncs \ objs\tmp_t_celest.ncs \ objs\tmp_t_cryptspawn.ncs \ objs\tmp_t_curst.ncs \ objs\tmp_t_dark.ncs \ objs\tmp_t_fiend.ncs \ objs\tmp_t_gravetouch.ncs \ objs\tmp_t_halftroll.ncs \ objs\tmp_t_hcelest.ncs \ objs\tmp_t_hdragon.ncs \ objs\tmp_t_hfiend.ncs \ objs\tmp_t_lich.ncs \ objs\tmp_t_licha.ncs \ objs\tmp_t_lichd.ncs \ objs\tmp_t_mineral.ncs \ objs\tmp_t_necropol.ncs \ objs\tmp_t_saint.ncs \ objs\tog.ncs \ objs\tog_charm.ncs \ objs\tog_spawn_demon.ncs \ objs\tog_sum_balor.ncs \ objs\tog_sum_glab.ncs \ objs\tog_sum_mar.ncs \ objs\tog_sum_suc.ncs \ objs\tog_sum_vrock.ncs \ objs\unarmed_caller.ncs \ objs\urang_anicomp.ncs \ objs\urang_favenemy.ncs \ objs\urang_haste.ncs \ objs\urang_hips.ncs \ objs\wol_a_bbb.ncs \ objs\wol_a_dymond.ncs \ objs\wol_a_enter.ncs \ objs\wol_a_exit.ncs \ objs\wol_a_flavor.ncs \ objs\wol_m_aradros.ncs \ objs\wol_m_arik.ncs \ objs\wol_m_blackarch.ncs \ objs\wol_m_blackrzr.ncs \ objs\wol_m_btevstar.ncs \ objs\wol_m_bully.ncs \ objs\wol_m_calad.ncs \ objs\wol_m_corals.ncs \ objs\wol_m_cptmortum.ncs \ objs\wol_m_crimruin.ncs \ objs\wol_m_desrtwind.ncs \ objs\wol_m_devious.ncs \ objs\wol_m_direwind.ncs \ objs\wol_m_divspark.ncs \ objs\wol_m_durind.ncs \ objs\wol_m_dwtob.ncs \ objs\wol_m_dymond.ncs \ objs\wol_m_eventide.ncs \ objs\wol_m_exordius.ncs \ objs\wol_m_faithful.ncs \ objs\wol_m_fiendkll.ncs \ objs\wol_m_flay.ncs \ objs\wol_m_flmcaster.ncs \ objs\wol_m_fullmoon.ncs \ objs\wol_m_guurgal.ncs \ objs\wol_m_hillcrus.ncs \ objs\wol_m_infil.ncs \ objs\wol_m_kamate.ncs \ objs\wol_m_lastcit.ncs \ objs\wol_m_lipeng.ncs \ objs\wol_m_lorestlr.ncs \ objs\wol_m_mndsplntr.ncs \ objs\wol_m_notched.ncs \ objs\wol_m_quickspr.ncs \ objs\wol_m_ramthene.ncs \ objs\wol_m_ravenkind.ncs \ objs\wol_m_scales.ncs \ objs\wol_m_shishio.ncs \ objs\wol_m_simplebow.ncs \ objs\wol_m_stalker.ncs \ objs\wol_m_steadfast.ncs \ objs\wol_m_sunsword.ncs \ objs\wol_m_supernal.ncs \ objs\wol_m_thaas.ncs \ objs\wol_m_tigerfng.ncs \ objs\wol_m_treebro.ncs \ objs\wol_m_umbral.ncs \ objs\wol_m_unfetter.ncs \ objs\wol_m_ur.ncs \ objs\wol_m_vicious.ncs \ objs\wol_m_wargirds.ncs \ objs\wol_m_whelm.ncs \ objs\wol_m_witches.ncs \ objs\wol_m_wyrmbane.ncs \ objs\wol_sla_aradros.ncs \ objs\wol_sla_bbb.ncs \ objs\wol_sla_blackrzr.ncs \ objs\wol_sla_btevstar.ncs \ objs\wol_sla_bully.ncs \ objs\wol_sla_calad.ncs \ objs\wol_sla_crimruin.ncs \ objs\wol_sla_devious.ncs \ objs\wol_sla_direwind.ncs \ objs\wol_sla_divspark.ncs \ objs\wol_sla_dsrtwind.ncs \ objs\wol_sla_durind.ncs \ objs\wol_sla_dwtob.ncs \ objs\wol_sla_dymond.ncs \ objs\wol_sla_eventide.ncs \ objs\wol_sla_exordius.ncs \ objs\wol_sla_faithful.ncs \ objs\wol_sla_fiendkll.ncs \ objs\wol_sla_flay.ncs \ objs\wol_sla_flmcstr.ncs \ objs\wol_sla_fullmoon.ncs \ objs\wol_sla_guurgal.ncs \ objs\wol_sla_hillcrus.ncs \ objs\wol_sla_kamate.ncs \ objs\wol_sla_lastcit.ncs \ objs\wol_sla_lorestlr.ncs \ objs\wol_sla_mindspli.ncs \ objs\wol_sla_notched.ncs \ objs\wol_sla_quickspr.ncs \ objs\wol_sla_ramthene.ncs \ objs\wol_sla_ravenknd.ncs \ objs\wol_sla_scales.ncs \ objs\wol_sla_shishio.ncs \ objs\wol_sla_simplebw.ncs \ objs\wol_sla_stalker.ncs \ objs\wol_sla_steadfst.ncs \ objs\wol_sla_sunsword.ncs \ objs\wol_sla_supernal.ncs \ objs\wol_sla_thaas.ncs \ objs\wol_sla_tigerfng.ncs \ objs\wol_sla_treebro.ncs \ objs\wol_sla_umbral.ncs \ objs\wol_sla_unfetter.ncs \ objs\wol_sla_ur.ncs \ objs\wol_sla_wargirds.ncs \ objs\wol_sla_whelm.ncs \ objs\wol_sla_witches.ncs \ objs\wol_sla_wyrmbane.ncs \ objs\wol_t_aradros.ncs \ objs\wol_t_arik.ncs \ objs\wol_t_blackarch.ncs \ objs\wol_t_blackrzr.ncs \ objs\wol_t_btevstar.ncs \ objs\wol_t_bully.ncs \ objs\wol_t_calad.ncs \ objs\wol_t_corals.ncs \ objs\wol_t_cptmortum.ncs \ objs\wol_t_crimruin.ncs \ objs\wol_t_desrtwind.ncs \ objs\wol_t_devious.ncs \ objs\wol_t_direwind.ncs \ objs\wol_t_divspark.ncs \ objs\wol_t_durind.ncs \ objs\wol_t_dymond.ncs \ objs\wol_t_eventide.ncs \ objs\wol_t_exordius.ncs \ objs\wol_t_faithful.ncs \ objs\wol_t_fiendkll.ncs \ objs\wol_t_flay.ncs \ objs\wol_t_flmcaster.ncs \ objs\wol_t_fullmoon.ncs \ objs\wol_t_guurgal.ncs \ objs\wol_t_hillcrus.ncs \ objs\wol_t_infil.ncs \ objs\wol_t_kamate.ncs \ objs\wol_t_lastcit.ncs \ objs\wol_t_lipeng.ncs \ objs\wol_t_lorestlr.ncs \ objs\wol_t_mndsplntr.ncs \ objs\wol_t_notched.ncs \ objs\wol_t_quickspr.ncs \ objs\wol_t_ramthene.ncs \ objs\wol_t_ravenkind.ncs \ objs\wol_t_scales.ncs \ objs\wol_t_shishio.ncs \ objs\wol_t_simplebow.ncs \ objs\wol_t_stalker.ncs \ objs\wol_t_steadfast.ncs \ objs\wol_t_sunsword.ncs \ objs\wol_t_supernal.ncs \ objs\wol_t_thaas.ncs \ objs\wol_t_tigerfng.ncs \ objs\wol_t_treebro.ncs \ objs\wol_t_umbral.ncs \ objs\wol_t_unfetter.ncs \ objs\wol_t_ur.ncs \ objs\wol_t_vicious.ncs \ objs\wol_t_wargirds.ncs \ objs\wol_t_whelm.ncs \ objs\wol_t_witches.ncs \ objs\wol_t_wyrmbane.ncs \ objs\xchst_chat.ncs \ objs\xchst_exit.ncs \ objs\xchst_hb.ncs \ objs\xchst_onused.ncs SPELLOBJS= \ spellobjs\nw_c2_default7.ncs \ spellobjs\nw_s0_2pitfiend.ncs \ spellobjs\nw_s0_abilbuff.ncs \ spellobjs\nw_s0_acidarrow.ncs \ spellobjs\nw_s0_acidfog.ncs \ spellobjs\nw_s0_acidfoga.ncs \ spellobjs\nw_s0_acidfogb.ncs \ spellobjs\nw_s0_acidfogc.ncs \ spellobjs\nw_s0_aid.ncs \ spellobjs\nw_s0_animdead.ncs \ spellobjs\nw_s0_auravital.ncs \ spellobjs\nw_s0_awaken.ncs \ spellobjs\nw_s0_barkskin.ncs \ spellobjs\nw_s0_bescurse.ncs \ spellobjs\nw_s0_bladebar.ncs \ spellobjs\nw_s0_bladebara.ncs \ spellobjs\nw_s0_bladebarc.ncs \ spellobjs\nw_s0_bless.ncs \ spellobjs\nw_s0_blinddeaf.ncs \ spellobjs\nw_s0_burnhand.ncs \ spellobjs\nw_s0_calllghtn.ncs \ spellobjs\nw_s0_charmani.ncs \ spellobjs\nw_s0_charmmon.ncs \ spellobjs\nw_s0_charmper.ncs \ spellobjs\nw_s0_chlightn.ncs \ spellobjs\nw_s0_circchaosa.ncs \ spellobjs\nw_s0_circchaosb.ncs \ spellobjs\nw_s0_circdeath.ncs \ spellobjs\nw_s0_circdoom.ncs \ spellobjs\nw_s0_circevila.ncs \ spellobjs\nw_s0_circevilb.ncs \ spellobjs\nw_s0_circgooda.ncs \ spellobjs\nw_s0_circgoodb.ncs \ spellobjs\nw_s0_circlawa.ncs \ spellobjs\nw_s0_circlawb.ncs \ spellobjs\nw_s0_circle.ncs \ spellobjs\nw_s0_clairadvo.ncs \ spellobjs\nw_s0_clarity.ncs \ spellobjs\nw_s0_cloudkill.ncs \ spellobjs\nw_s0_cloudkilla.ncs \ spellobjs\nw_s0_cloudkillb.ncs \ spellobjs\nw_s0_cloudkillc.ncs \ spellobjs\nw_s0_colspray.ncs \ spellobjs\nw_s0_conecold.ncs \ spellobjs\nw_s0_confusion.ncs \ spellobjs\nw_s0_contagion.ncs \ spellobjs\nw_s0_conund.ncs \ spellobjs\nw_s0_crgrund.ncs \ spellobjs\nw_s0_crpdoom.ncs \ spellobjs\nw_s0_crpdooma.ncs \ spellobjs\nw_s0_crpdoomb.ncs \ spellobjs\nw_s0_crpdoomc.ncs \ spellobjs\nw_s0_crundead.ncs \ spellobjs\nw_s0_curinflict.ncs \ spellobjs\nw_s0_darkness.ncs \ spellobjs\nw_s0_darknessa.ncs \ spellobjs\nw_s0_darknessb.ncs \ spellobjs\nw_s0_daze.ncs \ spellobjs\nw_s0_deaward.ncs \ spellobjs\nw_s0_delfirea.ncs \ spellobjs\nw_s0_delfirebal.ncs \ spellobjs\nw_s0_destruc.ncs \ spellobjs\nw_s0_dismagic.ncs \ spellobjs\nw_s0_dismissal.ncs \ spellobjs\nw_s0_divpower.ncs \ spellobjs\nw_s0_dmgred.ncs \ spellobjs\nw_s0_doman.ncs \ spellobjs\nw_s0_dommon.ncs \ spellobjs\nw_s0_dompers.ncs \ spellobjs\nw_s0_doom.ncs \ spellobjs\nw_s0_elements.ncs \ spellobjs\nw_s0_eleswarm.ncs \ spellobjs\nw_s0_enebuffer.ncs \ spellobjs\nw_s0_enedrain.ncs \ spellobjs\nw_s0_enervat.ncs \ spellobjs\nw_s0_entangle.ncs \ spellobjs\nw_s0_entangleb.ncs \ spellobjs\nw_s0_entanglec.ncs \ spellobjs\nw_s0_ethervis.ncs \ spellobjs\nw_s0_evards.ncs \ spellobjs\nw_s0_evardsa.ncs \ spellobjs\nw_s0_evardsb.ncs \ spellobjs\nw_s0_evardsc.ncs \ spellobjs\nw_s0_extrathf.ncs \ spellobjs\nw_s0_fear.ncs \ spellobjs\nw_s0_feebmind.ncs \ spellobjs\nw_s0_findtrap.ncs \ spellobjs\nw_s0_fingdeath.ncs \ spellobjs\nw_s0_fireball.ncs \ spellobjs\nw_s0_fireshld.ncs \ spellobjs\nw_s0_firestrm.ncs \ spellobjs\nw_s0_flmarrow.ncs \ spellobjs\nw_s0_flmlash.ncs \ spellobjs\nw_s0_flmstrike.ncs \ spellobjs\nw_s0_freemove.ncs \ spellobjs\nw_s0_gate.ncs \ spellobjs\nw_s0_ghostvis.ncs \ spellobjs\nw_s0_ghoultch.ncs \ spellobjs\nw_s0_ghoultcha.ncs \ spellobjs\nw_s0_globeinv.ncs \ spellobjs\nw_s0_grbullstr.ncs \ spellobjs\nw_s0_grcatsgr.ncs \ spellobjs\nw_s0_grdispel.ncs \ spellobjs\nw_s0_greaglesp.ncs \ spellobjs\nw_s0_grease.ncs \ spellobjs\nw_s0_greasea.ncs \ spellobjs\nw_s0_greaseb.ncs \ spellobjs\nw_s0_greasec.ncs \ spellobjs\nw_s0_grendur.ncs \ spellobjs\nw_s0_grfoxscu.ncs \ spellobjs\nw_s0_growlwis.ncs \ spellobjs\nw_s0_grplanar.ncs \ spellobjs\nw_s0_grspbrch.ncs \ spellobjs\nw_s0_grspmant.ncs \ spellobjs\nw_s0_grspturn.ncs \ spellobjs\nw_s0_hammgods.ncs \ spellobjs\nw_s0_haste.ncs \ spellobjs\nw_s0_healcirc.ncs \ spellobjs\nw_s0_healharm.ncs \ spellobjs\nw_s0_holdanim.ncs \ spellobjs\nw_s0_holdmon.ncs \ spellobjs\nw_s0_holdpers.ncs \ spellobjs\nw_s0_holyaura.ncs \ spellobjs\nw_s0_horrwilt.ncs \ spellobjs\nw_s0_icestorm.ncs \ spellobjs\nw_s0_identify.ncs \ spellobjs\nw_s0_implosion.ncs \ spellobjs\nw_s0_imprinvis.ncs \ spellobjs\nw_s0_inccloud.ncs \ spellobjs\nw_s0_incclouda.ncs \ spellobjs\nw_s0_inccloudb.ncs \ spellobjs\nw_s0_inccloudc.ncs \ spellobjs\nw_s0_invisib.ncs \ spellobjs\nw_s0_invpurge.ncs \ spellobjs\nw_s0_invpurgea.ncs \ spellobjs\nw_s0_invsph.ncs \ spellobjs\nw_s0_invspha.ncs \ spellobjs\nw_s0_invsphb.ncs \ spellobjs\nw_s0_knock.ncs \ spellobjs\nw_s0_lghtnbolt.ncs \ spellobjs\nw_s0_light.ncs \ spellobjs\nw_s0_lore.ncs \ spellobjs\nw_s0_lsdispel.ncs \ spellobjs\nw_s0_lsmndblk.ncs \ spellobjs\nw_s0_lsplanar.ncs \ spellobjs\nw_s0_lsspbrch.ncs \ spellobjs\nw_s0_lsspmant.ncs \ spellobjs\nw_s0_magearm.ncs \ spellobjs\nw_s0_magmiss.ncs \ spellobjs\nw_s0_mashaste.ncs \ spellobjs\nw_s0_massbldf.ncs \ spellobjs\nw_s0_metswarm.ncs \ spellobjs\nw_s0_mindblk.ncs \ spellobjs\nw_s0_mindfog.ncs \ spellobjs\nw_s0_mindfoga.ncs \ spellobjs\nw_s0_mindfogb.ncs \ spellobjs\nw_s0_minglobe.ncs \ spellobjs\nw_s0_morddisj.ncs \ spellobjs\nw_s0_mordswrd.ncs \ spellobjs\nw_s0_mscharm.ncs \ spellobjs\nw_s0_naturebal.ncs \ spellobjs\nw_s0_negburst.ncs \ spellobjs\nw_s0_negprot.ncs \ spellobjs\nw_s0_negray.ncs \ spellobjs\nw_s0_phankill.ncs \ spellobjs\nw_s0_planar.ncs \ spellobjs\nw_s0_poison.ncs \ spellobjs\nw_s0_polyself.ncs \ spellobjs\nw_s0_prayer.ncs \ spellobjs\nw_s0_prisspray.ncs \ spellobjs\nw_s0_protection.ncs \ spellobjs\nw_s0_prspells.ncs \ spellobjs\nw_s0_pwkill.ncs \ spellobjs\nw_s0_pwstun.ncs \ spellobjs\nw_s0_rayenfeeb.ncs \ spellobjs\nw_s0_rayfrost.ncs \ spellobjs\nw_s0_regen.ncs \ spellobjs\nw_s0_remeffect.ncs \ spellobjs\nw_s0_res.ncs \ spellobjs\nw_s0_resis.ncs \ spellobjs\nw_s0_rmvfear.ncs \ spellobjs\nw_s0_rmvparal.ncs \ spellobjs\nw_s0_sanctuary.ncs \ spellobjs\nw_s0_scare.ncs \ spellobjs\nw_s0_searlght.ncs \ spellobjs\nw_s0_seeinvis.ncs \ spellobjs\nw_s0_shadshld.ncs \ spellobjs\nw_s0_shapechg.ncs \ spellobjs\nw_s0_silence.ncs \ spellobjs\nw_s0_silencea.ncs \ spellobjs\nw_s0_silenceb.ncs \ spellobjs\nw_s0_silencec.ncs \ spellobjs\nw_s0_slaylive.ncs \ spellobjs\nw_s0_sleep.ncs \ spellobjs\nw_s0_slow.ncs \ spellobjs\nw_s0_sndburst.ncs \ spellobjs\nw_s0_splresis.ncs \ spellobjs\nw_s0_spmantle.ncs \ spellobjs\nw_s0_stinkcld.ncs \ spellobjs\nw_s0_stinkclda.ncs \ spellobjs\nw_s0_stinkcldc.ncs \ spellobjs\nw_s0_stoneskn.ncs \ spellobjs\nw_s0_stormvenc.ncs \ spellobjs\nw_s0_stormveng.ncs \ spellobjs\nw_s0_summon.ncs \ spellobjs\nw_s0_summshad.ncs \ spellobjs\nw_s0_summshad02.ncs \ spellobjs\nw_s0_sunbeam.ncs \ spellobjs\nw_s0_tenstrans.ncs \ spellobjs\nw_s0_timestop.ncs \ spellobjs\nw_s0_truesee.ncs \ spellobjs\nw_s0_unhaura.ncs \ spellobjs\nw_s0_vamptch.ncs \ spellobjs\nw_s0_virtue.ncs \ spellobjs\nw_s0_wailbansh.ncs \ spellobjs\nw_s0_wallfire.ncs \ spellobjs\nw_s0_wallfirea.ncs \ spellobjs\nw_s0_wallfirec.ncs \ spellobjs\nw_s0_warcry.ncs \ spellobjs\nw_s0_web.ncs \ spellobjs\nw_s0_weba.ncs \ spellobjs\nw_s0_webb.ncs \ spellobjs\nw_s0_webc.ncs \ spellobjs\nw_s0_weird.ncs \ spellobjs\nw_s0_wordfaith.ncs \ spellobjs\nw_s1_aurablind.ncs \ spellobjs\nw_s1_auracold.ncs \ spellobjs\nw_s1_auradrag.ncs \ spellobjs\nw_s1_auraelec.ncs \ spellobjs\nw_s1_aurafear.ncs \ spellobjs\nw_s1_aurafeara.ncs \ spellobjs\nw_s1_aurafire.ncs \ spellobjs\nw_s1_auramenac.ncs \ spellobjs\nw_s1_auraprot.ncs \ spellobjs\nw_s1_aurastun.ncs \ spellobjs\nw_s1_auraunear.ncs \ spellobjs\nw_s1_auraunnat.ncs \ spellobjs\nw_s1_barbrage.ncs \ spellobjs\nw_s1_dragacid.ncs \ spellobjs\nw_s1_dragcold.ncs \ spellobjs\nw_s1_dragfire.ncs \ spellobjs\nw_s1_draggas.ncs \ spellobjs\nw_s1_draglight.ncs \ spellobjs\nw_s1_dragparal.ncs \ spellobjs\nw_s1_dragsleep.ncs \ spellobjs\nw_s1_dragslow.ncs \ spellobjs\nw_s1_dragweak.ncs \ spellobjs\nw_s1_howldoom.ncs \ spellobjs\nw_s1_pulsdrwn.ncs \ spellobjs\nw_s2_animalcom.ncs \ spellobjs\nw_s2_bardsong.ncs \ spellobjs\nw_s2_divstr.ncs \ spellobjs\nw_s2_divtrick.ncs \ spellobjs\nw_s2_elemshape.ncs \ spellobjs\nw_s2_familiar.ncs \ spellobjs\nw_s2_layonhand.ncs \ spellobjs\nw_s2_turndead.ncs \ spellobjs\nw_s2_wholeness.ncs \ spellobjs\nw_s2_wildshape.ncs \ spellobjs\nw_s3_alcohol.ncs \ spellobjs\power_leech.ncs \ spellobjs\prc_od_conc.ncs \ spellobjs\prc_prespell.ncs \ spellobjs\prc_scry_conv.ncs \ spellobjs\prc_vampdrain.ncs \ spellobjs\pt_enter.ncs \ spellobjs\pt_exit.ncs \ spellobjs\sp_aberrate.ncs \ spellobjs\sp_absorb_str.ncs \ spellobjs\sp_abyssal_mght.ncs \ spellobjs\sp_acidicfire.ncs \ spellobjs\sp_acidorb.ncs \ spellobjs\sp_acidstorm.ncs \ spellobjs\sp_addiction.ncs \ spellobjs\sp_agnazscorch.ncs \ spellobjs\sp_agony.ncs \ spellobjs\sp_ai_sphereofud.ncs \ spellobjs\sp_alcfrost.ncs \ spellobjs\sp_alcslpgas.ncs \ spellobjs\sp_alcspark.ncs \ spellobjs\sp_amber_sarc.ncs \ spellobjs\sp_angry_ache.ncs \ spellobjs\sp_animal_pwr.ncs \ spellobjs\sp_animaltrance.ncs \ spellobjs\sp_animobj.ncs \ spellobjs\sp_antimagic.ncs \ spellobjs\sp_antitoxin.ncs \ spellobjs\sp_apoc_sky.ncs \ spellobjs\sp_arcaneeye.ncs \ spellobjs\sp_armordark.ncs \ spellobjs\sp_arrow_of_bone.ncs \ spellobjs\sp_arrow_storm.ncs \ spellobjs\sp_arrowsplit.ncs \ spellobjs\sp_aug_famil.ncs \ spellobjs\sp_avas_mass.ncs \ spellobjs\sp_avasclt.ncs \ spellobjs\sp_avasmassb.ncs \ spellobjs\sp_avasmassc.ncs \ spellobjs\sp_ayailla_rb.ncs \ spellobjs\sp_baccaran.ncs \ spellobjs\sp_bale_polym.ncs \ spellobjs\sp_baletrans.ncs \ spellobjs\sp_belburnbld.ncs \ spellobjs\sp_benitrans.ncs \ spellobjs\sp_bestow_wnd.ncs \ spellobjs\sp_bigby_sf.ncs \ spellobjs\sp_bigby_trip.ncs \ spellobjs\sp_biledrop.ncs \ spellobjs\sp_blacklight.ncs \ spellobjs\sp_blacklighta.ncs \ spellobjs\sp_blacklightb.ncs \ spellobjs\sp_blade_blood.ncs \ spellobjs\sp_blades_ofire.ncs \ spellobjs\sp_blasphemy.ncs \ spellobjs\sp_blastfrc.ncs \ spellobjs\sp_bldfrz_arrow.ncs \ spellobjs\sp_blendcrm.ncs \ spellobjs\sp_bless_water.ncs \ spellobjs\sp_blessbahamut.ncs \ spellobjs\sp_blink.ncs \ spellobjs\sp_blnd_glory.ncs \ spellobjs\sp_blnd_glorya.ncs \ spellobjs\sp_blnd_gloryb.ncs \ spellobjs\sp_blood_martyr.ncs \ spellobjs\sp_blsflm.ncs \ spellobjs\sp_blur.ncs \ spellobjs\sp_bodak_birth.ncs \ spellobjs\sp_bolt_glory.ncs \ spellobjs\sp_bone_blade.ncs \ spellobjs\sp_boneblast.ncs \ spellobjs\sp_bonesearth.ncs \ spellobjs\sp_bonesearthft.ncs \ spellobjs\sp_brill_eman.ncs \ spellobjs\sp_brill_emana.ncs \ spellobjs\sp_brill_emanb.ncs \ spellobjs\sp_brill_enarr.ncs \ spellobjs\sp_brittlebn.ncs \ spellobjs\sp_brk_enchant.ncs \ spellobjs\sp_burnbol.ncs \ spellobjs\sp_call_dretch.ncs \ spellobjs\sp_call_fserv.ncs \ spellobjs\sp_call_lemure.ncs \ spellobjs\sp_calm_emotiona.ncs \ spellobjs\sp_calm_emotionb.ncs \ spellobjs\sp_calm_emotions.ncs \ spellobjs\sp_celest_bld.ncs \ spellobjs\sp_chaavs_lgh.ncs \ spellobjs\sp_chan_pyrob.ncs \ spellobjs\sp_changestaff.ncs \ spellobjs\sp_chasperfect.ncs \ spellobjs\sp_chilltouch.ncs \ spellobjs\sp_chngshp_lern.ncs \ spellobjs\sp_chngshp_opts.ncs \ spellobjs\sp_chngshp_quik.ncs \ spellobjs\sp_clarityofmind.ncs \ spellobjs\sp_claw_bebil.ncs \ spellobjs\sp_claws_savage.ncs \ spellobjs\sp_close_wounds.ncs \ spellobjs\sp_cloud_achai.ncs \ spellobjs\sp_cloud_achaia.ncs \ spellobjs\sp_cloud_achaib.ncs \ spellobjs\sp_clutch_orcus.ncs \ spellobjs\sp_cnv_bldmartyr.ncs \ spellobjs\sp_cnv_trures.ncs \ spellobjs\sp_coldorb.ncs \ spellobjs\sp_comm_undead.ncs \ spellobjs\sp_command.ncs \ spellobjs\sp_consecrate.ncs \ spellobjs\sp_consecratea.ncs \ spellobjs\sp_consecrateb.ncs \ spellobjs\sp_contagious.ncs \ spellobjs\sp_controlwea.ncs \ spellobjs\sp_convert_wand.ncs \ spellobjs\sp_convict.ncs \ spellobjs\sp_cracklepdr.ncs \ spellobjs\sp_cracklepdra.ncs \ spellobjs\sp_cracklepdrb.ncs \ spellobjs\sp_craftbless.ncs \ spellobjs\sp_craftcurse.ncs \ spellobjs\sp_createtatoo.ncs \ spellobjs\sp_crown_mght.ncs \ spellobjs\sp_crown_prot.ncs \ spellobjs\sp_crsh_despair.ncs \ spellobjs\sp_crush_fs.ncs \ spellobjs\sp_crush_fsai.ncs \ spellobjs\sp_ct_min13.ncs \ spellobjs\sp_ct_min7.ncs \ spellobjs\sp_ct_scribe.ncs \ spellobjs\sp_ct_scribe_1ac.ncs \ spellobjs\sp_ct_scribe_1at.ncs \ spellobjs\sp_ct_scribe_2at.ncs \ spellobjs\sp_ct_scribe_cha.ncs \ spellobjs\sp_ct_scribe_con.ncs \ spellobjs\sp_ct_scribe_dex.ncs \ spellobjs\sp_ct_scribe_for.ncs \ spellobjs\sp_ct_scribe_int.ncs \ spellobjs\sp_ct_scribe_ref.ncs \ spellobjs\sp_ct_scribe_sav.ncs \ spellobjs\sp_ct_scribe_sr.ncs \ spellobjs\sp_ct_scribe_str.ncs \ spellobjs\sp_ct_scribe_wil.ncs \ spellobjs\sp_ct_scribe_wis.ncs \ spellobjs\sp_ct_start.ncs \ spellobjs\sp_curimpbl.ncs \ spellobjs\sp_curpfail.ncs \ spellobjs\sp_curse_phusk.ncs \ spellobjs\sp_curse_water.ncs \ spellobjs\sp_curse_watera.ncs \ spellobjs\sp_damng_dark.ncs \ spellobjs\sp_damng_darka.ncs \ spellobjs\sp_damng_darkb.ncs \ spellobjs\sp_dancg_web.ncs \ spellobjs\sp_danclight.ncs \ spellobjs\sp_danclightch.ncs \ spellobjs\sp_danclightcs.ncs \ spellobjs\sp_danclightd.ncs \ spellobjs\sp_darkbolt.ncs \ spellobjs\sp_darkbolt1.ncs \ spellobjs\sp_daylight.ncs \ spellobjs\sp_daylighta.ncs \ spellobjs\sp_daylightb.ncs \ spellobjs\sp_dblstr_arrow.ncs \ spellobjs\sp_deathknell.ncs \ spellobjs\sp_deep_slumber.ncs \ spellobjs\sp_deepdarkness.ncs \ spellobjs\sp_deepslumber.ncs \ spellobjs\sp_deflect.ncs \ spellobjs\sp_demoncall.ncs \ spellobjs\sp_demonflesh.ncs \ spellobjs\sp_desecrate.ncs \ spellobjs\sp_despoil.ncs \ spellobjs\sp_det_favenmy.ncs \ spellobjs\sp_det_undead.ncs \ spellobjs\sp_detect_chaos.ncs \ spellobjs\sp_detect_evil.ncs \ spellobjs\sp_detect_good.ncs \ spellobjs\sp_detect_law.ncs \ spellobjs\sp_detect_magic.ncs \ spellobjs\sp_devils_ego.ncs \ spellobjs\sp_devils_eye.ncs \ spellobjs\sp_devilweed.ncs \ spellobjs\sp_dictum.ncs \ spellobjs\sp_dimens_anch.ncs \ spellobjs\sp_dimens_door.ncs \ spellobjs\sp_dimens_hop.ncs \ spellobjs\sp_dimens_lock.ncs \ spellobjs\sp_dimens_lock_a.ncs \ spellobjs\sp_dimens_lock_b.ncs \ spellobjs\sp_dimens_lock_c.ncs \ spellobjs\sp_dimens_lock_x.ncs \ spellobjs\sp_discernloc.ncs \ spellobjs\sp_disint.ncs \ spellobjs\sp_dispell_tch.ncs \ spellobjs\sp_disrpt_undead.ncs \ spellobjs\sp_divine_insp.ncs \ spellobjs\sp_divine_sac.ncs \ spellobjs\sp_divprot.ncs \ spellobjs\sp_dmnd_spray.ncs \ spellobjs\sp_doom_scarab.ncs \ spellobjs\sp_drac_might.ncs \ spellobjs\sp_dragfireinsp.ncs \ spellobjs\sp_dread_word.ncs \ spellobjs\sp_drgn_ally.ncs \ spellobjs\sp_drgn_cloud.ncs \ spellobjs\sp_drkflm_arrow.ncs \ spellobjs\sp_drug_resist.ncs \ spellobjs\sp_dth_thorns.ncs \ spellobjs\sp_ecto_enhnc.ncs \ spellobjs\sp_eiacid.ncs \ spellobjs\sp_eicold.ncs \ spellobjs\sp_eielec.ncs \ spellobjs\sp_eifire.ncs \ spellobjs\sp_eimmunity.ncs \ spellobjs\sp_eisonic.ncs \ spellobjs\sp_elation.ncs \ spellobjs\sp_elecorb.ncs \ spellobjs\sp_elemconf.ncs \ spellobjs\sp_elemstrike.ncs \ spellobjs\sp_embalmfire.ncs \ spellobjs\sp_energy_ebb.ncs \ spellobjs\sp_energy_srg.ncs \ spellobjs\sp_energz_ptn.ncs \ spellobjs\sp_enred.ncs \ spellobjs\sp_enrgy_aegis.ncs \ spellobjs\sp_enthrall.ncs \ spellobjs\sp_etercharmmon.ncs \ spellobjs\sp_etercharmper.ncs \ spellobjs\sp_etern_tortr.ncs \ spellobjs\sp_evil_eye.ncs \ spellobjs\sp_evil_wthr.ncs \ spellobjs\sp_exalt_fury.ncs \ spellobjs\sp_exaltd_raim.ncs \ spellobjs\sp_extr_wtrele.ncs \ spellobjs\sp_extract_drug.ncs \ spellobjs\sp_eye_behold.ncs \ spellobjs\sp_eyebite.ncs \ spellobjs\sp_eyes_avoral.ncs \ spellobjs\sp_faerie_fire.ncs \ spellobjs\sp_false_life.ncs \ spellobjs\sp_fareyeoil.ncs \ spellobjs\sp_fester_death.ncs \ spellobjs\sp_festerbmb.ncs \ spellobjs\sp_fiend_clarity.ncs \ spellobjs\sp_fire_blood.ncs \ spellobjs\sp_fire_trap.ncs \ spellobjs\sp_fire_trapa.ncs \ spellobjs\sp_fireburst.ncs \ spellobjs\sp_fireorb.ncs \ spellobjs\sp_fist_stone.ncs \ spellobjs\sp_flashburst.ncs \ spellobjs\sp_flashpllt.ncs \ spellobjs\sp_flensing.ncs \ spellobjs\sp_flesh_armor.ncs \ spellobjs\sp_flesh_rip.ncs \ spellobjs\sp_floatingdisk.ncs \ spellobjs\sp_fogcloud.ncs \ spellobjs\sp_forceblast.ncs \ spellobjs\sp_forcemissiles.ncs \ spellobjs\sp_forceorb.ncs \ spellobjs\sp_foresight.ncs \ spellobjs\sp_frogs_fish.ncs \ spellobjs\sp_gas_form.ncs \ spellobjs\sp_gdust.ncs \ spellobjs\sp_gen_exit.ncs \ spellobjs\sp_gfireburst.ncs \ spellobjs\sp_gheroism.ncs \ spellobjs\sp_ghlgaunt.ncs \ spellobjs\sp_glibness.ncs \ spellobjs\sp_greatcommand.ncs \ spellobjs\sp_green_fogc.ncs \ spellobjs\sp_greenfire.ncs \ spellobjs\sp_greenfire_en.ncs \ spellobjs\sp_greenfire_ex.ncs \ spellobjs\sp_greenfire_hb.ncs \ spellobjs\sp_grim_revng.ncs \ spellobjs\sp_grscrying.ncs \ spellobjs\sp_grtr_teleport.ncs \ spellobjs\sp_gutwrench.ncs \ spellobjs\sp_hailofstone.ncs \ spellobjs\sp_halt.ncs \ spellobjs\sp_halt_undd.ncs \ spellobjs\sp_ham_right.ncs \ spellobjs\sp_heal_anmcomp.ncs \ spellobjs\sp_healrbm.ncs \ spellobjs\sp_heart_ripr.ncs \ spellobjs\sp_heartache.ncs \ spellobjs\sp_heartclutch.ncs \ spellobjs\sp_hellfire.ncs \ spellobjs\sp_heroism.ncs \ spellobjs\sp_hf_storm.ncs \ spellobjs\sp_hide_anim.ncs \ spellobjs\sp_hide_undead.ncs \ spellobjs\sp_holy_aura.ncs \ spellobjs\sp_holyword.ncs \ spellobjs\sp_hound_doom.ncs \ spellobjs\sp_hypattern.ncs \ spellobjs\sp_ice_knife.ncs \ spellobjs\sp_iceburst.ncs \ spellobjs\sp_ilyykmant.ncs \ spellobjs\sp_impmagearm.ncs \ spellobjs\sp_insanity.ncs \ spellobjs\sp_ironbody.ncs \ spellobjs\sp_jump.ncs \ spellobjs\sp_keenearb.ncs \ spellobjs\sp_kelgore_fb.ncs \ spellobjs\sp_lacidorb.ncs \ spellobjs\sp_lahms_fd.ncs \ spellobjs\sp_lantrn_lght.ncs \ spellobjs\sp_lcoldorb.ncs \ spellobjs\sp_lconvict.ncs \ spellobjs\sp_lcurimpbl.ncs \ spellobjs\sp_lcurpfail.ncs \ spellobjs\sp_lelecorb.ncs \ spellobjs\sp_leonl_roar.ncs \ spellobjs\sp_less_shivtch.ncs \ spellobjs\sp_lfireorb.ncs \ spellobjs\sp_life_bolt.ncs \ spellobjs\sp_lionheart.ncs \ spellobjs\sp_liquid_pain.ncs \ spellobjs\sp_livund.ncs \ spellobjs\sp_loccreature.ncs \ spellobjs\sp_lockslip.ncs \ spellobjs\sp_locobject.ncs \ spellobjs\sp_longstrdr.ncs \ spellobjs\sp_lowersr.ncs \ spellobjs\sp_lshlfat.ncs \ spellobjs\sp_lsonicorb.ncs \ spellobjs\sp_lst_jdgmnt.ncs \ spellobjs\sp_luhix.ncs \ spellobjs\sp_luminousa.ncs \ spellobjs\sp_lumins_armr.ncs \ spellobjs\sp_magehand.ncs \ spellobjs\sp_magicstone.ncs \ spellobjs\sp_masochism.ncs \ spellobjs\sp_mass_frshld.ncs \ spellobjs\sp_maze.ncs \ spellobjs\sp_mcontagion.ncs \ spellobjs\sp_mdrown.ncs \ spellobjs\sp_megmht.ncs \ spellobjs\sp_mholdmon.ncs \ spellobjs\sp_mholdper.ncs \ spellobjs\sp_mirror.ncs \ spellobjs\sp_mislead.ncs \ spellobjs\sp_mislead_x.ncs \ spellobjs\sp_mjmagmiss.ncs \ spellobjs\sp_mmmansion.ncs \ spellobjs\sp_moral_undn.ncs \ spellobjs\sp_mshrmpdr.ncs \ spellobjs\sp_natdraught.ncs \ spellobjs\sp_natureavatar.ncs \ spellobjs\sp_nec_aware.ncs \ spellobjs\sp_nec_bloat.ncs \ spellobjs\sp_nec_burst.ncs \ spellobjs\sp_nec_cyst.ncs \ spellobjs\sp_nec_domin.ncs \ spellobjs\sp_nec_empower.ncs \ spellobjs\sp_nec_erupt.ncs \ spellobjs\sp_nec_term.ncs \ spellobjs\sp_nerv.ncs \ spellobjs\sp_nght_caress.ncs \ spellobjs\sp_nondetection.ncs \ spellobjs\sp_nybgentrem.ncs \ spellobjs\sp_nybsternrep.ncs \ spellobjs\sp_obscmist.ncs \ spellobjs\sp_obscmist_ent.ncs \ spellobjs\sp_obscmist_exit.ncs \ spellobjs\sp_obscobj.ncs \ spellobjs\sp_orb_force.ncs \ spellobjs\sp_ot_frz_sphere.ncs \ spellobjs\sp_otiluke_rs.ncs \ spellobjs\sp_otiluke_rsa.ncs \ spellobjs\sp_otiluke_rsb.ncs \ spellobjs\sp_panacea.ncs \ spellobjs\sp_pattern.ncs \ spellobjs\sp_pest_aura_hb.ncs \ spellobjs\sp_pest_aura_oe.ncs \ spellobjs\sp_pest_aux.ncs \ spellobjs\sp_pestilence.ncs \ spellobjs\sp_phantomsteed.ncs \ spellobjs\sp_phiern_rslv.ncs \ spellobjs\sp_phoenix_fire.ncs \ spellobjs\sp_plaguedead.ncs \ spellobjs\sp_plantshape.ncs \ spellobjs\sp_pnp_frshld.ncs \ spellobjs\sp_polar_ray.ncs \ spellobjs\sp_power_leech.ncs \ spellobjs\sp_pox.ncs \ spellobjs\sp_prism_wall.ncs \ spellobjs\sp_prism_walla.ncs \ spellobjs\sp_prismat_ray.ncs \ spellobjs\sp_prismt_sphr.ncs \ spellobjs\sp_prismt_sphra.ncs \ spellobjs\sp_prismt_sphrb.ncs \ spellobjs\sp_prot_arrows.ncs \ spellobjs\sp_pwblind.ncs \ spellobjs\sp_pyrotechnics.ncs \ spellobjs\sp_pyrotechnicsa.ncs \ spellobjs\sp_pyrotechnicsb.ncs \ spellobjs\sp_rage.ncs \ spellobjs\sp_rain_bloodc.ncs \ spellobjs\sp_rain_btul.ncs \ spellobjs\sp_rain_btula.ncs \ spellobjs\sp_rain_btulb.ncs \ spellobjs\sp_rain_ember.ncs \ spellobjs\sp_rain_ffishc.ncs \ spellobjs\sp_rain_rose.ncs \ spellobjs\sp_rain_rosea.ncs \ spellobjs\sp_rain_roseb.ncs \ spellobjs\sp_rain_rosec.ncs \ spellobjs\sp_rainbow_blast.ncs \ spellobjs\sp_raptr_ruptr.ncs \ spellobjs\sp_ray_charmm.ncs \ spellobjs\sp_ray_charmp.ncs \ spellobjs\sp_ray_disint.ncs \ spellobjs\sp_ray_exhst.ncs \ spellobjs\sp_ray_fear.ncs \ spellobjs\sp_ray_flshstn.ncs \ spellobjs\sp_ray_fngdth.ncs \ spellobjs\sp_ray_hope.ncs \ spellobjs\sp_ray_inflmod.ncs \ spellobjs\sp_ray_sleep.ncs \ spellobjs\sp_ray_slow.ncs \ spellobjs\sp_readmagic.ncs \ spellobjs\sp_real_blind.ncs \ spellobjs\sp_recitat.ncs \ spellobjs\sp_red_fester.ncs \ spellobjs\sp_regen_wounds.ncs \ spellobjs\sp_regroup.ncs \ spellobjs\sp_repel_vermin.ncs \ spellobjs\sp_repel_vermina.ncs \ spellobjs\sp_repulsion.ncs \ spellobjs\sp_repulsiona.ncs \ spellobjs\sp_repulsionb.ncs \ spellobjs\sp_repulsionc.ncs \ spellobjs\sp_res_resist.ncs \ spellobjs\sp_revivify.ncs \ spellobjs\sp_right_smt.ncs \ spellobjs\sp_rightmt.ncs \ spellobjs\sp_ring_blds.ncs \ spellobjs\sp_ring_bldsa.ncs \ spellobjs\sp_ring_bldsc.ncs \ spellobjs\sp_rotcurse_urf.ncs \ spellobjs\sp_rouse.ncs \ spellobjs\sp_sannish.ncs \ spellobjs\sp_sarc_stone.ncs \ spellobjs\sp_scint_pattrn.ncs \ spellobjs\sp_scorch_ray.ncs \ spellobjs\sp_scrmngfl.ncs \ spellobjs\sp_scrying.ncs \ spellobjs\sp_seeking_ray.ncs \ spellobjs\sp_seeth_eyebn.ncs \ spellobjs\sp_sequester.ncs \ spellobjs\sp_serp_arrow.ncs \ spellobjs\sp_serp_sigh.ncs \ spellobjs\sp_shad_arrow.ncs \ spellobjs\sp_shadspray.ncs \ spellobjs\sp_shedden.ncs \ spellobjs\sp_shield_other.ncs \ spellobjs\sp_shiver_tch.ncs \ spellobjs\sp_shock_grasp.ncs \ spellobjs\sp_shout.ncs \ spellobjs\sp_shriveling.ncs \ spellobjs\sp_sickn_evil.ncs \ spellobjs\sp_sickn_evila.ncs \ spellobjs\sp_sickn_evilb.ncs \ spellobjs\sp_sinsbbolt.ncs \ spellobjs\sp_slash_displ.ncs \ spellobjs\sp_slashdark.ncs \ spellobjs\sp_sleet_storm.ncs \ spellobjs\sp_sleet_storma.ncs \ spellobjs\sp_sleet_stormb.ncs \ spellobjs\sp_sleet_stormc.ncs \ spellobjs\sp_snare.ncs \ spellobjs\sp_snarea.ncs \ spellobjs\sp_snsnow.ncs \ spellobjs\sp_snsnowsw.ncs \ spellobjs\sp_sobriety.ncs \ spellobjs\sp_softfoot.ncs \ spellobjs\sp_solid_fog.ncs \ spellobjs\sp_solid_foga.ncs \ spellobjs\sp_solid_fogb.ncs \ spellobjs\sp_song_discord.ncs \ spellobjs\sp_sonic_shld.ncs \ spellobjs\sp_sonicorb.ncs \ spellobjs\sp_sorrow.ncs \ spellobjs\sp_soulscour.ncs \ spellobjs\sp_speed_wind.ncs \ spellobjs\sp_spellturning.ncs \ spellobjs\sp_sphere_spawn.ncs \ spellobjs\sp_sphereud.ncs \ spellobjs\sp_spiderskin.ncs \ spellobjs\sp_spiritweapon.ncs \ spellobjs\sp_spiritworm.ncs \ spellobjs\sp_splresismass.ncs \ spellobjs\sp_spore_vrock.ncs \ spellobjs\sp_spslay_arrow.ncs \ spellobjs\sp_stalagmite.ncs \ spellobjs\sp_starmantle.ncs \ spellobjs\sp_stn_scrch.ncs \ spellobjs\sp_stop_hrt.ncs \ spellobjs\sp_strm_shard.ncs \ spellobjs\sp_sum_undead.ncs \ spellobjs\sp_sunmantle.ncs \ spellobjs\sp_sure_strike.ncs \ spellobjs\sp_swordconsc.ncs \ spellobjs\sp_symbol.ncs \ spellobjs\sp_symbola.ncs \ spellobjs\sp_symbolc.ncs \ spellobjs\sp_tch_idiocy.ncs \ spellobjs\sp_tch_juiblex.ncs \ spellobjs\sp_telecircle.ncs \ spellobjs\sp_teleport.ncs \ spellobjs\sp_terran_brndy.ncs \ spellobjs\sp_thous_ndls.ncs \ spellobjs\sp_throw_ep.ncs \ spellobjs\sp_tng_baalz.ncs \ spellobjs\sp_tomb_light.ncs \ spellobjs\sp_tortoiseshell.ncs \ spellobjs\sp_touch_fatigue.ncs \ spellobjs\sp_towering_oak.ncs \ spellobjs\sp_transviaplant.ncs \ spellobjs\sp_treeshape.ncs \ spellobjs\sp_tru_truefrnd.ncs \ spellobjs\sp_true_res.ncs \ spellobjs\sp_truecasting.ncs \ spellobjs\sp_twlght_luck.ncs \ spellobjs\sp_undetectali.ncs \ spellobjs\sp_unheavened.ncs \ spellobjs\sp_unliv_weap.ncs \ spellobjs\sp_unnerv_gz.ncs \ spellobjs\sp_unyieldroots.ncs \ spellobjs\sp_utterdark.ncs \ spellobjs\sp_utterdarka.ncs \ spellobjs\sp_utterdarkb.ncs \ spellobjs\sp_vigor.ncs \ spellobjs\sp_vigor_mass.ncs \ spellobjs\sp_vile_death.ncs \ spellobjs\sp_violet_rainc.ncs \ spellobjs\sp_viscidglob.ncs \ spellobjs\sp_visheaven.ncs \ spellobjs\sp_vodare.ncs \ spellobjs\sp_walldispel.ncs \ spellobjs\sp_walldispela.ncs \ spellobjs\sp_walldispelc.ncs \ spellobjs\sp_wallfrost.ncs \ spellobjs\sp_wallfrosta.ncs \ spellobjs\sp_wallfrostc.ncs \ spellobjs\sp_water_brth.ncs \ spellobjs\sp_wave_exhst.ncs \ spellobjs\sp_wave_grief.ncs \ spellobjs\sp_wave_pain.ncs \ spellobjs\sp_waves_fatg.ncs \ spellobjs\sp_weepstn.ncs \ spellobjs\sp_whrl_blade.ncs \ spellobjs\sp_wolfskin.ncs \ spellobjs\sp_wordbal.ncs \ spellobjs\sp_wordofchaos.ncs \ spellobjs\sp_wordofrecall.ncs \ spellobjs\sp_wrack.ncs \ spellobjs\sp_wrtch_blght.ncs \ spellobjs\tsspellhook.ncs \ spellobjs\x0_ch_hen_rest.ncs \ spellobjs\x0_ch_hen_spawn.ncs \ spellobjs\x0_s0_acidsplash.ncs \ spellobjs\x0_s0_amplify.ncs \ spellobjs\x0_s0_auraglory.ncs \ spellobjs\x0_s0_bane.ncs \ spellobjs\x0_s0_banishment.ncs \ spellobjs\x0_s0_bigby1.ncs \ spellobjs\x0_s0_bigby2.ncs \ spellobjs\x0_s0_bigby3.ncs \ spellobjs\x0_s0_bigby4.ncs \ spellobjs\x0_s0_bigby5.ncs \ spellobjs\x0_s0_bldfrenzy.ncs \ spellobjs\x0_s0_bombard.ncs \ spellobjs\x0_s0_camo.ncs \ spellobjs\x0_s0_clight.ncs \ spellobjs\x0_s0_dirge.ncs \ spellobjs\x0_s0_dirgeen.ncs \ spellobjs\x0_s0_dirgeex.ncs \ spellobjs\x0_s0_dirgehb.ncs \ spellobjs\x0_s0_displace.ncs \ spellobjs\x0_s0_divfav.ncs \ spellobjs\x0_s0_drown.ncs \ spellobjs\x0_s0_earthquake.ncs \ spellobjs\x0_s0_elecjolt.ncs \ spellobjs\x0_s0_enten.ncs \ spellobjs\x0_s0_entex.ncs \ spellobjs\x0_s0_entrshield.ncs \ spellobjs\x0_s0_ether.ncs \ spellobjs\x0_s0_exretreat.ncs \ spellobjs\x0_s0_firebrand.ncs \ spellobjs\x0_s0_flare.ncs \ spellobjs\x0_s0_fleshsto.ncs \ spellobjs\x0_s0_gmagicfang.ncs \ spellobjs\x0_s0_gustwind.ncs \ spellobjs\x0_s0_inferno.ncs \ spellobjs\x0_s0_ironhorn.ncs \ spellobjs\x0_s0_laugh.ncs \ spellobjs\x0_s0_magicfang.ncs \ spellobjs\x0_s0_masscamo.ncs \ spellobjs\x0_s0_missstorm1.ncs \ spellobjs\x0_s0_missstorm2.ncs \ spellobjs\x0_s0_oneland.ncs \ spellobjs\x0_s0_owlins.ncs \ spellobjs\x0_s0_planar.ncs \ spellobjs\x0_s0_quillfire.ncs \ spellobjs\x0_s0_shield.ncs \ spellobjs\x0_s0_shieldfait.ncs \ spellobjs\x0_s0_spikegro.ncs \ spellobjs\x0_s0_spikegroen.ncs \ spellobjs\x0_s0_spikegrohb.ncs \ spellobjs\x0_s0_stoflesh.ncs \ spellobjs\x0_s0_sunburst.ncs \ spellobjs\x0_s0_truestrike.ncs \ spellobjs\x0_s0_udetfoe.ncs \ spellobjs\x0_s0_woundwhis.ncs \ spellobjs\x0_s1_petrbreath.ncs \ spellobjs\x0_s1_petrgaze.ncs \ spellobjs\x0_s1_petrtouch.ncs \ spellobjs\x0_s2_blkdead.ncs \ spellobjs\x0_s2_divmight.ncs \ spellobjs\x0_s2_divshield.ncs \ spellobjs\x0_s3_caltrop.ncs \ spellobjs\x0_s3_holy.ncs \ spellobjs\x0_s3_rodwonder.ncs \ spellobjs\x1_s2_imbuearrow.ncs \ spellobjs\x2_o0_glyphhb.ncs \ spellobjs\x2_o0_glyphspell.ncs \ spellobjs\x2_pc_craft.ncs \ spellobjs\x2_pc_umdcheck.ncs \ spellobjs\x2_s0_acidbrth.ncs \ spellobjs\x2_s0_acidshth.ncs \ spellobjs\x2_s0_auraglory.ncs \ spellobjs\x2_s0_balllghtng.ncs \ spellobjs\x2_s0_batttide.ncs \ spellobjs\x2_s0_batttidea.ncs \ spellobjs\x2_s0_batttideb.ncs \ spellobjs\x2_s0_blckblde.ncs \ spellobjs\x2_s0_cldbewld.ncs \ spellobjs\x2_s0_cldbewlda.ncs \ spellobjs\x2_s0_cldbewldc.ncs \ spellobjs\x2_s0_combust.ncs \ spellobjs\x2_s0_crshadow.ncs \ spellobjs\x2_s0_crumble.ncs \ spellobjs\x2_s0_cureother.ncs \ spellobjs\x2_s0_dtharm.ncs \ spellobjs\x2_s0_elecloop.ncs \ spellobjs\x2_s0_enhweap.ncs \ spellobjs\x2_s0_evilblight.ncs \ spellobjs\x2_s0_glphward.ncs \ spellobjs\x2_s0_glphwarda.ncs \ spellobjs\x2_s0_glphwardx.ncs \ spellobjs\x2_s0_grtthdclp.ncs \ spellobjs\x2_s0_hasteslow.ncs \ spellobjs\x2_s0_healstng.ncs \ spellobjs\x2_s0_hellfire.ncs \ spellobjs\x2_s0_hellfirea.ncs \ spellobjs\x2_s0_hellfirec.ncs \ spellobjs\x2_s0_hellinfern.ncs \ spellobjs\x2_s0_horiboom.ncs \ spellobjs\x2_s0_icedagg.ncs \ spellobjs\x2_s0_infestmag.ncs \ spellobjs\x2_s0_ironguts.ncs \ spellobjs\x2_s0_magcvest.ncs \ spellobjs\x2_s0_persblde.ncs \ spellobjs\x2_s0_restother.ncs \ spellobjs\x2_s0_scntsphere.ncs \ spellobjs\x2_s0_stnbones.ncs \ spellobjs\x2_s0_stnehold.ncs \ spellobjs\x2_s0_stneholda.ncs \ spellobjs\x2_s0_stneholdc.ncs \ spellobjs\x2_s0_tidebattle.ncs \ spellobjs\x2_s0_undeath.ncs \ spellobjs\x2_s0_vinemcam.ncs \ spellobjs\x2_s0_vinemcama.ncs \ spellobjs\x2_s0_vinemcamb.ncs \ spellobjs\x2_s0_vinement.ncs \ spellobjs\x2_s0_vinementb.ncs \ spellobjs\x2_s0_vinementc.ncs \ spellobjs\x2_s0_vinemhmp.ncs \ spellobjs\x2_s0_vinemhmpa.ncs \ spellobjs\x2_s0_vinemhmpb.ncs \ spellobjs\x2_s0_vinemhmpc.ncs \ spellobjs\x2_s1_beholdray.ncs \ spellobjs\x2_s1_chaosspit.ncs \ spellobjs\x2_s1_dragneg.ncs \ spellobjs\x2_s1_petrgaze.ncs \ spellobjs\x2_s1_psibarr.ncs \ spellobjs\x2_s2_cursesong.ncs \ spellobjs\x2_s2_discbreath.ncs \ spellobjs\x2_s2_dragknght.ncs \ spellobjs\x2_s2_epicward.ncs \ spellobjs\x2_s2_epmagearm.ncs \ spellobjs\x2_s2_gwildshp.ncs \ spellobjs\x2_s2_mumdust.ncs \ spellobjs\x2_s2_sumgrund.ncs \ spellobjs\x2_s2_sumundead.ncs \ spellobjs\x2_s2_wildshape.ncs \ spellobjs\x2_s2_wildshpedk.ncs \ spellobjs\x2_s3_darkfire.ncs \ spellobjs\x2_s3_deafclng.ncs \ spellobjs\x2_s3_flamingd.ncs \ spellobjs\x2_s3_sequencer.ncs \ spellobjs\x2_s3_slayraks.ncs EPICSPELLOBJS= \ epicspellobjs\_ev_onitemactiv.ncs \ epicspellobjs\_plc_rsrch_ep_sp.ncs \ epicspellobjs\activate_epspell.ncs \ epicspellobjs\activate_seeds.ncs \ epicspellobjs\aoe_rainfire_ent.ncs \ epicspellobjs\aoe_rainfire_ext.ncs \ epicspellobjs\aoe_rainfire_hb.ncs \ epicspellobjs\at_contingentreu.ncs \ epicspellobjs\at_contre0_reset.ncs \ epicspellobjs\at_contre1_reset.ncs \ epicspellobjs\at_contre2_reset.ncs \ epicspellobjs\at_contre3_reset.ncs \ epicspellobjs\at_contre4_reset.ncs \ epicspellobjs\at_contre5_reset.ncs \ epicspellobjs\at_contreu_iaffl.ncs \ epicspellobjs\at_contreu_ibadl.ncs \ epicspellobjs\at_contreu_idead.ncs \ epicspellobjs\at_contreu_idyin.ncs \ epicspellobjs\at_contreu_iinca.ncs \ epicspellobjs\at_contreu_inear.ncs \ epicspellobjs\at_contreu_taffl.ncs \ epicspellobjs\at_contreu_tbadl.ncs \ epicspellobjs\at_contreu_tdead.ncs \ epicspellobjs\at_contreu_tdyin.ncs \ epicspellobjs\at_contreu_tinca.ncs \ epicspellobjs\at_contreu_tnear.ncs \ epicspellobjs\at_contrez_reset.ncs \ epicspellobjs\at_council_npca.ncs \ epicspellobjs\at_council_npcb.ncs \ epicspellobjs\at_dest_whipshar.ncs \ epicspellobjs\at_destroyself.ncs \ epicspellobjs\at_fwords_npca.ncs \ epicspellobjs\at_fwords_npcb.ncs \ epicspellobjs\at_ident_items.ncs \ epicspellobjs\at_runmymartyr.ncs \ epicspellobjs\contingent_reun.ncs \ epicspellobjs\council_npca.ncs \ epicspellobjs\council_npcb.ncs \ epicspellobjs\etern_free.ncs \ epicspellobjs\fwords_npca.ncs \ epicspellobjs\fwords_npcb.ncs \ epicspellobjs\run_all_martyr.ncs \ epicspellobjs\run_gemcage_gem.ncs \ epicspellobjs\run_whipofshar.ncs \ epicspellobjs\sc_cont_reunion.ncs \ epicspellobjs\sc_contreu0_yes.ncs \ epicspellobjs\sc_contreu1_yes.ncs \ epicspellobjs\sc_contreu2_yes.ncs \ epicspellobjs\sc_contreu3_yes.ncs \ epicspellobjs\sc_contreu4_yes.ncs \ epicspellobjs\sc_contreu5_yes.ncs \ epicspellobjs\sc_contrez_yes.ncs \ epicspellobjs\sc_epicradial_0.ncs \ epicspellobjs\sc_epicradial_ok.ncs \ epicspellobjs\sc_has_loreskill.ncs \ epicspellobjs\sc_isepiccaster.ncs \ epicspellobjs\sc_ret_false.ncs \ epicspellobjs\sc_runmymartyr.ncs \ epicspellobjs\ss_ep_achilles.ncs \ epicspellobjs\ss_ep_allhoplost.ncs \ epicspellobjs\ss_ep_alliedmart.ncs \ epicspellobjs\ss_ep_anarchys.ncs \ epicspellobjs\ss_ep_animusblas.ncs \ epicspellobjs\ss_ep_animusbliz.ncs \ epicspellobjs\ss_ep_armyunfall.ncs \ epicspellobjs\ss_ep_audi_stone.ncs \ epicspellobjs\ss_ep_celestcoun.ncs \ epicspellobjs\ss_ep_champvalor.ncs \ epicspellobjs\ss_ep_cont_resur.ncs \ epicspellobjs\ss_ep_continreun.ncs \ epicspellobjs\ss_ep_deadeye.ncs \ epicspellobjs\ss_ep_direwinter.ncs \ epicspellobjs\ss_ep_dragonkn.ncs \ epicspellobjs\ss_ep_dreamscape.ncs \ epicspellobjs\ss_ep_dullblades.ncs \ epicspellobjs\ss_ep_dweomerthf.ncs \ epicspellobjs\ss_ep_enslave.ncs \ epicspellobjs\ss_ep_epicrepuls.ncs \ epicspellobjs\ss_ep_eterfree.ncs \ epicspellobjs\ss_ep_fiendwords.ncs \ epicspellobjs\ss_ep_fleetness.ncs \ epicspellobjs\ss_ep_gem_cage.ncs \ epicspellobjs\ss_ep_godsmite.ncs \ epicspellobjs\ss_ep_gr_ruin.ncs \ epicspellobjs\ss_ep_gr_spres.ncs \ epicspellobjs\ss_ep_grtimestop.ncs \ epicspellobjs\ss_ep_hellball.ncs \ epicspellobjs\ss_ep_hercuall.ncs \ epicspellobjs\ss_ep_hercuemp.ncs \ epicspellobjs\ss_ep_impenetrab.ncs \ epicspellobjs\ss_ep_killwnd.ncs \ epicspellobjs\ss_ep_leech.ncs \ epicspellobjs\ss_ep_mage_arm.ncs \ epicspellobjs\ss_ep_magmabu.ncs \ epicspellobjs\ss_ep_maspenguin.ncs \ epicspellobjs\ss_ep_mom_mori.ncs \ epicspellobjs\ss_ep_mumdust.ncs \ epicspellobjs\ss_ep_nailedsky.ncs \ epicspellobjs\ss_ep_orderresto.ncs \ epicspellobjs\ss_ep_pathsknown.ncs \ epicspellobjs\ss_ep_pestilen.ncs \ epicspellobjs\ss_ep_piousparly.ncs \ epicspellobjs\ss_ep_planarcell.ncs \ epicspellobjs\ss_ep_psionicsal.ncs \ epicspellobjs\ss_ep_rainoffire.ncs \ epicspellobjs\ss_ep_ruin.ncs \ epicspellobjs\ss_ep_singsunder.ncs \ epicspellobjs\ss_ep_spellrefle.ncs \ epicspellobjs\ss_ep_spellworm.ncs \ epicspellobjs\ss_ep_strmmant.ncs \ epicspellobjs\ss_ep_summonaber.ncs \ epicspellobjs\ss_ep_sup_disp.ncs \ epicspellobjs\ss_ep_thewitheri.ncs \ epicspellobjs\ss_ep_transvital.ncs \ epicspellobjs\ss_ep_twnfiend.ncs \ epicspellobjs\ss_ep_unholydisc.ncs \ epicspellobjs\ss_ep_unimpinged.ncs \ epicspellobjs\ss_ep_unseenwand.ncs \ epicspellobjs\ss_ep_warding.ncs \ epicspellobjs\ss_ep_whipshar.ncs \ epicspellobjs\tm_s0_epkillwnda.ncs \ epicspellobjs\tm_s0_epkillwndb.ncs \ epicspellobjs\tm_s0_epleecha.ncs \ epicspellobjs\tm_s0_epleechb.ncs \ epicspellobjs\tm_s0_epmagmabua.ncs \ epicspellobjs\tm_s0_epmagmabub.ncs \ epicspellobjs\tm_s0_epmagmabuc.ncs \ epicspellobjs\trans_vital.ncs \ epicspellobjs\wander_unseen.ncs 2DAS= \ 2das\baseitems.2da \ 2das\classes.2da \ 2das\cls_atk_4.2da \ 2das\cls_aukn_marsh.2da \ 2das\cls_bfeat_abcham.2da \ 2das\cls_bfeat_acego.2da \ 2das\cls_bfeat_adst.2da \ 2das\cls_bfeat_alien.2da \ 2das\cls_bfeat_amn.2da \ 2das\cls_bfeat_anima.2da \ 2das\cls_bfeat_aots.2da \ 2das\cls_bfeat_arch.2da \ 2das\cls_bfeat_archv.2da \ 2das\cls_bfeat_arctrk.2da \ 2das\cls_bfeat_arti.2da \ 2das\cls_bfeat_baal.2da \ 2das\cls_bfeat_bbc.2da \ 2das\cls_bfeat_beguil.2da \ 2das\cls_bfeat_bereft.2da \ 2das\cls_bfeat_bfz.2da \ 2das\cls_bfeat_binder.2da \ 2das\cls_bfeat_blades.2da \ 2das\cls_bfeat_blank.2da \ 2das\cls_bfeat_blarch.2da \ 2das\cls_bfeat_bldclw.2da \ 2das\cls_bfeat_blight.2da \ 2das\cls_bfeat_blmagu.2da \ 2das\cls_bfeat_bltl.2da \ 2das\cls_bfeat_bonded.2da \ 2das\cls_bfeat_bowman.2da \ 2das\cls_bfeat_brage.2da \ 2das\cls_bfeat_brimst.2da \ 2das\cls_bfeat_bsmith.2da \ 2das\cls_bfeat_cbtmed.2da \ 2das\cls_bfeat_cereb.2da \ 2das\cls_bfeat_chldnt.2da \ 2das\cls_bfeat_cntmp.2da \ 2das\cls_bfeat_coc.2da \ 2das\cls_bfeat_crinti.2da \ 2das\cls_bfeat_crusdr.2da \ 2das\cls_bfeat_cultst.2da \ 2das\cls_bfeat_cwsm.2da \ 2das\cls_bfeat_dalqur.2da \ 2das\cls_bfeat_deepst.2da \ 2das\cls_bfeat_dfa.2da \ 2das\cls_bfeat_diabol.2da \ 2das\cls_bfeat_diadra.2da \ 2das\cls_bfeat_dirge.2da \ 2das\cls_bfeat_disp.2da \ 2das\cls_bfeat_dnecro.2da \ 2das\cls_bfeat_doa.2da \ 2das\cls_bfeat_dradev.2da \ 2das\cls_bfeat_dradis.2da \ 2das\cls_bfeat_drgnht.2da \ 2das\cls_bfeat_drgshm.2da \ 2das\cls_bfeat_drnkn.2da \ 2das\cls_bfeat_drowj.2da \ 2das\cls_bfeat_drslyr.2da \ 2das\cls_bfeat_duel.2da \ 2das\cls_bfeat_duskbl.2da \ 2das\cls_bfeat_dwdef.2da \ 2das\cls_bfeat_edisc.2da \ 2das\cls_bfeat_eldkni.2da \ 2das\cls_bfeat_enlfis.2da \ 2das\cls_bfeat_eog.2da \ 2das\cls_bfeat_etbl.2da \ 2das\cls_bfeat_etheur.2da \ 2das\cls_bfeat_factum.2da \ 2das\cls_bfeat_favsol.2da \ 2das\cls_bfeat_fh.2da \ 2das\cls_bfeat_fistra.2da \ 2das\cls_bfeat_fmm.2da \ 2das\cls_bfeat_foclyr.2da \ 2das\cls_bfeat_formas.2da \ 2das\cls_bfeat_forsak.2da \ 2das\cls_bfeat_foz.2da \ 2das\cls_bfeat_frebzk.2da \ 2das\cls_bfeat_frostm.2da \ 2das\cls_bfeat_frtrgr.2da \ 2das\cls_bfeat_gfkill.2da \ 2das\cls_bfeat_hath.2da \ 2das\cls_bfeat_havocm.2da \ 2das\cls_bfeat_healer.2da \ 2das\cls_bfeat_heartw.2da \ 2das\cls_bfeat_hexbl.2da \ 2das\cls_bfeat_hextor.2da \ 2das\cls_bfeat_hfwrlk.2da \ 2das\cls_bfeat_hiero.2da \ 2das\cls_bfeat_hmage.2da \ 2das\cls_bfeat_hnshn.2da \ 2das\cls_bfeat_hosp.2da \ 2das\cls_bfeat_hotwm.2da \ 2das\cls_bfeat_hunter.2da \ 2das\cls_bfeat_iaij.2da \ 2das\cls_bfeat_incand.2da \ 2das\cls_bfeat_incarn.2da \ 2das\cls_bfeat_irnfrg.2da \ 2das\cls_bfeat_irnmnd.2da \ 2das\cls_bfeat_jpm.2da \ 2das\cls_bfeat_juggr.2da \ 2das\cls_bfeat_justww.2da \ 2das\cls_bfeat_kchal.2da \ 2das\cls_bfeat_kngtwv.2da \ 2das\cls_bfeat_knight.2da \ 2das\cls_bfeat_kord.2da \ 2das\cls_bfeat_kotmc.2da \ 2das\cls_bfeat_kss.2da \ 2das\cls_bfeat_lasher.2da \ 2das\cls_bfeat_lgdr.2da \ 2das\cls_bfeat_lich.2da \ 2das\cls_bfeat_maestr.2da \ 2das\cls_bfeat_magek.2da \ 2das\cls_bfeat_marsh.2da \ 2das\cls_bfeat_meph.2da \ 2das\cls_bfeat_mharp.2da \ 2das\cls_bfeat_ml.2da \ 2das\cls_bfeat_monine.2da \ 2das\cls_bfeat_mos.2da \ 2das\cls_bfeat_mstalc.2da \ 2das\cls_bfeat_mstrsh.2da \ 2das\cls_bfeat_mystic.2da \ 2das\cls_bfeat_ninjca.2da \ 2das\cls_bfeat_noctm.2da \ 2das\cls_bfeat_ocu.2da \ 2das\cls_bfeat_ollam.2da \ 2das\cls_bfeat_ootbi.2da \ 2das\cls_bfeat_ooze.2da \ 2das\cls_bfeat_orcus.2da \ 2das\cls_bfeat_orcwar.2da \ 2das\cls_bfeat_palema.2da \ 2das\cls_bfeat_parch.2da \ 2das\cls_bfeat_pdk.2da \ 2das\cls_bfeat_psion.2da \ 2das\cls_bfeat_psych.2da \ 2das\cls_bfeat_psyrog.2da \ 2das\cls_bfeat_psywar.2da \ 2das\cls_bfeat_ragem.2da \ 2das\cls_bfeat_rava.2da \ 2das\cls_bfeat_rbyknt.2da \ 2das\cls_bfeat_redav.2da \ 2das\cls_bfeat_redwiz.2da \ 2das\cls_bfeat_rpmlr.2da \ 2das\cls_bfeat_rune.2da \ 2das\cls_bfeat_runec.2da \ 2das\cls_bfeat_sacfis.2da \ 2das\cls_bfeat_sacpur.2da \ 2das\cls_bfeat_samur.2da \ 2das\cls_bfeat_sapphr.2da \ 2das\cls_bfeat_savant.2da \ 2das\cls_bfeat_sbheir.2da \ 2das\cls_bfeat_schord.2da \ 2das\cls_bfeat_scout.2da \ 2das\cls_bfeat_sdmind.2da \ 2das\cls_bfeat_sergrd.2da \ 2das\cls_bfeat_shadep.2da \ 2das\cls_bfeat_shaman.2da \ 2das\cls_bfeat_sharss.2da \ 2das\cls_bfeat_shdbld.2da \ 2das\cls_bfeat_shdcst.2da \ 2das\cls_bfeat_shdsmt.2da \ 2das\cls_bfeat_shou.2da \ 2das\cls_bfeat_sklcln.2da \ 2das\cls_bfeat_sleat.2da \ 2das\cls_bfeat_sncmnd.2da \ 2das\cls_bfeat_sod.2da \ 2das\cls_bfeat_sohei.2da \ 2das\cls_bfeat_sol.2da \ 2das\cls_bfeat_soulbn.2da \ 2das\cls_bfeat_soulc.2da \ 2das\cls_bfeat_soulkn.2da \ 2das\cls_bfeat_spellf.2da \ 2das\cls_bfeat_spells.2da \ 2das\cls_bfeat_spldnc.2da \ 2das\cls_bfeat_spnmld.2da \ 2das\cls_bfeat_ssn.2da \ 2das\cls_bfeat_storml.2da \ 2das\cls_bfeat_suel.2da \ 2das\cls_bfeat_swash.2da \ 2das\cls_bfeat_swdsge.2da \ 2das\cls_bfeat_swftwg.2da \ 2das\cls_bfeat_taltia.2da \ 2das\cls_bfeat_tempst.2da \ 2das\cls_bfeat_tempus.2da \ 2das\cls_bfeat_tfshad.2da \ 2das\cls_bfeat_thaykt.2da \ 2das\cls_bfeat_thrall.2da \ 2das\cls_bfeat_tnecro.2da \ 2das\cls_bfeat_tog.2da \ 2das\cls_bfeat_totem.2da \ 2das\cls_bfeat_totrag.2da \ 2das\cls_bfeat_true.2da \ 2das\cls_bfeat_um.2da \ 2das\cls_bfeat_unseer.2da \ 2das\cls_bfeat_vassal.2da \ 2das\cls_bfeat_virt.2da \ 2das\cls_bfeat_warbld.2da \ 2das\cls_bfeat_warchf.2da \ 2das\cls_bfeat_warlok.2da \ 2das\cls_bfeat_warmnd.2da \ 2das\cls_bfeat_warpr.2da \ 2das\cls_bfeat_wayfar.2da \ 2das\cls_bfeat_wilder.2da \ 2das\cls_bfeat_wildmg.2da \ 2das\cls_bfeat_wrmage.2da \ 2das\cls_bfeat_wrslng.2da \ 2das\cls_bfeat_wwoc.2da \ 2das\cls_bfeat_wwolf.2da \ 2das\cls_bind_binder.2da \ 2das\cls_feat_abcham.2da \ 2das\cls_feat_aber.2da \ 2das\cls_feat_acego.2da \ 2das\cls_feat_adst.2da \ 2das\cls_feat_alien.2da \ 2das\cls_feat_amn.2da \ 2das\cls_feat_anima.2da \ 2das\cls_feat_antipl.2da \ 2das\cls_feat_aots.2da \ 2das\cls_feat_arch.2da \ 2das\cls_feat_archer.2da \ 2das\cls_feat_archv.2da \ 2das\cls_feat_arctrk.2da \ 2das\cls_feat_arti.2da \ 2das\cls_feat_asasin.2da \ 2das\cls_feat_baal.2da \ 2das\cls_feat_baeln.2da \ 2das\cls_feat_barb.2da \ 2das\cls_feat_bard.2da \ 2das\cls_feat_bbc.2da \ 2das\cls_feat_beguil.2da \ 2das\cls_feat_bereft.2da \ 2das\cls_feat_bfz.2da \ 2das\cls_feat_binder.2da \ 2das\cls_feat_blades.2da \ 2das\cls_feat_blarch.2da \ 2das\cls_feat_bldclw.2da \ 2das\cls_feat_blight.2da \ 2das\cls_feat_blkgrd.2da \ 2das\cls_feat_blmagus.2da \ 2das\cls_feat_bltl.2da \ 2das\cls_feat_bonded.2da \ 2das\cls_feat_bowman.2da \ 2das\cls_feat_brage.2da \ 2das\cls_feat_brimst.2da \ 2das\cls_feat_bsmith.2da \ 2das\cls_feat_cbtmed.2da \ 2das\cls_feat_cereb.2da \ 2das\cls_feat_chaban.2da \ 2das\cls_feat_chldnt.2da \ 2das\cls_feat_cler.2da \ 2das\cls_feat_cntmp.2da \ 2das\cls_feat_coc.2da \ 2das\cls_feat_comm.2da \ 2das\cls_feat_crea.2da \ 2das\cls_feat_crinti.2da \ 2das\cls_feat_crusdr.2da \ 2das\cls_feat_cultst.2da \ 2das\cls_feat_cwsm.2da \ 2das\cls_feat_dalqur.2da \ 2das\cls_feat_deepst.2da \ 2das\cls_feat_dfa.2da \ 2das\cls_feat_diabol.2da \ 2das\cls_feat_diadra.2da \ 2das\cls_feat_dirge.2da \ 2das\cls_feat_disp.2da \ 2das\cls_feat_divcha.2da \ 2das\cls_feat_dnecro.2da \ 2das\cls_feat_doa.2da \ 2das\cls_feat_dradev.2da \ 2das\cls_feat_dradis.2da \ 2das\cls_feat_drag.2da \ 2das\cls_feat_drgnht.2da \ 2das\cls_feat_drgshm.2da \ 2das\cls_feat_drnkn.2da \ 2das\cls_feat_drowj.2da \ 2das\cls_feat_drslyr.2da \ 2das\cls_feat_druid.2da \ 2das\cls_feat_duel.2da \ 2das\cls_feat_duskbl.2da \ 2das\cls_feat_dwdef.2da \ 2das\cls_feat_edisc.2da \ 2das\cls_feat_eldkni.2da \ 2das\cls_feat_enlfis.2da \ 2das\cls_feat_eog.2da \ 2das\cls_feat_etbl.2da \ 2das\cls_feat_etheur.2da \ 2das\cls_feat_factum.2da \ 2das\cls_feat_favsol.2da \ 2das\cls_feat_fey.2da \ 2das\cls_feat_fh.2da \ 2das\cls_feat_fight.2da \ 2das\cls_feat_fistra.2da \ 2das\cls_feat_fmm.2da \ 2das\cls_feat_foclyr.2da \ 2das\cls_feat_formas.2da \ 2das\cls_feat_forsak.2da \ 2das\cls_feat_foz.2da \ 2das\cls_feat_frebzk.2da \ 2das\cls_feat_frostm.2da \ 2das\cls_feat_frtrgr.2da \ 2das\cls_feat_gfkill.2da \ 2das\cls_feat_gian.2da \ 2das\cls_feat_harper.2da \ 2das\cls_feat_hath.2da \ 2das\cls_feat_havocm.2da \ 2das\cls_feat_healer.2da \ 2das\cls_feat_heartw.2da \ 2das\cls_feat_hexbl.2da \ 2das\cls_feat_hextor.2da \ 2das\cls_feat_hfwrlk.2da \ 2das\cls_feat_hiero.2da \ 2das\cls_feat_hmage.2da \ 2das\cls_feat_hnshn.2da \ 2das\cls_feat_hosp.2da \ 2das\cls_feat_hotwm.2da \ 2das\cls_feat_hunter.2da \ 2das\cls_feat_iaij.2da \ 2das\cls_feat_iblade.2da \ 2das\cls_feat_incand.2da \ 2das\cls_feat_incarn.2da \ 2das\cls_feat_inidra.2da \ 2das\cls_feat_irnfrg.2da \ 2das\cls_feat_irnmnd.2da \ 2das\cls_feat_jpm.2da \ 2das\cls_feat_juggr.2da \ 2das\cls_feat_justww.2da \ 2das\cls_feat_kchal.2da \ 2das\cls_feat_kngtwv.2da \ 2das\cls_feat_knight.2da \ 2das\cls_feat_kord.2da \ 2das\cls_feat_kotmc.2da \ 2das\cls_feat_kss.2da \ 2das\cls_feat_lasher.2da \ 2das\cls_feat_lgdr.2da \ 2das\cls_feat_lich.2da \ 2das\cls_feat_maestr.2da \ 2das\cls_feat_magek.2da \ 2das\cls_feat_marsh.2da \ 2das\cls_feat_meph.2da \ 2das\cls_feat_mharp.2da \ 2das\cls_feat_ml.2da \ 2das\cls_feat_monhum.2da \ 2das\cls_feat_monine.2da \ 2das\cls_feat_monk.2da \ 2das\cls_feat_mos.2da \ 2das\cls_feat_mstalc.2da \ 2das\cls_feat_mstrsh.2da \ 2das\cls_feat_mystic.2da \ 2das\cls_feat_necrnm.2da \ 2das\cls_feat_nights.2da \ 2das\cls_feat_ninja.2da \ 2das\cls_feat_ninjca.2da \ 2das\cls_feat_noctm.2da \ 2das\cls_feat_ocu.2da \ 2das\cls_feat_ollam.2da \ 2das\cls_feat_ootbi.2da \ 2das\cls_feat_ooze.2da \ 2das\cls_feat_orcus.2da \ 2das\cls_feat_orcwar.2da \ 2das\cls_feat_outs.2da \ 2das\cls_feat_pal.2da \ 2das\cls_feat_palema.2da \ 2das\cls_feat_parch.2da \ 2das\cls_feat_pdk.2da \ 2das\cls_feat_pnpsfr.2da \ 2das\cls_feat_psion.2da \ 2das\cls_feat_psych.2da \ 2das\cls_feat_psyrog.2da \ 2das\cls_feat_psywar.2da \ 2das\cls_feat_pyro.2da \ 2das\cls_feat_ragem.2da \ 2das\cls_feat_rang.2da \ 2das\cls_feat_rava.2da \ 2das\cls_feat_rbyknt.2da \ 2das\cls_feat_redav.2da \ 2das\cls_feat_redwiz.2da \ 2das\cls_feat_rog.2da \ 2das\cls_feat_rpmlr.2da \ 2das\cls_feat_rune.2da \ 2das\cls_feat_runec.2da \ 2das\cls_feat_sacfis.2da \ 2das\cls_feat_sacpur.2da \ 2das\cls_feat_samur.2da \ 2das\cls_feat_sapphr.2da \ 2das\cls_feat_savant.2da \ 2das\cls_feat_sbheir.2da \ 2das\cls_feat_schord.2da \ 2das\cls_feat_scion.2da \ 2das\cls_feat_scout.2da \ 2das\cls_feat_sdhinq.2da \ 2das\cls_feat_sdhstk.2da \ 2das\cls_feat_sdmind.2da \ 2das\cls_feat_sergrd.2da \ 2das\cls_feat_shadep.2da \ 2das\cls_feat_shadow.2da \ 2das\cls_feat_shaman.2da \ 2das\cls_feat_sharss.2da \ 2das\cls_feat_shchng.2da \ 2das\cls_feat_shdbld.2da \ 2das\cls_feat_shdcst.2da \ 2das\cls_feat_shdsmt.2da \ 2das\cls_feat_shou.2da \ 2das\cls_feat_sklcln.2da \ 2das\cls_feat_sleat.2da \ 2das\cls_feat_sncmnd.2da \ 2das\cls_feat_sod.2da \ 2das\cls_feat_sohei.2da \ 2das\cls_feat_sol.2da \ 2das\cls_feat_sorc.2da \ 2das\cls_feat_soulbn.2da \ 2das\cls_feat_soulc.2da \ 2das\cls_feat_soulkn.2da \ 2das\cls_feat_spellf.2da \ 2das\cls_feat_spells.2da \ 2das\cls_feat_spldnc.2da \ 2das\cls_feat_spnmld.2da \ 2das\cls_feat_ssn.2da \ 2das\cls_feat_storml.2da \ 2das\cls_feat_suel.2da \ 2das\cls_feat_swash.2da \ 2das\cls_feat_swdsge.2da \ 2das\cls_feat_swftwg.2da \ 2das\cls_feat_taltia.2da \ 2das\cls_feat_tempst.2da \ 2das\cls_feat_tempus.2da \ 2das\cls_feat_teneb.2da \ 2das\cls_feat_tfshad.2da \ 2das\cls_feat_thaykt.2da \ 2das\cls_feat_thrall.2da \ 2das\cls_feat_tnecro.2da \ 2das\cls_feat_tog.2da \ 2das\cls_feat_totem.2da \ 2das\cls_feat_totrag.2da \ 2das\cls_feat_true.2da \ 2das\cls_feat_um.2da \ 2das\cls_feat_umbral.2da \ 2das\cls_feat_unseer.2da \ 2das\cls_feat_urprst.2da \ 2das\cls_feat_vassal.2da \ 2das\cls_feat_virt.2da \ 2das\cls_feat_warbld.2da \ 2das\cls_feat_warchf.2da \ 2das\cls_feat_warlok.2da \ 2das\cls_feat_warmnd.2da \ 2das\cls_feat_warpr.2da \ 2das\cls_feat_wayfar.2da \ 2das\cls_feat_wchbrn.2da \ 2das\cls_feat_wilder.2da \ 2das\cls_feat_wildmg.2da \ 2das\cls_feat_wiz.2da \ 2das\cls_feat_wm.2da \ 2das\cls_feat_wrmage.2da \ 2das\cls_feat_wrslng.2da \ 2das\cls_feat_wwoc.2da \ 2das\cls_feat_wwolf.2da \ 2das\cls_inv_dfa.2da \ 2das\cls_inv_drgshm.2da \ 2das\cls_inv_warlok.2da \ 2das\cls_invkn_dfa.2da \ 2das\cls_invkn_drgshm.2da \ 2das\cls_invkn_warlok.2da \ 2das\cls_ivcr_dfa.2da \ 2das\cls_ivcr_drgshm.2da \ 2das\cls_ivcr_warlok.2da \ 2das\cls_mlkn_incand.2da \ 2das\cls_mlkn_incarn.2da \ 2das\cls_mlkn_necrnm.2da \ 2das\cls_mlkn_soulbn.2da \ 2das\cls_mlkn_spnmld.2da \ 2das\cls_mlkn_totem.2da \ 2das\cls_mlkn_umbral.2da \ 2das\cls_move_crusdr.2da \ 2das\cls_move_swdsge.2da \ 2das\cls_move_warbld.2da \ 2das\cls_mvcr_crusdr.2da \ 2das\cls_mvcr_swdsge.2da \ 2das\cls_mvcr_warbld.2da \ 2das\cls_mvkn_crusdr.2da \ 2das\cls_mvkn_swdsge.2da \ 2das\cls_mvkn_warbld.2da \ 2das\cls_mykn_shdcst.2da \ 2das\cls_mykn_shdsmt.2da \ 2das\cls_myst_shdcst.2da \ 2das\cls_myst_shdsmt.2da \ 2das\cls_pres_abcham.2da \ 2das\cls_pres_aber.2da \ 2das\cls_pres_acego.2da \ 2das\cls_pres_adst.2da \ 2das\cls_pres_alien.2da \ 2das\cls_pres_amn.2da \ 2das\cls_pres_ani.2da \ 2das\cls_pres_anima.2da \ 2das\cls_pres_antipl.2da \ 2das\cls_pres_aots.2da \ 2das\cls_pres_arch.2da \ 2das\cls_pres_archer.2da \ 2das\cls_pres_archv.2da \ 2das\cls_pres_arctrk.2da \ 2das\cls_pres_arti.2da \ 2das\cls_pres_baal.2da \ 2das\cls_pres_baeln.2da \ 2das\cls_pres_barb.2da \ 2das\cls_pres_bard.2da \ 2das\cls_pres_bbc.2da \ 2das\cls_pres_beast.2da \ 2das\cls_pres_beguil.2da \ 2das\cls_pres_bereft.2da \ 2das\cls_pres_bfz.2da \ 2das\cls_pres_binder.2da \ 2das\cls_pres_blades.2da \ 2das\cls_pres_blarch.2da \ 2das\cls_pres_bldclw.2da \ 2das\cls_pres_blight.2da \ 2das\cls_pres_blmagus.2da \ 2das\cls_pres_bltl.2da \ 2das\cls_pres_bonded.2da \ 2das\cls_pres_bowman.2da \ 2das\cls_pres_brage.2da \ 2das\cls_pres_brimst.2da \ 2das\cls_pres_bsmith.2da \ 2das\cls_pres_cbtmed.2da \ 2das\cls_pres_cereb.2da \ 2das\cls_pres_chaban.2da \ 2das\cls_pres_chldnt.2da \ 2das\cls_pres_cler.2da \ 2das\cls_pres_cntmp.2da \ 2das\cls_pres_coc.2da \ 2das\cls_pres_con.2da \ 2das\cls_pres_crinti.2da \ 2das\cls_pres_crusdr.2da \ 2das\cls_pres_cultst.2da \ 2das\cls_pres_cwsm.2da \ 2das\cls_pres_dalqur.2da \ 2das\cls_pres_deepst.2da \ 2das\cls_pres_dfa.2da \ 2das\cls_pres_diabol.2da \ 2das\cls_pres_diadra.2da \ 2das\cls_pres_dirge.2da \ 2das\cls_pres_disp.2da \ 2das\cls_pres_divcha.2da \ 2das\cls_pres_divsav.2da \ 2das\cls_pres_dnecro.2da \ 2das\cls_pres_doa.2da \ 2das\cls_pres_dradev.2da \ 2das\cls_pres_dradis.2da \ 2das\cls_pres_drag.2da \ 2das\cls_pres_drgnht.2da \ 2das\cls_pres_drgshm.2da \ 2das\cls_pres_drnkn.2da \ 2das\cls_pres_drowj.2da \ 2das\cls_pres_dru.2da \ 2das\cls_pres_dslyr.2da \ 2das\cls_pres_duel.2da \ 2das\cls_pres_duskbl.2da \ 2das\cls_pres_dwdef.2da \ 2das\cls_pres_edisc.2da \ 2das\cls_pres_eldkni.2da \ 2das\cls_pres_ele.2da \ 2das\cls_pres_enlfis.2da \ 2das\cls_pres_eog.2da \ 2das\cls_pres_etbl.2da \ 2das\cls_pres_etheur.2da \ 2das\cls_pres_factum.2da \ 2das\cls_pres_favsol.2da \ 2das\cls_pres_fey.2da \ 2das\cls_pres_fh.2da \ 2das\cls_pres_fight.2da \ 2das\cls_pres_fistra.2da \ 2das\cls_pres_fmm.2da \ 2das\cls_pres_foclyr.2da \ 2das\cls_pres_formas.2da \ 2das\cls_pres_forsak.2da \ 2das\cls_pres_foz.2da \ 2das\cls_pres_frebzk.2da \ 2das\cls_pres_frostm.2da \ 2das\cls_pres_frtrgr.2da \ 2das\cls_pres_gfkill.2da \ 2das\cls_pres_giant.2da \ 2das\cls_pres_hath.2da \ 2das\cls_pres_havocm.2da \ 2das\cls_pres_healer.2da \ 2das\cls_pres_heartw.2da \ 2das\cls_pres_hexbl.2da \ 2das\cls_pres_hextor.2da \ 2das\cls_pres_hfwrlk.2da \ 2das\cls_pres_hiero.2da \ 2das\cls_pres_hmage.2da \ 2das\cls_pres_hnshn.2da \ 2das\cls_pres_hosp.2da \ 2das\cls_pres_hotwm.2da \ 2das\cls_pres_hum.2da \ 2das\cls_pres_hunter.2da \ 2das\cls_pres_iaij.2da \ 2das\cls_pres_iblade.2da \ 2das\cls_pres_incand.2da \ 2das\cls_pres_incarn.2da \ 2das\cls_pres_inidra.2da \ 2das\cls_pres_irnfrg.2da \ 2das\cls_pres_irnmnd.2da \ 2das\cls_pres_jpm.2da \ 2das\cls_pres_juggr.2da \ 2das\cls_pres_justww.2da \ 2das\cls_pres_kchal.2da \ 2das\cls_pres_kngtwv.2da \ 2das\cls_pres_knight.2da \ 2das\cls_pres_kord.2da \ 2das\cls_pres_kotmc.2da \ 2das\cls_pres_kss.2da \ 2das\cls_pres_lasher.2da \ 2das\cls_pres_lgdr.2da \ 2das\cls_pres_lich.2da \ 2das\cls_pres_maestr.2da \ 2das\cls_pres_magbst.2da \ 2das\cls_pres_magek.2da \ 2das\cls_pres_marsh.2da \ 2das\cls_pres_meph.2da \ 2das\cls_pres_mharp.2da \ 2das\cls_pres_mharpd.2da \ 2das\cls_pres_ml.2da \ 2das\cls_pres_mon.2da \ 2das\cls_pres_monine.2da \ 2das\cls_pres_monk.2da \ 2das\cls_pres_mos.2da \ 2das\cls_pres_mstalc.2da \ 2das\cls_pres_mstrsh.2da \ 2das\cls_pres_mystic.2da \ 2das\cls_pres_necrnm.2da \ 2das\cls_pres_nights.2da \ 2das\cls_pres_ninja.2da \ 2das\cls_pres_ninjca.2da \ 2das\cls_pres_noctm.2da \ 2das\cls_pres_ocular.2da \ 2das\cls_pres_ollam.2da \ 2das\cls_pres_ootbi.2da \ 2das\cls_pres_ooze.2da \ 2das\cls_pres_orcus.2da \ 2das\cls_pres_orcwar.2da \ 2das\cls_pres_outs.2da \ 2das\cls_pres_pal.2da \ 2das\cls_pres_palema.2da \ 2das\cls_pres_parch.2da \ 2das\cls_pres_pdk.2da \ 2das\cls_pres_plant.2da \ 2das\cls_pres_pnpsfr.2da \ 2das\cls_pres_psion.2da \ 2das\cls_pres_psych.2da \ 2das\cls_pres_psyrog.2da \ 2das\cls_pres_psywar.2da \ 2das\cls_pres_pyro.2da \ 2das\cls_pres_ragem.2da \ 2das\cls_pres_rang.2da \ 2das\cls_pres_rava.2da \ 2das\cls_pres_rbyknt.2da \ 2das\cls_pres_redav.2da \ 2das\cls_pres_redwiz.2da \ 2das\cls_pres_rog.2da \ 2das\cls_pres_rpmlr.2da \ 2das\cls_pres_rune.2da \ 2das\cls_pres_runec.2da \ 2das\cls_pres_sacfis.2da \ 2das\cls_pres_sacpur.2da \ 2das\cls_pres_samur.2da \ 2das\cls_pres_sapphr.2da \ 2das\cls_pres_savant.2da \ 2das\cls_pres_sbheir.2da \ 2das\cls_pres_schord.2da \ 2das\cls_pres_scion.2da \ 2das\cls_pres_scout.2da \ 2das\cls_pres_sdhinq.2da \ 2das\cls_pres_sdhstk.2da \ 2das\cls_pres_sdmind.2da \ 2das\cls_pres_sergrd.2da \ 2das\cls_pres_shadep.2da \ 2das\cls_pres_shadow.2da \ 2das\cls_pres_shaman.2da \ 2das\cls_pres_shape.2da \ 2das\cls_pres_sharss.2da \ 2das\cls_pres_shdbld.2da \ 2das\cls_pres_shdcst.2da \ 2das\cls_pres_shdsmt.2da \ 2das\cls_pres_shou.2da \ 2das\cls_pres_sklcln.2da \ 2das\cls_pres_sleat.2da \ 2das\cls_pres_sncmnd.2da \ 2das\cls_pres_sod.2da \ 2das\cls_pres_sohei.2da \ 2das\cls_pres_sol.2da \ 2das\cls_pres_sorc.2da \ 2das\cls_pres_soulbn.2da \ 2das\cls_pres_soulc.2da \ 2das\cls_pres_soulkn.2da \ 2das\cls_pres_spellf.2da \ 2das\cls_pres_spells.2da \ 2das\cls_pres_spldnc.2da \ 2das\cls_pres_spnmld.2da \ 2das\cls_pres_ssn.2da \ 2das\cls_pres_storml.2da \ 2das\cls_pres_suel.2da \ 2das\cls_pres_swash.2da \ 2das\cls_pres_swdsge.2da \ 2das\cls_pres_swftwg.2da \ 2das\cls_pres_taltia.2da \ 2das\cls_pres_tempst.2da \ 2das\cls_pres_tempus.2da \ 2das\cls_pres_teneb.2da \ 2das\cls_pres_tfshad.2da \ 2das\cls_pres_thaykt.2da \ 2das\cls_pres_thrall.2da \ 2das\cls_pres_tnecro.2da \ 2das\cls_pres_tog_a.2da \ 2das\cls_pres_tog_d.2da \ 2das\cls_pres_totem.2da \ 2das\cls_pres_totrag.2da \ 2das\cls_pres_true.2da \ 2das\cls_pres_um.2da \ 2das\cls_pres_umbral.2da \ 2das\cls_pres_undead.2da \ 2das\cls_pres_unseer.2da \ 2das\cls_pres_urprst.2da \ 2das\cls_pres_vassal.2da \ 2das\cls_pres_vermin.2da \ 2das\cls_pres_virt.2da \ 2das\cls_pres_warbld.2da \ 2das\cls_pres_warchf.2da \ 2das\cls_pres_warlok.2da \ 2das\cls_pres_warmnd.2da \ 2das\cls_pres_warpr.2da \ 2das\cls_pres_wayfar.2da \ 2das\cls_pres_wchbrn.2da \ 2das\cls_pres_wilder.2da \ 2das\cls_pres_wildmg.2da \ 2das\cls_pres_wiz.2da \ 2das\cls_pres_wm.2da \ 2das\cls_pres_wrmage.2da \ 2das\cls_pres_wrslng.2da \ 2das\cls_pres_wwoc.2da \ 2das\cls_pres_wwolf.2da \ 2das\cls_psbk_foz.2da \ 2das\cls_psbk_psion.2da \ 2das\cls_psbk_psyrog.2da \ 2das\cls_psbk_psywar.2da \ 2das\cls_psbk_warmnd.2da \ 2das\cls_psbk_wilder.2da \ 2das\cls_psicr_foz.2da \ 2das\cls_psicr_psion.2da \ 2das\cls_psicr_psyrog.2da \ 2das\cls_psicr_psywar.2da \ 2das\cls_psicr_warmnd.2da \ 2das\cls_psicr_wilder.2da \ 2das\cls_psipw_foz.2da \ 2das\cls_psipw_psion.2da \ 2das\cls_psipw_psyrog.2da \ 2das\cls_psipw_psywar.2da \ 2das\cls_psipw_warmnd.2da \ 2das\cls_psipw_wilder.2da \ 2das\cls_savthr_lich.2da \ 2das\cls_skill_abcham.2da \ 2das\cls_skill_acego.2da \ 2das\cls_skill_adst.2da \ 2das\cls_skill_alien.2da \ 2das\cls_skill_amn.2da \ 2das\cls_skill_anima.2da \ 2das\cls_skill_antipl.2da \ 2das\cls_skill_aots.2da \ 2das\cls_skill_arch.2da \ 2das\cls_skill_archer.2da \ 2das\cls_skill_archv.2da \ 2das\cls_skill_arctrk.2da \ 2das\cls_skill_arti.2da \ 2das\cls_skill_asasin.2da \ 2das\cls_skill_baal.2da \ 2das\cls_skill_barb.2da \ 2das\cls_skill_bard.2da \ 2das\cls_skill_bbc.2da \ 2das\cls_skill_beguil.2da \ 2das\cls_skill_bereft.2da \ 2das\cls_skill_bfz.2da \ 2das\cls_skill_binder.2da \ 2das\cls_skill_blades.2da \ 2das\cls_skill_blarch.2da \ 2das\cls_skill_bldclw.2da \ 2das\cls_skill_blight.2da \ 2das\cls_skill_blkgrd.2da \ 2das\cls_skill_blmagu.2da \ 2das\cls_skill_bltl.2da \ 2das\cls_skill_bonded.2da \ 2das\cls_skill_bowman.2da \ 2das\cls_skill_brage.2da \ 2das\cls_skill_brimst.2da \ 2das\cls_skill_bsmith.2da \ 2das\cls_skill_cbtmed.2da \ 2das\cls_skill_cereb.2da \ 2das\cls_skill_chaban.2da \ 2das\cls_skill_chldnt.2da \ 2das\cls_skill_cler.2da \ 2das\cls_skill_cntmp.2da \ 2das\cls_skill_coc.2da \ 2das\cls_skill_crea.2da \ 2das\cls_skill_crinti.2da \ 2das\cls_skill_crusdr.2da \ 2das\cls_skill_cultst.2da \ 2das\cls_skill_dalqur.2da \ 2das\cls_skill_deepst.2da \ 2das\cls_skill_dfa.2da \ 2das\cls_skill_diabol.2da \ 2das\cls_skill_diadra.2da \ 2das\cls_skill_dirge.2da \ 2das\cls_skill_disp.2da \ 2das\cls_skill_divcha.2da \ 2das\cls_skill_dnecro.2da \ 2das\cls_skill_doa.2da \ 2das\cls_skill_dradev.2da \ 2das\cls_skill_dradis.2da \ 2das\cls_skill_dragon.2da \ 2das\cls_skill_drgnht.2da \ 2das\cls_skill_drgshm.2da \ 2das\cls_skill_drnkn.2da \ 2das\cls_skill_drowj.2da \ 2das\cls_skill_drslyr.2da \ 2das\cls_skill_dru.2da \ 2das\cls_skill_duel.2da \ 2das\cls_skill_duskbl.2da \ 2das\cls_skill_dwdef.2da \ 2das\cls_skill_edisc.2da \ 2das\cls_skill_eldkni.2da \ 2das\cls_skill_enlfis.2da \ 2das\cls_skill_eog.2da \ 2das\cls_skill_etbl.2da \ 2das\cls_skill_etheur.2da \ 2das\cls_skill_factum.2da \ 2das\cls_skill_favsol.2da \ 2das\cls_skill_fey.2da \ 2das\cls_skill_fh.2da \ 2das\cls_skill_fight.2da \ 2das\cls_skill_fistra.2da \ 2das\cls_skill_fmm.2da \ 2das\cls_skill_foclyr.2da \ 2das\cls_skill_formas.2da \ 2das\cls_skill_forsak.2da \ 2das\cls_skill_foz.2da \ 2das\cls_skill_frebzk.2da \ 2das\cls_skill_frostm.2da \ 2das\cls_skill_frtrgr.2da \ 2das\cls_skill_gfkill.2da \ 2das\cls_skill_hath.2da \ 2das\cls_skill_havocm.2da \ 2das\cls_skill_healer.2da \ 2das\cls_skill_heartw.2da \ 2das\cls_skill_hexbl.2da \ 2das\cls_skill_hextor.2da \ 2das\cls_skill_hfwrlk.2da \ 2das\cls_skill_hiero.2da \ 2das\cls_skill_hmage.2da \ 2das\cls_skill_hnshn.2da \ 2das\cls_skill_hosp.2da \ 2das\cls_skill_hotwm.2da \ 2das\cls_skill_hunter.2da \ 2das\cls_skill_iaij.2da \ 2das\cls_skill_iblade.2da \ 2das\cls_skill_incand.2da \ 2das\cls_skill_incarn.2da \ 2das\cls_skill_inidra.2da \ 2das\cls_skill_irnfrg.2da \ 2das\cls_skill_irnmnd.2da \ 2das\cls_skill_jpm.2da \ 2das\cls_skill_juggr.2da \ 2das\cls_skill_justww.2da \ 2das\cls_skill_kchal.2da \ 2das\cls_skill_kngtwv.2da \ 2das\cls_skill_knight.2da \ 2das\cls_skill_kord.2da \ 2das\cls_skill_kotmc.2da \ 2das\cls_skill_kss.2da \ 2das\cls_skill_lasher.2da \ 2das\cls_skill_lgdr.2da \ 2das\cls_skill_maestr.2da \ 2das\cls_skill_magek.2da \ 2das\cls_skill_marsh.2da \ 2das\cls_skill_meph.2da \ 2das\cls_skill_mharp.2da \ 2das\cls_skill_ml.2da \ 2das\cls_skill_monine.2da \ 2das\cls_skill_monk.2da \ 2das\cls_skill_mos.2da \ 2das\cls_skill_mstalc.2da \ 2das\cls_skill_mstrsh.2da \ 2das\cls_skill_mystic.2da \ 2das\cls_skill_necrnm.2da \ 2das\cls_skill_nights.2da \ 2das\cls_skill_ninja.2da \ 2das\cls_skill_ninjca.2da \ 2das\cls_skill_noctm.2da \ 2das\cls_skill_ocular.2da \ 2das\cls_skill_ollam.2da \ 2das\cls_skill_ootbi.2da \ 2das\cls_skill_ooze.2da \ 2das\cls_skill_orcus.2da \ 2das\cls_skill_orcwar.2da \ 2das\cls_skill_outs.2da \ 2das\cls_skill_pal.2da \ 2das\cls_skill_palema.2da \ 2das\cls_skill_parch.2da \ 2das\cls_skill_pdk.2da \ 2das\cls_skill_psion.2da \ 2das\cls_skill_psych.2da \ 2das\cls_skill_psyrog.2da \ 2das\cls_skill_psywar.2da \ 2das\cls_skill_pyro.2da \ 2das\cls_skill_ragem.2da \ 2das\cls_skill_rang.2da \ 2das\cls_skill_rava.2da \ 2das\cls_skill_rbyknt.2da \ 2das\cls_skill_redav.2da \ 2das\cls_skill_redwiz.2da \ 2das\cls_skill_rog.2da \ 2das\cls_skill_rpmlr.2da \ 2das\cls_skill_rune.2da \ 2das\cls_skill_runec.2da \ 2das\cls_skill_sacfis.2da \ 2das\cls_skill_sacpur.2da \ 2das\cls_skill_samur.2da \ 2das\cls_skill_sapphr.2da \ 2das\cls_skill_savant.2da \ 2das\cls_skill_sbheir.2da \ 2das\cls_skill_schord.2da \ 2das\cls_skill_scion.2da \ 2das\cls_skill_scout.2da \ 2das\cls_skill_sdhinq.2da \ 2das\cls_skill_sdhstk.2da \ 2das\cls_skill_sdmind.2da \ 2das\cls_skill_sergrd.2da \ 2das\cls_skill_shadep.2da \ 2das\cls_skill_shadow.2da \ 2das\cls_skill_shaman.2da \ 2das\cls_skill_sharss.2da \ 2das\cls_skill_shdbld.2da \ 2das\cls_skill_shdcst.2da \ 2das\cls_skill_shdsmt.2da \ 2das\cls_skill_shiftr.2da \ 2das\cls_skill_shou.2da \ 2das\cls_skill_sklcln.2da \ 2das\cls_skill_sleat.2da \ 2das\cls_skill_sncmnd.2da \ 2das\cls_skill_sod.2da \ 2das\cls_skill_sohei.2da \ 2das\cls_skill_sol.2da \ 2das\cls_skill_sorc.2da \ 2das\cls_skill_soulbn.2da \ 2das\cls_skill_soulc.2da \ 2das\cls_skill_soulkn.2da \ 2das\cls_skill_spellf.2da \ 2das\cls_skill_spells.2da \ 2das\cls_skill_spldnc.2da \ 2das\cls_skill_spnmld.2da \ 2das\cls_skill_ssn.2da \ 2das\cls_skill_storml.2da \ 2das\cls_skill_suel.2da \ 2das\cls_skill_swash.2da \ 2das\cls_skill_swdsge.2da \ 2das\cls_skill_swftwg.2da \ 2das\cls_skill_taltia.2da \ 2das\cls_skill_tempst.2da \ 2das\cls_skill_tempus.2da \ 2das\cls_skill_teneb.2da \ 2das\cls_skill_tfshad.2da \ 2das\cls_skill_thaykt.2da \ 2das\cls_skill_thrall.2da \ 2das\cls_skill_tnecro.2da \ 2das\cls_skill_tog.2da \ 2das\cls_skill_totem.2da \ 2das\cls_skill_totrag.2da \ 2das\cls_skill_true.2da \ 2das\cls_skill_um.2da \ 2das\cls_skill_umbral.2da \ 2das\cls_skill_unseer.2da \ 2das\cls_skill_urprst.2da \ 2das\cls_skill_vassal.2da \ 2das\cls_skill_virt.2da \ 2das\cls_skill_warbld.2da \ 2das\cls_skill_warchf.2da \ 2das\cls_skill_warlok.2da \ 2das\cls_skill_warmnd.2da \ 2das\cls_skill_warpr.2da \ 2das\cls_skill_wayfar.2da \ 2das\cls_skill_wchbrn.2da \ 2das\cls_skill_wilder.2da \ 2das\cls_skill_wildmg.2da \ 2das\cls_skill_wiz.2da \ 2das\cls_skill_wm.2da \ 2das\cls_skill_wrmage.2da \ 2das\cls_skill_wrslng.2da \ 2das\cls_skill_wwoc.2da \ 2das\cls_skill_wwolf.2da \ 2das\cls_spcr_antipl.2da \ 2das\cls_spcr_archv.2da \ 2das\cls_spcr_asasin.2da \ 2das\cls_spcr_bard.2da \ 2das\cls_spcr_beguil.2da \ 2das\cls_spcr_blight.2da \ 2das\cls_spcr_blkgrd.2da \ 2das\cls_spcr_cultst.2da \ 2das\cls_spcr_dnecro.2da \ 2das\cls_spcr_duskbl.2da \ 2das\cls_spcr_favsol.2da \ 2das\cls_spcr_harper.2da \ 2das\cls_spcr_healer.2da \ 2das\cls_spcr_hexbl.2da \ 2das\cls_spcr_hunter.2da \ 2das\cls_spcr_justww.2da \ 2das\cls_spcr_kchal.2da \ 2das\cls_spcr_kngtwv.2da \ 2das\cls_spcr_kotmc.2da \ 2das\cls_spcr_ocu.2da \ 2das\cls_spcr_schord.2da \ 2das\cls_spcr_shaman.2da \ 2das\cls_spcr_sharss.2da \ 2das\cls_spcr_sod.2da \ 2das\cls_spcr_sohei.2da \ 2das\cls_spcr_sol.2da \ 2das\cls_spcr_sorc.2da \ 2das\cls_spcr_suel.2da \ 2das\cls_spcr_tfshad.2da \ 2das\cls_spcr_vassal.2da \ 2das\cls_spcr_wrmage.2da \ 2das\cls_spell_antipl.2da \ 2das\cls_spell_archv.2da \ 2das\cls_spell_asasin.2da \ 2das\cls_spell_bard.2da \ 2das\cls_spell_beguil.2da \ 2das\cls_spell_blight.2da \ 2das\cls_spell_blkgrd.2da \ 2das\cls_spell_cler.2da \ 2das\cls_spell_cultst.2da \ 2das\cls_spell_dnecro.2da \ 2das\cls_spell_duskbl.2da \ 2das\cls_spell_favsol.2da \ 2das\cls_spell_harper.2da \ 2das\cls_spell_healer.2da \ 2das\cls_spell_hexbl.2da \ 2das\cls_spell_hunter.2da \ 2das\cls_spell_justww.2da \ 2das\cls_spell_kchal.2da \ 2das\cls_spell_kngtwv.2da \ 2das\cls_spell_kotmc.2da \ 2das\cls_spell_monhum.2da \ 2das\cls_spell_ocu.2da \ 2das\cls_spell_schord.2da \ 2das\cls_spell_shaman.2da \ 2das\cls_spell_sharss.2da \ 2das\cls_spell_sod.2da \ 2das\cls_spell_sohei.2da \ 2das\cls_spell_sol.2da \ 2das\cls_spell_sorc.2da \ 2das\cls_spell_suel.2da \ 2das\cls_spell_tfshad.2da \ 2das\cls_spell_vassal.2da \ 2das\cls_spell_wrmage.2da \ 2das\cls_spgn_antipl.2da \ 2das\cls_spgn_archv.2da \ 2das\cls_spgn_asasin.2da \ 2das\cls_spgn_bard.2da \ 2das\cls_spgn_beguil.2da \ 2das\cls_spgn_blight.2da \ 2das\cls_spgn_blkgrd.2da \ 2das\cls_spgn_cultst.2da \ 2das\cls_spgn_dnecro.2da \ 2das\cls_spgn_duskbl.2da \ 2das\cls_spgn_favsol.2da \ 2das\cls_spgn_harper.2da \ 2das\cls_spgn_healer.2da \ 2das\cls_spgn_hexbl.2da \ 2das\cls_spgn_hunter.2da \ 2das\cls_spgn_justww.2da \ 2das\cls_spgn_kchal.2da \ 2das\cls_spgn_kngtwv.2da \ 2das\cls_spgn_kotmc.2da \ 2das\cls_spgn_ocu.2da \ 2das\cls_spgn_rang.2da \ 2das\cls_spgn_schord.2da \ 2das\cls_spgn_shaman.2da \ 2das\cls_spgn_sharss.2da \ 2das\cls_spgn_sod.2da \ 2das\cls_spgn_sohei.2da \ 2das\cls_spgn_sol.2da \ 2das\cls_spgn_sorc.2da \ 2das\cls_spgn_suel.2da \ 2das\cls_spgn_tfshad.2da \ 2das\cls_spgn_vassal.2da \ 2das\cls_spgn_wrmage.2da \ 2das\cls_spkn_asasin.2da \ 2das\cls_spkn_bard.2da \ 2das\cls_spkn_beguil.2da \ 2das\cls_spkn_dnecro.2da \ 2das\cls_spkn_duskbl.2da \ 2das\cls_spkn_favsol.2da \ 2das\cls_spkn_harper.2da \ 2das\cls_spkn_hexbl.2da \ 2das\cls_spkn_justww.2da \ 2das\cls_spkn_kngtwv.2da \ 2das\cls_spkn_schord.2da \ 2das\cls_spkn_sharss.2da \ 2das\cls_spkn_suel.2da \ 2das\cls_spkn_wrmage.2da \ 2das\cls_stat_alien.2da \ 2das\cls_stat_aots.2da \ 2das\cls_stat_baeln.2da \ 2das\cls_stat_brage.2da \ 2das\cls_stat_dradev.2da \ 2das\cls_stat_dradis.2da \ 2das\cls_stat_eog.2da \ 2das\cls_stat_formas.2da \ 2das\cls_stat_frostm.2da \ 2das\cls_stat_heartw.2da \ 2das\cls_stat_kord.2da \ 2das\cls_stat_lich.2da \ 2das\cls_stat_ooze.2da \ 2das\cls_stat_palema.2da \ 2das\cls_stat_rune.2da \ 2das\cls_stat_warchf.2da \ 2das\cls_true_known.2da \ 2das\cls_true_maxlvl.2da \ 2das\cls_true_utter.2da \ 2das\colours.2da \ 2das\creaturespeed.2da \ 2das\damagehitvisual.2da \ 2das\damagetypegroups.2da \ 2das\damagetypes.2da \ 2das\des_crft_scroll.2da \ 2das\des_crft_spells.2da \ 2das\des_matcomp.2da \ 2das\disease.2da \ 2das\dmgxp.2da \ 2das\domains.2da \ 2das\ecl.2da \ 2das\effecticons.2da \ 2das\encounter_areas.2da \ 2das\epicspells.2da \ 2das\epicspellseeds.2da \ 2das\et_spellblast.2da \ 2das\feat.2da \ 2das\fileends.2da \ 2das\hen_companion.2da \ 2das\hen_familiar.2da \ 2das\iprp_aoe.2da \ 2das\iprp_bonuscost.2da \ 2das\iprp_casterlvl.2da \ 2das\iprp_costtable.2da \ 2das\iprp_damagecost.2da \ 2das\iprp_damagetype.2da \ 2das\iprp_decvalue1.2da \ 2das\iprp_decvalue2.2da \ 2das\iprp_feats.2da \ 2das\iprp_incvalue1.2da \ 2das\iprp_incvalue2.2da \ 2das\iprp_material.2da \ 2das\iprp_maxpp.2da \ 2das\iprp_metamagic.2da \ 2das\iprp_monstcost.2da \ 2das\iprp_neg5cost.2da \ 2das\iprp_onhitcost.2da \ 2das\iprp_onhitdur.2da \ 2das\iprp_onhitspell.2da \ 2das\iprp_resistcost.2da \ 2das\iprp_soakcost.2da \ 2das\iprp_speed_dec.2da \ 2das\iprp_speed_enh.2da \ 2das\iprp_spellcost.2da \ 2das\iprp_spells.2da \ 2das\iprp_srcost.2da \ 2das\iprp_storedpp.2da \ 2das\iprp_weightcost.2da \ 2das\itempropdef.2da \ 2das\itemprops.2da \ 2das\la_buyoff.2da \ 2das\masterfeats.2da \ 2das\materialcomp.2da \ 2das\phenotype.2da \ 2das\poison.2da \ 2das\poisontypedef.2da \ 2das\polymorph.2da \ 2das\prc_classes.2da \ 2das\prc_desc_abjurat.2da \ 2das\prc_desc_acid.2da \ 2das\prc_desc_air.2da \ 2das\prc_desc_cold.2da \ 2das\prc_desc_darknes.2da \ 2das\prc_desc_destdom.2da \ 2das\prc_desc_destruc.2da \ 2das\prc_desc_dethdom.2da \ 2das\prc_desc_divinat.2da \ 2das\prc_desc_earth.2da \ 2das\prc_desc_electri.2da \ 2das\prc_desc_enchant.2da \ 2das\prc_desc_fire.2da \ 2das\prc_desc_force.2da \ 2das\prc_desc_glamer.2da \ 2das\prc_desc_healing.2da \ 2das\prc_desc_light.2da \ 2das\prc_desc_necro.2da \ 2das\prc_desc_polymor.2da \ 2das\prc_desc_sonic.2da \ 2das\prc_desc_summon.2da \ 2das\prc_desc_teleprt.2da \ 2das\prc_desc_wardom.2da \ 2das\prc_desc_water.2da \ 2das\prc_domains.2da \ 2das\prc_familiar.2da \ 2das\prc_material.2da \ 2das\prc_materialtype.2da \ 2das\prc_polymorph.2da \ 2das\prc_rune_craft.2da \ 2das\prc_spells.2da \ 2das\prc_weap_items.2da \ 2das\ruleset.2da \ 2das\shft_packages.2da \ 2das\shft_pk_animal.2da \ 2das\shft_pk_constrct.2da \ 2das\shft_pk_dragon.2da \ 2das\shft_pk_element.2da \ 2das\shft_pk_gen1.2da \ 2das\shft_pk_gen2.2da \ 2das\shft_pk_outsider.2da \ 2das\shft_pk_rogue.2da \ 2das\shft_pk_undead.2da \ 2das\shft_pk_warrior.2da \ 2das\shifter_abilitie.2da \ 2das\shifter_feats.2da \ 2das\shifter_races.2da \ 2das\skills.2da \ 2das\soulmelds.2da \ 2das\spells.2da \ 2das\spells_level.2da \ 2das\spellschools.2da \ 2das\templates.2da \ 2das\traps.2da \ 2das\unarmed_dmg.2da \ 2das\vestigeabil.2da \ 2das\vestiges.2da \ 2das\vfx_persistent.2da \ 2das\visualeffects.2da \ 2das\wol_items.2da GFX= \ gfx\ad_adamantite.tga \ gfx\ad_copper_bright.tga \ gfx\ad_gold.tga \ gfx\ad_stl_blue.tga \ gfx\ad_stl_normal.tga \ gfx\ad_stl_red.tga \ gfx\ad_stl_rusted.tga \ gfx\ad_stl_teshian.tga \ gfx\ad_wd_black.tga \ gfx\ad_wd_oak_dark.tga \ gfx\ad_wd_oak_light.tga \ gfx\ad_wd_oak_lights.tga \ gfx\ad_wd_oak_lights.txi \ gfx\ad_wd_pale.tga \ gfx\ad_wrap_black.tga \ gfx\ad_wrap_brown.tga \ gfx\ad_wrap_browns.tga \ gfx\ad_wrap_browns.txi \ gfx\ad_wrap_light.tga \ gfx\ad_wrap_white.tga \ gfx\al_ax_t_00.tga \ gfx\al_ax_t_00a.dds \ gfx\al_ax_t_00b.dds \ gfx\al_ax_t_01.dds \ gfx\al_ax_t_02.dds \ gfx\al_ax_t_03.dds \ gfx\al_grip_01_blk.dds \ gfx\al_grip_01_brz.dds \ gfx\al_grip_01_gld.dds \ gfx\al_grip_01_wht.dds \ gfx\al_grip_02_blk.dds \ gfx\al_grip_02_brz.dds \ gfx\al_grip_02_gld.dds \ gfx\al_grip_02_wht.dds \ gfx\al_leather01_tex.dds \ gfx\al_leather02_tex.dds \ gfx\al_leather03_tex.dds \ gfx\al_leather04_tex.dds \ gfx\al_leather05_tex.dds \ gfx\al_leather06_tex.dds \ gfx\al_leather07_tex.dds \ gfx\al_leather12_tex.dds \ gfx\al_leather13_tex.dds \ gfx\al_leather14_tex.dds \ gfx\al_leather15_tex.dds \ gfx\al_leather16_tex.dds \ gfx\al_roughbronze.tga \ gfx\al_roughgold.tga \ gfx\al_roughsteel.tga \ gfx\al_roughsteel_dk.tga \ gfx\al_sc_01_blk.dds \ gfx\al_sc_01_gld.dds \ gfx\al_sc_01_wht.dds \ gfx\al_sc_02_blk.dds \ gfx\al_sc_02_gld.dds \ gfx\al_sc_02_wht.dds \ gfx\al_sc_03_blk.dds \ gfx\al_sc_03_blu.dds \ gfx\al_sc_03_gld.dds \ gfx\al_sc_03_grn.dds \ gfx\al_sc_03_red.dds \ gfx\al_sc_03_wht.dds \ gfx\al_sc_04_blk.dds \ gfx\al_sc_04_gld.dds \ gfx\al_sc_04_wht.dds \ gfx\al_sc_05_wht.dds \ gfx\al_sc_06_blk.dds \ gfx\al_sc_06_gld.dds \ gfx\al_sc_06_wht.dds \ gfx\al_shny_blk_tex.tga \ gfx\al_shny_blu_tex.tga \ gfx\al_shny_brz_tex.tga \ gfx\al_shny_drk_tex.tga \ gfx\al_shny_gld_tex.tga \ gfx\al_shny_grn_tex.tga \ gfx\al_shny_gry_tex.tga \ gfx\al_shny_prp_tex.tga \ gfx\al_shny_red_tex.tga \ gfx\al_shny_trq_tex.tga \ gfx\al_shny_wht_tex.tga \ gfx\al_shny_ylw_tex.tga \ gfx\al_wood_bld.tga \ gfx\al_wood_blk.dds \ gfx\al_wood_blu.dds \ gfx\al_wood_brz.dds \ gfx\al_wood_gld.dds \ gfx\al_wood_grn.dds \ gfx\al_wood_red.dds \ gfx\al_wood_tex.dds \ gfx\al_wood_trq.tga \ gfx\al_wood_wht.dds \ gfx\arach_dom_drow.tga \ gfx\arach_spidaffin.tga \ gfx\arach_spidereyes.tga \ gfx\arach_spidmount.tga \ gfx\arach_trans.tga \ gfx\arach_webspin.tga \ gfx\arach_yochform.tga \ gfx\arach_zin_carla.tga \ gfx\bird.tga \ gfx\blasphemy.tga \ gfx\bone.tga \ gfx\brimstone.tga \ gfx\brimstone2.tga \ gfx\darksilver_tex.tga \ gfx\diadra_channel.tga \ gfx\diadra_coldbth.tga \ gfx\diadra_elecbth.tga \ gfx\diadra_firebth.tga \ gfx\diadra_sonbth.tga \ gfx\drac_claw.tga \ gfx\drac_knowledge.tga \ gfx\drac_power.tga \ gfx\drac_senses.tga \ gfx\dradis_amethyst.tga \ gfx\dradis_black.tga \ gfx\dradis_blue.tga \ gfx\dradis_brass.tga \ gfx\dradis_bronze.tga \ gfx\dradis_brown.tga \ gfx\dradis_copper.tga \ gfx\dradis_crystal.tga \ gfx\dradis_emerald.tga \ gfx\dradis_gen.tga \ gfx\dradis_gold.tga \ gfx\dradis_green.tga \ gfx\dradis_immune.tga \ gfx\dradis_radiant.tga \ gfx\dradis_red.tga \ gfx\dradis_silver.tga \ gfx\dradis_topaz.tga \ gfx\dradis_white.tga \ gfx\epic_diamd.tga \ gfx\epic_emrld.tga \ gfx\epic_saphr.tga \ gfx\floatdisk_b.tga \ gfx\floatdisk_g.tga \ gfx\floatdisk_gr.tga \ gfx\floatdisk_o.tga \ gfx\floatdisk_p.tga \ gfx\floatdisk_r.tga \ gfx\floatdisk_y.tga \ gfx\fom_aid.tga \ gfx\fom_bless.tga \ gfx\fom_bullstr.tga \ gfx\fom_clairadvo.tga \ gfx\fom_clarity.tga \ gfx\fom_convict.tga \ gfx\fom_curcrwnds.tga \ gfx\fom_curlgtw.tga \ gfx\fom_curmodw.tga \ gfx\fom_curserw.tga \ gfx\fom_deaward.tga \ gfx\fom_eaglespl.tga \ gfx\fom_endurce.tga \ gfx\fom_foxcunng.tga \ gfx\fom_freemove.tga \ gfx\fom_lsrestor.tga \ gfx\fom_monregen.tga \ gfx\fom_negprot.tga \ gfx\fom_owlwis.tga \ gfx\fom_panacea.tga \ gfx\fom_prayer.tga \ gfx\fom_prelement.tga \ gfx\fom_raisdead.tga \ gfx\fom_restore.tga \ gfx\fom_rmvcurse.tga \ gfx\fom_rmvfear.tga \ gfx\fom_sanctuary.tga \ gfx\fom_shlfat.tga \ gfx\fom_splresis.tga \ gfx\fom_stoneskn.tga \ gfx\fom_truesee.tga \ gfx\fot_acidarrow.tga \ gfx\fot_aerial.tga \ gfx\fot_agannazar.tga \ gfx\fot_aid.tga \ gfx\fot_animals.tga \ gfx\fot_animdead.tga \ gfx\fot_armor.tga \ gfx\fot_auradeath.tga \ gfx\fot_barkskin.tga \ gfx\fot_bigby.tga \ gfx\fot_bigby2.tga \ gfx\fot_bitewolf.tga \ gfx\fot_blackblade.tga \ gfx\fot_bladebar.tga \ gfx\fot_blades.tga \ gfx\fot_bless.tga \ gfx\fot_blindness.tga \ gfx\fot_blur.tga \ gfx\fot_boltglory.tga \ gfx\fot_breach.tga \ gfx\fot_breath.tga \ gfx\fot_burnhands.tga \ gfx\fot_cacofiend.tga \ gfx\fot_calllight.tga \ gfx\fot_carrions.tga \ gfx\fot_causecrit.tga \ gfx\fot_causelight.tga \ gfx\fot_causemed.tga \ gfx\fot_causemin.tga \ gfx\fot_causeser.tga \ gfx\fot_chainlight.tga \ gfx\fot_chameleon.tga \ gfx\fot_champions.tga \ gfx\fot_chant.tga \ gfx\fot_chaos.tga \ gfx\fot_chaotic.tga \ gfx\fot_charmanim.tga \ gfx\fot_charmpers.tga \ gfx\fot_chilltouch.tga \ gfx\fot_chromorb.tga \ gfx\fot_clairaud.tga \ gfx\fot_clairhand.tga \ gfx\fot_clairsns.tga \ gfx\fot_clawbeast.tga \ gfx\fot_clawenergy.tga \ gfx\fot_cloakfear.tga \ gfx\fot_cloudkill.tga \ gfx\fot_cloudmind.tga \ gfx\fot_cloudmindm.tga \ gfx\fot_colorspray.tga \ gfx\fot_command.tga \ gfx\fot_compress.tga \ gfx\fot_concblast.tga \ gfx\fot_concblast2.tga \ gfx\fot_conecold.tga \ gfx\fot_confusion.tga \ gfx\fot_contagion.tga \ gfx\fot_contingency.tga \ gfx\fot_contundead.tga \ gfx\fot_creeping.tga \ gfx\fot_curecrit.tga \ gfx\fot_curedisease.tga \ gfx\fot_curelight.tga \ gfx\fot_curemass.tga \ gfx\fot_curemedium.tga \ gfx\fot_curepoison.tga \ gfx\fot_cureserious.tga \ gfx\fot_dalzin.tga \ gfx\fot_dawn.tga \ gfx\fot_deafness.tga \ gfx\fot_deathfog.tga \ gfx\fot_deathspell.tga \ gfx\fot_deathward.tga \ gfx\fot_decay.tga \ gfx\fot_defharmony.tga \ gfx\fot_delayball.tga \ gfx\fot_detillusion.tga \ gfx\fot_detinvis.tga \ gfx\fot_dettraps.tga \ gfx\fot_deva.tga \ gfx\fot_dimslide.tga \ gfx\fot_dimslide1.tga \ gfx\fot_direcharm.tga \ gfx\fot_disintegrate.tga \ gfx\fot_dispel.tga \ gfx\fot_dissweapon.tga \ gfx\fot_djinni.tga \ gfx\fot_dompers.tga \ gfx\fot_doom.tga \ gfx\fot_dtctrmtvw.tga \ gfx\fot_duoclaw.tga \ gfx\fot_earthquake.tga \ gfx\fot_efreeti.tga \ gfx\fot_elementair.tga \ gfx\fot_elementfire.tga \ gfx\fot_emptrans.tga \ gfx\fot_enerdrain.tga \ gfx\fot_enfeeble.tga \ gfx\fot_entangle.tga \ gfx\fot_escapedetct.tga \ gfx\fot_exped.tga \ gfx\fot_familiar.tga \ gfx\fot_farsight.tga \ gfx\fot_fearless.tga \ gfx\fot_feeblemind.tga \ gfx\fot_fingerdeath.tga \ gfx\fot_fireball.tga \ gfx\fot_fireseeds.tga \ gfx\fot_fireshield.tga \ gfx\fot_firestorm.tga \ gfx\fot_flamearrow.tga \ gfx\fot_flameblade.tga \ gfx\fot_flamestrike.tga \ gfx\fot_fleshstone.tga \ gfx\fot_freeaction.tga \ gfx\fot_friends.tga \ gfx\fot_gate.tga \ gfx\fot_ghostarm.tga \ gfx\fot_ghoul.tga \ gfx\fot_glitter.tga \ gfx\fot_globe.tga \ gfx\fot_globeblades.tga \ gfx\fot_glyph.tga \ gfx\fot_goodberry.tga \ gfx\fot_grease.tga \ gfx\fot_grelem.tga \ gfx\fot_grmalison.tga \ gfx\fot_hakeashar.tga \ gfx\fot_hammer.tga \ gfx\fot_harm.tga \ gfx\fot_haste.tga \ gfx\fot_heal.tga \ gfx\fot_holdanim.tga \ gfx\fot_holdmonster.tga \ gfx\fot_holdpers.tga \ gfx\fot_holdundead.tga \ gfx\fot_holymight.tga \ gfx\fot_holypower.tga \ gfx\fot_holysmite.tga \ gfx\fot_holyword.tga \ gfx\fot_horror.tga \ gfx\fot_icestorm.tga \ gfx\fot_identify.tga \ gfx\fot_implosion.tga \ gfx\fot_imprhaste.tga \ gfx\fot_imprinvis.tga \ gfx\fot_imprmantle.tga \ gfx\fot_imprpierce.tga \ gfx\fot_imprundead.tga \ gfx\fot_incendiary.tga \ gfx\fot_infravis.tga \ gfx\fot_insects.tga \ gfx\fot_intfort.tga \ gfx\fot_invis.tga \ gfx\fot_invisstalk.tga \ gfx\fot_invisten.tga \ gfx\fot_ironskins.tga \ gfx\fot_knock.tga \ gfx\fot_knowalign.tga \ gfx\fot_larloch.tga \ gfx\fot_lesserearth.tga \ gfx\fot_lesserfire.tga \ gfx\fot_lesserrest.tga \ gfx\fot_lightning.tga \ gfx\fot_lowerres.tga \ gfx\fot_luck.tga \ gfx\fot_magicaxe.tga \ gfx\fot_magiclong.tga \ gfx\fot_magicshort.tga \ gfx\fot_magicstone.tga \ gfx\fot_mantle.tga \ gfx\fot_massinvis.tga \ gfx\fot_massraise.tga \ gfx\fot_maze.tga \ gfx\fot_metaclaw.tga \ gfx\fot_meteors.tga \ gfx\fot_meteorsfew.tga \ gfx\fot_meteorswarm.tga \ gfx\fot_minorglobe.tga \ gfx\fot_minorseq.tga \ gfx\fot_mirror.tga \ gfx\fot_mislead.tga \ gfx\fot_mmissile.tga \ gfx\fot_mordsword.tga \ gfx\fot_nishruu.tga \ gfx\fot_nondetect.tga \ gfx\fot_oracle.tga \ gfx\fot_phantomblade.tga \ gfx\fot_physmirror.tga \ gfx\fot_pixiedust.tga \ gfx\fot_planetar.tga \ gfx\fot_poison.tga \ gfx\fot_polybalor.tga \ gfx\fot_polydragon.tga \ gfx\fot_polygiant.tga \ gfx\fot_polygolem.tga \ gfx\fot_polyhuman.tga \ gfx\fot_polyooze.tga \ gfx\fot_polyself.tga \ gfx\fot_polyslaad.tga \ gfx\fot_polyspider.tga \ gfx\fot_polytroll.tga \ gfx\fot_powerblind.tga \ gfx\fot_powersilence.tga \ gfx\fot_powersleep.tga \ gfx\fot_powerstun.tga \ gfx\fot_prevnmw.tga \ gfx\fot_prismspray.tga \ gfx\fot_protacid.tga \ gfx\fot_protarrow.tga \ gfx\fot_protcold.tga \ gfx\fot_protelements.tga \ gfx\fot_protenergy.tga \ gfx\fot_protevil.tga \ gfx\fot_protevilten.tga \ gfx\fot_protfire.tga \ gfx\fot_protlight.tga \ gfx\fot_protmagweap.tga \ gfx\fot_protnegat.tga \ gfx\fot_protnormal.tga \ gfx\fot_psyvamp.tga \ gfx\fot_purgeinvis.tga \ gfx\fot_rage.tga \ gfx\fot_raisedead.tga \ gfx\fot_recall.tga \ gfx\fot_reflected.tga \ gfx\fot_regenerate.tga \ gfx\fot_removecurse.tga \ gfx\fot_removefear.tga \ gfx\fot_removemagic.tga \ gfx\fot_remparalysis.tga \ gfx\fot_repundead.tga \ gfx\fot_resistmagic.tga \ gfx\fot_ressphere.tga \ gfx\fot_ressurect.tga \ gfx\fot_rmtview.tga \ gfx\fot_rmtvwtrap.tga \ gfx\fot_rubyray.tga \ gfx\fot_sanctuary.tga \ gfx\fot_secretword.tga \ gfx\fot_seeksword.tga \ gfx\fot_sequencer.tga \ gfx\fot_sequester.tga \ gfx\fot_shadowdoor.tga \ gfx\fot_shapechange.tga \ gfx\fot_shield.tga \ gfx\fot_shieldfaith.tga \ gfx\fot_shillelagh.tga \ gfx\fot_shocking.tga \ gfx\fot_silence.tga \ gfx\fot_skulltrap.tga \ gfx\fot_slayliving.tga \ gfx\fot_sleep.tga \ gfx\fot_slow.tga \ gfx\fot_slowpoison.tga \ gfx\fot_snare.tga \ gfx\fot_sols.tga \ gfx\fot_spelldeflect.tga \ gfx\fot_spellimmune.tga \ gfx\fot_spellshield.tga \ gfx\fot_spellthrust.tga \ gfx\fot_spiderspawn.tga \ gfx\fot_spiritarmor.tga \ gfx\fot_spook.tga \ gfx\fot_steadpercep.tga \ gfx\fot_stinkcloud.tga \ gfx\fot_stomp.tga \ gfx\fot_stoneflesh.tga \ gfx\fot_stoneskin.tga \ gfx\fot_strength.tga \ gfx\fot_strengthone.tga \ gfx\fot_strngthnme.tga \ gfx\fot_summonfiend.tga \ gfx\fot_summoni.tga \ gfx\fot_summonii.tga \ gfx\fot_summoniii.tga \ gfx\fot_summoniv.tga \ gfx\fot_summonix.tga \ gfx\fot_summonv.tga \ gfx\fot_summonvi.tga \ gfx\fot_summonvii.tga \ gfx\fot_summonviii.tga \ gfx\fot_sunfire.tga \ gfx\fot_sunray.tga \ gfx\fot_symboldeath.tga \ gfx\fot_symbolfear.tga \ gfx\fot_symbolstun.tga \ gfx\fot_telefield.tga \ gfx\fot_tensers.tga \ gfx\fot_timestop.tga \ gfx\fot_trigger.tga \ gfx\fot_truesight.tga \ gfx\fot_truvnm.tga \ gfx\fot_truvnmw.tga \ gfx\fot_unholy.tga \ gfx\fot_vampiric.tga \ gfx\fot_vampweap.tga \ gfx\fot_vengeance.tga \ gfx\fot_vocal.tga \ gfx\fot_wailbanshee.tga \ gfx\fot_web.tga \ gfx\fot_whip.tga \ gfx\fot_wizardeye.tga \ gfx\fot_wyvern.tga \ gfx\fxpa_bfirebb.tga \ gfx\fxpa_blflame02.tga \ gfx\fxpa_blueflare1.tga \ gfx\fxpa_explode_blu.tga \ gfx\fxpa_explode_grn.tga \ gfx\fxpa_eye_dn_g.tga \ gfx\fxpa_eye_dn_r.tga \ gfx\fxpa_eye2.tga \ gfx\fxpa_firebb_blue.tga \ gfx\fxpa_firebb_cyan.tga \ gfx\fxpa_firebb_grn.tga \ gfx\fxpa_firebb_mag.tga \ gfx\fxpa_firebb_pur.tga \ gfx\fxpa_flame00.tga \ gfx\fxpa_flame00_blu.tga \ gfx\fxpa_flame05b.tga \ gfx\fxpa_flame99_blk.tga \ gfx\fxpa_flame99_blu.tga \ gfx\fxpa_flame99_grn.tga \ gfx\fxpa_flame99_pur.tga \ gfx\fxpa_flame99_red.tga \ gfx\fxpa_flame99_wht.tga \ gfx\fxpa_flame99_yel.tga \ gfx\fxpa_flare_a.tga \ gfx\fxpa_flare02_cya.tga \ gfx\fxpa_flare02_grn.tga \ gfx\fxpa_flare02_law.tga \ gfx\fxpa_flare02_mag.tga \ gfx\fxpa_flare02_ora.tga \ gfx\fxpa_flare02_pur.tga \ gfx\fxpa_flare02_red.tga \ gfx\fxpa_flare02_spr.tga \ gfx\fxpa_flare02_ste.tga \ gfx\fxpa_flare02_vio.tga \ gfx\fxpa_flare02_yel.tga \ gfx\fxpa_flarestar3.tga \ gfx\fxpa_flarestar4.tga \ gfx\fxpa_flarestar6.tga \ gfx\fxpa_flstrk_blue.tga \ gfx\fxpa_flstrk_grn.tga \ gfx\fxpa_grflame02.tga \ gfx\fxpa_ice.tga \ gfx\fxpa_iceflare.tga \ gfx\fxpa_lightning_b.tga \ gfx\fxpa_lightning_g.tga \ gfx\fxpa_lightning_o.tga \ gfx\fxpa_lightning_p.tga \ gfx\fxpa_lightning_r.tga \ gfx\fxpa_lightning_y.tga \ gfx\fxpa_newflare.tga \ gfx\fxpa_newflare02.tga \ gfx\fxpa_rip1.tga \ gfx\fxpa_sparks.tga \ gfx\fxpa_sparks_a.tga \ gfx\fxpa_spellturn_c.tga \ gfx\fxpa_spellturn_g.tga \ gfx\fxpa_spellturn_m.tga \ gfx\fxpa_spellturn_o.tga \ gfx\fxpa_spellturn_p.tga \ gfx\fxpa_spellturn_r.tga \ gfx\fxpa_spellturn_s.tga \ gfx\fxpa_spellturn_v.tga \ gfx\fxpa_spellturn_y.tga \ gfx\fxpa_starbnw_a.tga \ gfx\fxpa_sym_hg_016.tga \ gfx\fxpa_sym_hg_017.tga \ gfx\fxpa_sym_hg_018.tga \ gfx\fxpa_sym_hg_019.tga \ gfx\fxpa_sym_hg_021.tga \ gfx\fxpa_sym_hg_022.tga \ gfx\fxpa_sym_hg_024.tga \ gfx\fxpa_sym_hg_025.tga \ gfx\fxpa_sym_hg_029.tga \ gfx\fxpa_symbl_004b.tga \ gfx\fxpa_symbl_004c.tga \ gfx\fxpa_symbl_004r.tga \ gfx\fxpa_symbl_004v.tga \ gfx\fxpa_symbl_004w.tga \ gfx\fxpa_symbl_004y.tga \ gfx\fxpa_symbl_005b.tga \ gfx\fxpa_symbl_005c.tga \ gfx\fxpa_symbl_005r.tga \ gfx\fxpa_symbl_005v.tga \ gfx\fxpa_symbl_005w.tga \ gfx\fxpa_symbl_005y.tga \ gfx\generic_minus_1.tga \ gfx\generic_minus_10.tga \ gfx\generic_minus_20.tga \ gfx\generic_minus_5.tga \ gfx\generic_plus_1.tga \ gfx\generic_plus_10.tga \ gfx\generic_plus_20.tga \ gfx\generic_plus_5.tga \ gfx\green_water.tga \ gfx\hammer.tga \ gfx\handle1.tga \ gfx\handle2.tga \ gfx\handle3.tga \ gfx\handle4.tga \ gfx\heal1.tga \ gfx\heal2.tga \ gfx\heal3.tga \ gfx\i_markloc.tga \ gfx\ia_dr_energshld.tga \ gfx\ia_dr_energy.tga \ gfx\ia_dr_insight.tga \ gfx\ia_dr_mpower.tga \ gfx\ia_dr_power.tga \ gfx\ia_dr_presence.tga \ gfx\ia_dr_resist.tga \ gfx\ia_dr_resolve.tga \ gfx\ia_dr_senses.tga \ gfx\ia_dr_stamina.tga \ gfx\ia_dr_swift.tga \ gfx\ia_dr_toughness.tga \ gfx\ia_dr_vigor.tga \ gfx\ia_ma_hsold.tga \ gfx\ia_ma_mardor.tga \ gfx\ia_ma_mattack.tga \ gfx\ia_ma_mcare.tga \ gfx\ia_ma_murg.tga \ gfx\ia_ma_restroop.tga \ gfx\ia_ma_shand.tga \ gfx\ia_mi_aow.tga \ gfx\ia_mi_dcast.tga \ gfx\ia_mi_dfort.tga \ gfx\ia_mi_fow.tga \ gfx\ia_mi_mcha.tga \ gfx\ia_mi_mcon.tga \ gfx\ia_mi_mdex.tga \ gfx\ia_mi_mint.tga \ gfx\ia_mi_mstr.tga \ gfx\ia_mi_mwis.tga \ gfx\ia_mi_weye.tga \ gfx\ic_arach.tga \ gfx\ic_arachne.tga \ gfx\ic_baalzebul.tga \ gfx\ic_hospitaler.tga \ gfx\ic_iaijutsu.tga \ gfx\ic_ironmind.tga \ gfx\ic_legdread.tga \ gfx\ic_rava.tga \ gfx\ic_rune.tga \ gfx\ic_runecaster.tga \ gfx\id_charm.tga \ gfx\id_darkness.tga \ gfx\id_domination.tga \ gfx\id_dragon.tga \ gfx\id_dwarf.tga \ gfx\id_elf.tga \ gfx\id_family.tga \ gfx\id_fate.tga \ gfx\id_force.tga \ gfx\id_gnome.tga \ gfx\id_halfling.tga \ gfx\id_hatred.tga \ gfx\id_illusion.tga \ gfx\id_metal.tga \ gfx\id_nobility.tga \ gfx\id_ocean.tga \ gfx\id_ooze.tga \ gfx\id_orc.tga \ gfx\id_portal.tga \ gfx\id_renewal.tga \ gfx\id_retribution.tga \ gfx\id_rune.tga \ gfx\id_scaleykind.tga \ gfx\id_spells.tga \ gfx\id_spider.tga \ gfx\id_storm.tga \ gfx\id_suffering.tga \ gfx\id_time.tga \ gfx\id_tyranny.tga \ gfx\id_undeath.tga \ gfx\ief_damimmdecr.tga \ gfx\ief_damimmdecra.tga \ gfx\ief_damimmdecrc.tga \ gfx\ief_damimmdecrd.tga \ gfx\ief_damimmdecre.tga \ gfx\ief_damimmdecrf.tga \ gfx\ief_damimmdecrm.tga \ gfx\ief_damimmdecrn.tga \ gfx\ief_damimmdecrp.tga \ gfx\ief_damimmdecrs.tga \ gfx\ief_damimmincr.tga \ gfx\ief_damimmincra.tga \ gfx\ief_damimmincrc.tga \ gfx\ief_damimmincrd.tga \ gfx\ief_damimmincre.tga \ gfx\ief_damimmincrf.tga \ gfx\ief_damimmincrm.tga \ gfx\ief_damimmincrn.tga \ gfx\ief_damimmincrp.tga \ gfx\ief_damimmincrs.tga \ gfx\ief_harpwiz.tga \ gfx\ief_immunityacd.tga \ gfx\ief_immunityad.tga \ gfx\ief_immunityatd.tga \ gfx\ief_immunitybli.tga \ gfx\ief_immunitycha.tga \ gfx\ief_immunitycon.tga \ gfx\ief_immunitycr.tga \ gfx\ief_immunitycur.tga \ gfx\ief_immunitydaz.tga \ gfx\ief_immunityde.tga \ gfx\ief_immunitydef.tga \ gfx\ief_immunitydi.tga \ gfx\ief_immunitydid.tga \ gfx\ief_immunitydmd.tga \ gfx\ief_immunitydom.tga \ gfx\ief_immunityen.tga \ gfx\ief_immunityfe.tga \ gfx\ief_immunitykno.tga \ gfx\ief_immunitymi.tga \ gfx\ief_immunitymo.tga \ gfx\ief_immunityne.tga \ gfx\ief_immunitypa.tga \ gfx\ief_immunitypo.tga \ gfx\ief_immunitysil.tga \ gfx\ief_immunityskd.tga \ gfx\ief_immunitysl.tga \ gfx\ief_immunityslp.tga \ gfx\ief_immunitysnk.tga \ gfx\ief_immunitysrd.tga \ gfx\ief_immunityst.tga \ gfx\ief_immunitysvd.tga \ gfx\ief_immunitytrp.tga \ gfx\if_dom_drow.tga \ gfx\if_epic_focus.tga \ gfx\if_epic_iaijutsu.tga \ gfx\if_gdrag.tga \ gfx\if_iaijutsu.tga \ gfx\if_katanafinesse.tga \ gfx\if_martflurry.tga \ gfx\if_nothought.tga \ gfx\if_selvwrath.tga \ gfx\if_spidaffin.tga \ gfx\if_spiderskin.tga \ gfx\if_spidmount.tga \ gfx\if_sprstr.tga \ gfx\if_trans.tga \ gfx\if_trove.tga \ gfx\if_twocut.tga \ gfx\if_unmovable.tga \ gfx\if_unstoppable.tga \ gfx\if_vow.tga \ gfx\if_web.tga \ gfx\if_webspin.tga \ gfx\if_yochform.tga \ gfx\if_zin_carla.tga \ gfx\ife_allhopelost.tga \ gfx\ife_anarchyscall.tga \ gfx\ife_animusblast.tga \ gfx\ife_animusblizz.tga \ gfx\ife_antipsifeats.tga \ gfx\ife_apostate.tga \ gfx\ife_arch_drac.tga \ gfx\ife_arch_nat.tga \ gfx\ife_arch_sla.tga \ gfx\ife_armyunfallen.tga \ gfx\ife_attackbon.tga \ gfx\ife_audience.tga \ gfx\ife_augment.tga \ gfx\ife_augment_0.tga \ gfx\ife_augment_0_4.tga \ gfx\ife_augment_0_40.tga \ gfx\ife_augment_00.tga \ gfx\ife_augment_1.tga \ gfx\ife_augment_10.tga \ gfx\ife_augment_2.tga \ gfx\ife_augment_20.tga \ gfx\ife_augment_3.tga \ gfx\ife_augment_30.tga \ gfx\ife_augment_4.tga \ gfx\ife_augment_40.tga \ gfx\ife_augment_5.tga \ gfx\ife_augment_5_9.tga \ gfx\ife_augment_6.tga \ gfx\ife_augment_7.tga \ gfx\ife_augment_8.tga \ gfx\ife_augment_9.tga \ gfx\ife_augment_max.tga \ gfx\ife_augment_off.tga \ gfx\ife_augment_opt.tga \ gfx\ife_baalsummon.tga \ gfx\ife_bahabreath.tga \ gfx\ife_banemagic.tga \ gfx\ife_battlebound.tga \ gfx\ife_begal.tga \ gfx\ife_begcc.tga \ gfx\ife_begsc.tga \ gfx\ife_begtf.tga \ gfx\ife_blind.tga \ gfx\ife_boost_con.tga \ gfx\ife_brthflm.tga \ gfx\ife_celescouncil.tga \ gfx\ife_cfrenzy.tga \ gfx\ife_championsval.tga \ gfx\ife_chilltouch.tga \ gfx\ife_chmonray.tga \ gfx\ife_chperray.tga \ gfx\ife_climb.tga \ gfx\ife_closedmind.tga \ gfx\ife_concaura.tga \ gfx\ife_concealed.tga \ gfx\ife_continresur.tga \ gfx\ife_continreun.tga \ gfx\ife_corpsecraft.tga \ gfx\ife_craft_rod.tga \ gfx\ife_craft_staff.tga \ gfx\ife_craftconstr.tga \ gfx\ife_crft_wonditm.tga \ gfx\ife_crftarmarmor.tga \ gfx\ife_damreduct.tga \ gfx\ife_darkvis.tga \ gfx\ife_deadeyesense.tga \ gfx\ife_deathmark.tga \ gfx\ife_deathray.tga \ gfx\ife_decieveitem.tga \ gfx\ife_deep_impact.tga \ gfx\ife_deneirsorel.tga \ gfx\ife_destretrib.tga \ gfx\ife_devcrit_dsc.tga \ gfx\ife_devcrit_ecb.tga \ gfx\ife_devcrit_elb.tga \ gfx\ife_devcrit_etb.tga \ gfx\ife_devcrit_fal.tga \ gfx\ife_devcrit_goa.tga \ gfx\ife_devcrit_hmc.tga \ gfx\ife_devcrit_hpk.tga \ gfx\ife_devcrit_ktr.tga \ gfx\ife_devcrit_lnc.tga \ gfx\ife_devcrit_lpk.tga \ gfx\ife_devcrit_mau.tga \ gfx\ife_devcrit_mbld.tga \ gfx\ife_devcrit_nun.tga \ gfx\ife_devcrit_sai.tga \ gfx\ife_devcrit_sap.tga \ gfx\ife_deviltongue.tga \ gfx\ife_dfrm_eyes.tga \ gfx\ife_dfrm_face.tga \ gfx\ife_dfrm_gaunt.tga \ gfx\ife_dfrm_mad.tga \ gfx\ife_dfrm_obese.tga \ gfx\ife_dfrm_prst.tga \ gfx\ife_direwinter.tga \ gfx\ife_discdark.tga \ gfx\ife_disray.tga \ gfx\ife_divm_emp.tga \ gfx\ife_divm_ext.tga \ gfx\ife_divm_max.tga \ gfx\ife_divveng.tga \ gfx\ife_dk_ds.tga \ gfx\ife_dk_fk.tga \ gfx\ife_dk_foe.tga \ gfx\ife_dk_puis.tga \ gfx\ife_dk_tact.tga \ gfx\ife_doubleaura.tga \ gfx\ife_drag_group.tga \ gfx\ife_dragdom.tga \ gfx\ife_dreamscape.tga \ gfx\ife_dshout.tga \ gfx\ife_dullblades.tga \ gfx\ife_dweomerthief.tga \ gfx\ife_eldrtchblast.tga \ gfx\ife_eleshield.tga \ gfx\ife_eludetouch.tga \ gfx\ife_endfre.tga \ gfx\ife_enslave.tga \ gfx\ife_entangle.tga \ gfx\ife_ep_exp_knw_1.tga \ gfx\ife_ep_exp_knw_2.tga \ gfx\ife_ep_exp_knw_3.tga \ gfx\ife_ep_exp_knw_4.tga \ gfx\ife_ep_exp_knw_5.tga \ gfx\ife_ep_exp_knw_6.tga \ gfx\ife_ep_exp_knw_7.tga \ gfx\ife_ep_exp_knw_8.tga \ gfx\ife_ep_exp_knw_9.tga \ gfx\ife_ep_exp_knw_a.tga \ gfx\ife_ep_psi_foc_1.tga \ gfx\ife_ep_psi_foc_2.tga \ gfx\ife_ep_psi_foc_3.tga \ gfx\ife_ep_psi_foc_4.tga \ gfx\ife_ep_psi_foc_5.tga \ gfx\ife_ep_psi_foc_6.tga \ gfx\ife_ep_psi_foc_7.tga \ gfx\ife_ep_psi_foc_8.tga \ gfx\ife_ep_psi_foc_9.tga \ gfx\ife_ep_psi_foc10.tga \ gfx\ife_epachilleshe.tga \ gfx\ife_epalliance1.tga \ gfx\ife_epalliance2.tga \ gfx\ife_epalliance3.tga \ gfx\ife_epalliedma.tga \ gfx\ife_eparchv.tga \ gfx\ife_eparctrk.tga \ gfx\ife_epduel.tga \ gfx\ife_epherculean.tga \ gfx\ife_epherculeane.tga \ gfx\ife_epic_eldkni.tga \ gfx\ife_epicfavsoul.tga \ gfx\ife_epicml.tga \ gfx\ife_epicrepuls.tga \ gfx\ife_epicwarlock.tga \ gfx\ife_epicwarmage.tga \ gfx\ife_epleechfield.tga \ gfx\ife_eplifeforce.tga \ gfx\ife_epmagmaburst.tga \ gfx\ife_epnailed.tga \ gfx\ife_epspellrefl.tga \ gfx\ife_epstormmantl.tga \ gfx\ife_epsymrustar.tga \ gfx\ife_eptolodine.tga \ gfx\ife_epwhipofshar.tga \ gfx\ife_eschew_mat.tga \ gfx\ife_eternfreed.tga \ gfx\ife_ethereal.tga \ gfx\ife_ewf_dblscim.tga \ gfx\ife_ewf_ecb.tga \ gfx\ife_ewf_elb.tga \ gfx\ife_ewf_etb.tga \ gfx\ife_ewf_falchion.tga \ gfx\ife_ewf_goad.tga \ gfx\ife_ewf_hmace.tga \ gfx\ife_ewf_hpick.tga \ gfx\ife_ewf_katar.tga \ gfx\ife_ewf_lance.tga \ gfx\ife_ewf_lpick.tga \ gfx\ife_ewf_maul.tga \ gfx\ife_ewf_nunchuk.tga \ gfx\ife_ewf_sai.tga \ gfx\ife_ewf_sap.tga \ gfx\ife_ewfoc_mblade.tga \ gfx\ife_ews_dsc.tga \ gfx\ife_ews_fal.tga \ gfx\ife_ews_goa.tga \ gfx\ife_ews_hmc.tga \ gfx\ife_ews_hpck.tga \ gfx\ife_ews_ktr.tga \ gfx\ife_ews_lnc.tga \ gfx\ife_ews_lpck.tga \ gfx\ife_ews_mau.tga \ gfx\ife_ews_nun.tga \ gfx\ife_ews_sai.tga \ gfx\ife_ews_sap.tga \ gfx\ife_ewspc_mblade.tga \ gfx\ife_exaturn.tga \ gfx\ife_exhbarrier.tga \ gfx\ife_exp_knw_1.tga \ gfx\ife_exp_knw_2.tga \ gfx\ife_exp_knw_3.tga \ gfx\ife_exp_knw_4.tga \ gfx\ife_exp_knw_5.tga \ gfx\ife_exp_knw_6.tga \ gfx\ife_exp_knw_7.tga \ gfx\ife_exp_knw_8.tga \ gfx\ife_exp_knw_9.tga \ gfx\ife_exp_knw_a.tga \ gfx\ife_extrasummon.tga \ gfx\ife_fam_hide.tga \ gfx\ife_fam_scry.tga \ gfx\ife_fasthealing1.tga \ gfx\ife_fasthealing2.tga \ gfx\ife_fasthealing3.tga \ gfx\ife_fearray.tga \ gfx\ife_fiendwords.tga \ gfx\ife_fleetness.tga \ gfx\ife_fom.tga \ gfx\ife_forcebreath.tga \ gfx\ife_forceofwill.tga \ gfx\ife_forge_ring.tga \ gfx\ife_frenzy.tga \ gfx\ife_gemcage.tga \ gfx\ife_gfkill_fattk.tga \ gfx\ife_gfkill_fclv.tga \ gfx\ife_godsmite.tga \ gfx\ife_gr_timestop.tga \ gfx\ife_greatdom.tga \ gfx\ife_greatspellre.tga \ gfx\ife_gruumsh.tga \ gfx\ife_gtwo_wep.tga \ gfx\ife_gwfoc_mblade.tga \ gfx\ife_handheal.tga \ gfx\ife_hardendflesh.tga \ gfx\ife_harpersecret.tga \ gfx\ife_haste.tga \ gfx\ife_heiro_sla1.tga \ gfx\ife_heiro_sla2.tga \ gfx\ife_heiro_sla3.tga \ gfx\ife_heiro_sla4.tga \ gfx\ife_heiro_sla5.tga \ gfx\ife_hellsend.tga \ gfx\ife_hk_aid.tga \ gfx\ife_hk_ref.tga \ gfx\ife_hk_sanct.tga \ gfx\ife_holyaura.tga \ gfx\ife_holyrad.tga \ gfx\ife_hostile_mind.tga \ gfx\ife_ignore_mat.tga \ gfx\ife_imbueitem.tga \ gfx\ife_immunity.tga \ gfx\ife_imp_manif_1.tga \ gfx\ife_imp_manif_2.tga \ gfx\ife_imp_manif_3.tga \ gfx\ife_imp_manif_4.tga \ gfx\ife_imp_manif_5.tga \ gfx\ife_imp_manif_6.tga \ gfx\ife_imp_manif_7.tga \ gfx\ife_imp_manif_8.tga \ gfx\ife_imp_manif_9.tga \ gfx\ife_imp_manif_a.tga \ gfx\ife_impcrit_dsc.tga \ gfx\ife_impcrit_ecb.tga \ gfx\ife_impcrit_elb.tga \ gfx\ife_impcrit_etb.tga \ gfx\ife_impcrit_fal.tga \ gfx\ife_impcrit_goa.tga \ gfx\ife_impcrit_hmc.tga \ gfx\ife_impcrit_hpk.tga \ gfx\ife_impcrit_ktr.tga \ gfx\ife_impcrit_lnc.tga \ gfx\ife_impcrit_lpk.tga \ gfx\ife_impcrit_mau.tga \ gfx\ife_impcrit_mbld.tga \ gfx\ife_impcrit_nun.tga \ gfx\ife_impcrit_sai.tga \ gfx\ife_impcrit_sap.tga \ gfx\ife_impenetrab.tga \ gfx\ife_impmetapsi_1.tga \ gfx\ife_impmetapsi_2.tga \ gfx\ife_impmetapsi_3.tga \ gfx\ife_impmetapsi_4.tga \ gfx\ife_impmetapsi_5.tga \ gfx\ife_impmetapsi_6.tga \ gfx\ife_impmetapsi_7.tga \ gfx\ife_impmetapsi_8.tga \ gfx\ife_impmetapsi_9.tga \ gfx\ife_impmetapsi_a.tga \ gfx\ife_imppowhit0.tga \ gfx\ife_imppowhit6.tga \ gfx\ife_imppowhit7.tga \ gfx\ife_imppowhit8.tga \ gfx\ife_imppowhit9.tga \ gfx\ife_impturnres.tga \ gfx\ife_incorporeal.tga \ gfx\ife_infray.tga \ gfx\ife_insfre.tga \ gfx\ife_instrumentcr.tga \ gfx\ife_ironskin.tga \ gfx\ife_jump.tga \ gfx\ife_jump2.tga \ gfx\ife_kingoflies.tga \ gfx\ife_lasher_crkdm.tga \ gfx\ife_lasher_crkft.tga \ gfx\ife_lasher_death.tga \ gfx\ife_lasher_epic.tga \ gfx\ife_lasher_lash.tga \ gfx\ife_lasher_stun.tga \ gfx\ife_lasher_third.tga \ gfx\ife_legendaryart.tga \ gfx\ife_lliiraaura.tga \ gfx\ife_lordessence.tga \ gfx\ife_loremaster.tga \ gfx\ife_lycanbane.tga \ gfx\ife_madcertainty.tga \ gfx\ife_magweap.tga \ gfx\ife_masspenguin.tga \ gfx\ife_mast_will.tga \ gfx\ife_mastelem.tga \ gfx\ife_mentalresist.tga \ gfx\ife_metamtrans_1.tga \ gfx\ife_metamtrans_2.tga \ gfx\ife_metamtrans_3.tga \ gfx\ife_metamtrans_4.tga \ gfx\ife_metamtrans_5.tga \ gfx\ife_metamtrans_6.tga \ gfx\ife_metamtrans_7.tga \ gfx\ife_metapsifeat.tga \ gfx\ife_mielikki.tga \ gfx\ife_mililsear.tga \ gfx\ife_mindblade.tga \ gfx\ife_minstrel.tga \ gfx\ife_momentomori.tga \ gfx\ife_morphemesav.tga \ gfx\ife_mpsi_chain.tga \ gfx\ife_mpsi_spsiray.tga \ gfx\ife_mpsi_twin.tga \ gfx\ife_mpsi_widen.tga \ gfx\ife_mthrcst.tga \ gfx\ife_narrow_mind.tga \ gfx\ife_nightsundo.tga \ gfx\ife_nimble_bones.tga \ gfx\ife_nimlight.tga \ gfx\ife_ohparry.tga \ gfx\ife_orderrestore.tga \ gfx\ife_overchannel.tga \ gfx\ife_overchannel0.tga \ gfx\ife_overchannel1.tga \ gfx\ife_overchannel2.tga \ gfx\ife_overchannel3.tga \ gfx\ife_ovrcrit_mbld.tga \ gfx\ife_owcrit_dsc.tga \ gfx\ife_owcrit_ecb.tga \ gfx\ife_owcrit_elb.tga \ gfx\ife_owcrit_etb.tga \ gfx\ife_owcrit_fal.tga \ gfx\ife_owcrit_goa.tga \ gfx\ife_owcrit_hmc.tga \ gfx\ife_owcrit_hpk.tga \ gfx\ife_owcrit_ktr.tga \ gfx\ife_owcrit_lnc.tga \ gfx\ife_owcrit_lpk.tga \ gfx\ife_owcrit_mau.tga \ gfx\ife_owcrit_nun.tga \ gfx\ife_owcrit_sai.tga \ gfx\ife_owcrit_sap.tga \ gfx\ife_paralbreath.tga \ gfx\ife_pathsknown.tga \ gfx\ife_peerlesspen.tga \ gfx\ife_pestilence.tga \ gfx\ife_petray.tga \ gfx\ife_phobia.tga \ gfx\ife_piousparley.tga \ gfx\ife_planarcell.tga \ gfx\ife_powhit1.tga \ gfx\ife_powhit2.tga \ gfx\ife_powhit3.tga \ gfx\ife_powhit4.tga \ gfx\ife_powhit5.tga \ gfx\ife_powkn_foz_1.tga \ gfx\ife_powkn_foz_2.tga \ gfx\ife_powkn_foz_3.tga \ gfx\ife_powkn_foz_4.tga \ gfx\ife_powkn_foz_5.tga \ gfx\ife_powkn_foz_6.tga \ gfx\ife_powkn_foz_7.tga \ gfx\ife_powkn_foz_8.tga \ gfx\ife_powkn_foz_9.tga \ gfx\ife_powkn_foz_a.tga \ gfx\ife_powkn_psi_1.tga \ gfx\ife_powkn_psi_2.tga \ gfx\ife_powkn_psi_3.tga \ gfx\ife_powkn_psi_4.tga \ gfx\ife_powkn_psi_5.tga \ gfx\ife_powkn_psi_6.tga \ gfx\ife_powkn_psi_7.tga \ gfx\ife_powkn_psi_8.tga \ gfx\ife_powkn_psi_9.tga \ gfx\ife_powkn_psi_a.tga \ gfx\ife_powkn_psw_1.tga \ gfx\ife_powkn_psw_2.tga \ gfx\ife_powkn_psw_3.tga \ gfx\ife_powkn_psw_4.tga \ gfx\ife_powkn_psw_5.tga \ gfx\ife_powkn_psw_6.tga \ gfx\ife_powkn_psw_7.tga \ gfx\ife_powkn_psw_8.tga \ gfx\ife_powkn_psw_9.tga \ gfx\ife_powkn_psw_a.tga \ gfx\ife_powkn_wld_1.tga \ gfx\ife_powkn_wld_2.tga \ gfx\ife_powkn_wld_3.tga \ gfx\ife_powkn_wld_4.tga \ gfx\ife_powkn_wld_5.tga \ gfx\ife_powkn_wld_6.tga \ gfx\ife_powkn_wld_7.tga \ gfx\ife_powkn_wld_8.tga \ gfx\ife_powkn_wld_9.tga \ gfx\ife_powkn_wld_a.tga \ gfx\ife_powkn_wmd_1.tga \ gfx\ife_powkn_wmd_2.tga \ gfx\ife_powkn_wmd_3.tga \ gfx\ife_powkn_wmd_4.tga \ gfx\ife_powkn_wmd_5.tga \ gfx\ife_powkn_wmd_6.tga \ gfx\ife_powkn_wmd_7.tga \ gfx\ife_powkn_wmd_8.tga \ gfx\ife_powkn_wmd_9.tga \ gfx\ife_powkn_wmd_a.tga \ gfx\ife_prc_switch.tga \ gfx\ife_prfnlflch.tga \ gfx\ife_pseudonatfam.tga \ gfx\ife_psi_focus.tga \ gfx\ife_psi_focus_in.tga \ gfx\ife_psi_meditat.tga \ gfx\ife_psicharm.tga \ gfx\ife_psidom.tga \ gfx\ife_psifeats.tga \ gfx\ife_psionic_hole.tga \ gfx\ife_psionicsalvo.tga \ gfx\ife_psitalent_1.tga \ gfx\ife_psitalent_10.tga \ gfx\ife_psitalent_2.tga \ gfx\ife_psitalent_3.tga \ gfx\ife_psitalent_4.tga \ gfx\ife_psitalent_5.tga \ gfx\ife_psitalent_6.tga \ gfx\ife_psitalent_7.tga \ gfx\ife_psitalent_8.tga \ gfx\ife_psitalent_9.tga \ gfx\ife_psych_enerv.tga \ gfx\ife_psych_strike.tga \ gfx\ife_rainoffire.tga \ gfx\ife_rangedsmite.tga \ gfx\ife_rapid_metab.tga \ gfx\ife_regenerate.tga \ gfx\ife_relhorde.tga \ gfx\ife_remcon.tga \ gfx\ife_risenreunite.tga \ gfx\ife_ruin.tga \ gfx\ife_s_powatt.tga \ gfx\ife_sacredvow.tga \ gfx\ife_scarring.tga \ gfx\ife_sd_animated.tga \ gfx\ife_sd_armor.tga \ gfx\ife_sd_banish.tga \ gfx\ife_sd_heal.tga \ gfx\ife_sd_life.tga \ gfx\ife_sd_reveal.tga \ gfx\ife_sd_slay.tga \ gfx\ife_sd_ward.tga \ gfx\ife_seed_aff.tga \ gfx\ife_seed_and.tga \ gfx\ife_seed_ani.tga \ gfx\ife_seed_ccl.tga \ gfx\ife_seed_cnj.tga \ gfx\ife_seed_com.tga \ gfx\ife_seed_con.tga \ gfx\ife_seed_del.tga \ gfx\ife_seed_des.tga \ gfx\ife_seed_dis.tga \ gfx\ife_seed_ene.tga \ gfx\ife_seed_for.tga \ gfx\ife_seed_frt.tga \ gfx\ife_seed_light.tga \ gfx\ife_seed_oppos.tga \ gfx\ife_seed_ref.tga \ gfx\ife_seed_shadow.tga \ gfx\ife_seed_sum.tga \ gfx\ife_seed_time.tga \ gfx\ife_seed_trm.tga \ gfx\ife_seed_trt.tga \ gfx\ife_servheaven.tga \ gfx\ife_shapechg.tga \ gfx\ife_shapedbreath.tga \ gfx\ife_shdstlth.tga \ gfx\ife_shout.tga \ gfx\ife_sickbreath.tga \ gfx\ife_singularsund.tga \ gfx\ife_sk_chhand.tga \ gfx\ife_sk_free_draw.tga \ gfx\ife_sk_ktts.tga \ gfx\ife_sk_ktts_cha.tga \ gfx\ife_sk_ktts_d1.tga \ gfx\ife_sk_ktts_d10.tga \ gfx\ife_sk_ktts_d2.tga \ gfx\ife_sk_ktts_d3.tga \ gfx\ife_sk_ktts_d4.tga \ gfx\ife_sk_ktts_d5.tga \ gfx\ife_sk_ktts_d6.tga \ gfx\ife_sk_ktts_d7.tga \ gfx\ife_sk_ktts_d8.tga \ gfx\ife_sk_ktts_d9.tga \ gfx\ife_sk_ktts_int.tga \ gfx\ife_sk_ktts_off.tga \ gfx\ife_sk_ktts_r1.tga \ gfx\ife_sk_ktts_r2.tga \ gfx\ife_sk_ktts_wis.tga \ gfx\ife_sk_mblade_en.tga \ gfx\ife_sk_multhrow.tga \ gfx\ife_sk_shmblade.tga \ gfx\ife_sk_shmbld_2s.tga \ gfx\ife_sk_shmbld_bs.tga \ gfx\ife_sk_shmbld_ls.tga \ gfx\ife_sk_shmbld_ss.tga \ gfx\ife_sleepbreath.tga \ gfx\ife_sleepray.tga \ gfx\ife_slowbreath.tga \ gfx\ife_slowray.tga \ gfx\ife_spellbook.tga \ gfx\ife_spellf_abs.tga \ gfx\ife_spellf_charg.tga \ gfx\ife_spellf_crown.tga \ gfx\ife_spellf_drnc.tga \ gfx\ife_spellf_drnp.tga \ gfx\ife_spellf_heal.tga \ gfx\ife_spellf_heali.tga \ gfx\ife_spellf_maels.tga \ gfx\ife_spellf_misc.tga \ gfx\ife_spellf_quick.tga \ gfx\ife_spellf_rapid.tga \ gfx\ife_spellf_store.tga \ gfx\ife_spellf_wield.tga \ gfx\ife_spellworm.tga \ gfx\ife_spontsumm.tga \ gfx\ife_spreading.tga \ gfx\ife_sudemp.tga \ gfx\ife_sudext.tga \ gfx\ife_sudmax.tga \ gfx\ife_sudwid.tga \ gfx\ife_summonaberat.tga \ gfx\ife_summonalien.tga \ gfx\ife_supdom.tga \ gfx\ife_superbdisp.tga \ gfx\ife_swftwg_bol.tga \ gfx\ife_talented.tga \ gfx\ife_telep_manag.tga \ gfx\ife_telep_mrkloc.tga \ gfx\ife_telep_optdlg.tga \ gfx\ife_telep_qs_1.tga \ gfx\ife_telep_qs_2.tga \ gfx\ife_telep_qs_end.tga \ gfx\ife_teleray.tga \ gfx\ife_tempest.tga \ gfx\ife_temphp.tga \ gfx\ife_tenac.tga \ gfx\ife_thewither.tga \ gfx\ife_thrall.tga \ gfx\ife_throw_mblade.tga \ gfx\ife_tiamatbreath.tga \ gfx\ife_timelessbody.tga \ gfx\ife_tog.tga \ gfx\ife_tog_bal.tga \ gfx\ife_tog_gla.tga \ gfx\ife_tog_mar.tga \ gfx\ife_tog_suc.tga \ gfx\ife_tog_vro.tga \ gfx\ife_transcend.tga \ gfx\ife_transcvital.tga \ gfx\ife_trnimmune.tga \ gfx\ife_turndm.tga \ gfx\ife_turnres.tga \ gfx\ife_turnresis.tga \ gfx\ife_turnresist_g.tga \ gfx\ife_turnresist_l.tga \ gfx\ife_turnsave.tga \ gfx\ife_turnvigor.tga \ gfx\ife_tw_rend.tga \ gfx\ife_twinfiend.tga \ gfx\ife_twofold.tga \ gfx\ife_undeath.tga \ gfx\ife_unholydisc.tga \ gfx\ife_unimpinged.tga \ gfx\ife_unseenwander.tga \ gfx\ife_warriorcry.tga \ gfx\ife_weakbreath.tga \ gfx\ife_web.tga \ gfx\ife_wepfoc_spf.tga \ gfx\ife_wepprof_2sw.tga \ gfx\ife_wepprof_bax.tga \ gfx\ife_wepprof_bsw.tga \ gfx\ife_wepprof_clu.tga \ gfx\ife_wepprof_dag.tga \ gfx\ife_wepprof_dar.tga \ gfx\ife_wepprof_dax.tga \ gfx\ife_wepprof_dma.tga \ gfx\ife_wepprof_dsc.tga \ gfx\ife_wepprof_dwax.tga \ gfx\ife_wepprof_ecb.tga \ gfx\ife_wepprof_elb.tga \ gfx\ife_wepprof_etb.tga \ gfx\ife_wepprof_fal.tga \ gfx\ife_wepprof_gax.tga \ gfx\ife_wepprof_goa.tga \ gfx\ife_wepprof_gsw.tga \ gfx\ife_wepprof_hal.tga \ gfx\ife_wepprof_hax.tga \ gfx\ife_wepprof_hfl.tga \ gfx\ife_wepprof_hmc.tga \ gfx\ife_wepprof_hpk.tga \ gfx\ife_wepprof_hxb.tga \ gfx\ife_wepprof_kam.tga \ gfx\ife_wepprof_kat.tga \ gfx\ife_wepprof_ktr.tga \ gfx\ife_wepprof_kuk.tga \ gfx\ife_wepprof_lbw.tga \ gfx\ife_wepprof_lfl.tga \ gfx\ife_wepprof_lha.tga \ gfx\ife_wepprof_lma.tga \ gfx\ife_wepprof_lnc.tga \ gfx\ife_wepprof_lpk.tga \ gfx\ife_wepprof_lsw.tga \ gfx\ife_wepprof_lxb.tga \ gfx\ife_wepprof_mau.tga \ gfx\ife_wepprof_mor.tga \ gfx\ife_wepprof_nun.tga \ gfx\ife_wepprof_rap.tga \ gfx\ife_wepprof_sai.tga \ gfx\ife_wepprof_sap.tga \ gfx\ife_wepprof_sbw.tga \ gfx\ife_wepprof_sci.tga \ gfx\ife_wepprof_scy.tga \ gfx\ife_wepprof_shu.tga \ gfx\ife_wepprof_sic.tga \ gfx\ife_wepprof_sli.tga \ gfx\ife_wepprof_spe.tga \ gfx\ife_wepprof_ssw.tga \ gfx\ife_wepprof_sta.tga \ gfx\ife_wepprof_tax.tga \ gfx\ife_wepprof_tri.tga \ gfx\ife_wepprof_wha.tga \ gfx\ife_wepprof_whip.tga \ gfx\ife_wepspec_dsc.tga \ gfx\ife_wepspec_fal.tga \ gfx\ife_wepspec_goa.tga \ gfx\ife_wepspec_hpck.tga \ gfx\ife_wepspec_ktr.tga \ gfx\ife_wepspec_lnc.tga \ gfx\ife_wepspec_lpck.tga \ gfx\ife_wepspec_mau.tga \ gfx\ife_wepspec_nun.tga \ gfx\ife_wepspec_sai.tga \ gfx\ife_wepspec_sap.tga \ gfx\ife_wf_dblscim.tga \ gfx\ife_wf_ecb.tga \ gfx\ife_wf_elb.tga \ gfx\ife_wf_etb.tga \ gfx\ife_wf_falchion.tga \ gfx\ife_wf_goad.tga \ gfx\ife_wf_hmace.tga \ gfx\ife_wf_hpick.tga \ gfx\ife_wf_ktrar.tga \ gfx\ife_wf_lance.tga \ gfx\ife_wf_lpick.tga \ gfx\ife_wf_maul.tga \ gfx\ife_wf_nunchuk.tga \ gfx\ife_wf_sai.tga \ gfx\ife_wf_sap.tga \ gfx\ife_wfoc_mblade.tga \ gfx\ife_wild_talent.tga \ gfx\ife_wildsurge_1.tga \ gfx\ife_wildsurge_10.tga \ gfx\ife_wildsurge_11.tga \ gfx\ife_wildsurge_2.tga \ gfx\ife_wildsurge_3.tga \ gfx\ife_wildsurge_4.tga \ gfx\ife_wildsurge_5.tga \ gfx\ife_wildsurge_6.tga \ gfx\ife_wildsurge_7.tga \ gfx\ife_wildsurge_8.tga \ gfx\ife_wildsurge_9.tga \ gfx\ife_wildsurge_r1.tga \ gfx\ife_wildsurge_r2.tga \ gfx\ife_wildsurgeoff.tga \ gfx\ife_willdef.tga \ gfx\ife_wound_attack.tga \ gfx\ife_wspec_mblade.tga \ gfx\ife_x2epchaban.tga \ gfx\ife_x2wfspellf.tga \ gfx\iit_book_011.tga \ gfx\iit_book_012.tga \ gfx\iit_book_013.tga \ gfx\iit_book_014.tga \ gfx\iit_book_015.tga \ gfx\iit_book_016.tga \ gfx\iit_book_017.tga \ gfx\iit_book_018.tga \ gfx\iit_book_019.tga \ gfx\iit_book_020.tga \ gfx\iit_book_021.tga \ gfx\iit_book_022.tga \ gfx\iit_book_023.tga \ gfx\iit_book_024.tga \ gfx\iit_book_025.tga \ gfx\iit_book_026.tga \ gfx\iit_book_027.tga \ gfx\iit_book_028.tga \ gfx\iit_book_029.tga \ gfx\iit_book_030.tga \ gfx\iit_gem_120.tga \ gfx\iit_gem_121.tga \ gfx\iit_potion_b_019.tga \ gfx\iit_potion_b_029.tga \ gfx\iit_potion_b_039.tga \ gfx\iit_potion_b_049.tga \ gfx\iit_potion_b_059.tga \ gfx\iit_potion_b_069.tga \ gfx\iit_potion_b_079.tga \ gfx\iit_x1_gren_049.tga \ gfx\im_absolutesteel.tga \ gfx\im_actionthought.tga \ gfx\im_adamantbones.tga \ gfx\im_adamhurricane.tga \ gfx\im_ancienthammer.tga \ gfx\im_assassinstnc.tga \ gfx\im_aurachaos.tga \ gfx\im_auraorder.tga \ gfx\im_auratriumph.tga \ gfx\im_auratyranny.tga \ gfx\im_avalancheblde.tga \ gfx\im_baffledefense.tga \ gfx\im_balancesky.tga \ gfx\im_ballistathrw.tga \ gfx\im_battleleader.tga \ gfx\im_blistflrsh.tga \ gfx\im_bloodletting.tga \ gfx\im_bloodwater.tga \ gfx\im_bolstervoice.tga \ gfx\im_bonecrusher.tga \ gfx\im_bonesplitting.tga \ gfx\im_boulderroll.tga \ gfx\im_boundassault.tga \ gfx\im_brokenshield.tga \ gfx\im_burnblade.tga \ gfx\im_burnbrand.tga \ gfx\im_castigstrike.tga \ gfx\im_chargingtaur.tga \ gfx\im_childshadow.tga \ gfx\im_clarioncall.tga \ gfx\im_clawatthemoon.tga \ gfx\im_clingshadow.tga \ gfx\im_cloakdecept.tga \ gfx\im_clrposition.tga \ gfx\im_colossusstrk.tga \ gfx\im_cometthrow.tga \ gfx\im_countercharge.tga \ gfx\im_coverstrike.tga \ gfx\im_crusdrstrike.tga \ gfx\im_crushingvise.tga \ gfx\im_crushingwght.tga \ gfx\im_dancemongoose.tga \ gfx\im_dancespider.tga \ gfx\im_dancingblade.tga \ gfx\im_dancingmoth.tga \ gfx\im_dauntstrike.tga \ gfx\im_dazingstrike.tga \ gfx\im_death_above.tga \ gfx\im_deathindark.tga \ gfx\im_deathmark.tga \ gfx\im_defrebuke.tga \ gfx\im_deserttemp.tga \ gfx\im_devastatethrw.tga \ gfx\im_diamonddef.tga \ gfx\im_diamondnb.tga \ gfx\im_disarmstrike.tga \ gfx\im_disruptblow.tga \ gfx\im_distember.tga \ gfx\im_divinesurge.tga \ gfx\im_divinesurgeg.tga \ gfx\im_doomcharge.tga \ gfx\im_douse_flames.tga \ gfx\im_dragonflame.tga \ gfx\im_drainvital.tga \ gfx\im_earthstrike.tga \ gfx\im_elderhammer.tga \ gfx\im_emeraldrazor.tga \ gfx\im_enervshadow.tga \ gfx\im_entanglingbld.tga \ gfx\im_exorcismsteel.tga \ gfx\im_fanflames.tga \ gfx\im_feignopening.tga \ gfx\im_feraldthblow.tga \ gfx\im_finishhim.tga \ gfx\im_fireass.tga \ gfx\im_firerip.tga \ gfx\im_firesnake.tga \ gfx\im_fiveshadowcrp.tga \ gfx\im_flamebless.tga \ gfx\im_flankmaneuver.tga \ gfx\im_flashsun.tga \ gfx\im_fleshripper.tga \ gfx\im_foehammer.tga \ gfx\im_foolsstrike.tga \ gfx\im_fountainblood.tga \ gfx\im_ghostblade.tga \ gfx\im_ghostdefense.tga \ gfx\im_giantkilling.tga \ gfx\im_giantsstance.tga \ gfx\im_girallonflesh.tga \ gfx\im_hamstringatt.tga \ gfx\im_handofdeath.tga \ gfx\im_hatchflame.tga \ gfx\im_hearingtheair.tga \ gfx\im_holocloak.tga \ gfx\im_hunterssense.tga \ gfx\im_hydraslaying.tga \ gfx\im_ihendurance.tga \ gfx\im_ihfocus.tga \ gfx\im_ihsurge.tga \ gfx\im_immortfort.tga \ gfx\im_inferblade.tga \ gfx\im_inferblast.tga \ gfx\im_insightstrike.tga \ gfx\im_insightstrkgr.tga \ gfx\im_ironbones.tga \ gfx\im_ironguard.tga \ gfx\im_irresistable.tga \ gfx\im_islandblades.tga \ gfx\im_lawbearer.tga \ gfx\im_leadtheattack.tga \ gfx\im_leadthecharge.tga \ gfx\im_leapflame.tga \ gfx\im_leapingdragon.tga \ gfx\im_lightrecover.tga \ gfx\im_lightthrow.tga \ gfx\im_linginferno.tga \ gfx\im_lionsroar.tga \ gfx\im_manticreparry.tga \ gfx\im_martialspirit.tga \ gfx\im_mightythrow.tga \ gfx\im_mindoverbody.tga \ gfx\im_mindstrike.tga \ gfx\im_mirrorpursuit.tga \ gfx\im_mithtornado.tga \ gfx\im_mntavalanche.tga \ gfx\im_momentalacrty.tga \ gfx\im_momentperfect.tga \ gfx\im_mountainhammr.tga \ gfx\im_obscureveil.tga \ gfx\im_onewithshadow.tga \ gfx\im_orderfrmchaos.tga \ gfx\im_overwhelming.tga \ gfx\im_pearlblackdbt.tga \ gfx\im_perfectclarty.tga \ gfx\im_pounce_charge.tga \ gfx\im_pressadvantag.tga \ gfx\im_preyontheweak.tga \ gfx\im_punishstance.tga \ gfx\im_quicksilver.tga \ gfx\im_rabidbearstrk.tga \ gfx\im_rabidwolfstrk.tga \ gfx\im_radiantcharge.tga \ gfx\im_ragemongoose.tga \ gfx\im_rallystrike.tga \ gfx\im_rapidcounter.tga \ gfx\im_revitalstrike.tga \ gfx\im_rightvital.tga \ gfx\im_ringoffire.tga \ gfx\im_risephoenix.tga \ gfx\im_rootsmountain.tga \ gfx\im_rubynb.tga \ gfx\im_salcharge.tga \ gfx\im_sapphirenb.tga \ gfx\im_scorpionparry.tga \ gfx\im_scythingblade.tga \ gfx\im_searblade.tga \ gfx\im_searcharge.tga \ gfx\im_shadowblade.tga \ gfx\im_shadowblink.tga \ gfx\im_shadowgarrote.tga \ gfx\im_shadowjaunt.tga \ gfx\im_shadownoose.tga \ gfx\im_shadowstride.tga \ gfx\im_shieldblock.tga \ gfx\im_shieldcounter.tga \ gfx\im_shiftdefense.tga \ gfx\im_soaringraptor.tga \ gfx\im_soaringthrow.tga \ gfx\im_stalkernight.tga \ gfx\im_stalkshadow.tga \ gfx\im_stancealacrty.tga \ gfx\im_stanceclarity.tga \ gfx\im_steelwind.tga \ gfx\im_steelystrike.tga \ gfx\im_stepofthewind.tga \ gfx\im_stonebones.tga \ gfx\im_stonedrgnfury.tga \ gfx\im_stonefootstnc.tga \ gfx\im_stonevise.tga \ gfx\im_strengthdrain.tga \ gfx\im_strengthstone.tga \ gfx\im_suddenleap.tga \ gfx\im_supremeparry.tga \ gfx\im_swarmingaslt.tga \ gfx\im_swarmtactics.tga \ gfx\im_swoop_dragon.tga \ gfx\im_tacticalstrk.tga \ gfx\im_tacticswolf.tga \ gfx\im_tidechaos.tga \ gfx\im_timestndsstll.tga \ gfx\im_tombstonestrk.tga \ gfx\im_tornadothrow.tga \ gfx\im_vanguardstrk.tga \ gfx\im_wallofblades.tga \ gfx\im_warleaderchrg.tga \ gfx\im_warmasterchrg.tga \ gfx\im_windstride.tga \ gfx\im_wolfclimbmnt.tga \ gfx\im_wolffangstrk.tga \ gfx\im_wolfpktctcs.tga \ gfx\im_wolverinestnc.tga \ gfx\im_wrhammer.tga \ gfx\im_wrstrike.tga \ gfx\im_wrtactics.tga \ gfx\im_wyrmflame.tga \ gfx\inv_acid.tga \ gfx\inv_allseeingeye.tga \ gfx\inv_auraflame.tga \ gfx\inv_balefulutter.tga \ gfx\inv_banefulblast.tga \ gfx\inv_beshadwblast.tga \ gfx\inv_bewitchblast.tga \ gfx\inv_bindingblast.tga \ gfx\inv_breathnight.tga \ gfx\inv_brimstnblast.tga \ gfx\inv_callbeast.tga \ gfx\inv_casterlament.tga \ gfx\inv_causticmire.tga \ gfx\inv_charm.tga \ gfx\inv_chillfog.tga \ gfx\inv_chillingtent.tga \ gfx\inv_cocoonrefuse.tga \ gfx\inv_cold.tga \ gfx\inv_coldcomfort.tga \ gfx\inv_corrblast.tga \ gfx\inv_cursedespair.tga \ gfx\inv_darkdiscorp.tga \ gfx\inv_darkness.tga \ gfx\inv_darkonesluck.tga \ gfx\inv_deafenroar.tga \ gfx\inv_devilsight.tga \ gfx\inv_devourmagic.tga \ gfx\inv_dmgred.tga \ gfx\inv_dracknow.tga \ gfx\inv_dractough.tga \ gfx\inv_dragonward.tga \ gfx\inv_dreadseizure.tga \ gfx\inv_drkforesight.tga \ gfx\inv_earthgrasp.tga \ gfx\inv_eldrtchblast.tga \ gfx\inv_eldrtchchain.tga \ gfx\inv_eldrtchcone.tga \ gfx\inv_eldrtchdoom.tga \ gfx\inv_eldrtchglaiv.tga \ gfx\inv_eldrtchline.tga \ gfx\inv_eldrtchspear.tga \ gfx\inv_elec.tga \ gfx\inv_endexposure.tga \ gfx\inv_energies.tga \ gfx\inv_ennervshadow.tga \ gfx\inv_entropicward.tga \ gfx\inv_fearglare.tga \ gfx\inv_fienresis.tga \ gfx\inv_fire.tga \ gfx\inv_fleethescene.tga \ gfx\inv_frightful.tga \ gfx\inv_frightnblast.tga \ gfx\inv_grblast.tga \ gfx\inv_grblast1.tga \ gfx\inv_grblast2.tga \ gfx\inv_grblast3.tga \ gfx\inv_grblast4.tga \ gfx\inv_hammerblast.tga \ gfx\inv_healblast.tga \ gfx\inv_helrimeblast.tga \ gfx\inv_helspwngrace.tga \ gfx\inv_hf_blast.tga \ gfx\inv_hf_blow.tga \ gfx\inv_hf_chain.tga \ gfx\inv_hf_cone.tga \ gfx\inv_hf_doom.tga \ gfx\inv_hf_glaive.tga \ gfx\inv_hf_inf_em.tga \ gfx\inv_hf_inf_ex.tga \ gfx\inv_hf_inf_max.tga \ gfx\inv_hf_inf_wid.tga \ gfx\inv_hf_infusion.tga \ gfx\inv_hf_line.tga \ gfx\inv_hf_shield.tga \ gfx\inv_hf_spear.tga \ gfx\inv_hideousblow.tga \ gfx\inv_hinderblast.tga \ gfx\inv_humanshape.tga \ gfx\inv_hungrydarkns.tga \ gfx\inv_ignorepyre.tga \ gfx\inv_influence.tga \ gfx\inv_leapsbounds.tga \ gfx\inv_magicinsight.tga \ gfx\inv_maskofflesh.tga \ gfx\inv_miasmiccloud.tga \ gfx\inv_noxiousblast.tga \ gfx\inv_otherworldws.tga \ gfx\inv_painslumber.tga \ gfx\inv_pathshadow.tga \ gfx\inv_pentrteblast.tga \ gfx\inv_protaura.tga \ gfx\inv_realnitemare.tga \ gfx\inv_relentdispel.tga \ gfx\inv_retribinvis.tga \ gfx\inv_scaldgust.tga \ gfx\inv_seeunseen.tga \ gfx\inv_serptongue.tga \ gfx\inv_sickenblast.tga \ gfx\inv_sonic.tga \ gfx\inv_soulreavaura.tga \ gfx\inv_spblast.tga \ gfx\inv_spblast1.tga \ gfx\inv_spblast2.tga \ gfx\inv_spblast3.tga \ gfx\inv_spblast4.tga \ gfx\inv_spellweave.tga \ gfx\inv_spidershape.tga \ gfx\inv_stealsummon.tga \ gfx\inv_stonygrasp.tga \ gfx\inv_strwill.tga \ gfx\inv_summonswarm.tga \ gfx\inv_swimthestyx.tga \ gfx\inv_tenaciousplg.tga \ gfx\inv_terrifyroar.tga \ gfx\inv_thedeadwalk.tga \ gfx\inv_uttrdrkblast.tga \ gfx\inv_vitrolcblast.tga \ gfx\inv_voidsense.tga \ gfx\inv_vordispel.tga \ gfx\inv_walkunseen.tga \ gfx\inv_wallgloom.tga \ gfx\inv_wallperilflm.tga \ gfx\inv_wildfrnzy.tga \ gfx\inv_wordchanging.tga \ gfx\inv_wtchwoodstep.tga \ gfx\ir_acolyte.tga \ gfx\ir_acolyteego.tga \ gfx\ir_alien.tga \ gfx\ir_archivist.tga \ gfx\ir_baelnorn.tga \ gfx\ir_beguil.tga \ gfx\ir_bfz.tga \ gfx\ir_blarcher.tga \ gfx\ir_blmagus.tga \ gfx\ir_bloodclaw.tga \ gfx\ir_brawler.tga \ gfx\ir_brimstone.tga \ gfx\ir_btlrage.tga \ gfx\ir_cbtmedic.tga \ gfx\ir_cerebre.tga \ gfx\ir_chaban.tga \ gfx\ir_chalice.tga \ gfx\ir_coc.tga \ gfx\ir_contemplative.tga \ gfx\ir_corrupter.tga \ gfx\ir_crusader.tga \ gfx\ir_dirge.tga \ gfx\ir_discmeph.tga \ gfx\ir_dragon_devo.tga \ gfx\ir_dragshmn.tga \ gfx\ir_drgnfireadpt.tga \ gfx\ir_drgnhtmage.tga \ gfx\ir_drnkn.tga \ gfx\ir_drslyr.tga \ gfx\ir_duel.tga \ gfx\ir_edisc.tga \ gfx\ir_eldkni.tga \ gfx\ir_elemacid.tga \ gfx\ir_elemcold.tga \ gfx\ir_elemelec.tga \ gfx\ir_elemfire.tga \ gfx\ir_etheur.tga \ gfx\ir_fh.tga \ gfx\ir_fom.tga \ gfx\ir_frebzk.tga \ gfx\ir_gfkill_prc.tga \ gfx\ir_gruumsh.tga \ gfx\ir_harpwiz.tga \ gfx\ir_havocmage.tga \ gfx\ir_heartw.tga \ gfx\ir_heironeous.tga \ gfx\ir_hextor.tga \ gfx\ir_hfwrlk.tga \ gfx\ir_hiero.tga \ gfx\ir_hnshn.tga \ gfx\ir_hotwm.tga \ gfx\ir_iodm.tga \ gfx\ir_jpm.tga \ gfx\ir_judicator.tga \ gfx\ir_justww.tga \ gfx\ir_kotmc.tga \ gfx\ir_lasher.tga \ gfx\ir_maa.tga \ gfx\ir_maester.tga \ gfx\ir_magekill.tga \ gfx\ir_marsh.tga \ gfx\ir_mh_masterh.tga \ gfx\ir_minstrel.tga \ gfx\ir_morning.tga \ gfx\ir_mstalc.tga \ gfx\ir_mystic.tga \ gfx\ir_ninjca.tga \ gfx\ir_noctm.tga \ gfx\ir_nope.tga \ gfx\ir_ocular.tga \ gfx\ir_ollam.tga \ gfx\ir_ootbi.tga \ gfx\ir_orcus.tga \ gfx\ir_orcwar.tga \ gfx\ir_psion.tga \ gfx\ir_psychic.tga \ gfx\ir_psywarrior.tga \ gfx\ir_ragemage.tga \ gfx\ir_redavng.tga \ gfx\ir_sacredfist.tga \ gfx\ir_samurai.tga \ gfx\ir_shadadept.tga \ gfx\ir_shadowblade.tga \ gfx\ir_shoudisc.tga \ gfx\ir_skullclan.tga \ gfx\ir_souleater.tga \ gfx\ir_soulknife.tga \ gfx\ir_sparcdlst.tga \ gfx\ir_spellfire.tga \ gfx\ir_spells.tga \ gfx\ir_stormlord.tga \ gfx\ir_swash.tga \ gfx\ir_talon_tiamat.tga \ gfx\ir_tempest.tga \ gfx\ir_templar.tga \ gfx\ir_tempus.tga \ gfx\ir_tfshad.tga \ gfx\ir_thrallherd.tga \ gfx\ir_tknight.tga \ gfx\ir_tog.tga \ gfx\ir_truename.tga \ gfx\ir_truenecro.tga \ gfx\ir_vassal.tga \ gfx\ir_warchief.tga \ gfx\ir_warlock.tga \ gfx\ir_warsling.tga \ gfx\ir_wilder.tga \ gfx\ir_wildwolf.tga \ gfx\ir_witch.tga \ gfx\ir_zuoken.tga \ gfx\is_aberrate.tga \ gfx\is_absorb_str.tga \ gfx\is_abyssal_mght.tga \ gfx\is_acid.tga \ gfx\is_acidorb.tga \ gfx\is_acidstorm.tga \ gfx\is_addiction.tga \ gfx\is_agnazscorch.tga \ gfx\is_alchemy.tga \ gfx\is_amber_sarc.tga \ gfx\is_angry_ache.tga \ gfx\is_anim_power.tga \ gfx\is_animobj.tga \ gfx\is_antimag.tga \ gfx\is_apoc_sky.tga \ gfx\is_arrow_bone.tga \ gfx\is_arrowstorm.tga \ gfx\is_avasclt.tga \ gfx\is_avasmass.tga \ gfx\is_ayaillas_rb.tga \ gfx\is_baletrans.tga \ gfx\is_bearrow.tga \ gfx\is_beguile.tga \ gfx\is_belburnbld.tga \ gfx\is_benitrans.tga \ gfx\is_bestow_wnd.tga \ gfx\is_bginfcri.tga \ gfx\is_bginfser.tga \ gfx\is_bigb_strfist.tga \ gfx\is_blank.tga \ gfx\is_blasphemy.tga \ gfx\is_bldfrz_arrow.tga \ gfx\is_blesswater.tga \ gfx\is_blnd_glory.tga \ gfx\is_bloodmar.tga \ gfx\is_blsflm.tga \ gfx\is_blur.tga \ gfx\is_bodak_birth.tga \ gfx\is_bolt_glory.tga \ gfx\is_boneblade.tga \ gfx\is_boneblast.tga \ gfx\is_brill_eman.tga \ gfx\is_burnbol.tga \ gfx\is_call_dretch.tga \ gfx\is_call_fserv.tga \ gfx\is_call_lemure.tga \ gfx\is_celest_bld.tga \ gfx\is_chaavs_lgh.tga \ gfx\is_chaodis.tga \ gfx\is_chaohamm.tga \ gfx\is_chilltouch.tga \ gfx\is_circchaos.tga \ gfx\is_circlaw.tga \ gfx\is_clarityofmind.tga \ gfx\is_claw_bebil.tga \ gfx\is_claws_savage.tga \ gfx\is_cloud_achai.tga \ gfx\is_clutch_orcus.tga \ gfx\is_cold.tga \ gfx\is_coldorb.tga \ gfx\is_coneacid.tga \ gfx\is_controlwea.tga \ gfx\is_convert_wand.tga \ gfx\is_convict.tga \ gfx\is_craftersbless.tga \ gfx\is_crafterscurse.tga \ gfx\is_createtatoo.tga \ gfx\is_crush_fs.tga \ gfx\is_curcrwndm.tga \ gfx\is_curimpbl.tga \ gfx\is_curlgtwm.tga \ gfx\is_curmodwm.tga \ gfx\is_curpfail.tga \ gfx\is_curse_phusk.tga \ gfx\is_curserwm.tga \ gfx\is_cursewater.tga \ gfx\is_cw_clear.tga \ gfx\is_cw_rain.tga \ gfx\is_cw_snow.tga \ gfx\is_damng_dark.tga \ gfx\is_dancg_web.tga \ gfx\is_dancinglights.tga \ gfx\is_dawn.tga \ gfx\is_dazemon.tga \ gfx\is_deathknell.tga \ gfx\is_demoncall.tga \ gfx\is_demonflesh.tga \ gfx\is_despoil.tga \ gfx\is_detaberr.tga \ gfx\is_detalign.tga \ gfx\is_detani.tga \ gfx\is_detect_chaos.tga \ gfx\is_detect_evil.tga \ gfx\is_detect_fave.tga \ gfx\is_detect_good.tga \ gfx\is_detect_law.tga \ gfx\is_detmag.tga \ gfx\is_detpoi.tga \ gfx\is_detund.tga \ gfx\is_devils_ego.tga \ gfx\is_devils_eye.tga \ gfx\is_dictum.tga \ gfx\is_dimanch.tga \ gfx\is_dimdoor.tga \ gfx\is_dimlock.tga \ gfx\is_disguise.tga \ gfx\is_disguise1.tga \ gfx\is_disguise2.tga \ gfx\is_disguise3.tga \ gfx\is_disguisel.tga \ gfx\is_disguiseo.tga \ gfx\is_disint.tga \ gfx\is_divine_insp.tga \ gfx\is_divine_sac.tga \ gfx\is_divprot.tga \ gfx\is_dmnd_spray.tga \ gfx\is_drac_might.tga \ gfx\is_dread_word.tga \ gfx\is_drgn_cloud.tga \ gfx\is_drug_resist.tga \ gfx\is_dth_thorns.tga \ gfx\is_ecto_enhnc.tga \ gfx\is_elation.tga \ gfx\is_elec.tga \ gfx\is_elecorb.tga \ gfx\is_energy_ebb.tga \ gfx\is_energz_ptn.tga \ gfx\is_engimm.tga \ gfx\is_enlarge.tga \ gfx\is_etern_tortr.tga \ gfx\is_evil_eye.tga \ gfx\is_evil_wthr.tga \ gfx\is_exalt_fury.tga \ gfx\is_exaltd_raim.tga \ gfx\is_extract_drug.tga \ gfx\is_eye_behold.tga \ gfx\is_eyes_avoral.tga \ gfx\is_faerie_fire.tga \ gfx\is_fang_vpk.tga \ gfx\is_fester_death.tga \ gfx\is_fiend_clarity.tga \ gfx\is_fire.tga \ gfx\is_fireburst.tga \ gfx\is_fireorb.tga \ gfx\is_flashburst.tga \ gfx\is_fldisk.tga \ gfx\is_flensing.tga \ gfx\is_flesh_armor.tga \ gfx\is_flesh_rip.tga \ gfx\is_forceblast.tga \ gfx\is_gdust.tga \ gfx\is_gfireburst.tga \ gfx\is_gharm.tga \ gfx\is_gheroism.tga \ gfx\is_ghl_gaunt.tga \ gfx\is_giantbearing.tga \ gfx\is_glibness.tga \ gfx\is_gr_resis.tga \ gfx\is_greenfire.tga \ gfx\is_grim_revng.tga \ gfx\is_grlum_arm.tga \ gfx\is_grplaall.tga \ gfx\is_grtr_tele.tga \ gfx\is_grtr_tele_grp.tga \ gfx\is_gutwrench.tga \ gfx\is_hailofstone.tga \ gfx\is_haltund.tga \ gfx\is_ham_right.tga \ gfx\is_heal_anmcomp.tga \ gfx\is_heartache.tga \ gfx\is_heartclutch.tga \ gfx\is_hellfire.tga \ gfx\is_hells_pwr.tga \ gfx\is_heroism.tga \ gfx\is_hf_storm.tga \ gfx\is_hideanim.tga \ gfx\is_hideundead.tga \ gfx\is_hounddoom.tga \ gfx\is_iceburst.tga \ gfx\is_ilyykmant.tga \ gfx\is_impmagearm.tga \ gfx\is_infcrwndm.tga \ gfx\is_infcrwnds.tga \ gfx\is_inflgtw.tga \ gfx\is_inflgtwm.tga \ gfx\is_infminw.tga \ gfx\is_infmodw.tga \ gfx\is_infmodwm.tga \ gfx\is_infserw.tga \ gfx\is_infserwm.tga \ gfx\is_insanity.tga \ gfx\is_ironskin.tga \ gfx\is_jump.tga \ gfx\is_lacidorb.tga \ gfx\is_lahms_fd.tga \ gfx\is_lantrn_lght.tga \ gfx\is_lcoldorb.tga \ gfx\is_lconvict.tga \ gfx\is_lcurimpbl.tga \ gfx\is_lcurpfail.tga \ gfx\is_lelecorb.tga \ gfx\is_less_shivtch.tga \ gfx\is_lfireorb.tga \ gfx\is_lionheart.tga \ gfx\is_liquid_pain.tga \ gfx\is_livund.tga \ gfx\is_longstrider.tga \ gfx\is_lowersr.tga \ gfx\is_lshlfat.tga \ gfx\is_lsonicorb.tga \ gfx\is_lsplaall.tga \ gfx\is_lst_jdgmnt.tga \ gfx\is_lullaby.tga \ gfx\is_lumins_arm.tga \ gfx\is_magstone.tga \ gfx\is_maid.tga \ gfx\is_markhunt.tga \ gfx\is_masenlarge.tga \ gfx\is_masochism.tga \ gfx\is_masreduce.tga \ gfx\is_maze.tga \ gfx\is_mbullstr.tga \ gfx\is_mcatgr.tga \ gfx\is_mcontagion.tga \ gfx\is_mcurecrit.tga \ gfx\is_mcurelit.tga \ gfx\is_mcuremod.tga \ gfx\is_mcureser.tga \ gfx\is_mdrown.tga \ gfx\is_meagspl.tga \ gfx\is_megmht.tga \ gfx\is_mendur.tga \ gfx\is_mfireshld.tga \ gfx\is_mfoxcun.tga \ gfx\is_mharm.tga \ gfx\is_mholdmon.tga \ gfx\is_mholdper.tga \ gfx\is_mirror_image.tga \ gfx\is_misdir.tga \ gfx\is_mmmansion.tga \ gfx\is_moral_undn.tga \ gfx\is_mount.tga \ gfx\is_mowlwis.tga \ gfx\is_msplresis.tga \ gfx\is_multra.tga \ gfx\is_mystbarrier.tga \ gfx\is_nec_aware.tga \ gfx\is_nec_bloat.tga \ gfx\is_nec_burst.tga \ gfx\is_nec_cyst.tga \ gfx\is_nec_domin.tga \ gfx\is_nec_empow.tga \ gfx\is_nec_erupt.tga \ gfx\is_nec_term.tga \ gfx\is_nght_caress.tga \ gfx\is_nondet.tga \ gfx\is_nybgentrem.tga \ gfx\is_nybmildadm.tga \ gfx\is_nybsternrep.tga \ gfx\is_nybwracas.tga \ gfx\is_otlk_ressphr.tga \ gfx\is_panacea.tga \ gfx\is_pestilence.tga \ gfx\is_phoenix_fire.tga \ gfx\is_power_leech.tga \ gfx\is_prchaos.tga \ gfx\is_prlaw.tga \ gfx\is_prot_arrows.tga \ gfx\is_pwblind.tga \ gfx\is_rain_btul.tga \ gfx\is_rain_ember.tga \ gfx\is_rain_rose.tga \ gfx\is_raptr_ruptr.tga \ gfx\is_ray_hope.tga \ gfx\is_readmagic.tga \ gfx\is_real_blind.tga \ gfx\is_recitat.tga \ gfx\is_red_fester.tga \ gfx\is_reduce.tga \ gfx\is_repvermin.tga \ gfx\is_res_resist.tga \ gfx\is_right_smt.tga \ gfx\is_rightmt.tga \ gfx\is_rotcurse_urf.tga \ gfx\is_rustgrsp.tga \ gfx\is_sarc_stone.tga \ gfx\is_seeth_eyebn.tga \ gfx\is_seques.tga \ gfx\is_serparrow.tga \ gfx\is_serpsigh.tga \ gfx\is_shad_arrow.tga \ gfx\is_shadspray.tga \ gfx\is_shillelagh.tga \ gfx\is_shiver_tch.tga \ gfx\is_shriveling.tga \ gfx\is_sickn_evil.tga \ gfx\is_sinsbbolt.tga \ gfx\is_slashdark.tga \ gfx\is_slaylive.tga \ gfx\is_smoke.tga \ gfx\is_snare.tga \ gfx\is_snsnow.tga \ gfx\is_snsnowsw.tga \ gfx\is_sobriety.tga \ gfx\is_sonic.tga \ gfx\is_sonicorb.tga \ gfx\is_sorrow.tga \ gfx\is_soulscour.tga \ gfx\is_sp_arcdef.tga \ gfx\is_sp_arcflurry.tga \ gfx\is_sp_dexatk.tga \ gfx\is_sp_enchwep.tga \ gfx\is_spchosewep.tga \ gfx\is_spellf_attack.tga \ gfx\is_spellf_quick1.tga \ gfx\is_spellf_quick2.tga \ gfx\is_spellf_quick3.tga \ gfx\is_spellf_rap_2.tga \ gfx\is_spellf_rap_3.tga \ gfx\is_sphereud.tga \ gfx\is_spiderskin.tga \ gfx\is_spore_vrock.tga \ gfx\is_spslay_arrow.tga \ gfx\is_starmantle.tga \ gfx\is_stn_scrch.tga \ gfx\is_stop_hrt.tga \ gfx\is_strm_shard.tga \ gfx\is_suggest.tga \ gfx\is_sumundead1.tga \ gfx\is_sumundead2.tga \ gfx\is_sumundead3.tga \ gfx\is_sumundead4.tga \ gfx\is_sumundead5.tga \ gfx\is_sunmantle.tga \ gfx\is_sup_resis.tga \ gfx\is_symb_death.tga \ gfx\is_symb_fear.tga \ gfx\is_symb_insan.tga \ gfx\is_symb_pain.tga \ gfx\is_symb_pers.tga \ gfx\is_symb_sleep.tga \ gfx\is_symb_stun.tga \ gfx\is_symb_weak.tga \ gfx\is_tch_juiblex.tga \ gfx\is_telecircle.tga \ gfx\is_telecircle_h.tga \ gfx\is_teleport.tga \ gfx\is_teleport_grp.tga \ gfx\is_thous_ndls.tga \ gfx\is_tng_baalz.tga \ gfx\is_tofalarm.tga \ gfx\is_tomb_light.tga \ gfx\is_transviaplnt.tga \ gfx\is_treeshape.tga \ gfx\is_truecast.tga \ gfx\is_twlght_lck.tga \ gfx\is_undet_align.tga \ gfx\is_undeta.tga \ gfx\is_unheavened.tga \ gfx\is_unholy_sword.tga \ gfx\is_unliv_weap.tga \ gfx\is_utterdark.tga \ gfx\is_vigor.tga \ gfx\is_vigor_circ.tga \ gfx\is_vigor_gr.tga \ gfx\is_vigor_lsr.tga \ gfx\is_vigor_mass.tga \ gfx\is_viscidglob.tga \ gfx\is_walldisp.tga \ gfx\is_wallfrost.tga \ gfx\is_wallprism.tga \ gfx\is_waterbrth.tga \ gfx\is_wave_exhous.tga \ gfx\is_wave_fatigue.tga \ gfx\is_wave_grief.tga \ gfx\is_wave_pain.tga \ gfx\is_weaponimpact.tga \ gfx\is_web.tga \ gfx\is_whirl_bld.tga \ gfx\is_wolfskin.tga \ gfx\is_wordchaos.tga \ gfx\is_wordofbal.tga \ gfx\is_wrack.tga \ gfx\is_wrtch_blght.tga \ gfx\isk_alchemy.tga \ gfx\isk_balance.tga \ gfx\isk_climb.tga \ gfx\isk_iaijutsu.tga \ gfx\isk_jump.tga \ gfx\isk_martlore.tga \ gfx\isk_sensemtv.tga \ gfx\isk_truespeak.tga \ gfx\iss_aberrate.tga \ gfx\iss_absorb_str.tga \ gfx\iss_abyssal_mght.tga \ gfx\iss_acid.tga \ gfx\iss_acidorb.tga \ gfx\iss_acidstorm.tga \ gfx\iss_addiction.tga \ gfx\iss_agnazscorch.tga \ gfx\iss_alarm.tga \ gfx\iss_amber_sarc.tga \ gfx\iss_angry_ache.tga \ gfx\iss_anim_power.tga \ gfx\iss_animobj.tga \ gfx\iss_antimag.tga \ gfx\iss_apoc_sky.tga \ gfx\iss_arrow_bone.tga \ gfx\iss_arrowstorm.tga \ gfx\iss_avasclt.tga \ gfx\iss_avasmass.tga \ gfx\iss_ayaillas_rb.tga \ gfx\iss_baletrans.tga \ gfx\iss_bearrow.tga \ gfx\iss_belburnbld.tga \ gfx\iss_benitrans.tga \ gfx\iss_bestow_wnd.tga \ gfx\iss_bigb_strfist.tga \ gfx\iss_blank.tga \ gfx\iss_blasphemy.tga \ gfx\iss_bldfrz_arrow.tga \ gfx\iss_blesswater.tga \ gfx\iss_blnd_glory.tga \ gfx\iss_bloodmar.tga \ gfx\iss_blsflm.tga \ gfx\iss_blur.tga \ gfx\iss_bodak_birth.tga \ gfx\iss_bolt_glory.tga \ gfx\iss_boneblade.tga \ gfx\iss_boneblast.tga \ gfx\iss_brill_eman.tga \ gfx\iss_burnbol.tga \ gfx\iss_call_dretch.tga \ gfx\iss_call_fserv.tga \ gfx\iss_call_lemure.tga \ gfx\iss_celest_bld.tga \ gfx\iss_chaavs_lgh.tga \ gfx\iss_chaodis.tga \ gfx\iss_chilltouch.tga \ gfx\iss_circchaos.tga \ gfx\iss_circlaw.tga \ gfx\iss_clarityofmin.tga \ gfx\iss_claw_bebil.tga \ gfx\iss_claws_savage.tga \ gfx\iss_cloud_achai.tga \ gfx\iss_clutch_orcus.tga \ gfx\iss_cold.tga \ gfx\iss_coldorb.tga \ gfx\iss_coneacid.tga \ gfx\iss_contag.tga \ gfx\iss_controlwea.tga \ gfx\iss_convert_wand.tga \ gfx\iss_convict.tga \ gfx\iss_crafterbless.tga \ gfx\iss_craftercurse.tga \ gfx\iss_createtatoo.tga \ gfx\iss_crush_fs.tga \ gfx\iss_curcrwnm.tga \ gfx\iss_curimpbl.tga \ gfx\iss_curlgtwm.tga \ gfx\iss_curmodwm.tga \ gfx\iss_curpfail.tga \ gfx\iss_curse_phusk.tga \ gfx\iss_curserwm.tga \ gfx\iss_cursewater.tga \ gfx\iss_damng_dark.tga \ gfx\iss_dancg_web.tga \ gfx\iss_dancinglight.tga \ gfx\iss_dawn.tga \ gfx\iss_dazemon.tga \ gfx\iss_deathknell.tga \ gfx\iss_demoncall.tga \ gfx\iss_demonflesh.tga \ gfx\iss_despoil.tga \ gfx\iss_detaberr.tga \ gfx\iss_detalign.tga \ gfx\iss_detani.tga \ gfx\iss_detect_chaos.tga \ gfx\iss_detect_evil.tga \ gfx\iss_detect_fave.tga \ gfx\iss_detect_good.tga \ gfx\iss_detect_law.tga \ gfx\iss_detmag.tga \ gfx\iss_detpoi.tga \ gfx\iss_detund.tga \ gfx\iss_devils_ego.tga \ gfx\iss_devils_eye.tga \ gfx\iss_dictum.tga \ gfx\iss_dimanch.tga \ gfx\iss_dimdoor.tga \ gfx\iss_dimlock.tga \ gfx\iss_disguise.tga \ gfx\iss_disint.tga \ gfx\iss_divine_insp.tga \ gfx\iss_divine_sac.tga \ gfx\iss_divprot.tga \ gfx\iss_dmnd_spray.tga \ gfx\iss_drac_might.tga \ gfx\iss_dread_word.tga \ gfx\iss_drgn_cloud.tga \ gfx\iss_drug_resist.tga \ gfx\iss_dth_thorns.tga \ gfx\iss_ecto_enhnc.tga \ gfx\iss_elation.tga \ gfx\iss_elec.tga \ gfx\iss_elecorb.tga \ gfx\iss_energy_ebb.tga \ gfx\iss_energz_ptn.tga \ gfx\iss_engimm.tga \ gfx\iss_enlarge.tga \ gfx\iss_etern_tortr.tga \ gfx\iss_evil_eye.tga \ gfx\iss_evil_wthr.tga \ gfx\iss_exalt_blnk.tga \ gfx\iss_exalt_fury.tga \ gfx\iss_exaltd_raim.tga \ gfx\iss_extract_drug.tga \ gfx\iss_eye_behold.tga \ gfx\iss_eyes_avoral.tga \ gfx\iss_faerie_fire.tga \ gfx\iss_fang_vpk.tga \ gfx\iss_fester_death.tga \ gfx\iss_fiend_clrty.tga \ gfx\iss_fire.tga \ gfx\iss_fireburst.tga \ gfx\iss_fireorb.tga \ gfx\iss_flashburst.tga \ gfx\iss_fldisk.tga \ gfx\iss_flensing.tga \ gfx\iss_flesh_armor.tga \ gfx\iss_flesh_rip.tga \ gfx\iss_forceblast.tga \ gfx\iss_gdust.tga \ gfx\iss_gfireburst.tga \ gfx\iss_gharm.tga \ gfx\iss_gheroism.tga \ gfx\iss_ghl_gaunt.tga \ gfx\iss_glibness.tga \ gfx\iss_gr_resis.tga \ gfx\iss_greenfire.tga \ gfx\iss_grim_revng.tga \ gfx\iss_grlum_arm.tga \ gfx\iss_grplaall.tga \ gfx\iss_grtr_tele.tga \ gfx\iss_gutwrench.tga \ gfx\iss_hailofstone.tga \ gfx\iss_haltund.tga \ gfx\iss_ham_right.tga \ gfx\iss_harm.tga \ gfx\iss_heal_anmcomp.tga \ gfx\iss_heartache.tga \ gfx\iss_heartclutch.tga \ gfx\iss_hellfire.tga \ gfx\iss_hells_pwr.tga \ gfx\iss_heroism.tga \ gfx\iss_hideanim.tga \ gfx\iss_hideundead.tga \ gfx\iss_hounddoom.tga \ gfx\iss_iceburst.tga \ gfx\iss_ilyykmant.tga \ gfx\iss_impmagearm.tga \ gfx\iss_infcrwnds.tga \ gfx\iss_infcrwnm.tga \ gfx\iss_inflgtw.tga \ gfx\iss_inflgtwm.tga \ gfx\iss_infminw.tga \ gfx\iss_infmodw.tga \ gfx\iss_infmodwm.tga \ gfx\iss_infserw.tga \ gfx\iss_infserwm.tga \ gfx\iss_insanity.tga \ gfx\iss_ironskin.tga \ gfx\iss_jump.tga \ gfx\iss_lacidorb.tga \ gfx\iss_lahms_fd.tga \ gfx\iss_lantrn_lght.tga \ gfx\iss_lcoldorb.tga \ gfx\iss_lconvict.tga \ gfx\iss_lcurimpbl.tga \ gfx\iss_lcurpfail.tga \ gfx\iss_lelecorb.tga \ gfx\iss_less_shivtch.tga \ gfx\iss_lfireorb.tga \ gfx\iss_lionheart.tga \ gfx\iss_liquid_pain.tga \ gfx\iss_livund.tga \ gfx\iss_longstrider.tga \ gfx\iss_lowersr.tga \ gfx\iss_lshlfat.tga \ gfx\iss_lsonicorb.tga \ gfx\iss_lsplaall.tga \ gfx\iss_lst_jdgmnt.tga \ gfx\iss_lullaby.tga \ gfx\iss_lumins_arm.tga \ gfx\iss_magstone.tga \ gfx\iss_maid.tga \ gfx\iss_markhunt.tga \ gfx\iss_masenlarge.tga \ gfx\iss_masochism.tga \ gfx\iss_masreduce.tga \ gfx\iss_maze.tga \ gfx\iss_mbullstr.tga \ gfx\iss_mcatgr.tga \ gfx\iss_mcurecrit.tga \ gfx\iss_mcurelit.tga \ gfx\iss_mcuremod.tga \ gfx\iss_mcureser.tga \ gfx\iss_mdrown.tga \ gfx\iss_meagspl.tga \ gfx\iss_megmht.tga \ gfx\iss_mendur.tga \ gfx\iss_mfireshld.tga \ gfx\iss_mfoxcun.tga \ gfx\iss_mholdmon.tga \ gfx\iss_mholdper.tga \ gfx\iss_mirror_image.tga \ gfx\iss_misdir.tga \ gfx\iss_mmmansion.tga \ gfx\iss_moral_undn.tga \ gfx\iss_mount.tga \ gfx\iss_mowlwis.tga \ gfx\iss_msplresis.tga \ gfx\iss_multra.tga \ gfx\iss_mystbarrier.tga \ gfx\iss_nec_aware.tga \ gfx\iss_nec_bloat.tga \ gfx\iss_nec_burst.tga \ gfx\iss_nec_cyst.tga \ gfx\iss_nec_domin.tga \ gfx\iss_nec_empow.tga \ gfx\iss_nec_erupt.tga \ gfx\iss_nec_term.tga \ gfx\iss_nght_caress.tga \ gfx\iss_nondet.tga \ gfx\iss_nybgentrem.tga \ gfx\iss_nybmildadm.tga \ gfx\iss_nybsternrep.tga \ gfx\iss_nybwracas.tga \ gfx\iss_otlk_ressphr.tga \ gfx\iss_panacea.tga \ gfx\iss_pestilence.tga \ gfx\iss_phoenix_fire.tga \ gfx\iss_power_leech.tga \ gfx\iss_prchaos.tga \ gfx\iss_previl.tga \ gfx\iss_prgood.tga \ gfx\iss_prlaw.tga \ gfx\iss_prot_arrows.tga \ gfx\iss_pwblind.tga \ gfx\iss_rain_btul.tga \ gfx\iss_rain_ember.tga \ gfx\iss_rain_rose.tga \ gfx\iss_raptr_ruptr.tga \ gfx\iss_ray_hope.tga \ gfx\iss_readmagic.tga \ gfx\iss_real_blind.tga \ gfx\iss_recitat.tga \ gfx\iss_red_fester.tga \ gfx\iss_reduce.tga \ gfx\iss_repvermin.tga \ gfx\iss_res_resist.tga \ gfx\iss_right_smt.tga \ gfx\iss_rightmt.tga \ gfx\iss_rotcurse_urf.tga \ gfx\iss_rustgrsp.tga \ gfx\iss_sarc_stone.tga \ gfx\iss_seeth_eyebn.tga \ gfx\iss_seques.tga \ gfx\iss_serparrow.tga \ gfx\iss_serpsigh.tga \ gfx\iss_shad_arrow.tga \ gfx\iss_shadspray.tga \ gfx\iss_shillelagh.tga \ gfx\iss_shiver_tch.tga \ gfx\iss_shriveling.tga \ gfx\iss_sickn_evil.tga \ gfx\iss_sinsbbolt.tga \ gfx\iss_slashdark.tga \ gfx\iss_snare.tga \ gfx\iss_snsnow.tga \ gfx\iss_snsnowsw.tga \ gfx\iss_sobriety.tga \ gfx\iss_sonic.tga \ gfx\iss_sonicorb.tga \ gfx\iss_sorrow.tga \ gfx\iss_soulscour.tga \ gfx\iss_sphereud.tga \ gfx\iss_spidaffin.tga \ gfx\iss_spiderskin.tga \ gfx\iss_spore_vrock.tga \ gfx\iss_spslay_arrow.tga \ gfx\iss_starmantle.tga \ gfx\iss_stn_scrch.tga \ gfx\iss_stop_hrt.tga \ gfx\iss_strm_shard.tga \ gfx\iss_sumundead1.tga \ gfx\iss_sumundead2.tga \ gfx\iss_sumundead3.tga \ gfx\iss_sumundead4.tga \ gfx\iss_sumundead5.tga \ gfx\iss_sunmantle.tga \ gfx\iss_sup_resis.tga \ gfx\iss_symb_death.tga \ gfx\iss_symb_fear.tga \ gfx\iss_symb_insan.tga \ gfx\iss_symb_pain.tga \ gfx\iss_symb_pers.tga \ gfx\iss_symb_sleep.tga \ gfx\iss_symb_stun.tga \ gfx\iss_symb_weak.tga \ gfx\iss_tch_juiblex.tga \ gfx\iss_telecircle.tga \ gfx\iss_teleport.tga \ gfx\iss_teleport_grp.tga \ gfx\iss_thous_ndls.tga \ gfx\iss_tng_baalz.tga \ gfx\iss_tomb_light.tga \ gfx\iss_transviaplnt.tga \ gfx\iss_treeshape.tga \ gfx\iss_truecast.tga \ gfx\iss_twlght_lck.tga \ gfx\iss_undet_align.tga \ gfx\iss_undeta.tga \ gfx\iss_unheavened.tga \ gfx\iss_unholy_sword.tga \ gfx\iss_unliv_weap.tga \ gfx\iss_utterdark.tga \ gfx\iss_vigor.tga \ gfx\iss_vigor_circ.tga \ gfx\iss_vigor_gr.tga \ gfx\iss_vigor_lsr.tga \ gfx\iss_vigor_mass.tga \ gfx\iss_viscidglob.tga \ gfx\iss_walldisp.tga \ gfx\iss_wallfrost.tga \ gfx\iss_wallprism.tga \ gfx\iss_waterbrth.tga \ gfx\iss_wave_exhous.tga \ gfx\iss_wave_fatigue.tga \ gfx\iss_wave_grief.tga \ gfx\iss_wave_pain.tga \ gfx\iss_weaponimpact.tga \ gfx\iss_webspin.tga \ gfx\iss_whirl_bld.tga \ gfx\iss_wolfskin.tga \ gfx\iss_wordchaos.tga \ gfx\iss_wordofbal.tga \ gfx\iss_wrack.tga \ gfx\iss_wrtch_blght.tga \ gfx\iss_yochform.tga \ gfx\iss_zin_carla.tga \ gfx\iwblnn.tga \ gfx\iwblnn_b_011.tga \ gfx\iwblnn_b_012.tga \ gfx\iwblnn_b_013.tga \ gfx\iwblnn_b_014.tga \ gfx\iwblnn_b_021.tga \ gfx\iwblnn_b_022.tga \ gfx\iwblnn_b_023.tga \ gfx\iwblnn_b_024.tga \ gfx\iwblnn_b_031.tga \ gfx\iwblnn_b_032.tga \ gfx\iwblnn_b_033.tga \ gfx\iwblnn_b_034.tga \ gfx\iwblnn_b_051.tga \ gfx\iwblnn_b_052.tga \ gfx\iwblnn_b_053.tga \ gfx\iwblnn_b_054.tga \ gfx\iwblnn_m_011.tga \ gfx\iwblnn_m_012.tga \ gfx\iwblnn_m_013.tga \ gfx\iwblnn_m_014.tga \ gfx\iwblnn_m_021.tga \ gfx\iwblnn_m_022.tga \ gfx\iwblnn_m_023.tga \ gfx\iwblnn_m_024.tga \ gfx\iwblnn_m_031.tga \ gfx\iwblnn_m_032.tga \ gfx\iwblnn_m_033.tga \ gfx\iwblnn_m_034.tga \ gfx\iwblnn_m_051.tga \ gfx\iwblnn_m_052.tga \ gfx\iwblnn_m_053.tga \ gfx\iwblnn_m_054.tga \ gfx\iwblnn_t_011.tga \ gfx\iwblnn_t_012.tga \ gfx\iwblnn_t_013.tga \ gfx\iwblnn_t_014.tga \ gfx\iwblnn_t_021.tga \ gfx\iwblnn_t_022.tga \ gfx\iwblnn_t_023.tga \ gfx\iwblnn_t_024.tga \ gfx\iwblnn_t_031.tga \ gfx\iwblnn_t_032.tga \ gfx\iwblnn_t_033.tga \ gfx\iwblnn_t_034.tga \ gfx\iwblnn_t_051.tga \ gfx\iwblnn_t_052.tga \ gfx\iwblnn_t_053.tga \ gfx\iwblnn_t_054.tga \ gfx\iwblph.tga \ gfx\iwblph_b_011.tga \ gfx\iwblph_b_012.tga \ gfx\iwblph_b_013.tga \ gfx\iwblph_b_014.tga \ gfx\iwblph_b_021.tga \ gfx\iwblph_b_022.tga \ gfx\iwblph_b_023.tga \ gfx\iwblph_b_024.tga \ gfx\iwblph_b_031.tga \ gfx\iwblph_b_032.tga \ gfx\iwblph_b_033.tga \ gfx\iwblph_b_034.tga \ gfx\iwblph_b_041.tga \ gfx\iwblph_b_042.tga \ gfx\iwblph_b_043.tga \ gfx\iwblph_b_044.tga \ gfx\iwblph_m_011.tga \ gfx\iwblph_m_012.tga \ gfx\iwblph_m_013.tga \ gfx\iwblph_m_014.tga \ gfx\iwblph_m_021.tga \ gfx\iwblph_m_022.tga \ gfx\iwblph_m_023.tga \ gfx\iwblph_m_024.tga \ gfx\iwblph_m_031.tga \ gfx\iwblph_m_032.tga \ gfx\iwblph_m_033.tga \ gfx\iwblph_m_034.tga \ gfx\iwblph_m_041.tga \ gfx\iwblph_m_042.tga \ gfx\iwblph_m_043.tga \ gfx\iwblph_m_044.tga \ gfx\iwblph_t_011.tga \ gfx\iwblph_t_012.tga \ gfx\iwblph_t_013.tga \ gfx\iwblph_t_014.tga \ gfx\iwblph_t_021.tga \ gfx\iwblph_t_022.tga \ gfx\iwblph_t_023.tga \ gfx\iwblph_t_024.tga \ gfx\iwblph_t_031.tga \ gfx\iwblph_t_032.tga \ gfx\iwblph_t_033.tga \ gfx\iwblph_t_034.tga \ gfx\iwblph_t_041.tga \ gfx\iwblph_t_042.tga \ gfx\iwblph_t_043.tga \ gfx\iwblph_t_044.tga \ gfx\iwblpl.tga \ gfx\iwblpl_b_011.tga \ gfx\iwblpl_b_012.tga \ gfx\iwblpl_b_013.tga \ gfx\iwblpl_b_014.tga \ gfx\iwblpl_b_021.tga \ gfx\iwblpl_b_022.tga \ gfx\iwblpl_b_023.tga \ gfx\iwblpl_b_024.tga \ gfx\iwblpl_b_031.tga \ gfx\iwblpl_b_032.tga \ gfx\iwblpl_b_033.tga \ gfx\iwblpl_b_034.tga \ gfx\iwblpl_b_041.tga \ gfx\iwblpl_b_042.tga \ gfx\iwblpl_b_043.tga \ gfx\iwblpl_b_044.tga \ gfx\iwblpl_m_011.tga \ gfx\iwblpl_m_012.tga \ gfx\iwblpl_m_013.tga \ gfx\iwblpl_m_014.tga \ gfx\iwblpl_m_021.tga \ gfx\iwblpl_m_022.tga \ gfx\iwblpl_m_023.tga \ gfx\iwblpl_m_024.tga \ gfx\iwblpl_m_031.tga \ gfx\iwblpl_m_032.tga \ gfx\iwblpl_m_033.tga \ gfx\iwblpl_m_034.tga \ gfx\iwblpl_m_041.tga \ gfx\iwblpl_m_042.tga \ gfx\iwblpl_m_043.tga \ gfx\iwblpl_m_044.tga \ gfx\iwblpl_t_011.tga \ gfx\iwblpl_t_012.tga \ gfx\iwblpl_t_013.tga \ gfx\iwblpl_t_014.tga \ gfx\iwblpl_t_021.tga \ gfx\iwblpl_t_022.tga \ gfx\iwblpl_t_023.tga \ gfx\iwblpl_t_024.tga \ gfx\iwblpl_t_031.tga \ gfx\iwblpl_t_032.tga \ gfx\iwblpl_t_033.tga \ gfx\iwblpl_t_034.tga \ gfx\iwblpl_t_041.tga \ gfx\iwblpl_t_042.tga \ gfx\iwblpl_t_043.tga \ gfx\iwblpl_t_044.tga \ gfx\iwblpl_t_051.tga \ gfx\iwblpl_t_052.tga \ gfx\iwblpl_t_053.tga \ gfx\iwblpl_t_054.tga \ gfx\iwpltr_b_011.tga \ gfx\iwpltr_b_012.tga \ gfx\iwpltr_b_013.tga \ gfx\iwpltr_b_014.tga \ gfx\iwpltr_b_021.tga \ gfx\iwpltr_b_022.tga \ gfx\iwpltr_b_023.tga \ gfx\iwpltr_b_024.tga \ gfx\iwpltr_b_031.tga \ gfx\iwpltr_b_032.tga \ gfx\iwpltr_b_033.tga \ gfx\iwpltr_b_034.tga \ gfx\iwpltr_b_041.tga \ gfx\iwpltr_b_042.tga \ gfx\iwpltr_b_043.tga \ gfx\iwpltr_b_044.tga \ gfx\iwpltr_b_061.tga \ gfx\iwpltr_b_062.tga \ gfx\iwpltr_b_063.tga \ gfx\iwpltr_b_064.tga \ gfx\iwpltr_b_071.tga \ gfx\iwpltr_b_072.tga \ gfx\iwpltr_b_073.tga \ gfx\iwpltr_b_074.tga \ gfx\iwpltr_b_081.tga \ gfx\iwpltr_b_082.tga \ gfx\iwpltr_b_083.tga \ gfx\iwpltr_b_084.tga \ gfx\iwpltr_b_091.tga \ gfx\iwpltr_b_092.tga \ gfx\iwpltr_b_093.tga \ gfx\iwpltr_b_094.tga \ gfx\iwpltr_m_011.tga \ gfx\iwpltr_m_012.tga \ gfx\iwpltr_m_013.tga \ gfx\iwpltr_m_014.tga \ gfx\iwpltr_m_021.tga \ gfx\iwpltr_m_022.tga \ gfx\iwpltr_m_023.tga \ gfx\iwpltr_m_024.tga \ gfx\iwpltr_m_031.tga \ gfx\iwpltr_m_032.tga \ gfx\iwpltr_m_033.tga \ gfx\iwpltr_m_034.tga \ gfx\iwpltr_m_041.tga \ gfx\iwpltr_m_042.tga \ gfx\iwpltr_m_043.tga \ gfx\iwpltr_m_044.tga \ gfx\iwpltr_m_061.tga \ gfx\iwpltr_m_062.tga \ gfx\iwpltr_m_063.tga \ gfx\iwpltr_m_064.tga \ gfx\iwpltr_m_071.tga \ gfx\iwpltr_m_072.tga \ gfx\iwpltr_m_073.tga \ gfx\iwpltr_m_074.tga \ gfx\iwpltr_m_081.tga \ gfx\iwpltr_m_082.tga \ gfx\iwpltr_m_083.tga \ gfx\iwpltr_m_084.tga \ gfx\iwpltr_m_091.tga \ gfx\iwpltr_m_092.tga \ gfx\iwpltr_m_093.tga \ gfx\iwpltr_m_094.tga \ gfx\iwpltr_t_011.tga \ gfx\iwpltr_t_012.tga \ gfx\iwpltr_t_013.tga \ gfx\iwpltr_t_014.tga \ gfx\iwpltr_t_021.tga \ gfx\iwpltr_t_022.tga \ gfx\iwpltr_t_023.tga \ gfx\iwpltr_t_024.tga \ gfx\iwpltr_t_031.tga \ gfx\iwpltr_t_032.tga \ gfx\iwpltr_t_033.tga \ gfx\iwpltr_t_034.tga \ gfx\iwpltr_t_041.tga \ gfx\iwpltr_t_042.tga \ gfx\iwpltr_t_043.tga \ gfx\iwpltr_t_044.tga \ gfx\iwpltr_t_061.tga \ gfx\iwpltr_t_062.tga \ gfx\iwpltr_t_063.tga \ gfx\iwpltr_t_064.tga \ gfx\iwpltr_t_071.tga \ gfx\iwpltr_t_072.tga \ gfx\iwpltr_t_073.tga \ gfx\iwpltr_t_074.tga \ gfx\iwpltr_t_081.tga \ gfx\iwpltr_t_082.tga \ gfx\iwpltr_t_083.tga \ gfx\iwpltr_t_084.tga \ gfx\iwpltr_t_091.tga \ gfx\iwpltr_t_092.tga \ gfx\iwpltr_t_093.tga \ gfx\iwpltr_t_094.tga \ gfx\iwspgd.tga \ gfx\iwspgd_b_011.tga \ gfx\iwspgd_b_012.tga \ gfx\iwspgd_b_013.tga \ gfx\iwspgd_b_014.tga \ gfx\iwspgd_m_011.tga \ gfx\iwspgd_m_012.tga \ gfx\iwspgd_m_013.tga \ gfx\iwspgd_m_014.tga \ gfx\iwspgd_t_011.tga \ gfx\iwspgd_t_012.tga \ gfx\iwspgd_t_013.tga \ gfx\iwspgd_t_014.tga \ gfx\iwspsp_b_011.tga \ gfx\iwspsp_b_012.tga \ gfx\iwspsp_b_013.tga \ gfx\iwspsp_b_014.tga \ gfx\iwspsp_m_011.tga \ gfx\iwspsp_m_012.tga \ gfx\iwspsp_m_013.tga \ gfx\iwspsp_m_014.tga \ gfx\iwspsp_t_011.tga \ gfx\iwspsp_t_012.tga \ gfx\iwspsp_t_013.tga \ gfx\iwspsp_t_014.tga \ gfx\iwswdp_b_011.tga \ gfx\iwswdp_b_012.tga \ gfx\iwswdp_b_013.tga \ gfx\iwswdp_b_014.tga \ gfx\iwswdp_b_021.tga \ gfx\iwswdp_b_022.tga \ gfx\iwswdp_b_023.tga \ gfx\iwswdp_b_024.tga \ gfx\iwswdp_b_031.tga \ gfx\iwswdp_b_032.tga \ gfx\iwswdp_b_033.tga \ gfx\iwswdp_b_034.tga \ gfx\iwswdp_b_041.tga \ gfx\iwswdp_b_042.tga \ gfx\iwswdp_b_043.tga \ gfx\iwswdp_b_044.tga \ gfx\iwswdp_m_011.tga \ gfx\iwswdp_m_012.tga \ gfx\iwswdp_m_013.tga \ gfx\iwswdp_m_014.tga \ gfx\iwswdp_m_021.tga \ gfx\iwswdp_m_022.tga \ gfx\iwswdp_m_023.tga \ gfx\iwswdp_m_024.tga \ gfx\iwswdp_m_031.tga \ gfx\iwswdp_m_032.tga \ gfx\iwswdp_m_033.tga \ gfx\iwswdp_m_034.tga \ gfx\iwswdp_m_041.tga \ gfx\iwswdp_m_042.tga \ gfx\iwswdp_m_043.tga \ gfx\iwswdp_m_044.tga \ gfx\iwswdp_t_011.tga \ gfx\iwswdp_t_012.tga \ gfx\iwswdp_t_013.tga \ gfx\iwswdp_t_014.tga \ gfx\iwswdp_t_021.tga \ gfx\iwswdp_t_022.tga \ gfx\iwswdp_t_023.tga \ gfx\iwswdp_t_024.tga \ gfx\iwswdp_t_031.tga \ gfx\iwswdp_t_032.tga \ gfx\iwswdp_t_033.tga \ gfx\iwswdp_t_034.tga \ gfx\iwswdp_t_041.tga \ gfx\iwswdp_t_042.tga \ gfx\iwswdp_t_043.tga \ gfx\iwswdp_t_044.tga \ gfx\iwswec_b_011.tga \ gfx\iwswec_b_012.tga \ gfx\iwswec_b_013.tga \ gfx\iwswec_m_011.tga \ gfx\iwswec_m_012.tga \ gfx\iwswec_m_013.tga \ gfx\iwswec_t_011.tga \ gfx\iwswec_t_012.tga \ gfx\iwswec_t_013.tga \ gfx\iwswfa.tga \ gfx\iwswfa_b_011.tga \ gfx\iwswfa_b_012.tga \ gfx\iwswfa_b_013.tga \ gfx\iwswfa_b_014.tga \ gfx\iwswfa_b_021.tga \ gfx\iwswfa_b_022.tga \ gfx\iwswfa_b_023.tga \ gfx\iwswfa_b_024.tga \ gfx\iwswfa_b_031.tga \ gfx\iwswfa_b_032.tga \ gfx\iwswfa_b_033.tga \ gfx\iwswfa_b_034.tga \ gfx\iwswfa_b_041.tga \ gfx\iwswfa_b_042.tga \ gfx\iwswfa_b_043.tga \ gfx\iwswfa_b_044.tga \ gfx\iwswfa_b_051.tga \ gfx\iwswfa_b_052.tga \ gfx\iwswfa_b_053.tga \ gfx\iwswfa_b_054.tga \ gfx\iwswfa_m_011.tga \ gfx\iwswfa_m_012.tga \ gfx\iwswfa_m_013.tga \ gfx\iwswfa_m_014.tga \ gfx\iwswfa_m_021.tga \ gfx\iwswfa_m_022.tga \ gfx\iwswfa_m_023.tga \ gfx\iwswfa_m_024.tga \ gfx\iwswfa_m_031.tga \ gfx\iwswfa_m_032.tga \ gfx\iwswfa_m_033.tga \ gfx\iwswfa_m_034.tga \ gfx\iwswfa_m_041.tga \ gfx\iwswfa_m_042.tga \ gfx\iwswfa_m_043.tga \ gfx\iwswfa_m_044.tga \ gfx\iwswfa_m_051.tga \ gfx\iwswfa_m_052.tga \ gfx\iwswfa_m_053.tga \ gfx\iwswfa_m_054.tga \ gfx\iwswfa_t_011.tga \ gfx\iwswfa_t_012.tga \ gfx\iwswfa_t_013.tga \ gfx\iwswfa_t_014.tga \ gfx\iwswfa_t_021.tga \ gfx\iwswfa_t_022.tga \ gfx\iwswfa_t_023.tga \ gfx\iwswfa_t_024.tga \ gfx\iwswfa_t_031.tga \ gfx\iwswfa_t_032.tga \ gfx\iwswfa_t_033.tga \ gfx\iwswfa_t_034.tga \ gfx\iwswfa_t_041.tga \ gfx\iwswfa_t_042.tga \ gfx\iwswfa_t_043.tga \ gfx\iwswfa_t_044.tga \ gfx\iwswfa_t_051.tga \ gfx\iwswfa_t_052.tga \ gfx\iwswfa_t_053.tga \ gfx\iwswfa_t_054.tga \ gfx\iwswgs_b_071.tga \ gfx\iwswgs_b_072.tga \ gfx\iwswgs_b_073.tga \ gfx\iwswgs_m_071.tga \ gfx\iwswgs_m_072.tga \ gfx\iwswgs_m_073.tga \ gfx\iwswgs_t_071.tga \ gfx\iwswgs_t_072.tga \ gfx\iwswgs_t_073.tga \ gfx\iwswls_b_091.tga \ gfx\iwswls_b_092.tga \ gfx\iwswls_b_093.tga \ gfx\iwswls_m_091.tga \ gfx\iwswls_m_092.tga \ gfx\iwswls_m_093.tga \ gfx\iwswls_t_091.tga \ gfx\iwswls_t_092.tga \ gfx\iwswls_t_093.tga \ gfx\iwswsi_b_011.tga \ gfx\iwswsi_b_012.tga \ gfx\iwswsi_b_013.tga \ gfx\iwswsi_b_014.tga \ gfx\iwswsi_b_021.tga \ gfx\iwswsi_b_022.tga \ gfx\iwswsi_b_023.tga \ gfx\iwswsi_b_024.tga \ gfx\iwswsi_b_031.tga \ gfx\iwswsi_b_032.tga \ gfx\iwswsi_b_033.tga \ gfx\iwswsi_b_034.tga \ gfx\iwswsi_b_041.tga \ gfx\iwswsi_b_042.tga \ gfx\iwswsi_b_043.tga \ gfx\iwswsi_b_044.tga \ gfx\iwswsi_b_061.tga \ gfx\iwswsi_b_062.tga \ gfx\iwswsi_b_063.tga \ gfx\iwswsi_b_064.tga \ gfx\iwswsi_b_071.tga \ gfx\iwswsi_b_072.tga \ gfx\iwswsi_b_073.tga \ gfx\iwswsi_b_074.tga \ gfx\iwswsi_m_011.tga \ gfx\iwswsi_m_012.tga \ gfx\iwswsi_m_013.tga \ gfx\iwswsi_m_014.tga \ gfx\iwswsi_m_041.tga \ gfx\iwswsi_m_042.tga \ gfx\iwswsi_m_043.tga \ gfx\iwswsi_m_044.tga \ gfx\iwswsi_m_061.tga \ gfx\iwswsi_m_062.tga \ gfx\iwswsi_m_063.tga \ gfx\iwswsi_m_064.tga \ gfx\iwswsi_m_071.tga \ gfx\iwswsi_m_072.tga \ gfx\iwswsi_m_073.tga \ gfx\iwswsi_m_074.tga \ gfx\iwswsi_t_011.tga \ gfx\iwswsi_t_012.tga \ gfx\iwswsi_t_013.tga \ gfx\iwswsi_t_014.tga \ gfx\iwswsi_t_021.tga \ gfx\iwswsi_t_022.tga \ gfx\iwswsi_t_023.tga \ gfx\iwswsi_t_024.tga \ gfx\iwswsi_t_041.tga \ gfx\iwswsi_t_042.tga \ gfx\iwswsi_t_043.tga \ gfx\iwswsi_t_044.tga \ gfx\iwswsi_t_061.tga \ gfx\iwswsi_t_062.tga \ gfx\iwswsi_t_063.tga \ gfx\iwswsi_t_064.tga \ gfx\iwswsi_t_071.tga \ gfx\iwswsi_t_072.tga \ gfx\iwswsi_t_073.tga \ gfx\iwswsi_t_074.tga \ gfx\iwxblma.tga \ gfx\iwxblma_b_111.tga \ gfx\iwxblma_b_112.tga \ gfx\iwxblma_b_113.tga \ gfx\iwxblma_b_114.tga \ gfx\iwxblma_b_121.tga \ gfx\iwxblma_b_122.tga \ gfx\iwxblma_b_123.tga \ gfx\iwxblma_b_124.tga \ gfx\iwxblma_b_131.tga \ gfx\iwxblma_b_132.tga \ gfx\iwxblma_b_133.tga \ gfx\iwxblma_b_134.tga \ gfx\iwxblma_b_141.tga \ gfx\iwxblma_b_142.tga \ gfx\iwxblma_b_143.tga \ gfx\iwxblma_b_144.tga \ gfx\iwxblma_b_151.tga \ gfx\iwxblma_b_152.tga \ gfx\iwxblma_b_153.tga \ gfx\iwxblma_b_154.tga \ gfx\iwxblma_b_161.tga \ gfx\iwxblma_b_162.tga \ gfx\iwxblma_b_163.tga \ gfx\iwxblma_b_164.tga \ gfx\iwxblma_b_171.tga \ gfx\iwxblma_b_172.tga \ gfx\iwxblma_b_173.tga \ gfx\iwxblma_b_174.tga \ gfx\iwxblma_b_181.tga \ gfx\iwxblma_b_182.tga \ gfx\iwxblma_b_183.tga \ gfx\iwxblma_b_184.tga \ gfx\iwxblma_m_111.tga \ gfx\iwxblma_m_112.tga \ gfx\iwxblma_m_113.tga \ gfx\iwxblma_m_114.tga \ gfx\iwxblma_m_121.tga \ gfx\iwxblma_m_122.tga \ gfx\iwxblma_m_123.tga \ gfx\iwxblma_m_124.tga \ gfx\iwxblma_m_131.tga \ gfx\iwxblma_m_132.tga \ gfx\iwxblma_m_133.tga \ gfx\iwxblma_m_134.tga \ gfx\iwxblma_m_141.tga \ gfx\iwxblma_m_142.tga \ gfx\iwxblma_m_143.tga \ gfx\iwxblma_m_144.tga \ gfx\iwxblma_m_151.tga \ gfx\iwxblma_m_152.tga \ gfx\iwxblma_m_153.tga \ gfx\iwxblma_m_154.tga \ gfx\iwxblma_t_111.tga \ gfx\iwxblma_t_112.tga \ gfx\iwxblma_t_113.tga \ gfx\iwxblma_t_114.tga \ gfx\iwxblma_t_121.tga \ gfx\iwxblma_t_122.tga \ gfx\iwxblma_t_123.tga \ gfx\iwxblma_t_124.tga \ gfx\iwxblma_t_131.tga \ gfx\iwxblma_t_132.tga \ gfx\iwxblma_t_133.tga \ gfx\iwxblma_t_134.tga \ gfx\iwxblma_t_141.tga \ gfx\iwxblma_t_142.tga \ gfx\iwxblma_t_143.tga \ gfx\iwxblma_t_144.tga \ gfx\iwxblma_t_151.tga \ gfx\iwxblma_t_152.tga \ gfx\iwxblma_t_153.tga \ gfx\iwxblma_t_154.tga \ gfx\iwxblmh.tga \ gfx\iwxblmh_b_111.tga \ gfx\iwxblmh_b_112.tga \ gfx\iwxblmh_b_113.tga \ gfx\iwxblmh_b_114.tga \ gfx\iwxblmh_b_121.tga \ gfx\iwxblmh_b_122.tga \ gfx\iwxblmh_b_123.tga \ gfx\iwxblmh_b_124.tga \ gfx\iwxblmh_b_131.tga \ gfx\iwxblmh_b_132.tga \ gfx\iwxblmh_b_133.tga \ gfx\iwxblmh_b_134.tga \ gfx\iwxblmh_b_141.tga \ gfx\iwxblmh_b_142.tga \ gfx\iwxblmh_b_143.tga \ gfx\iwxblmh_b_144.tga \ gfx\iwxblmh_m_111.tga \ gfx\iwxblmh_m_112.tga \ gfx\iwxblmh_m_113.tga \ gfx\iwxblmh_m_114.tga \ gfx\iwxblmh_m_121.tga \ gfx\iwxblmh_m_122.tga \ gfx\iwxblmh_m_123.tga \ gfx\iwxblmh_m_124.tga \ gfx\iwxblmh_m_131.tga \ gfx\iwxblmh_m_132.tga \ gfx\iwxblmh_m_133.tga \ gfx\iwxblmh_m_134.tga \ gfx\iwxblmh_m_141.tga \ gfx\iwxblmh_m_142.tga \ gfx\iwxblmh_m_143.tga \ gfx\iwxblmh_m_144.tga \ gfx\iwxblmh_t_111.tga \ gfx\iwxblmh_t_112.tga \ gfx\iwxblmh_t_113.tga \ gfx\iwxblmh_t_114.tga \ gfx\iwxblmh_t_121.tga \ gfx\iwxblmh_t_122.tga \ gfx\iwxblmh_t_123.tga \ gfx\iwxblmh_t_124.tga \ gfx\iwxblmh_t_131.tga \ gfx\iwxblmh_t_132.tga \ gfx\iwxblmh_t_133.tga \ gfx\iwxblmh_t_134.tga \ gfx\iwxblmh_t_141.tga \ gfx\iwxblmh_t_142.tga \ gfx\iwxblmh_t_143.tga \ gfx\iwxblmh_t_144.tga \ gfx\iwxblmh_t_151.tga \ gfx\iwxblmh_t_152.tga \ gfx\iwxblmh_t_153.tga \ gfx\iwxblmh_t_154.tga \ gfx\iwxdbsc_b_111.tga \ gfx\iwxdbsc_b_112.tga \ gfx\iwxdbsc_b_113.tga \ gfx\iwxdbsc_b_114.tga \ gfx\iwxdbsc_b_121.tga \ gfx\iwxdbsc_b_122.tga \ gfx\iwxdbsc_b_123.tga \ gfx\iwxdbsc_b_124.tga \ gfx\iwxdbsc_b_131.tga \ gfx\iwxdbsc_b_132.tga \ gfx\iwxdbsc_b_133.tga \ gfx\iwxdbsc_b_134.tga \ gfx\iwxdbsc_b_141.tga \ gfx\iwxdbsc_b_142.tga \ gfx\iwxdbsc_b_143.tga \ gfx\iwxdbsc_b_144.tga \ gfx\iwxdbsc_m_111.tga \ gfx\iwxdbsc_m_112.tga \ gfx\iwxdbsc_m_113.tga \ gfx\iwxdbsc_m_114.tga \ gfx\iwxdbsc_m_121.tga \ gfx\iwxdbsc_m_122.tga \ gfx\iwxdbsc_m_123.tga \ gfx\iwxdbsc_m_124.tga \ gfx\iwxdbsc_t_111.tga \ gfx\iwxdbsc_t_112.tga \ gfx\iwxdbsc_t_113.tga \ gfx\iwxdbsc_t_114.tga \ gfx\iwxdbsc_t_121.tga \ gfx\iwxdbsc_t_122.tga \ gfx\iwxdbsc_t_123.tga \ gfx\iwxdbsc_t_124.tga \ gfx\iwxdbsc_t_131.tga \ gfx\iwxdbsc_t_132.tga \ gfx\iwxdbsc_t_133.tga \ gfx\iwxdbsc_t_134.tga \ gfx\lavender.tga \ gfx\phase_door.tga \ gfx\pink_teal_water.tga \ gfx\pink_water.tga \ gfx\pos_desaura1.tga \ gfx\pos_desaura2.tga \ gfx\pos_desaura3.tga \ gfx\pos_desaura4.tga \ gfx\pos_majdes1.tga \ gfx\pos_majdes2.tga \ gfx\pos_majdes3.tga \ gfx\pos_majdes4.tga \ gfx\pos_necendrain.tga \ gfx\pos_truenec.tga \ gfx\pos_truenec2.tga \ gfx\pos_truenec3.tga \ gfx\psi_crystal.tga \ gfx\psi_psionic_medi.tga \ gfx\psi_soulface.tga \ gfx\psi_synesthete.tga \ gfx\red_wizard_prc.tga \ gfx\rune_face.tga \ gfx\rune_larm.tga \ gfx\rune_lchest.tga \ gfx\rune_lhand.tga \ gfx\rune_rarm.tga \ gfx\rune_rchest.tga \ gfx\rune_rhand.tga \ gfx\rw_greatcirclele.tga \ gfx\rw_scribetatoo.tga \ gfx\rw_specialistdef.tga \ gfx\rw_spellpower.tga \ gfx\rw_spellpower1.tga \ gfx\rw_spellpower2.tga \ gfx\rw_spellpower3.tga \ gfx\rw_spellpower4.tga \ gfx\rw_spellpower5.tga \ gfx\shield_acid.dds \ gfx\shield_cold.dds \ gfx\shield_elect.dds \ gfx\shield_fire.dds \ gfx\shield_sonic.dds \ gfx\simplekatana.tga \ gfx\sl_electrical_re.tga \ gfx\sl_elemental_con.tga \ gfx\sl_shock_weapon.tga \ gfx\sl_shockburst_we.tga \ gfx\sl_storm_ride.tga \ gfx\sl_storm_walk.tga \ gfx\sl_thundering_we.tga \ gfx\smp_holysymbol.tga \ gfx\smp_purp.tga \ gfx\sp_anhil.tga \ gfx\sp_elventext.tga \ gfx\sp_frzsphere.tga \ gfx\spi_dimdoor.tga \ gfx\spi_disint.tga \ gfx\spi_imprison.tga \ gfx\spi_maze.tga \ gfx\spi_protacid.tga \ gfx\spi_protarrows.tga \ gfx\spi_protcold.tga \ gfx\spi_protelec.tga \ gfx\spi_protenergy.tga \ gfx\spi_protfire.tga \ gfx\spi_protsonic.tga \ gfx\sunburst_sun.tga \ gfx\tex_bnbld_obsid.dds \ gfx\tex_bnbld_obsid.tga \ gfx\tex_bnswrd_bone.dds \ gfx\tex_bnswrd_bone.tga \ gfx\tex_bnswrd_edged.dds \ gfx\tex_bnswrd_edged.tga \ gfx\tex_dimdoor.tga \ gfx\tg_baloresque.tga \ gfx\tg_bigskull.tga \ gfx\tg_hungryskull.tga \ gfx\tg_nec.tga \ gfx\tg_nec2.tga \ gfx\tg_ning.tga \ gfx\tg_phant.tga \ gfx\tg_skull.tga \ gfx\tg_skullborder.tga \ gfx\tg_theman.tga \ gfx\tg_theman2.tga \ gfx\tg_tstone.tga \ gfx\tof_v_haltu.tga \ gfx\tof_vanimal1.tga \ gfx\tof_vanimal2.tga \ gfx\tof_vlring.tga \ gfx\tof_vsymb.tga \ gfx\tof_vsymb2.tga \ gfx\tot_acidcone.tga \ gfx\tot_acidline.tga \ gfx\unl_majdes2.tga \ gfx\unl_necendrain.tga \ gfx\vdu_tex_grstone.tga \ gfx\white_hand.tga OTHERS= \ others\2dapoison000.uti \ others\2dapoison001.uti \ others\2dapoison003.uti \ others\2dapoison004.uti \ others\2dapoison005.uti \ others\2dapoison006.uti \ others\2dapoison007.uti \ others\2dapoison008.uti \ others\2dapoison009.uti \ others\2dapoison010.uti \ others\2dapoison011.uti \ others\2dapoison012.uti \ others\2dapoison013.uti \ others\2dapoison014.uti \ others\2dapoison015.uti \ others\2dapoison016.uti \ others\2dapoison017.uti \ others\2dapoison018.uti \ others\2dapoison019.uti \ others\2dapoison020.uti \ others\2dapoison021.uti \ others\2dapoison022.uti \ others\2dapoison023.uti \ others\2dapoison024.uti \ others\2dapoison025.uti \ others\2dapoison026.uti \ others\2dapoison027.uti \ others\2dapoison028.uti \ others\2dapoison029.uti \ others\2dapoison034.uti \ others\2dapoison035.uti \ others\2dapoison036.uti \ others\2dapoison037.uti \ others\2dapoison038.uti \ others\2dapoison039.uti \ others\2dapoison040.uti \ others\2dapoison044.uti \ others\2dapoison100.uti \ others\2dapoison122.uti \ others\2dapoison123.uti \ others\2dapoison124.uti \ others\2dapoison125.uti \ others\2dapoison126.uti \ others\2dapoison127.uti \ others\2dapoison128.uti \ others\2dapoison129.uti \ others\2dapoison130.uti \ others\2dapoison131.uti \ others\2dapoison132.uti \ others\2dapoison133.uti \ others\2dapoison134.uti \ others\2dapoison135.uti \ others\2dapoison136.uti \ others\2dapoison137.uti \ others\2dapoison138.uti \ others\2dapoison139.uti \ others\2dapoison140.uti \ others\2dapoison141.uti \ others\2dapoison142.uti \ others\2dapoison143.uti \ others\2dapoison144.uti \ others\2dapoison145.uti \ others\2dapoison146.uti \ others\2dapoison147.uti \ others\a_ba_casts.mdl \ others\aa_imbuearrow.dlg \ others\aasimarf.ltr \ others\aasimarl.ltr \ others\aasimarm.ltr \ others\aberrationf.ltr \ others\aberrationm.ltr \ others\acomep_winwolf.utc \ others\acomp_winwolf.utc \ others\airmephf.ltr \ others\airmephl.ltr \ others\airmephm.ltr \ others\anim_armour_0.utc \ others\anim_armour_0.uti \ others\anim_armour_1_4.utc \ others\anim_armour_1_4.uti \ others\anim_armour_5_8.utc \ others\anim_armour_5_8.uti \ others\anim_weapon_larg.utc \ others\anim_weapon_larg.uti \ others\anim_weapon_smal.utc \ others\anim_weapon_smal.uti \ others\araneaf.ltr \ others\araneal.ltr \ others\araneam.ltr \ others\archfocusofpower.uti \ others\baalsummon1.utc \ others\baalsummon1kurki.uti \ others\baalsummon2.utc \ others\baalsummon2axe.uti \ others\baalsummon2head.uti \ others\baalsummon2plate.uti \ others\baalsummonplate.uti \ others\bagofgold.uti \ others\bariaurf.ltr \ others\bariaurl.ltr \ others\bariaurm.ltr \ others\base_prc_skin.uti \ others\bat_c_hide_01.uti \ others\bat_c_hide_05.uti \ others\bat_c_hide_20.uti \ others\bat_c_hide_25.uti \ others\bat_c_hide_30.uti \ others\bbd_eagle_claw.uti \ others\bdd_ashen_hide.uti \ others\bdd_ashen_husk.utc \ others\bdd_ashen_slam.uti \ others\bdd_asherati_chn.utc \ others\bdd_asherati_skn.uti \ others\bdd_asherati_tnt.utc \ others\bdd_barracks.utt \ others\bdd_basinrim.are \ others\bdd_basinrim.gic \ others\bdd_basinrim.git \ others\bdd_blight.utt \ others\bdd_books.utt \ others\bdd_cave.are \ others\bdd_cave.gic \ others\bdd_cave.git \ others\bdd_cave_ent.utt \ others\bdd_cave_exp.utt \ others\bdd_change.utt \ others\bdd_courtyard.utt \ others\bdd_dustbl_claw.uti \ others\bdd_dustblight.utc \ others\bdd_eagle_claw.uti \ others\bdd_enter.utt \ others\bdd_enter.utw \ others\bdd_filtrator.utt \ others\bdd_forge.utt \ others\bdd_foyer.utt \ others\bdd_foyer_ent.utw \ others\bdd_foyer_ent001.utw \ others\bdd_foyer_ent002.utw \ others\bdd_foyer_ent003.utw \ others\bdd_office.utt \ others\bdd_oil.utt \ others\bdd_polyp.utp \ others\bdd_ruins.utt \ others\bdd_schooner.utt \ others\bdd_schooner_001.utw \ others\bdd_schooner_002.utw \ others\bdd_schooner_003.utw \ others\bdd_schooner_004.utw \ others\bdd_schooner_005.utw \ others\bdd_schooner_006.utw \ others\bdd_schooner_007.utw \ others\bdd_schooner_ash.utw \ others\bdd_shell.utt \ others\bdd_smelter.are \ others\bdd_smelter.gic \ others\bdd_smelter.git \ others\bdd_sword.uti \ others\bdd_taint.utt \ others\bdd_tunnel.utp \ others\bdd_vault.utt \ others\bdd_well.utt \ others\bdd_xeno.utt \ others\bf_vfx_ioun_blue.mdl \ others\bf_vfx_ioun_grn.mdl \ others\bf_vfx_ioun_orng.mdl \ others\bf_vfx_ioun_purp.mdl \ others\bf_vfx_ioun_red.mdl \ others\bf_vfx_ioun_wht.mdl \ others\bnd_agares_huge.utc \ others\bnd_agares_large.utc \ others\bnd_agares_med.utc \ others\bnd_agares_small.utc \ others\bnd_eury_hammer.uti \ others\bralanhide.uti \ others\bralanif.ltr \ others\bralanil.ltr \ others\bralanilongbow.uti \ others\bralanim.ltr \ others\bralaniscimitar.uti \ others\brimstone.txi \ others\brownief.ltr \ others\browniel.ltr \ others\browniem.ltr \ others\bugbearf.ltr \ others\bugbearm.ltr \ others\buomannf.ltr \ others\buomannm.ltr \ others\c_floatdisk_bl.mdl \ others\c_floatdisk_g.mdl \ others\c_floatdisk_gr.mdl \ others\c_floatdisk_o.mdl \ others\c_floatdisk_p.mdl \ others\c_floatdisk_r.mdl \ others\c_floatdisk_y.mdl \ others\campingbedroll.utp \ others\catfolkf.ltr \ others\catfolkm.ltr \ others\centaurf.ltr \ others\centaurl.ltr \ others\centaurm.ltr \ others\ch_dj_monstspid1.utc \ others\ch_dj_monstspid2.utc \ others\ch_dj_monstspid3.utc \ others\ch_dj_monstspid4.utc \ others\ch_dj_myrlochar1.utc \ others\ch_dj_myrlochar2.utc \ others\ch_dj_myrlochar3.utc \ others\ch_dj_myrlochar4.utc \ others\ch_dj_phasespid1.utc \ others\ch_dj_phasespid2.utc \ others\ch_dj_phasespid3.utc \ others\ch_dj_phasespid4.utc \ others\ch_dj_swordspid1.utc \ others\ch_dj_swordspid2.utc \ others\ch_dj_swordspid3.utc \ others\ch_dj_swordspid4.utc \ others\changelingf.ltr \ others\changelingm.ltr \ others\chitinef.ltr \ others\chitinel.ltr \ others\chitinem.ltr \ others\cobra_c_bite_20.uti \ others\cobra_c_bite_25.uti \ others\cobra_c_bite_30.uti \ others\cobra_c_bite_35.uti \ others\cobra_c_bite_40.uti \ others\codi_mw_katana.uti \ others\codi_mw_short.uti \ others\codi_sam_altar.utp \ others\codi_sam_token.uti \ others\council_npca.dlg \ others\council_npca.utc \ others\council_npcb.dlg \ others\council_npcb.utc \ others\cr_bite_direrat.uti \ others\cr_bite_viper001.uti \ others\cr_bite_viper002.uti \ others\craft_amulet.uti \ others\craft_belt.uti \ others\craft_boots.uti \ others\craft_bracers.uti \ others\craft_cloak.uti \ others\craft_gloves.uti \ others\craft_helmet.uti \ others\craft_ring.uti \ others\craft_rod.uti \ others\craft_scroll.uti \ others\craft_staff.uti \ others\crucianf.ltr \ others\crucianm.ltr \ others\cv_tempus.dlg \ others\devahide.uti \ others\devamace.uti \ others\devarobe.uti \ others\devilf.ltr \ others\devill.ltr \ others\devilm.ltr \ others\dmrestwidget.uti \ others\dragonf.ltr \ others\dragonm.ltr \ others\dromitef.ltr \ others\dromitem.ltr \ others\drowf.ltr \ others\drowl.ltr \ others\drowm.ltr \ others\duergarf.ltr \ others\duergarl.ltr \ others\duergarm.ltr \ others\dusklingf.ltr \ others\dusklingl.ltr \ others\dusklingm.ltr \ others\dyncov_base.dlg \ others\earthmephf.ltr \ others\earthmephl.ltr \ others\earthmephm.ltr \ others\ep_summonaberat1.utc \ others\ep_summonaberat2.utc \ others\ep_summonaberat3.utc \ others\ep_summonaberat4.utc \ others\ep_summonaberat5.utc \ others\epic_fleetfoot.mdl \ others\epic_sd_afflict.uti \ others\epic_sd_animate.uti \ others\epic_sd_animdead.uti \ others\epic_sd_armor.uti \ others\epic_sd_banish.uti \ others\epic_sd_compel.uti \ others\epic_sd_conceal.uti \ others\epic_sd_conjure.uti \ others\epic_sd_contact.uti \ others\epic_sd_delude.uti \ others\epic_sd_destroy.uti \ others\epic_sd_dispel.uti \ others\epic_sd_energy.uti \ others\epic_sd_foresee.uti \ others\epic_sd_fortify.uti \ others\epic_sd_heal.uti \ others\epic_sd_life.uti \ others\epic_sd_light.uti \ others\epic_sd_oppos.uti \ others\epic_sd_reflect.uti \ others\epic_sd_reveal.uti \ others\epic_sd_shadow.uti \ others\epic_sd_slay.uti \ others\epic_sd_summon.uti \ others\epic_sd_time.uti \ others\epic_sd_transfrm.uti \ others\epic_sd_transprt.uti \ others\epic_sd_ward.uti \ others\epic_sp_achilles.uti \ others\epic_sp_allhope.uti \ others\epic_sp_allmart.uti \ others\epic_sp_anarchy.uti \ others\epic_sp_animblas.uti \ others\epic_sp_animbliz.uti \ others\epic_sp_armyunfa.uti \ others\epic_sp_audstone.uti \ others\epic_sp_batbound.uti \ others\epic_sp_celcounc.uti \ others\epic_sp_champval.uti \ others\epic_sp_contresu.uti \ others\epic_sp_contreun.uti \ others\epic_sp_deadeyes.uti \ others\epic_sp_deathmrk.uti \ others\epic_sp_direwint.uti \ others\epic_sp_dragonkn.uti \ others\epic_sp_dreamscp.uti \ others\epic_sp_dullblad.uti \ others\epic_sp_dweomert.uti \ others\epic_sp_enslave.uti \ others\epic_sp_epmagarm.uti \ others\epic_sp_eprepuls.uti \ others\epic_sp_epspellr.uti \ others\epic_sp_epwardin.uti \ others\epic_sp_eterfree.uti \ others\epic_sp_fiendwrd.uti \ others\epic_sp_fleetnes.uti \ others\epic_sp_gemcage.uti \ others\epic_sp_godsmite.uti \ others\epic_sp_greatrui.uti \ others\epic_sp_grspellr.uti \ others\epic_sp_grtimest.uti \ others\epic_sp_hellball.uti \ others\epic_sp_hellsend.uti \ others\epic_sp_hercalli.uti \ others\epic_sp_hercempo.uti \ others\epic_sp_impenetr.uti \ others\epic_sp_leechfie.uti \ others\epic_sp_legendar.uti \ others\epic_sp_lifeforc.uti \ others\epic_sp_magmabur.uti \ others\epic_sp_masspeng.uti \ others\epic_sp_momentom.uti \ others\epic_sp_mummdust.uti \ others\epic_sp_nailedsk.uti \ others\epic_sp_nightsun.uti \ others\epic_sp_orderres.uti \ others\epic_sp_pathsbec.uti \ others\epic_sp_peerless.uti \ others\epic_sp_pestilen.uti \ others\epic_sp_piouspar.uti \ others\epic_sp_planarce.uti \ others\epic_sp_psionics.uti \ others\epic_sp_rainfire.uti \ others\epic_sp_risenreu.uti \ others\epic_sp_ruin.uti \ others\epic_sp_singsund.uti \ others\epic_sp_spelworm.uti \ others\epic_sp_stormman.uti \ others\epic_sp_summaber.uti \ others\epic_sp_superbdi.uti \ others\epic_sp_symrusta.uti \ others\epic_sp_thewithe.uti \ others\epic_sp_tolodine.uti \ others\epic_sp_transvit.uti \ others\epic_sp_twinfien.uti \ others\epic_sp_unholydi.uti \ others\epic_sp_unimping.uti \ others\epic_sp_unseenwa.uti \ others\epic_sp_whipshar.uti \ others\epicshifterliste.utc \ others\epicshifterpower.uti \ others\epicspellcasting.uti \ others\erinyes.utc \ others\erinyesclothes.uti \ others\falchion.uti \ others\fdisk_hit.uti \ others\feyf.ltr \ others\feym.ltr \ others\fiendw_npca.utc \ others\fiendw_npcb.utc \ others\firemephf.ltr \ others\firemephl.ltr \ others\firemephm.ltr \ others\flamingcomposite.uti \ others\floatingdisk.dlg \ others\floatingdisk.utc \ others\frostfolkf.ltr \ others\frostfolkl.ltr \ others\frostfolkm.ltr \ others\fwords_npca.dlg \ others\fwords_npcb.dlg \ others\fx_anthrarockch.mdl \ others\fx_anthrarockch2.mdl \ others\fx_anthrarockch3.mdl \ others\fx_wiggles.mdl \ others\fx_wiggles2.mdl \ others\fxpa_bfirebb.txi \ others\fxpa_blflame02.txi \ others\fxpa_blueflare1.txi \ others\fxpa_eye2.txi \ others\fxpa_flame05b.txi \ others\fxpa_ice.txi \ others\fxpa_iceflare.txi \ others\fxpa_newflare.txi \ others\fxpa_newflare02.txi \ others\gen_coloringbook.uti \ others\genesisexit.utp \ others\genesisportal.utp \ others\giantf.ltr \ others\giantm.ltr \ others\githyankif.ltr \ others\githyankim.ltr \ others\githzerif.ltr \ others\githzerim.ltr \ others\glabrezuproperti.uti \ others\glouraf.ltr \ others\glouram.ltr \ others\gnollf.ltr \ others\gnollm.ltr \ others\goad.uti \ others\goblinf.ltr \ others\goblinm.ltr \ others\goliathf.ltr \ others\goliathl.ltr \ others\goliathm.ltr \ others\greaterwraith001.uti \ others\greaterwraith002.uti \ others\greaterwraith003.uti \ others\greaterwraith004.uti \ others\greaterwraith005.uti \ others\greaterwraith006.uti \ others\greaterwraith007.uti \ others\greaterwraith008.uti \ others\greaterwraith009.uti \ others\greaterwraith010.uti \ others\greaterwraith011.uti \ others\greaterwraith012.uti \ others\greaterwraithbit.uti \ others\greaterwraithhid.uti \ others\green_water.txi \ others\grtrnightshadhid.uti \ others\grtrnsbite.uti \ others\hadozeef.ltr \ others\hadozeel.ltr \ others\hadozeem.ltr \ others\hamatula.utc \ others\hamatula001.utc \ others\hellcat_bite.uti \ others\hellcat_hide.uti \ others\hen_air_eld.utc \ others\hen_air_eld2.utc \ others\hen_air_gre.utc \ others\hen_air_gre2.utc \ others\hen_air_hug.utc \ others\hen_air_hug2.utc \ others\hen_air_lar.utc \ others\hen_air_lar2.utc \ others\hen_air_med.utc \ others\hen_air_med2.utc \ others\hen_air_small001.utc \ others\hen_clantern.utc \ others\hen_earth_eld.utc \ others\hen_earth_eld2.utc \ others\hen_earth_gre.utc \ others\hen_earth_gre2.utc \ others\hen_earth_hug.utc \ others\hen_earth_hug2.utc \ others\hen_earth_lar.utc \ others\hen_earth_lar2.utc \ others\hen_earth_med.utc \ others\hen_earth_med2.utc \ others\hen_earth_small1.utc \ others\hen_fire_eld.utc \ others\hen_fire_eld2.utc \ others\hen_fire_gre.utc \ others\hen_fire_gre2.utc \ others\hen_fire_hug.utc \ others\hen_fire_hug2.utc \ others\hen_fire_lar.utc \ others\hen_fire_lar2.utc \ others\hen_fire_med.utc \ others\hen_fire_med2.utc \ others\hen_fire_small01.utc \ others\hen_water_eld.utc \ others\hen_water_eld2.utc \ others\hen_water_gre.utc \ others\hen_water_gre2.utc \ others\hen_water_hug.utc \ others\hen_water_hug2.utc \ others\hen_water_lar.utc \ others\hen_water_lar2.utc \ others\hen_water_med.utc \ others\hen_water_med2.utc \ others\hen_water_small1.utc \ others\hidetoken.uti \ others\hndarchf.ltr \ others\hndarchl.ltr \ others\hndarchm.ltr \ others\hobgoblinf.ltr \ others\hobgoblinl.ltr \ others\hobgoblinm.ltr \ others\holyarrow.uti \ others\hybsilf.ltr \ others\hybsill.ltr \ others\hybsilm.ltr \ others\illithidf.ltr \ others\illithidm.ltr \ others\inv_earthenhand.utc \ others\inv_stonyhand.utc \ others\it_creitem003.uti \ others\it_crewpb005.uti \ others\it_dweomerthief.uti \ others\it_fam_imp.uti \ others\it_fam_quasit.uti \ others\it_fam_varg.uti \ others\it_gemcage_gem.uti \ others\itemrecipe.uti \ others\jd_wmgst001.uti \ others\jd_wmgst002.uti \ others\jd_wmgst003.uti \ others\jd_wmgst004.uti \ others\jd_wmgst005.uti \ others\jd_wmgst006.uti \ others\jd_wmgst007.uti \ others\jd_wmgst008.uti \ others\jd_wmgst009.uti \ others\jd_wmgst010.uti \ others\jd_wmgst011.uti \ others\jd_wmgst012.uti \ others\jd_wmgst013.uti \ others\jd_wmgst014.uti \ others\jd_wmgst015.uti \ others\jd_wmgst016.uti \ others\kalashtarf.ltr \ others\kalashtarm.ltr \ others\khaastaf.ltr \ others\khaastal.ltr \ others\khaastam.ltr \ others\killorenf.ltr \ others\killorenm.ltr \ others\koboldf.ltr \ others\koboldm.ltr \ others\krinthf.ltr \ others\krinthm.ltr \ others\lecirqueelementa.utc \ others\lessernightsh001.uti \ others\lessernightsh002.uti \ others\lessernightshade.uti \ others\lichamulet.uti \ others\lichcrafting.utp \ others\linumod.dlg \ others\listenerhide.uti \ others\lizardfolkf.ltr \ others\lizardfolkm.ltr \ others\magicstone.uti \ others\marilithproperti.uti \ others\marruspawnf.ltr \ others\marruspawnm.ltr \ others\mc_adderstomach.uti \ others\mc_amberdust.uti \ others\mc_ambersphere.uti \ others\mc_batfur.uti \ others\mc_batguano.uti \ others\mc_beeswax.uti \ others\mc_blackpearl.uti \ others\mc_blackribbons.uti \ others\mc_blacktulip.uti \ others\mc_blckstickbld.uti \ others\mc_bone.uti \ others\mc_bonedust.uti \ others\mc_brackishwater.uti \ others\mc_brasstrumpet.uti \ others\mc_bullhair.uti \ others\mc_catfur.uti \ others\mc_charcoal.uti \ others\mc_coal.uti \ others\mc_cocoon.uti \ others\mc_coloredsand.uti \ others\mc_copperwire.uti \ others\mc_corpse.uti \ others\mc_corrartofgood.uti \ others\mc_crownofivy.uti \ others\mc_crystalbead.uti \ others\mc_crystalcone.uti \ others\mc_crystalprism.uti \ others\mc_crystalrod.uti \ others\mc_curedfur.uti \ others\mc_deadflies.uti \ others\mc_diamond.uti \ others\mc_diamonddust.uti \ others\mc_dollop.uti \ others\mc_dustincense.uti \ others\mc_eaglefeather.uti \ others\mc_earth.uti \ others\mc_eggshell.uti \ others\mc_eyelashes.uti \ others\mc_eyeofahawk.uti \ others\mc_feather.uti \ others\mc_fireflies.uti \ others\mc_flint.uti \ others\mc_foxhair.uti \ others\mc_freshwater.uti \ others\mc_fur.uti \ others\mc_ghoulclothing.uti \ others\mc_granite.uti \ others\mc_grasshopprhlg.uti \ others\mc_gravedirt.uti \ others\mc_greenliquid.uti \ others\mc_groundmica.uti \ others\mc_gumarabic.uti \ others\mc_hand.uti \ others\mc_herbs.uti \ others\mc_heroismpotion.uti \ others\mc_holyparchment.uti \ others\mc_horsehair.uti \ others\mc_hummingbirdf.uti \ others\mc_ice.uti \ others\mc_incense.uti \ others\mc_ironbarsarray.uti \ others\mc_irongolempart.uti \ others\mc_ivory.uti \ others\mc_jade.uti \ others\mc_leatherstrap.uti \ others\mc_licoriceroot.uti \ others\mc_lime.uti \ others\mc_limeandcarbon.uti \ others\mc_lodestone.uti \ others\mc_mercury.uti \ others\mc_mincloak.uti \ others\mc_minerals.uti \ others\mc_minplatshield.uti \ others\mc_minplatsword.uti \ others\mc_molasses.uti \ others\mc_nail.uti \ others\mc_needles.uti \ others\mc_nutshells.uti \ others\mc_oil.uti \ others\mc_ointment.uti \ others\mc_onion.uti \ others\mc_onyx.uti \ others\mc_owlfeather.uti \ others\mc_panimalhoof.uti \ others\mc_paperdisk.uti \ others\mc_pearl.uti \ others\mc_pebble.uti \ others\mc_pellets.uti \ others\mc_pholysymbol.uti \ others\mc_phosphorus.uti \ others\mc_pieceofleathr.uti \ others\mc_pieceofmirror.uti \ others\mc_pieceofspider.uti \ others\mc_pinchofdust.uti \ others\mc_porkrind.uti \ others\mc_powderedgems.uti \ others\mc_powderediron.uti \ others\mc_powderedpeas.uti \ others\mc_purecrystal.uti \ others\mc_quartzcrystal.uti \ others\mc_ramshorn.uti \ others\mc_rawmeat.uti \ others\mc_rhubarb.uti \ others\mc_rottenegg.uti \ others\mc_rubydust.uti \ others\mc_sand.uti \ others\mc_silverdust.uti \ others\mc_silvermirror.uti \ others\mc_silverrod.uti \ others\mc_sliverofbone.uti \ others\mc_smallheart.uti \ others\mc_soakedwick.uti \ others\mc_soul.uti \ others\mc_spidersilk.uti \ others\mc_sponge.uti \ others\mc_straw.uti \ others\mc_sulfur.uti \ others\mc_sunstone.uti \ others\mc_talc.uti \ others\mc_tattooink.uti \ others\mc_tentacle.uti \ others\mc_tinytarts.uti \ others\mc_tongue.uti \ others\mc_undeadsbone.uti \ others\mc_vialofblood.uti \ others\mc_vialofjelly.uti \ others\mc_vialofpoison.uti \ others\mc_vialoftears.uti \ others\mc_vialwithants.uti \ others\mc_whiterockchip.uti \ others\mc_wool.uti \ others\meph_10dv.uti \ others\meph_15dv.uti \ others\meph_1dv.uti \ others\meph_20dv.uti \ others\meph_25dv.uti \ others\meph_30dv.uti \ others\meph_5dv.uti \ others\mh_art_dialog.dlg \ others\mh_it_cor.uti \ others\mh_it_flute.uti \ others\mh_it_harp.uti \ others\mh_it_luth.uti \ others\minotaurf.ltr \ others\minotaurl.ltr \ others\minotaurm.ltr \ others\moi_incarnwpn_ch.uti \ others\moi_incarnwpn_ev.uti \ others\moi_incarnwpn_gd.uti \ others\moi_incarnwpn_lw.uti \ others\moi_slspk_greatr.utc \ others\moi_slspk_least.utc \ others\moi_slspk_lesser.utc \ others\moi_slspk_medium.utc \ others\moi_slspk_prop.uti \ others\mordsmansent.utp \ others\muckdwellerf.ltr \ others\muckdwellerm.ltr \ others\neanderthalf.ltr \ others\neanderthalm.ltr \ others\neraphimf.ltr \ others\neraphimm.ltr \ others\nightshadehide.uti \ others\nightwing.uti \ others\nightwing001.uti \ others\npf_keep_chest.utp \ others\npf_wp_chest_sp.utw \ others\nw_ac_badger01.utc \ others\nw_ac_badger02.utc \ others\nw_ac_badger03.utc \ others\nw_ac_badger04.utc \ others\nw_ac_badger05.utc \ others\nw_ac_badger06.utc \ others\nw_ac_badger07.utc \ others\nw_ac_badger08.utc \ others\nw_ac_badger09.utc \ others\nw_ac_badger10.utc \ others\nw_ac_badger11.utc \ others\nw_ac_badger12.utc \ others\nw_ac_badger13.utc \ others\nw_ac_badger14.utc \ others\nw_ac_badger15.utc \ others\nw_ac_badger16.utc \ others\nw_ac_badger17.utc \ others\nw_ac_badger18.utc \ others\nw_ac_badger19.utc \ others\nw_ac_badger20.utc \ others\nw_ac_badger21.utc \ others\nw_ac_badger22.utc \ others\nw_ac_badger23.utc \ others\nw_ac_badger24.utc \ others\nw_ac_badger25.utc \ others\nw_ac_badger26.utc \ others\nw_ac_badger27.utc \ others\nw_ac_badger28.utc \ others\nw_ac_badger29.utc \ others\nw_ac_badger30.utc \ others\nw_ac_badger31.utc \ others\nw_ac_badger32.utc \ others\nw_ac_badger33.utc \ others\nw_ac_badger34.utc \ others\nw_ac_badger35.utc \ others\nw_ac_badger36.utc \ others\nw_ac_badger37.utc \ others\nw_ac_badger38.utc \ others\nw_ac_badger39.utc \ others\nw_ac_badger40.utc \ others\nw_ac_bat01.utc \ others\nw_ac_bat02.utc \ others\nw_ac_bat03.utc \ others\nw_ac_bat04.utc \ others\nw_ac_bat05.utc \ others\nw_ac_bat06.utc \ others\nw_ac_bat07.utc \ others\nw_ac_bat08.utc \ others\nw_ac_bat09.utc \ others\nw_ac_bat10.utc \ others\nw_ac_bat11.utc \ others\nw_ac_bat12.utc \ others\nw_ac_bat13.utc \ others\nw_ac_bat14.utc \ others\nw_ac_bat15.utc \ others\nw_ac_bat16.utc \ others\nw_ac_bat17.utc \ others\nw_ac_bat18.utc \ others\nw_ac_bat19.utc \ others\nw_ac_bat20.utc \ others\nw_ac_bat21.utc \ others\nw_ac_bat22.utc \ others\nw_ac_bat23.utc \ others\nw_ac_bat24.utc \ others\nw_ac_bat25.utc \ others\nw_ac_bat26.utc \ others\nw_ac_bat27.utc \ others\nw_ac_bat28.utc \ others\nw_ac_bat29.utc \ others\nw_ac_bat30.utc \ others\nw_ac_bat31.utc \ others\nw_ac_bat32.utc \ others\nw_ac_bat33.utc \ others\nw_ac_bat34.utc \ others\nw_ac_bat35.utc \ others\nw_ac_bat36.utc \ others\nw_ac_bat37.utc \ others\nw_ac_bat38.utc \ others\nw_ac_bat39.utc \ others\nw_ac_bat40.utc \ others\nw_ac_bdog01.utc \ others\nw_ac_bdog02.utc \ others\nw_ac_bdog03.utc \ others\nw_ac_bdog04.utc \ others\nw_ac_bdog05.utc \ others\nw_ac_bdog06.utc \ others\nw_ac_bdog07.utc \ others\nw_ac_bdog08.utc \ others\nw_ac_bdog09.utc \ others\nw_ac_bdog10.utc \ others\nw_ac_bdog11.utc \ others\nw_ac_bdog12.utc \ others\nw_ac_bdog13.utc \ others\nw_ac_bdog14.utc \ others\nw_ac_bdog15.utc \ others\nw_ac_bdog16.utc \ others\nw_ac_bdog17.utc \ others\nw_ac_bdog18.utc \ others\nw_ac_bdog19.utc \ others\nw_ac_bdog20.utc \ others\nw_ac_bdog21.utc \ others\nw_ac_bdog22.utc \ others\nw_ac_bdog23.utc \ others\nw_ac_bdog24.utc \ others\nw_ac_bdog25.utc \ others\nw_ac_bdog26.utc \ others\nw_ac_bdog27.utc \ others\nw_ac_bdog28.utc \ others\nw_ac_bdog29.utc \ others\nw_ac_bdog30.utc \ others\nw_ac_bdog31.utc \ others\nw_ac_bdog32.utc \ others\nw_ac_bdog33.utc \ others\nw_ac_bdog34.utc \ others\nw_ac_bdog35.utc \ others\nw_ac_bdog36.utc \ others\nw_ac_bdog37.utc \ others\nw_ac_bdog38.utc \ others\nw_ac_bdog39.utc \ others\nw_ac_bdog40.utc \ others\nw_ac_bear01.utc \ others\nw_ac_bear02.utc \ others\nw_ac_bear03.utc \ others\nw_ac_bear04.utc \ others\nw_ac_bear05.utc \ others\nw_ac_bear06.utc \ others\nw_ac_bear07.utc \ others\nw_ac_bear08.utc \ others\nw_ac_bear09.utc \ others\nw_ac_bear10.utc \ others\nw_ac_bear11.utc \ others\nw_ac_bear12.utc \ others\nw_ac_bear13.utc \ others\nw_ac_bear14.utc \ others\nw_ac_bear15.utc \ others\nw_ac_bear16.utc \ others\nw_ac_bear17.utc \ others\nw_ac_bear18.utc \ others\nw_ac_bear19.utc \ others\nw_ac_bear20.utc \ others\nw_ac_bear21.utc \ others\nw_ac_bear22.utc \ others\nw_ac_bear23.utc \ others\nw_ac_bear24.utc \ others\nw_ac_bear25.utc \ others\nw_ac_bear26.utc \ others\nw_ac_bear27.utc \ others\nw_ac_bear28.utc \ others\nw_ac_bear29.utc \ others\nw_ac_bear30.utc \ others\nw_ac_bear31.utc \ others\nw_ac_bear32.utc \ others\nw_ac_bear33.utc \ others\nw_ac_bear34.utc \ others\nw_ac_bear35.utc \ others\nw_ac_bear36.utc \ others\nw_ac_bear37.utc \ others\nw_ac_bear38.utc \ others\nw_ac_bear39.utc \ others\nw_ac_bear40.utc \ others\nw_ac_boar01.utc \ others\nw_ac_boar02.utc \ others\nw_ac_boar03.utc \ others\nw_ac_boar04.utc \ others\nw_ac_boar05.utc \ others\nw_ac_boar06.utc \ others\nw_ac_boar07.utc \ others\nw_ac_boar08.utc \ others\nw_ac_boar09.utc \ others\nw_ac_boar10.utc \ others\nw_ac_boar11.utc \ others\nw_ac_boar12.utc \ others\nw_ac_boar13.utc \ others\nw_ac_boar14.utc \ others\nw_ac_boar15.utc \ others\nw_ac_boar16.utc \ others\nw_ac_boar17.utc \ others\nw_ac_boar18.utc \ others\nw_ac_boar19.utc \ others\nw_ac_boar20.utc \ others\nw_ac_boar21.utc \ others\nw_ac_boar22.utc \ others\nw_ac_boar23.utc \ others\nw_ac_boar24.utc \ others\nw_ac_boar25.utc \ others\nw_ac_boar26.utc \ others\nw_ac_boar27.utc \ others\nw_ac_boar28.utc \ others\nw_ac_boar29.utc \ others\nw_ac_boar30.utc \ others\nw_ac_boar31.utc \ others\nw_ac_boar32.utc \ others\nw_ac_boar33.utc \ others\nw_ac_boar34.utc \ others\nw_ac_boar35.utc \ others\nw_ac_boar36.utc \ others\nw_ac_boar37.utc \ others\nw_ac_boar38.utc \ others\nw_ac_boar39.utc \ others\nw_ac_boar40.utc \ others\nw_ac_cobra01.utc \ others\nw_ac_cobra02.utc \ others\nw_ac_cobra03.utc \ others\nw_ac_cobra04.utc \ others\nw_ac_cobra05.utc \ others\nw_ac_cobra06.utc \ others\nw_ac_cobra07.utc \ others\nw_ac_cobra08.utc \ others\nw_ac_cobra09.utc \ others\nw_ac_cobra10.utc \ others\nw_ac_cobra11.utc \ others\nw_ac_cobra12.utc \ others\nw_ac_cobra13.utc \ others\nw_ac_cobra14.utc \ others\nw_ac_cobra15.utc \ others\nw_ac_cobra16.utc \ others\nw_ac_cobra17.utc \ others\nw_ac_cobra18.utc \ others\nw_ac_cobra19.utc \ others\nw_ac_cobra20.utc \ others\nw_ac_cobra21.utc \ others\nw_ac_cobra22.utc \ others\nw_ac_cobra23.utc \ others\nw_ac_cobra24.utc \ others\nw_ac_cobra25.utc \ others\nw_ac_cobra26.utc \ others\nw_ac_cobra27.utc \ others\nw_ac_cobra28.utc \ others\nw_ac_cobra29.utc \ others\nw_ac_cobra30.utc \ others\nw_ac_cobra31.utc \ others\nw_ac_cobra32.utc \ others\nw_ac_cobra33.utc \ others\nw_ac_cobra34.utc \ others\nw_ac_cobra35.utc \ others\nw_ac_cobra36.utc \ others\nw_ac_cobra37.utc \ others\nw_ac_cobra38.utc \ others\nw_ac_cobra39.utc \ others\nw_ac_cobra40.utc \ others\nw_ac_cragcat01.utc \ others\nw_ac_cragcat02.utc \ others\nw_ac_cragcat03.utc \ others\nw_ac_cragcat04.utc \ others\nw_ac_cragcat05.utc \ others\nw_ac_cragcat06.utc \ others\nw_ac_cragcat07.utc \ others\nw_ac_cragcat08.utc \ others\nw_ac_cragcat09.utc \ others\nw_ac_cragcat10.utc \ others\nw_ac_cragcat11.utc \ others\nw_ac_cragcat12.utc \ others\nw_ac_cragcat13.utc \ others\nw_ac_cragcat14.utc \ others\nw_ac_cragcat15.utc \ others\nw_ac_cragcat16.utc \ others\nw_ac_cragcat17.utc \ others\nw_ac_cragcat18.utc \ others\nw_ac_cragcat19.utc \ others\nw_ac_cragcat20.utc \ others\nw_ac_cragcat21.utc \ others\nw_ac_cragcat22.utc \ others\nw_ac_cragcat23.utc \ others\nw_ac_cragcat24.utc \ others\nw_ac_cragcat25.utc \ others\nw_ac_cragcat26.utc \ others\nw_ac_cragcat27.utc \ others\nw_ac_cragcat28.utc \ others\nw_ac_cragcat29.utc \ others\nw_ac_cragcat30.utc \ others\nw_ac_cragcat31.utc \ others\nw_ac_cragcat32.utc \ others\nw_ac_cragcat33.utc \ others\nw_ac_cragcat34.utc \ others\nw_ac_cragcat35.utc \ others\nw_ac_cragcat36.utc \ others\nw_ac_cragcat37.utc \ others\nw_ac_cragcat38.utc \ others\nw_ac_cragcat39.utc \ others\nw_ac_cragcat40.utc \ others\nw_ac_dwlf01.utc \ others\nw_ac_dwlf02.utc \ others\nw_ac_dwlf03.utc \ others\nw_ac_dwlf04.utc \ others\nw_ac_dwlf05.utc \ others\nw_ac_dwlf06.utc \ others\nw_ac_dwlf07.utc \ others\nw_ac_dwlf08.utc \ others\nw_ac_dwlf09.utc \ others\nw_ac_dwlf10.utc \ others\nw_ac_dwlf11.utc \ others\nw_ac_dwlf12.utc \ others\nw_ac_dwlf13.utc \ others\nw_ac_dwlf14.utc \ others\nw_ac_dwlf15.utc \ others\nw_ac_dwlf16.utc \ others\nw_ac_dwlf17.utc \ others\nw_ac_dwlf18.utc \ others\nw_ac_dwlf19.utc \ others\nw_ac_dwlf20.utc \ others\nw_ac_dwlf21.utc \ others\nw_ac_dwlf22.utc \ others\nw_ac_dwlf23.utc \ others\nw_ac_dwlf24.utc \ others\nw_ac_dwlf25.utc \ others\nw_ac_dwlf26.utc \ others\nw_ac_dwlf27.utc \ others\nw_ac_dwlf28.utc \ others\nw_ac_dwlf29.utc \ others\nw_ac_dwlf30.utc \ others\nw_ac_dwlf31.utc \ others\nw_ac_dwlf32.utc \ others\nw_ac_dwlf33.utc \ others\nw_ac_dwlf34.utc \ others\nw_ac_dwlf35.utc \ others\nw_ac_dwlf36.utc \ others\nw_ac_dwlf37.utc \ others\nw_ac_dwlf38.utc \ others\nw_ac_dwlf39.utc \ others\nw_ac_dwlf40.utc \ others\nw_ac_hawk01.utc \ others\nw_ac_hawk02.utc \ others\nw_ac_hawk03.utc \ others\nw_ac_hawk04.utc \ others\nw_ac_hawk05.utc \ others\nw_ac_hawk06.utc \ others\nw_ac_hawk07.utc \ others\nw_ac_hawk08.utc \ others\nw_ac_hawk09.utc \ others\nw_ac_hawk10.utc \ others\nw_ac_hawk11.utc \ others\nw_ac_hawk12.utc \ others\nw_ac_hawk13.utc \ others\nw_ac_hawk14.utc \ others\nw_ac_hawk15.utc \ others\nw_ac_hawk16.utc \ others\nw_ac_hawk17.utc \ others\nw_ac_hawk18.utc \ others\nw_ac_hawk19.utc \ others\nw_ac_hawk20.utc \ others\nw_ac_hawk21.utc \ others\nw_ac_hawk22.utc \ others\nw_ac_hawk23.utc \ others\nw_ac_hawk24.utc \ others\nw_ac_hawk25.utc \ others\nw_ac_hawk26.utc \ others\nw_ac_hawk27.utc \ others\nw_ac_hawk28.utc \ others\nw_ac_hawk29.utc \ others\nw_ac_hawk30.utc \ others\nw_ac_hawk31.utc \ others\nw_ac_hawk32.utc \ others\nw_ac_hawk33.utc \ others\nw_ac_hawk34.utc \ others\nw_ac_hawk35.utc \ others\nw_ac_hawk36.utc \ others\nw_ac_hawk37.utc \ others\nw_ac_hawk38.utc \ others\nw_ac_hawk39.utc \ others\nw_ac_hawk40.utc \ others\nw_ac_krenshar01.utc \ others\nw_ac_krenshar02.utc \ others\nw_ac_krenshar03.utc \ others\nw_ac_krenshar04.utc \ others\nw_ac_krenshar05.utc \ others\nw_ac_krenshar06.utc \ others\nw_ac_krenshar07.utc \ others\nw_ac_krenshar08.utc \ others\nw_ac_krenshar09.utc \ others\nw_ac_krenshar10.utc \ others\nw_ac_krenshar11.utc \ others\nw_ac_krenshar12.utc \ others\nw_ac_krenshar13.utc \ others\nw_ac_krenshar14.utc \ others\nw_ac_krenshar15.utc \ others\nw_ac_krenshar16.utc \ others\nw_ac_krenshar17.utc \ others\nw_ac_krenshar18.utc \ others\nw_ac_krenshar19.utc \ others\nw_ac_krenshar20.utc \ others\nw_ac_krenshar21.utc \ others\nw_ac_krenshar22.utc \ others\nw_ac_krenshar23.utc \ others\nw_ac_krenshar24.utc \ others\nw_ac_krenshar25.utc \ others\nw_ac_krenshar26.utc \ others\nw_ac_krenshar27.utc \ others\nw_ac_krenshar28.utc \ others\nw_ac_krenshar29.utc \ others\nw_ac_krenshar30.utc \ others\nw_ac_krenshar31.utc \ others\nw_ac_krenshar32.utc \ others\nw_ac_krenshar33.utc \ others\nw_ac_krenshar34.utc \ others\nw_ac_krenshar35.utc \ others\nw_ac_krenshar36.utc \ others\nw_ac_krenshar37.utc \ others\nw_ac_krenshar38.utc \ others\nw_ac_krenshar39.utc \ others\nw_ac_krenshar40.utc \ others\nw_ac_pant01.utc \ others\nw_ac_pant02.utc \ others\nw_ac_pant03.utc \ others\nw_ac_pant04.utc \ others\nw_ac_pant05.utc \ others\nw_ac_pant06.utc \ others\nw_ac_pant07.utc \ others\nw_ac_pant08.utc \ others\nw_ac_pant09.utc \ others\nw_ac_pant10.utc \ others\nw_ac_pant11.utc \ others\nw_ac_pant12.utc \ others\nw_ac_pant13.utc \ others\nw_ac_pant14.utc \ others\nw_ac_pant15.utc \ others\nw_ac_pant16.utc \ others\nw_ac_pant17.utc \ others\nw_ac_pant18.utc \ others\nw_ac_pant19.utc \ others\nw_ac_pant20.utc \ others\nw_ac_pant21.utc \ others\nw_ac_pant22.utc \ others\nw_ac_pant23.utc \ others\nw_ac_pant24.utc \ others\nw_ac_pant25.utc \ others\nw_ac_pant26.utc \ others\nw_ac_pant27.utc \ others\nw_ac_pant28.utc \ others\nw_ac_pant29.utc \ others\nw_ac_pant30.utc \ others\nw_ac_pant31.utc \ others\nw_ac_pant32.utc \ others\nw_ac_pant33.utc \ others\nw_ac_pant34.utc \ others\nw_ac_pant35.utc \ others\nw_ac_pant36.utc \ others\nw_ac_pant37.utc \ others\nw_ac_pant38.utc \ others\nw_ac_pant39.utc \ others\nw_ac_pant40.utc \ others\nw_ac_phases01.utc \ others\nw_ac_phases02.utc \ others\nw_ac_phases03.utc \ others\nw_ac_phases04.utc \ others\nw_ac_phases05.utc \ others\nw_ac_phases06.utc \ others\nw_ac_phases07.utc \ others\nw_ac_phases08.utc \ others\nw_ac_phases09.utc \ others\nw_ac_phases10.utc \ others\nw_ac_phases11.utc \ others\nw_ac_phases12.utc \ others\nw_ac_phases13.utc \ others\nw_ac_phases14.utc \ others\nw_ac_phases15.utc \ others\nw_ac_phases16.utc \ others\nw_ac_phases17.utc \ others\nw_ac_phases18.utc \ others\nw_ac_phases19.utc \ others\nw_ac_phases20.utc \ others\nw_ac_phases21.utc \ others\nw_ac_phases22.utc \ others\nw_ac_phases23.utc \ others\nw_ac_phases24.utc \ others\nw_ac_phases25.utc \ others\nw_ac_phases26.utc \ others\nw_ac_phases27.utc \ others\nw_ac_phases28.utc \ others\nw_ac_phases29.utc \ others\nw_ac_phases30.utc \ others\nw_ac_phases31.utc \ others\nw_ac_phases32.utc \ others\nw_ac_phases33.utc \ others\nw_ac_phases34.utc \ others\nw_ac_phases35.utc \ others\nw_ac_phases36.utc \ others\nw_ac_phases37.utc \ others\nw_ac_phases38.utc \ others\nw_ac_phases39.utc \ others\nw_ac_phases40.utc \ others\nw_ac_polarb01.utc \ others\nw_ac_polarb02.utc \ others\nw_ac_polarb03.utc \ others\nw_ac_polarb04.utc \ others\nw_ac_polarb05.utc \ others\nw_ac_polarb06.utc \ others\nw_ac_polarb07.utc \ others\nw_ac_polarb08.utc \ others\nw_ac_polarb09.utc \ others\nw_ac_polarb10.utc \ others\nw_ac_polarb11.utc \ others\nw_ac_polarb12.utc \ others\nw_ac_polarb13.utc \ others\nw_ac_polarb14.utc \ others\nw_ac_polarb15.utc \ others\nw_ac_polarb16.utc \ others\nw_ac_polarb17.utc \ others\nw_ac_polarb18.utc \ others\nw_ac_polarb19.utc \ others\nw_ac_polarb20.utc \ others\nw_ac_polarb21.utc \ others\nw_ac_polarb22.utc \ others\nw_ac_polarb23.utc \ others\nw_ac_polarb24.utc \ others\nw_ac_polarb25.utc \ others\nw_ac_polarb26.utc \ others\nw_ac_polarb27.utc \ others\nw_ac_polarb28.utc \ others\nw_ac_polarb29.utc \ others\nw_ac_polarb30.utc \ others\nw_ac_polarb31.utc \ others\nw_ac_polarb32.utc \ others\nw_ac_polarb33.utc \ others\nw_ac_polarb34.utc \ others\nw_ac_polarb35.utc \ others\nw_ac_polarb36.utc \ others\nw_ac_polarb37.utc \ others\nw_ac_polarb38.utc \ others\nw_ac_polarb39.utc \ others\nw_ac_polarb40.utc \ others\nw_ac_spid01.utc \ others\nw_ac_spid02.utc \ others\nw_ac_spid03.utc \ others\nw_ac_spid04.utc \ others\nw_ac_spid05.utc \ others\nw_ac_spid06.utc \ others\nw_ac_spid07.utc \ others\nw_ac_spid08.utc \ others\nw_ac_spid09.utc \ others\nw_ac_spid10.utc \ others\nw_ac_spid11.utc \ others\nw_ac_spid12.utc \ others\nw_ac_spid13.utc \ others\nw_ac_spid14.utc \ others\nw_ac_spid15.utc \ others\nw_ac_spid16.utc \ others\nw_ac_spid17.utc \ others\nw_ac_spid18.utc \ others\nw_ac_spid19.utc \ others\nw_ac_spid20.utc \ others\nw_ac_spid21.utc \ others\nw_ac_spid22.utc \ others\nw_ac_spid23.utc \ others\nw_ac_spid24.utc \ others\nw_ac_spid25.utc \ others\nw_ac_spid26.utc \ others\nw_ac_spid27.utc \ others\nw_ac_spid28.utc \ others\nw_ac_spid29.utc \ others\nw_ac_spid30.utc \ others\nw_ac_spid31.utc \ others\nw_ac_spid32.utc \ others\nw_ac_spid33.utc \ others\nw_ac_spid34.utc \ others\nw_ac_spid35.utc \ others\nw_ac_spid36.utc \ others\nw_ac_spid37.utc \ others\nw_ac_spid38.utc \ others\nw_ac_spid39.utc \ others\nw_ac_spid40.utc \ others\nw_ac_stinkb01.utc \ others\nw_ac_stinkb02.utc \ others\nw_ac_stinkb03.utc \ others\nw_ac_stinkb04.utc \ others\nw_ac_stinkb05.utc \ others\nw_ac_stinkb06.utc \ others\nw_ac_stinkb07.utc \ others\nw_ac_stinkb08.utc \ others\nw_ac_stinkb09.utc \ others\nw_ac_stinkb10.utc \ others\nw_ac_stinkb11.utc \ others\nw_ac_stinkb12.utc \ others\nw_ac_stinkb13.utc \ others\nw_ac_stinkb14.utc \ others\nw_ac_stinkb15.utc \ others\nw_ac_stinkb16.utc \ others\nw_ac_stinkb17.utc \ others\nw_ac_stinkb18.utc \ others\nw_ac_stinkb19.utc \ others\nw_ac_stinkb20.utc \ others\nw_ac_stinkb21.utc \ others\nw_ac_stinkb22.utc \ others\nw_ac_stinkb23.utc \ others\nw_ac_stinkb24.utc \ others\nw_ac_stinkb25.utc \ others\nw_ac_stinkb26.utc \ others\nw_ac_stinkb27.utc \ others\nw_ac_stinkb28.utc \ others\nw_ac_stinkb29.utc \ others\nw_ac_stinkb30.utc \ others\nw_ac_stinkb31.utc \ others\nw_ac_stinkb32.utc \ others\nw_ac_stinkb33.utc \ others\nw_ac_stinkb34.utc \ others\nw_ac_stinkb35.utc \ others\nw_ac_stinkb36.utc \ others\nw_ac_stinkb37.utc \ others\nw_ac_stinkb38.utc \ others\nw_ac_stinkb39.utc \ others\nw_ac_stinkb40.utc \ others\nw_ac_wolf01.utc \ others\nw_ac_wolf02.utc \ others\nw_ac_wolf03.utc \ others\nw_ac_wolf04.utc \ others\nw_ac_wolf05.utc \ others\nw_ac_wolf06.utc \ others\nw_ac_wolf07.utc \ others\nw_ac_wolf08.utc \ others\nw_ac_wolf09.utc \ others\nw_ac_wolf10.utc \ others\nw_ac_wolf11.utc \ others\nw_ac_wolf12.utc \ others\nw_ac_wolf13.utc \ others\nw_ac_wolf14.utc \ others\nw_ac_wolf15.utc \ others\nw_ac_wolf16.utc \ others\nw_ac_wolf17.utc \ others\nw_ac_wolf18.utc \ others\nw_ac_wolf19.utc \ others\nw_ac_wolf20.utc \ others\nw_ac_wolf21.utc \ others\nw_ac_wolf22.utc \ others\nw_ac_wolf23.utc \ others\nw_ac_wolf24.utc \ others\nw_ac_wolf25.utc \ others\nw_ac_wolf26.utc \ others\nw_ac_wolf27.utc \ others\nw_ac_wolf28.utc \ others\nw_ac_wolf29.utc \ others\nw_ac_wolf30.utc \ others\nw_ac_wolf31.utc \ others\nw_ac_wolf32.utc \ others\nw_ac_wolf33.utc \ others\nw_ac_wolf34.utc \ others\nw_ac_wolf35.utc \ others\nw_ac_wolf36.utc \ others\nw_ac_wolf37.utc \ others\nw_ac_wolf38.utc \ others\nw_ac_wolf39.utc \ others\nw_ac_wolf40.utc \ others\nw_ac_worg01.utc \ others\nw_ac_worg02.utc \ others\nw_ac_worg03.utc \ others\nw_ac_worg04.utc \ others\nw_ac_worg05.utc \ others\nw_ac_worg06.utc \ others\nw_ac_worg07.utc \ others\nw_ac_worg08.utc \ others\nw_ac_worg09.utc \ others\nw_ac_worg10.utc \ others\nw_ac_worg11.utc \ others\nw_ac_worg12.utc \ others\nw_ac_worg13.utc \ others\nw_ac_worg14.utc \ others\nw_ac_worg15.utc \ others\nw_ac_worg16.utc \ others\nw_ac_worg17.utc \ others\nw_ac_worg18.utc \ others\nw_ac_worg19.utc \ others\nw_ac_worg20.utc \ others\nw_ac_worg21.utc \ others\nw_ac_worg22.utc \ others\nw_ac_worg23.utc \ others\nw_ac_worg24.utc \ others\nw_ac_worg25.utc \ others\nw_ac_worg26.utc \ others\nw_ac_worg27.utc \ others\nw_ac_worg28.utc \ others\nw_ac_worg29.utc \ others\nw_ac_worg30.utc \ others\nw_ac_worg31.utc \ others\nw_ac_worg32.utc \ others\nw_ac_worg33.utc \ others\nw_ac_worg34.utc \ others\nw_ac_worg35.utc \ others\nw_ac_worg36.utc \ others\nw_ac_worg37.utc \ others\nw_ac_worg38.utc \ others\nw_ac_worg39.utc \ others\nw_ac_worg40.utc \ others\nw_ac_wwlf01.utc \ others\nw_ac_wwlf02.utc \ others\nw_ac_wwlf03.utc \ others\nw_ac_wwlf04.utc \ others\nw_ac_wwlf05.utc \ others\nw_ac_wwlf06.utc \ others\nw_ac_wwlf07.utc \ others\nw_ac_wwlf08.utc \ others\nw_ac_wwlf09.utc \ others\nw_ac_wwlf10.utc \ others\nw_ac_wwlf11.utc \ others\nw_ac_wwlf12.utc \ others\nw_ac_wwlf13.utc \ others\nw_ac_wwlf14.utc \ others\nw_ac_wwlf15.utc \ others\nw_ac_wwlf16.utc \ others\nw_ac_wwlf17.utc \ others\nw_ac_wwlf18.utc \ others\nw_ac_wwlf19.utc \ others\nw_ac_wwlf20.utc \ others\nw_ac_wwlf21.utc \ others\nw_ac_wwlf22.utc \ others\nw_ac_wwlf23.utc \ others\nw_ac_wwlf24.utc \ others\nw_ac_wwlf25.utc \ others\nw_ac_wwlf26.utc \ others\nw_ac_wwlf27.utc \ others\nw_ac_wwlf28.utc \ others\nw_ac_wwlf29.utc \ others\nw_ac_wwlf30.utc \ others\nw_ac_wwlf31.utc \ others\nw_ac_wwlf32.utc \ others\nw_ac_wwlf33.utc \ others\nw_ac_wwlf34.utc \ others\nw_ac_wwlf35.utc \ others\nw_ac_wwlf36.utc \ others\nw_ac_wwlf37.utc \ others\nw_ac_wwlf38.utc \ others\nw_ac_wwlf39.utc \ others\nw_ac_wwlf40.utc \ others\nw_fm_bat01.utc \ others\nw_fm_bat02.utc \ others\nw_fm_bat03.utc \ others\nw_fm_bat04.utc \ others\nw_fm_bat05.utc \ others\nw_fm_bat06.utc \ others\nw_fm_bat07.utc \ others\nw_fm_bat08.utc \ others\nw_fm_bat09.utc \ others\nw_fm_bat10.utc \ others\nw_fm_bat11.utc \ others\nw_fm_bat12.utc \ others\nw_fm_bat13.utc \ others\nw_fm_bat14.utc \ others\nw_fm_bat15.utc \ others\nw_fm_bat16.utc \ others\nw_fm_bat17.utc \ others\nw_fm_bat18.utc \ others\nw_fm_bat19.utc \ others\nw_fm_bat20.utc \ others\nw_fm_bat21.utc \ others\nw_fm_bat22.utc \ others\nw_fm_bat23.utc \ others\nw_fm_bat24.utc \ others\nw_fm_bat25.utc \ others\nw_fm_bat26.utc \ others\nw_fm_bat27.utc \ others\nw_fm_bat28.utc \ others\nw_fm_bat29.utc \ others\nw_fm_bat30.utc \ others\nw_fm_bat31.utc \ others\nw_fm_bat32.utc \ others\nw_fm_bat33.utc \ others\nw_fm_bat34.utc \ others\nw_fm_bat35.utc \ others\nw_fm_bat36.utc \ others\nw_fm_bat37.utc \ others\nw_fm_bat38.utc \ others\nw_fm_bat39.utc \ others\nw_fm_bat40.utc \ others\nw_fm_crag01.utc \ others\nw_fm_crag02.utc \ others\nw_fm_crag03.utc \ others\nw_fm_crag04.utc \ others\nw_fm_crag05.utc \ others\nw_fm_crag06.utc \ others\nw_fm_crag07.utc \ others\nw_fm_crag08.utc \ others\nw_fm_crag09.utc \ others\nw_fm_crag10.utc \ others\nw_fm_crag11.utc \ others\nw_fm_crag12.utc \ others\nw_fm_crag13.utc \ others\nw_fm_crag14.utc \ others\nw_fm_crag15.utc \ others\nw_fm_crag16.utc \ others\nw_fm_crag17.utc \ others\nw_fm_crag18.utc \ others\nw_fm_crag19.utc \ others\nw_fm_crag20.utc \ others\nw_fm_crag21.utc \ others\nw_fm_crag22.utc \ others\nw_fm_crag23.utc \ others\nw_fm_crag24.utc \ others\nw_fm_crag25.utc \ others\nw_fm_crag26.utc \ others\nw_fm_crag27.utc \ others\nw_fm_crag28.utc \ others\nw_fm_crag29.utc \ others\nw_fm_crag30.utc \ others\nw_fm_crag31.utc \ others\nw_fm_crag32.utc \ others\nw_fm_crag33.utc \ others\nw_fm_crag34.utc \ others\nw_fm_crag35.utc \ others\nw_fm_crag36.utc \ others\nw_fm_crag37.utc \ others\nw_fm_crag38.utc \ others\nw_fm_crag39.utc \ others\nw_fm_crag40.utc \ others\nw_fm_fire01.utc \ others\nw_fm_fire02.utc \ others\nw_fm_fire03.utc \ others\nw_fm_fire04.utc \ others\nw_fm_fire05.utc \ others\nw_fm_fire06.utc \ others\nw_fm_fire07.utc \ others\nw_fm_fire08.utc \ others\nw_fm_fire09.utc \ others\nw_fm_fire10.utc \ others\nw_fm_fire11.utc \ others\nw_fm_fire12.utc \ others\nw_fm_fire13.utc \ others\nw_fm_fire14.utc \ others\nw_fm_fire15.utc \ others\nw_fm_fire16.utc \ others\nw_fm_fire17.utc \ others\nw_fm_fire18.utc \ others\nw_fm_fire19.utc \ others\nw_fm_fire20.utc \ others\nw_fm_fire21.utc \ others\nw_fm_fire22.utc \ others\nw_fm_fire23.utc \ others\nw_fm_fire24.utc \ others\nw_fm_fire25.utc \ others\nw_fm_fire26.utc \ others\nw_fm_fire27.utc \ others\nw_fm_fire28.utc \ others\nw_fm_fire29.utc \ others\nw_fm_fire30.utc \ others\nw_fm_fire31.utc \ others\nw_fm_fire32.utc \ others\nw_fm_fire33.utc \ others\nw_fm_fire34.utc \ others\nw_fm_fire35.utc \ others\nw_fm_fire36.utc \ others\nw_fm_fire37.utc \ others\nw_fm_fire38.utc \ others\nw_fm_fire39.utc \ others\nw_fm_fire40.utc \ others\nw_fm_hell01.utc \ others\nw_fm_hell02.utc \ others\nw_fm_hell03.utc \ others\nw_fm_hell04.utc \ others\nw_fm_hell05.utc \ others\nw_fm_hell06.utc \ others\nw_fm_hell07.utc \ others\nw_fm_hell08.utc \ others\nw_fm_hell09.utc \ others\nw_fm_hell10.utc \ others\nw_fm_hell11.utc \ others\nw_fm_hell12.utc \ others\nw_fm_hell13.utc \ others\nw_fm_hell14.utc \ others\nw_fm_hell15.utc \ others\nw_fm_hell16.utc \ others\nw_fm_hell17.utc \ others\nw_fm_hell18.utc \ others\nw_fm_hell19.utc \ others\nw_fm_hell20.utc \ others\nw_fm_hell21.utc \ others\nw_fm_hell22.utc \ others\nw_fm_hell23.utc \ others\nw_fm_hell24.utc \ others\nw_fm_hell25.utc \ others\nw_fm_hell26.utc \ others\nw_fm_hell27.utc \ others\nw_fm_hell28.utc \ others\nw_fm_hell29.utc \ others\nw_fm_hell30.utc \ others\nw_fm_hell31.utc \ others\nw_fm_hell32.utc \ others\nw_fm_hell33.utc \ others\nw_fm_hell34.utc \ others\nw_fm_hell35.utc \ others\nw_fm_hell36.utc \ others\nw_fm_hell37.utc \ others\nw_fm_hell38.utc \ others\nw_fm_hell39.utc \ others\nw_fm_hell40.utc \ others\nw_fm_ice01.utc \ others\nw_fm_ice02.utc \ others\nw_fm_ice03.utc \ others\nw_fm_ice04.utc \ others\nw_fm_ice05.utc \ others\nw_fm_ice06.utc \ others\nw_fm_ice07.utc \ others\nw_fm_ice08.utc \ others\nw_fm_ice09.utc \ others\nw_fm_ice10.utc \ others\nw_fm_ice11.utc \ others\nw_fm_ice12.utc \ others\nw_fm_ice13.utc \ others\nw_fm_ice14.utc \ others\nw_fm_ice15.utc \ others\nw_fm_ice16.utc \ others\nw_fm_ice17.utc \ others\nw_fm_ice18.utc \ others\nw_fm_ice19.utc \ others\nw_fm_ice20.utc \ others\nw_fm_ice21.utc \ others\nw_fm_ice22.utc \ others\nw_fm_ice23.utc \ others\nw_fm_ice24.utc \ others\nw_fm_ice25.utc \ others\nw_fm_ice26.utc \ others\nw_fm_ice27.utc \ others\nw_fm_ice28.utc \ others\nw_fm_ice29.utc \ others\nw_fm_ice30.utc \ others\nw_fm_ice31.utc \ others\nw_fm_ice32.utc \ others\nw_fm_ice33.utc \ others\nw_fm_ice34.utc \ others\nw_fm_ice35.utc \ others\nw_fm_ice36.utc \ others\nw_fm_ice37.utc \ others\nw_fm_ice38.utc \ others\nw_fm_ice39.utc \ others\nw_fm_ice40.utc \ others\nw_fm_imp01.utc \ others\nw_fm_imp02.utc \ others\nw_fm_imp03.utc \ others\nw_fm_imp04.utc \ others\nw_fm_imp05.utc \ others\nw_fm_imp06.utc \ others\nw_fm_imp07.utc \ others\nw_fm_imp08.utc \ others\nw_fm_imp09.utc \ others\nw_fm_imp10.utc \ others\nw_fm_imp11.utc \ others\nw_fm_imp12.utc \ others\nw_fm_imp13.utc \ others\nw_fm_imp14.utc \ others\nw_fm_imp15.utc \ others\nw_fm_imp16.utc \ others\nw_fm_imp17.utc \ others\nw_fm_imp18.utc \ others\nw_fm_imp19.utc \ others\nw_fm_imp20.utc \ others\nw_fm_imp21.utc \ others\nw_fm_imp22.utc \ others\nw_fm_imp23.utc \ others\nw_fm_imp24.utc \ others\nw_fm_imp25.utc \ others\nw_fm_imp26.utc \ others\nw_fm_imp27.utc \ others\nw_fm_imp28.utc \ others\nw_fm_imp29.utc \ others\nw_fm_imp30.utc \ others\nw_fm_imp31.utc \ others\nw_fm_imp32.utc \ others\nw_fm_imp33.utc \ others\nw_fm_imp34.utc \ others\nw_fm_imp35.utc \ others\nw_fm_imp36.utc \ others\nw_fm_imp37.utc \ others\nw_fm_imp38.utc \ others\nw_fm_imp39.utc \ others\nw_fm_imp40.utc \ others\nw_fm_pixi01.utc \ others\nw_fm_pixi02.utc \ others\nw_fm_pixi03.utc \ others\nw_fm_pixi04.utc \ others\nw_fm_pixi05.utc \ others\nw_fm_pixi06.utc \ others\nw_fm_pixi07.utc \ others\nw_fm_pixi08.utc \ others\nw_fm_pixi09.utc \ others\nw_fm_pixi10.utc \ others\nw_fm_pixi11.utc \ others\nw_fm_pixi12.utc \ others\nw_fm_pixi13.utc \ others\nw_fm_pixi14.utc \ others\nw_fm_pixi15.utc \ others\nw_fm_pixi16.utc \ others\nw_fm_pixi17.utc \ others\nw_fm_pixi18.utc \ others\nw_fm_pixi19.utc \ others\nw_fm_pixi20.utc \ others\nw_fm_pixi21.utc \ others\nw_fm_pixi22.utc \ others\nw_fm_pixi23.utc \ others\nw_fm_pixi24.utc \ others\nw_fm_pixi25.utc \ others\nw_fm_pixi26.utc \ others\nw_fm_pixi27.utc \ others\nw_fm_pixi28.utc \ others\nw_fm_pixi29.utc \ others\nw_fm_pixi30.utc \ others\nw_fm_pixi31.utc \ others\nw_fm_pixi32.utc \ others\nw_fm_pixi33.utc \ others\nw_fm_pixi34.utc \ others\nw_fm_pixi35.utc \ others\nw_fm_pixi36.utc \ others\nw_fm_pixi37.utc \ others\nw_fm_pixi38.utc \ others\nw_fm_pixi39.utc \ others\nw_fm_pixi40.utc \ others\nw_fm_quas01.utc \ others\nw_fm_quas02.utc \ others\nw_fm_quas03.utc \ others\nw_fm_quas04.utc \ others\nw_fm_quas05.utc \ others\nw_fm_quas06.utc \ others\nw_fm_quas07.utc \ others\nw_fm_quas08.utc \ others\nw_fm_quas09.utc \ others\nw_fm_quas10.utc \ others\nw_fm_quas11.utc \ others\nw_fm_quas12.utc \ others\nw_fm_quas13.utc \ others\nw_fm_quas14.utc \ others\nw_fm_quas15.utc \ others\nw_fm_quas16.utc \ others\nw_fm_quas17.utc \ others\nw_fm_quas18.utc \ others\nw_fm_quas19.utc \ others\nw_fm_quas20.utc \ others\nw_fm_quas21.utc \ others\nw_fm_quas22.utc \ others\nw_fm_quas23.utc \ others\nw_fm_quas24.utc \ others\nw_fm_quas25.utc \ others\nw_fm_quas26.utc \ others\nw_fm_quas27.utc \ others\nw_fm_quas28.utc \ others\nw_fm_quas29.utc \ others\nw_fm_quas30.utc \ others\nw_fm_quas31.utc \ others\nw_fm_quas32.utc \ others\nw_fm_quas33.utc \ others\nw_fm_quas34.utc \ others\nw_fm_quas35.utc \ others\nw_fm_quas36.utc \ others\nw_fm_quas37.utc \ others\nw_fm_quas38.utc \ others\nw_fm_quas39.utc \ others\nw_fm_quas40.utc \ others\nw_fm_rave01.utc \ others\nw_fm_rave02.utc \ others\nw_fm_rave03.utc \ others\nw_fm_rave04.utc \ others\nw_fm_rave05.utc \ others\nw_fm_rave06.utc \ others\nw_fm_rave07.utc \ others\nw_fm_rave08.utc \ others\nw_fm_rave09.utc \ others\nw_fm_rave10.utc \ others\nw_fm_rave11.utc \ others\nw_fm_rave12.utc \ others\nw_fm_rave13.utc \ others\nw_fm_rave14.utc \ others\nw_fm_rave15.utc \ others\nw_fm_rave16.utc \ others\nw_fm_rave17.utc \ others\nw_fm_rave18.utc \ others\nw_fm_rave19.utc \ others\nw_fm_rave20.utc \ others\nw_fm_rave21.utc \ others\nw_fm_rave22.utc \ others\nw_fm_rave23.utc \ others\nw_fm_rave24.utc \ others\nw_fm_rave25.utc \ others\nw_fm_rave26.utc \ others\nw_fm_rave27.utc \ others\nw_fm_rave28.utc \ others\nw_fm_rave29.utc \ others\nw_fm_rave30.utc \ others\nw_fm_rave31.utc \ others\nw_fm_rave32.utc \ others\nw_fm_rave33.utc \ others\nw_fm_rave34.utc \ others\nw_fm_rave35.utc \ others\nw_fm_rave36.utc \ others\nw_fm_rave37.utc \ others\nw_fm_rave38.utc \ others\nw_fm_rave39.utc \ others\nw_fm_rave40.utc \ others\nw_fm_wwlf01.utc \ others\nw_fm_wwlf02.utc \ others\nw_fm_wwlf03.utc \ others\nw_fm_wwlf04.utc \ others\nw_fm_wwlf05.utc \ others\nw_fm_wwlf06.utc \ others\nw_fm_wwlf07.utc \ others\nw_fm_wwlf08.utc \ others\nw_fm_wwlf09.utc \ others\nw_fm_wwlf10.utc \ others\nw_fm_wwlf11.utc \ others\nw_fm_wwlf12.utc \ others\nw_fm_wwlf13.utc \ others\nw_fm_wwlf14.utc \ others\nw_fm_wwlf15.utc \ others\nw_fm_wwlf16.utc \ others\nw_fm_wwlf17.utc \ others\nw_fm_wwlf18.utc \ others\nw_fm_wwlf19.utc \ others\nw_fm_wwlf20.utc \ others\nw_fm_wwlf21.utc \ others\nw_fm_wwlf22.utc \ others\nw_fm_wwlf23.utc \ others\nw_fm_wwlf24.utc \ others\nw_fm_wwlf25.utc \ others\nw_fm_wwlf26.utc \ others\nw_fm_wwlf27.utc \ others\nw_fm_wwlf28.utc \ others\nw_fm_wwlf29.utc \ others\nw_fm_wwlf30.utc \ others\nw_fm_wwlf31.utc \ others\nw_fm_wwlf32.utc \ others\nw_fm_wwlf33.utc \ others\nw_fm_wwlf34.utc \ others\nw_fm_wwlf35.utc \ others\nw_fm_wwlf36.utc \ others\nw_fm_wwlf37.utc \ others\nw_fm_wwlf38.utc \ others\nw_fm_wwlf39.utc \ others\nw_fm_wwlf40.utc \ others\nw_it_sparscr114.uti \ others\nw_it_sparscr115.uti \ others\nw_it_sparscr116.uti \ others\nw_it_sparscr117.uti \ others\nw_it_sparscr118.uti \ others\nw_it_sparscr119.uti \ others\nw_it_sparscr120.uti \ others\nw_it_sparscr121.uti \ others\nw_it_sparscr122.uti \ others\nw_it_sparscr124.uti \ others\nw_it_sparscr125.uti \ others\nw_it_sparscr129.uti \ others\nw_it_sparscr130.uti \ others\nw_it_sparscr131.uti \ others\nw_it_sparscr222.uti \ others\nw_it_sparscr223.uti \ others\nw_it_sparscr224.uti \ others\nw_it_sparscr225.uti \ others\nw_it_sparscr226.uti \ others\nw_it_sparscr227.uti \ others\nw_it_sparscr228.uti \ others\nw_it_sparscr229.uti \ others\nw_it_sparscr230.uti \ others\nw_it_sparscr231.uti \ others\nw_it_sparscr232.uti \ others\nw_it_sparscr233.uti \ others\nw_it_sparscr234.uti \ others\nw_it_sparscr235.uti \ others\nw_it_sparscr236.uti \ others\nw_it_sparscr237.uti \ others\nw_it_sparscr238.uti \ others\nw_it_sparscr241.uti \ others\nw_it_sparscr316.uti \ others\nw_it_sparscr317.uti \ others\nw_it_sparscr318.uti \ others\nw_it_sparscr320.uti \ others\nw_it_sparscr321.uti \ others\nw_it_sparscr322.uti \ others\nw_it_sparscr323.uti \ others\nw_it_sparscr324.uti \ others\nw_it_sparscr325.uti \ others\nw_it_sparscr326.uti \ others\nw_it_sparscr327.uti \ others\nw_it_sparscr328.uti \ others\nw_it_sparscr329.uti \ others\nw_it_sparscr330.uti \ others\nw_it_sparscr331.uti \ others\nw_it_sparscr332.uti \ others\nw_it_sparscr333.uti \ others\nw_it_sparscr336.uti \ others\nw_it_sparscr337.uti \ others\nw_it_sparscr419.uti \ others\nw_it_sparscr420.uti \ others\nw_it_sparscr421.uti \ others\nw_it_sparscr422.uti \ others\nw_it_sparscr423.uti \ others\nw_it_sparscr424.uti \ others\nw_it_sparscr425.uti \ others\nw_it_sparscr426.uti \ others\nw_it_sparscr427.uti \ others\nw_it_sparscr428.uti \ others\nw_it_sparscr429.uti \ others\nw_it_sparscr430.uti \ others\nw_it_sparscr431.uti \ others\nw_it_sparscr432.uti \ others\nw_it_sparscr433.uti \ others\nw_it_sparscr434.uti \ others\nw_it_sparscr437.uti \ others\nw_it_sparscr514.uti \ others\nw_it_sparscr515.uti \ others\nw_it_sparscr516.uti \ others\nw_it_sparscr517.uti \ others\nw_it_sparscr518.uti \ others\nw_it_sparscr519.uti \ others\nw_it_sparscr520.uti \ others\nw_it_sparscr521.uti \ others\nw_it_sparscr522.uti \ others\nw_it_sparscr615.uti \ others\nw_it_sparscr616.uti \ others\nw_it_sparscr617.uti \ others\nw_it_sparscr619.uti \ others\nw_it_sparscr621.uti \ others\nw_it_sparscr622.uti \ others\nw_it_sparscr709.uti \ others\nw_it_sparscr710.uti \ others\nw_it_sparscr711.uti \ others\nw_it_sparscr712.uti \ others\nw_it_sparscr713.uti \ others\nw_it_sparscr717.uti \ others\nw_it_sparscr718.uti \ others\nw_it_sparscr810.uti \ others\nw_it_sparscr811.uti \ others\nw_it_sparscr813.uti \ others\nw_it_sparscr815.uti \ others\nw_it_sparscr913.uti \ others\nw_it_sparscr914.uti \ others\nw_it_sparscr915.uti \ others\nw_it_sparscr916.uti \ others\nw_it_sparscr918.uti \ others\nw_it_spdvscr111.uti \ others\nw_it_spdvscr112.uti \ others\nw_it_spdvscr113.uti \ others\nw_it_spdvscr114.uti \ others\nw_it_spdvscr115.uti \ others\nw_it_spdvscr116.uti \ others\nw_it_spdvscr117.uti \ others\nw_it_spdvscr118.uti \ others\nw_it_spdvscr119.uti \ others\nw_it_spdvscr120.uti \ others\nw_it_spdvscr121.uti \ others\nw_it_spdvscr122.uti \ others\nw_it_spdvscr123.uti \ others\nw_it_spdvscr124.uti \ others\nw_it_spdvscr125.uti \ others\nw_it_spdvscr126.uti \ others\nw_it_spdvscr127.uti \ others\nw_it_spdvscr205.uti \ others\nw_it_spdvscr206.uti \ others\nw_it_spdvscr207.uti \ others\nw_it_spdvscr208.uti \ others\nw_it_spdvscr209.uti \ others\nw_it_spdvscr210.uti \ others\nw_it_spdvscr211.uti \ others\nw_it_spdvscr212.uti \ others\nw_it_spdvscr213.uti \ others\nw_it_spdvscr214.uti \ others\nw_it_spdvscr215.uti \ others\nw_it_spdvscr216.uti \ others\nw_it_spdvscr222.uti \ others\nw_it_spdvscr303.uti \ others\nw_it_spdvscr304.uti \ others\nw_it_spdvscr305.uti \ others\nw_it_spdvscr306.uti \ others\nw_it_spdvscr307.uti \ others\nw_it_spdvscr308.uti \ others\nw_it_spdvscr309.uti \ others\nw_it_spdvscr310.uti \ others\nw_it_spdvscr311.uti \ others\nw_it_spdvscr312.uti \ others\nw_it_spdvscr313.uti \ others\nw_it_spdvscr314.uti \ others\nw_it_spdvscr315.uti \ others\nw_it_spdvscr316.uti \ others\nw_it_spdvscr317.uti \ others\nw_it_spdvscr319.uti \ others\nw_it_spdvscr320.uti \ others\nw_it_spdvscr403.uti \ others\nw_it_spdvscr404.uti \ others\nw_it_spdvscr405.uti \ others\nw_it_spdvscr406.uti \ others\nw_it_spdvscr409.uti \ others\nw_it_spdvscr410.uti \ others\nw_it_spdvscr411.uti \ others\nw_it_spdvscr412.uti \ others\nw_it_spdvscr419.uti \ others\nw_it_spdvscr502.uti \ others\nw_it_spdvscr503.uti \ others\nw_it_spdvscr505.uti \ others\nw_it_spdvscr506.uti \ others\nw_it_spdvscr508.uti \ others\nw_it_spdvscr509.uti \ others\nw_it_spdvscr510.uti \ others\nw_it_spdvscr511.uti \ others\nw_it_spdvscr512.uti \ others\nw_it_spdvscr514.uti \ others\nw_it_spdvscr515.uti \ others\nw_it_spdvscr601.uti \ others\nw_it_spdvscr602.uti \ others\nw_it_spdvscr603.uti \ others\nw_it_spdvscr604.uti \ others\nw_it_spdvscr605.uti \ others\nw_it_spdvscr606.uti \ others\nw_it_spdvscr616.uti \ others\nw_it_spdvscr703.uti \ others\nw_it_spdvscr704.uti \ others\nw_it_spdvscr705.uti \ others\nw_it_spdvscr706.uti \ others\nw_it_spdvscr707.uti \ others\nw_it_spdvscr708.uti \ others\nw_it_spdvscr709.uti \ others\nw_it_spdvscr710.uti \ others\nw_it_spdvscr711.uti \ others\nw_it_spdvscr801.uti \ others\nw_it_spdvscr802.uti \ others\nw_it_spdvscr803.uti \ others\nw_it_spdvscr804.uti \ others\nw_it_spdvscr811.uti \ others\nw_it_spdvscr901.uti \ others\nw_it_spdvscr902.uti \ others\nw_it_spdvscr903.uti \ others\nw_it_spdvscr904.uti \ others\nw_it_spdvscr905.uti \ others\nw_it_spdvscr913.uti \ others\nw_s_airelder.utc \ others\nw_s_airgreat.utc \ others\nw_s_airhuge.utc \ others\nw_s_badgerdire.utc \ others\nw_s_balor.utc \ others\nw_s_balor_evil.utc \ others\nw_s_beardire.utc \ others\nw_s_boardire.utc \ others\nw_s_chound.utc \ others\nw_s_clantern.utc \ others\nw_s_ctrumpet.utc \ others\nw_s_diretiger.utc \ others\nw_s_dmquasit.utc \ others\nw_s_doomkght.utc \ others\nw_s_earthelder.utc \ others\nw_s_earthgreat.utc \ others\nw_s_earthhuge.utc \ others\nw_s_fireelder.utc \ others\nw_s_firegreat.utc \ others\nw_s_firehuge.utc \ others\nw_s_gargoyle.utc \ others\nw_s_ghast.utc \ others\nw_s_ghoul.utc \ others\nw_s_helmhorr.utc \ others\nw_s_imp.utc \ others\nw_s_lich.utc \ others\nw_s_mepsteam.utc \ others\nw_s_minogon.utc \ others\nw_s_mumcleric.utc \ others\nw_s_mumfight.utc \ others\nw_s_shadlord.utc \ others\nw_s_shadmastif.utc \ others\nw_s_shadow.utc \ others\nw_s_shfiend.utc \ others\nw_s_skelchief.utc \ others\nw_s_skeleton.utc \ others\nw_s_skelwarr.utc \ others\nw_s_slaaddeth.utc \ others\nw_s_slaadgrn.utc \ others\nw_s_slaadred.utc \ others\nw_s_spectre.utc \ others\nw_s_spiddire.utc \ others\nw_s_spidsword.utc \ others\nw_s_succubus.utc \ others\nw_s_vampire.utc \ others\nw_s_vrock.utc \ others\nw_s_waterelder.utc \ others\nw_s_watergreat.utc \ others\nw_s_waterhuge.utc \ others\nw_s_wight.utc \ others\nw_s_wolfdire.utc \ others\nw_s_wraith.utc \ others\nw_s_zombie.utc \ others\nw_s_zombtyrant.utc \ others\nw_sw_airgreat.utc \ others\nw_sw_earthgreat.utc \ others\nw_sw_firegreat.utc \ others\nw_sw_watergreat.utc \ others\nw_wmgmrd006.uti \ others\ogref.ltr \ others\ogrel.ltr \ others\ogrem.ltr \ others\orcf.ltr \ others\orcm.ltr \ others\ow_caltrops.uti \ others\ow_light_1.uti \ others\ow_sum_axe_1.utc \ others\ow_sum_axe_10.utc \ others\ow_sum_axe_11.utc \ others\ow_sum_axe_12.utc \ others\ow_sum_axe_2.utc \ others\ow_sum_axe_3.utc \ others\ow_sum_axe_4.utc \ others\ow_sum_axe_5.utc \ others\ow_sum_axe_6.utc \ others\ow_sum_axe_7.utc \ others\ow_sum_axe_8.utc \ others\ow_sum_axe_9.utc \ others\ow_sum_barb_1.utc \ others\ow_sum_barb_10.utc \ others\ow_sum_barb_11.utc \ others\ow_sum_barb_12.utc \ others\ow_sum_barb_2.utc \ others\ow_sum_barb_3.utc \ others\ow_sum_barb_4.utc \ others\ow_sum_barb_5.utc \ others\ow_sum_barb_6.utc \ others\ow_sum_barb_7.utc \ others\ow_sum_barb_8.utc \ others\ow_sum_barb_9.utc \ others\ow_sum_fght_1.utc \ others\ow_sum_fght_10.utc \ others\ow_sum_fght_11.utc \ others\ow_sum_fght_12.utc \ others\ow_sum_fght_2.utc \ others\ow_sum_fght_3.utc \ others\ow_sum_fght_4.utc \ others\ow_sum_fght_5.utc \ others\ow_sum_fght_6.utc \ others\ow_sum_fght_7.utc \ others\ow_sum_fght_8.utc \ others\ow_sum_fght_9.utc \ others\ow_sum_sham_1.utc \ others\ow_sum_sham_10.utc \ others\ow_sum_sham_11.utc \ others\ow_sum_sham_12.utc \ others\ow_sum_sham_2.utc \ others\ow_sum_sham_3.utc \ others\ow_sum_sham_4.utc \ others\ow_sum_sham_5.utc \ others\ow_sum_sham_6.utc \ others\ow_sum_sham_7.utc \ others\ow_sum_sham_8.utc \ others\ow_sum_sham_9.utc \ others\ow_taxe_1.uti \ others\pc_skin.uti \ others\phase_c_15.uti \ others\phase_c_20.uti \ others\phase_c_25.uti \ others\phase_c_30.uti \ others\phase_c_35.uti \ others\phase_c_40.uti \ others\pink_teal_water.txi \ others\pink_water.txi \ others\pixief.ltr \ others\pixieff.ltr \ others\pixiem.ltr \ others\plantf.ltr \ others\plantm.ltr \ others\platinumarmor4.uti \ others\platinumarmor6.uti \ others\platinumarmor8.uti \ others\plc_dimdoor.mdl \ others\plc_dimdoor.pwk \ others\plc_dustmotes.mdl \ others\plc_snow.mdl \ others\plc_wind.mdl \ others\pnp_lich_craft.dlg \ others\pnp_shft_cweap.uti \ others\pnp_shft_sprkbox.uti \ others\pnp_shft_tstpkup.uti \ others\polarb_c_hide01.uti \ others\polarb_c_hide05.uti \ others\polarb_c_hide10.uti \ others\polarb_c_hide15.uti \ others\polarb_c_hide20.uti \ others\polarb_c_hide25.uti \ others\polarb_c_hide30.uti \ others\polarb_c_hide35.uti \ others\pparl_.dlg \ others\prc_2da_cache.utc \ others\prc_a_beardire.utc \ others\prc_a_tigerdire.utc \ others\prc_a_wolfdire.utc \ others\prc_ab_arrow001.uti \ others\prc_ab_bolt.uti \ others\prc_ab_bullet.uti \ others\prc_ab_dart.uti \ others\prc_ab_shuriken.uti \ others\prc_ab_thraxe.uti \ others\prc_ac_badger01.utc \ others\prc_ac_badger02.utc \ others\prc_ac_badger03.utc \ others\prc_ac_badger04.utc \ others\prc_ac_badger05.utc \ others\prc_ac_badger06.utc \ others\prc_ac_badger07.utc \ others\prc_ac_badger08.utc \ others\prc_ac_badger09.utc \ others\prc_ac_badger10.utc \ others\prc_ac_badger11.utc \ others\prc_ac_badger12.utc \ others\prc_ac_badger13.utc \ others\prc_ac_badger14.utc \ others\prc_ac_badger15.utc \ others\prc_ac_badger16.utc \ others\prc_ac_badger17.utc \ others\prc_ac_badger18.utc \ others\prc_ac_badger19.utc \ others\prc_ac_badger20.utc \ others\prc_ac_badger21.utc \ others\prc_ac_badger22.utc \ others\prc_ac_badger23.utc \ others\prc_ac_badger24.utc \ others\prc_ac_badger25.utc \ others\prc_ac_badger26.utc \ others\prc_ac_badger27.utc \ others\prc_ac_badger28.utc \ others\prc_ac_badger29.utc \ others\prc_ac_badger30.utc \ others\prc_ac_badger31.utc \ others\prc_ac_badger32.utc \ others\prc_ac_badger33.utc \ others\prc_ac_badger34.utc \ others\prc_ac_badger35.utc \ others\prc_ac_badger36.utc \ others\prc_ac_badger37.utc \ others\prc_ac_badger38.utc \ others\prc_ac_badger39.utc \ others\prc_ac_badger40.utc \ others\prc_ac_direrat01.utc \ others\prc_ac_direrat02.utc \ others\prc_ac_direrat03.utc \ others\prc_ac_direrat04.utc \ others\prc_ac_direrat05.utc \ others\prc_ac_direrat06.utc \ others\prc_ac_direrat07.utc \ others\prc_ac_direrat08.utc \ others\prc_ac_direrat09.utc \ others\prc_ac_direrat10.utc \ others\prc_ac_direrat11.utc \ others\prc_ac_direrat12.utc \ others\prc_ac_direrat13.utc \ others\prc_ac_direrat14.utc \ others\prc_ac_direrat15.utc \ others\prc_ac_direrat16.utc \ others\prc_ac_direrat17.utc \ others\prc_ac_direrat18.utc \ others\prc_ac_direrat19.utc \ others\prc_ac_direrat20.utc \ others\prc_ac_direrat21.utc \ others\prc_ac_direrat22.utc \ others\prc_ac_direrat23.utc \ others\prc_ac_direrat24.utc \ others\prc_ac_direrat25.utc \ others\prc_ac_direrat26.utc \ others\prc_ac_direrat27.utc \ others\prc_ac_direrat28.utc \ others\prc_ac_direrat29.utc \ others\prc_ac_direrat30.utc \ others\prc_ac_direrat31.utc \ others\prc_ac_direrat32.utc \ others\prc_ac_direrat33.utc \ others\prc_ac_direrat34.utc \ others\prc_ac_direrat35.utc \ others\prc_ac_direrat36.utc \ others\prc_ac_direrat37.utc \ others\prc_ac_direrat38.utc \ others\prc_ac_direrat39.utc \ others\prc_ac_direrat40.utc \ others\prc_ac_dog01.utc \ others\prc_ac_dog02.utc \ others\prc_ac_dog03.utc \ others\prc_ac_dog04.utc \ others\prc_ac_dog05.utc \ others\prc_ac_dog06.utc \ others\prc_ac_dog07.utc \ others\prc_ac_dog08.utc \ others\prc_ac_dog09.utc \ others\prc_ac_dog10.utc \ others\prc_ac_dog11.utc \ others\prc_ac_dog12.utc \ others\prc_ac_dog13.utc \ others\prc_ac_dog14.utc \ others\prc_ac_dog15.utc \ others\prc_ac_dog16.utc \ others\prc_ac_dog17.utc \ others\prc_ac_dog18.utc \ others\prc_ac_dog19.utc \ others\prc_ac_dog20.utc \ others\prc_ac_dog21.utc \ others\prc_ac_dog22.utc \ others\prc_ac_dog23.utc \ others\prc_ac_dog24.utc \ others\prc_ac_dog25.utc \ others\prc_ac_dog26.utc \ others\prc_ac_dog27.utc \ others\prc_ac_dog28.utc \ others\prc_ac_dog29.utc \ others\prc_ac_dog30.utc \ others\prc_ac_dog31.utc \ others\prc_ac_dog32.utc \ others\prc_ac_dog33.utc \ others\prc_ac_dog34.utc \ others\prc_ac_dog35.utc \ others\prc_ac_dog36.utc \ others\prc_ac_dog37.utc \ others\prc_ac_dog38.utc \ others\prc_ac_dog39.utc \ others\prc_ac_dog40.utc \ others\prc_ac_dogride01.utc \ others\prc_ac_dogride02.utc \ others\prc_ac_dogride03.utc \ others\prc_ac_dogride04.utc \ others\prc_ac_dogride05.utc \ others\prc_ac_dogride06.utc \ others\prc_ac_dogride07.utc \ others\prc_ac_dogride08.utc \ others\prc_ac_dogride09.utc \ others\prc_ac_dogride10.utc \ others\prc_ac_dogride11.utc \ others\prc_ac_dogride12.utc \ others\prc_ac_dogride13.utc \ others\prc_ac_dogride14.utc \ others\prc_ac_dogride15.utc \ others\prc_ac_dogride16.utc \ others\prc_ac_dogride17.utc \ others\prc_ac_dogride18.utc \ others\prc_ac_dogride19.utc \ others\prc_ac_dogride20.utc \ others\prc_ac_dogride21.utc \ others\prc_ac_dogride22.utc \ others\prc_ac_dogride23.utc \ others\prc_ac_dogride24.utc \ others\prc_ac_dogride25.utc \ others\prc_ac_dogride26.utc \ others\prc_ac_dogride27.utc \ others\prc_ac_dogride28.utc \ others\prc_ac_dogride29.utc \ others\prc_ac_dogride30.utc \ others\prc_ac_dogride31.utc \ others\prc_ac_dogride32.utc \ others\prc_ac_dogride33.utc \ others\prc_ac_dogride34.utc \ others\prc_ac_dogride35.utc \ others\prc_ac_dogride36.utc \ others\prc_ac_dogride37.utc \ others\prc_ac_dogride38.utc \ others\prc_ac_dogride39.utc \ others\prc_ac_dogride40.utc \ others\prc_ac_eagle01.utc \ others\prc_ac_eagle02.utc \ others\prc_ac_eagle03.utc \ others\prc_ac_eagle04.utc \ others\prc_ac_eagle05.utc \ others\prc_ac_eagle06.utc \ others\prc_ac_eagle07.utc \ others\prc_ac_eagle08.utc \ others\prc_ac_eagle09.utc \ others\prc_ac_eagle10.utc \ others\prc_ac_eagle11.utc \ others\prc_ac_eagle12.utc \ others\prc_ac_eagle13.utc \ others\prc_ac_eagle14.utc \ others\prc_ac_eagle15.utc \ others\prc_ac_eagle16.utc \ others\prc_ac_eagle17.utc \ others\prc_ac_eagle18.utc \ others\prc_ac_eagle19.utc \ others\prc_ac_eagle20.utc \ others\prc_ac_eagle21.utc \ others\prc_ac_eagle22.utc \ others\prc_ac_eagle23.utc \ others\prc_ac_eagle24.utc \ others\prc_ac_eagle25.utc \ others\prc_ac_eagle26.utc \ others\prc_ac_eagle27.utc \ others\prc_ac_eagle28.utc \ others\prc_ac_eagle29.utc \ others\prc_ac_eagle30.utc \ others\prc_ac_eagle31.utc \ others\prc_ac_eagle32.utc \ others\prc_ac_eagle33.utc \ others\prc_ac_eagle34.utc \ others\prc_ac_eagle35.utc \ others\prc_ac_eagle36.utc \ others\prc_ac_eagle37.utc \ others\prc_ac_eagle38.utc \ others\prc_ac_eagle39.utc \ others\prc_ac_eagle40.utc \ others\prc_ac_hawk01.utc \ others\prc_ac_hawk02.utc \ others\prc_ac_hawk03.utc \ others\prc_ac_hawk04.utc \ others\prc_ac_hawk05.utc \ others\prc_ac_hawk06.utc \ others\prc_ac_hawk07.utc \ others\prc_ac_hawk08.utc \ others\prc_ac_hawk09.utc \ others\prc_ac_hawk10.utc \ others\prc_ac_hawk11.utc \ others\prc_ac_hawk12.utc \ others\prc_ac_hawk13.utc \ others\prc_ac_hawk14.utc \ others\prc_ac_hawk15.utc \ others\prc_ac_hawk16.utc \ others\prc_ac_hawk17.utc \ others\prc_ac_hawk18.utc \ others\prc_ac_hawk19.utc \ others\prc_ac_hawk20.utc \ others\prc_ac_hawk21.utc \ others\prc_ac_hawk22.utc \ others\prc_ac_hawk23.utc \ others\prc_ac_hawk24.utc \ others\prc_ac_hawk25.utc \ others\prc_ac_hawk26.utc \ others\prc_ac_hawk27.utc \ others\prc_ac_hawk28.utc \ others\prc_ac_hawk29.utc \ others\prc_ac_hawk30.utc \ others\prc_ac_hawk31.utc \ others\prc_ac_hawk32.utc \ others\prc_ac_hawk33.utc \ others\prc_ac_hawk34.utc \ others\prc_ac_hawk35.utc \ others\prc_ac_hawk36.utc \ others\prc_ac_hawk37.utc \ others\prc_ac_hawk38.utc \ others\prc_ac_hawk39.utc \ others\prc_ac_hawk40.utc \ others\prc_ac_hvhorse01.utc \ others\prc_ac_hvhorse02.utc \ others\prc_ac_hvhorse03.utc \ others\prc_ac_hvhorse04.utc \ others\prc_ac_hvhorse05.utc \ others\prc_ac_hvhorse06.utc \ others\prc_ac_hvhorse07.utc \ others\prc_ac_hvhorse08.utc \ others\prc_ac_hvhorse09.utc \ others\prc_ac_hvhorse10.utc \ others\prc_ac_hvhorse11.utc \ others\prc_ac_hvhorse12.utc \ others\prc_ac_hvhorse13.utc \ others\prc_ac_hvhorse14.utc \ others\prc_ac_hvhorse15.utc \ others\prc_ac_hvhorse16.utc \ others\prc_ac_hvhorse17.utc \ others\prc_ac_hvhorse18.utc \ others\prc_ac_hvhorse19.utc \ others\prc_ac_hvhorse20.utc \ others\prc_ac_hvhorse21.utc \ others\prc_ac_hvhorse22.utc \ others\prc_ac_hvhorse23.utc \ others\prc_ac_hvhorse24.utc \ others\prc_ac_hvhorse25.utc \ others\prc_ac_hvhorse26.utc \ others\prc_ac_hvhorse27.utc \ others\prc_ac_hvhorse28.utc \ others\prc_ac_hvhorse29.utc \ others\prc_ac_hvhorse30.utc \ others\prc_ac_hvhorse31.utc \ others\prc_ac_hvhorse32.utc \ others\prc_ac_hvhorse33.utc \ others\prc_ac_hvhorse34.utc \ others\prc_ac_hvhorse35.utc \ others\prc_ac_hvhorse36.utc \ others\prc_ac_hvhorse37.utc \ others\prc_ac_hvhorse38.utc \ others\prc_ac_hvhorse39.utc \ others\prc_ac_hvhorse40.utc \ others\prc_ac_lthorse01.utc \ others\prc_ac_lthorse02.utc \ others\prc_ac_lthorse03.utc \ others\prc_ac_lthorse04.utc \ others\prc_ac_lthorse05.utc \ others\prc_ac_lthorse06.utc \ others\prc_ac_lthorse07.utc \ others\prc_ac_lthorse08.utc \ others\prc_ac_lthorse09.utc \ others\prc_ac_lthorse10.utc \ others\prc_ac_lthorse11.utc \ others\prc_ac_lthorse12.utc \ others\prc_ac_lthorse13.utc \ others\prc_ac_lthorse14.utc \ others\prc_ac_lthorse15.utc \ others\prc_ac_lthorse16.utc \ others\prc_ac_lthorse17.utc \ others\prc_ac_lthorse18.utc \ others\prc_ac_lthorse19.utc \ others\prc_ac_lthorse20.utc \ others\prc_ac_lthorse21.utc \ others\prc_ac_lthorse22.utc \ others\prc_ac_lthorse23.utc \ others\prc_ac_lthorse24.utc \ others\prc_ac_lthorse25.utc \ others\prc_ac_lthorse26.utc \ others\prc_ac_lthorse27.utc \ others\prc_ac_lthorse28.utc \ others\prc_ac_lthorse29.utc \ others\prc_ac_lthorse30.utc \ others\prc_ac_lthorse31.utc \ others\prc_ac_lthorse32.utc \ others\prc_ac_lthorse33.utc \ others\prc_ac_lthorse34.utc \ others\prc_ac_lthorse35.utc \ others\prc_ac_lthorse36.utc \ others\prc_ac_lthorse37.utc \ others\prc_ac_lthorse38.utc \ others\prc_ac_lthorse39.utc \ others\prc_ac_lthorse40.utc \ others\prc_ac_mviper01.utc \ others\prc_ac_mviper02.utc \ others\prc_ac_mviper03.utc \ others\prc_ac_mviper04.utc \ others\prc_ac_mviper05.utc \ others\prc_ac_mviper06.utc \ others\prc_ac_mviper07.utc \ others\prc_ac_mviper08.utc \ others\prc_ac_mviper09.utc \ others\prc_ac_mviper10.utc \ others\prc_ac_mviper11.utc \ others\prc_ac_mviper12.utc \ others\prc_ac_mviper13.utc \ others\prc_ac_mviper14.utc \ others\prc_ac_mviper15.utc \ others\prc_ac_mviper16.utc \ others\prc_ac_mviper17.utc \ others\prc_ac_mviper18.utc \ others\prc_ac_mviper19.utc \ others\prc_ac_mviper20.utc \ others\prc_ac_mviper21.utc \ others\prc_ac_mviper22.utc \ others\prc_ac_mviper23.utc \ others\prc_ac_mviper24.utc \ others\prc_ac_mviper25.utc \ others\prc_ac_mviper26.utc \ others\prc_ac_mviper27.utc \ others\prc_ac_mviper28.utc \ others\prc_ac_mviper29.utc \ others\prc_ac_mviper30.utc \ others\prc_ac_mviper31.utc \ others\prc_ac_mviper32.utc \ others\prc_ac_mviper33.utc \ others\prc_ac_mviper34.utc \ others\prc_ac_mviper35.utc \ others\prc_ac_mviper36.utc \ others\prc_ac_mviper37.utc \ others\prc_ac_mviper38.utc \ others\prc_ac_mviper39.utc \ others\prc_ac_mviper40.utc \ others\prc_ac_owl01.utc \ others\prc_ac_owl02.utc \ others\prc_ac_owl03.utc \ others\prc_ac_owl04.utc \ others\prc_ac_owl05.utc \ others\prc_ac_owl06.utc \ others\prc_ac_owl07.utc \ others\prc_ac_owl08.utc \ others\prc_ac_owl09.utc \ others\prc_ac_owl10.utc \ others\prc_ac_owl11.utc \ others\prc_ac_owl12.utc \ others\prc_ac_owl13.utc \ others\prc_ac_owl14.utc \ others\prc_ac_owl15.utc \ others\prc_ac_owl16.utc \ others\prc_ac_owl17.utc \ others\prc_ac_owl18.utc \ others\prc_ac_owl19.utc \ others\prc_ac_owl20.utc \ others\prc_ac_owl21.utc \ others\prc_ac_owl22.utc \ others\prc_ac_owl23.utc \ others\prc_ac_owl24.utc \ others\prc_ac_owl25.utc \ others\prc_ac_owl26.utc \ others\prc_ac_owl27.utc \ others\prc_ac_owl28.utc \ others\prc_ac_owl29.utc \ others\prc_ac_owl30.utc \ others\prc_ac_owl31.utc \ others\prc_ac_owl32.utc \ others\prc_ac_owl33.utc \ others\prc_ac_owl34.utc \ others\prc_ac_owl35.utc \ others\prc_ac_owl36.utc \ others\prc_ac_owl37.utc \ others\prc_ac_owl38.utc \ others\prc_ac_owl39.utc \ others\prc_ac_owl40.utc \ others\prc_ac_pony01.utc \ others\prc_ac_pony02.utc \ others\prc_ac_pony03.utc \ others\prc_ac_pony04.utc \ others\prc_ac_pony05.utc \ others\prc_ac_pony06.utc \ others\prc_ac_pony07.utc \ others\prc_ac_pony08.utc \ others\prc_ac_pony09.utc \ others\prc_ac_pony10.utc \ others\prc_ac_pony11.utc \ others\prc_ac_pony12.utc \ others\prc_ac_pony13.utc \ others\prc_ac_pony14.utc \ others\prc_ac_pony15.utc \ others\prc_ac_pony16.utc \ others\prc_ac_pony17.utc \ others\prc_ac_pony18.utc \ others\prc_ac_pony19.utc \ others\prc_ac_pony20.utc \ others\prc_ac_pony21.utc \ others\prc_ac_pony22.utc \ others\prc_ac_pony23.utc \ others\prc_ac_pony24.utc \ others\prc_ac_pony25.utc \ others\prc_ac_pony26.utc \ others\prc_ac_pony27.utc \ others\prc_ac_pony28.utc \ others\prc_ac_pony29.utc \ others\prc_ac_pony30.utc \ others\prc_ac_pony31.utc \ others\prc_ac_pony32.utc \ others\prc_ac_pony33.utc \ others\prc_ac_pony34.utc \ others\prc_ac_pony35.utc \ others\prc_ac_pony36.utc \ others\prc_ac_pony37.utc \ others\prc_ac_pony38.utc \ others\prc_ac_pony39.utc \ others\prc_ac_pony40.utc \ others\prc_ac_wolf01.utc \ others\prc_ac_wolf02.utc \ others\prc_ac_wolf03.utc \ others\prc_ac_wolf04.utc \ others\prc_ac_wolf05.utc \ others\prc_ac_wolf06.utc \ others\prc_ac_wolf07.utc \ others\prc_ac_wolf08.utc \ others\prc_ac_wolf09.utc \ others\prc_ac_wolf10.utc \ others\prc_ac_wolf11.utc \ others\prc_ac_wolf12.utc \ others\prc_ac_wolf13.utc \ others\prc_ac_wolf14.utc \ others\prc_ac_wolf15.utc \ others\prc_ac_wolf16.utc \ others\prc_ac_wolf17.utc \ others\prc_ac_wolf18.utc \ others\prc_ac_wolf19.utc \ others\prc_ac_wolf20.utc \ others\prc_ac_wolf21.utc \ others\prc_ac_wolf22.utc \ others\prc_ac_wolf23.utc \ others\prc_ac_wolf24.utc \ others\prc_ac_wolf25.utc \ others\prc_ac_wolf26.utc \ others\prc_ac_wolf27.utc \ others\prc_ac_wolf28.utc \ others\prc_ac_wolf29.utc \ others\prc_ac_wolf30.utc \ others\prc_ac_wolf31.utc \ others\prc_ac_wolf32.utc \ others\prc_ac_wolf33.utc \ others\prc_ac_wolf34.utc \ others\prc_ac_wolf35.utc \ others\prc_ac_wolf36.utc \ others\prc_ac_wolf37.utc \ others\prc_ac_wolf38.utc \ others\prc_ac_wolf39.utc \ others\prc_ac_wolf40.utc \ others\prc_agares_elem.uti \ others\prc_agony.uti \ others\prc_algoid.utc \ others\prc_ara_bite_c.uti \ others\prc_ara_bite_d.uti \ others\prc_ara_bite_f.uti \ others\prc_ara_bite_g.uti \ others\prc_ara_bite_h.uti \ others\prc_ara_bite_l.uti \ others\prc_ara_bite_m.uti \ others\prc_ara_bite_s.uti \ others\prc_ara_bite_t.uti \ others\prc_ara_human.utc \ others\prc_ara_hybrid.utc \ others\prc_baccaran.uti \ others\prc_bat_swarm.utc \ others\prc_brittlebn.uti \ others\prc_bw0_bite_c.uti \ others\prc_bw0_bite_d.uti \ others\prc_bw0_bite_f.uti \ others\prc_bw0_bite_g.uti \ others\prc_bw0_bite_h.uti \ others\prc_bw0_bite_l.uti \ others\prc_bw0_bite_m.uti \ others\prc_bw0_bite_s.uti \ others\prc_bw0_bite_t.uti \ others\prc_bw1_bite_c.uti \ others\prc_bw1_bite_d.uti \ others\prc_bw1_bite_f.uti \ others\prc_bw1_bite_g.uti \ others\prc_bw1_bite_h.uti \ others\prc_bw1_bite_l.uti \ others\prc_bw1_bite_m.uti \ others\prc_bw1_bite_s.uti \ others\prc_bw1_bite_t.uti \ others\prc_bw2_bite_c.uti \ others\prc_bw2_bite_d.uti \ others\prc_bw2_bite_f.uti \ others\prc_bw2_bite_g.uti \ others\prc_bw2_bite_h.uti \ others\prc_bw2_bite_l.uti \ others\prc_bw2_bite_m.uti \ others\prc_bw2_bite_s.uti \ others\prc_bw2_bite_t.uti \ others\prc_bw3_bite_c.uti \ others\prc_bw3_bite_d.uti \ others\prc_bw3_bite_f.uti \ others\prc_bw3_bite_g.uti \ others\prc_bw3_bite_h.uti \ others\prc_bw3_bite_l.uti \ others\prc_bw3_bite_m.uti \ others\prc_bw3_bite_s.uti \ others\prc_bw3_bite_t.uti \ others\prc_bw4_bite_c.uti \ others\prc_bw4_bite_d.uti \ others\prc_bw4_bite_f.uti \ others\prc_bw4_bite_g.uti \ others\prc_bw4_bite_h.uti \ others\prc_bw4_bite_l.uti \ others\prc_bw4_bite_m.uti \ others\prc_bw4_bite_s.uti \ others\prc_bw4_bite_t.uti \ others\prc_cent_hoof_.uti \ others\prc_cent_hoof_c.uti \ others\prc_cent_hoof_d.uti \ others\prc_cent_hoof_f.uti \ others\prc_cent_hoof_g.uti \ others\prc_cent_hoof_h.uti \ others\prc_cent_hoof_l.uti \ others\prc_cent_hoof_s.uti \ others\prc_cent_hoof_t.uti \ others\prc_chicken.utc \ others\prc_claw_1d6l_c.uti \ others\prc_claw_1d6l_d.uti \ others\prc_claw_1d6l_f.uti \ others\prc_claw_1d6l_g.uti \ others\prc_claw_1d6l_h.uti \ others\prc_claw_1d6l_l.uti \ others\prc_claw_1d6l_m.uti \ others\prc_claw_1d6l_s.uti \ others\prc_claw_1d6l_t.uti \ others\prc_claw_1d6m_c.uti \ others\prc_claw_1d6m_d.uti \ others\prc_claw_1d6m_f.uti \ others\prc_claw_1d6m_g.uti \ others\prc_claw_1d6m_h.uti \ others\prc_claw_1d6m_l.uti \ others\prc_claw_1d6m_m.uti \ others\prc_claw_1d6m_s.uti \ others\prc_claw_1d6m_t.uti \ others\prc_claw_1d8m_c.uti \ others\prc_claw_1d8m_d.uti \ others\prc_claw_1d8m_f.uti \ others\prc_claw_1d8m_g.uti \ others\prc_claw_1d8m_h.uti \ others\prc_claw_1d8m_l.uti \ others\prc_claw_1d8m_m.uti \ others\prc_claw_1d8m_s.uti \ others\prc_claw_1d8m_t.uti \ others\prc_claw_2d6m_c.uti \ others\prc_claw_2d6m_d.uti \ others\prc_claw_2d6m_f.uti \ others\prc_claw_2d6m_g.uti \ others\prc_claw_2d6m_h.uti \ others\prc_claw_2d6m_l.uti \ others\prc_claw_2d6m_m.uti \ others\prc_claw_2d6m_s.uti \ others\prc_claw_2d6m_t.uti \ others\prc_claw_3d6m_c.uti \ others\prc_claw_3d6m_d.uti \ others\prc_claw_3d6m_f.uti \ others\prc_claw_3d6m_g.uti \ others\prc_claw_3d6m_h.uti \ others\prc_claw_3d6m_l.uti \ others\prc_claw_3d6m_m.uti \ others\prc_claw_3d6m_s.uti \ others\prc_claw_3d6m_t.uti \ others\prc_claw_4d6m_c.uti \ others\prc_claw_4d6m_d.uti \ others\prc_claw_4d6m_f.uti \ others\prc_claw_4d6m_g.uti \ others\prc_claw_4d6m_h.uti \ others\prc_claw_4d6m_l.uti \ others\prc_claw_4d6m_m.uti \ others\prc_claw_4d6m_s.uti \ others\prc_claw_4d6m_t.uti \ others\prc_claw_5d6m_c.uti \ others\prc_claw_5d6m_d.uti \ others\prc_claw_5d6m_f.uti \ others\prc_claw_5d6m_g.uti \ others\prc_claw_5d6m_h.uti \ others\prc_claw_5d6m_l.uti \ others\prc_claw_5d6m_m.uti \ others\prc_claw_5d6m_s.uti \ others\prc_claw_5d6m_t.uti \ others\prc_claw_6d6m_c.uti \ others\prc_claw_6d6m_d.uti \ others\prc_claw_6d6m_f.uti \ others\prc_claw_6d6m_g.uti \ others\prc_claw_6d6m_h.uti \ others\prc_claw_6d6m_l.uti \ others\prc_claw_6d6m_m.uti \ others\prc_claw_6d6m_s.uti \ others\prc_claw_6d6m_t.uti \ others\prc_cns_ada_h.uti \ others\prc_cns_cly_h.uti \ others\prc_cns_dem_c.uti \ others\prc_cns_dem_h.uti \ others\prc_cns_fle_h.uti \ others\prc_cns_irn_h.uti \ others\prc_cns_mit_h.uti \ others\prc_cns_stn_h.uti \ others\prc_compassion.utc \ others\prc_con_adam.utc \ others\prc_con_adam_55.utc \ others\prc_con_adam_60.utc \ others\prc_con_adam_65.utc \ others\prc_con_adam_70.utc \ others\prc_con_adam_75.utc \ others\prc_con_adam_80.utc \ others\prc_con_clay.utc \ others\prc_con_clay_12.utc \ others\prc_con_clay_17.utc \ others\prc_con_clay_22.utc \ others\prc_con_clay_27.utc \ others\prc_con_clay_32.utc \ others\prc_con_conv.dlg \ others\prc_con_demo.utc \ others\prc_con_fles.utc \ others\prc_con_fles_10.utc \ others\prc_con_fles_15.utc \ others\prc_con_fles_20.utc \ others\prc_con_fles_25.utc \ others\prc_con_iron.utc \ others\prc_con_iron_19.utc \ others\prc_con_iron_24.utc \ others\prc_con_iron_29.utc \ others\prc_con_iron_34.utc \ others\prc_con_iron_39.utc \ others\prc_con_iron_44.utc \ others\prc_con_iron_49.utc \ others\prc_con_iron_54.utc \ others\prc_con_mith.utc \ others\prc_con_mith_37.utc \ others\prc_con_mith_42.utc \ others\prc_con_mith_47.utc \ others\prc_con_mith_52.utc \ others\prc_con_mith_57.utc \ others\prc_con_mith_62.utc \ others\prc_con_mith_67.utc \ others\prc_con_mith_72.utc \ others\prc_con_ston.utc \ others\prc_con_ston_15.utc \ others\prc_con_ston_20.utc \ others\prc_con_ston_25.utc \ others\prc_con_ston_30.utc \ others\prc_con_ston_35.utc \ others\prc_con_ston_40.utc \ others\prc_corn_claw.uti \ others\prc_corn_hide.uti \ others\prc_craft_token.uti \ others\prc_crown_might.uti \ others\prc_crown_prot.uti \ others\prc_crush_fist.utc \ others\prc_cursedwater.uti \ others\prc_cwand_ccw.uti \ others\prc_cwand_clw.uti \ others\prc_cwand_cmdw.uti \ others\prc_cwand_cmw.uti \ others\prc_cwand_csw.uti \ others\prc_danclighth.utc \ others\prc_danclights.utc \ others\prc_devclaw_c.uti \ others\prc_devclaw_g.uti \ others\prc_devclaw_h.uti \ others\prc_devclaw_l.uti \ others\prc_devclaw_m.uti \ others\prc_devclaw_s.uti \ others\prc_devclaw_t.uti \ others\prc_devilweed.uti \ others\prc_diaclaw_0_c.uti \ others\prc_diaclaw_0_g.uti \ others\prc_diaclaw_0_h.uti \ others\prc_diaclaw_0_l.uti \ others\prc_diaclaw_0_m.uti \ others\prc_diaclaw_0_s.uti \ others\prc_diaclaw_0_t.uti \ others\prc_diaclaw_1_c.uti \ others\prc_diaclaw_1_g.uti \ others\prc_diaclaw_1_h.uti \ others\prc_diaclaw_1_l.uti \ others\prc_diaclaw_1_m.uti \ others\prc_diaclaw_1_s.uti \ others\prc_diaclaw_1_t.uti \ others\prc_diaclaw_2_c.uti \ others\prc_diaclaw_2_g.uti \ others\prc_diaclaw_2_h.uti \ others\prc_diaclaw_2_l.uti \ others\prc_diaclaw_2_m.uti \ others\prc_diaclaw_2_s.uti \ others\prc_diaclaw_2_t.uti \ others\prc_diaclaw_3_c.uti \ others\prc_diaclaw_3_g.uti \ others\prc_diaclaw_3_h.uti \ others\prc_diaclaw_3_l.uti \ others\prc_diaclaw_3_m.uti \ others\prc_diaclaw_3_s.uti \ others\prc_diaclaw_3_t.uti \ others\prc_diaclaw_4_c.uti \ others\prc_diaclaw_4_g.uti \ others\prc_diaclaw_4_h.uti \ others\prc_diaclaw_4_l.uti \ others\prc_diaclaw_4_m.uti \ others\prc_diaclaw_4_s.uti \ others\prc_diaclaw_4_t.uti \ others\prc_diaclaw_5_c.uti \ others\prc_diaclaw_5_g.uti \ others\prc_diaclaw_5_h.uti \ others\prc_diaclaw_5_l.uti \ others\prc_diaclaw_5_m.uti \ others\prc_diaclaw_5_s.uti \ others\prc_diaclaw_5_t.uti \ others\prc_diatail_0_c.uti \ others\prc_diatail_0_g.uti \ others\prc_diatail_0_h.uti \ others\prc_diatail_0_l.uti \ others\prc_diatail_0_m.uti \ others\prc_diatail_0_s.uti \ others\prc_diatail_0_t.uti \ others\prc_diatail_1_c.uti \ others\prc_diatail_1_g.uti \ others\prc_diatail_1_h.uti \ others\prc_diatail_1_l.uti \ others\prc_diatail_1_m.uti \ others\prc_diatail_1_s.uti \ others\prc_diatail_1_t.uti \ others\prc_diatail_2_c.uti \ others\prc_diatail_2_g.uti \ others\prc_diatail_2_h.uti \ others\prc_diatail_2_l.uti \ others\prc_diatail_2_m.uti \ others\prc_diatail_2_s.uti \ others\prc_diatail_2_t.uti \ others\prc_diatail_3_c.uti \ others\prc_diatail_3_g.uti \ others\prc_diatail_3_h.uti \ others\prc_diatail_3_l.uti \ others\prc_diatail_3_m.uti \ others\prc_diatail_3_s.uti \ others\prc_diatail_3_t.uti \ others\prc_diatail_4_c.uti \ others\prc_diatail_4_g.uti \ others\prc_diatail_4_h.uti \ others\prc_diatail_4_l.uti \ others\prc_diatail_4_m.uti \ others\prc_diatail_4_s.uti \ others\prc_diatail_4_t.uti \ others\prc_diatail_5_c.uti \ others\prc_diatail_5_g.uti \ others\prc_diatail_5_h.uti \ others\prc_diatail_5_l.uti \ others\prc_diatail_5_m.uti \ others\prc_diatail_5_s.uti \ others\prc_diatail_5_t.uti \ others\prc_doa_hellcat.utc \ others\prc_dpst_pillar.utp \ others\prc_drag_cld.utc \ others\prc_dretchhide.uti \ others\prc_drgnally.utc \ others\prc_drid_bite_c.uti \ others\prc_drid_bite_g.uti \ others\prc_drid_bite_h.uti \ others\prc_drid_bite_l.uti \ others\prc_drid_bite_m.uti \ others\prc_drid_bite_s.uti \ others\prc_ea_return.utp \ others\prc_earthquake.mdl \ others\prc_eldrtch_glv.uti \ others\prc_epicspells.utm \ others\prc_ess_research.utp \ others\prc_fod_tent_c.uti \ others\prc_fod_tent_d.uti \ others\prc_fod_tent_f.uti \ others\prc_fod_tent_g.uti \ others\prc_fod_tent_h.uti \ others\prc_fod_tent_l.uti \ others\prc_fod_tent_m.uti \ others\prc_fod_tent_s.uti \ others\prc_fod_tent_t.uti \ others\prc_gel_claw.uti \ others\prc_gel_hide.uti \ others\prc_gen_listener.utc \ others\prc_glab_hide.uti \ others\prc_ham_claw.uti \ others\prc_ham_hide.uti \ others\prc_hath_rash.utc \ others\prc_hath_rash10.utc \ others\prc_hath_rash2.utc \ others\prc_hath_rash3.utc \ others\prc_hath_rash4.utc \ others\prc_hath_rash5.utc \ others\prc_hath_rash6.utc \ others\prc_hath_rash7.utc \ others\prc_hath_rash8.utc \ others\prc_hath_rash9.utc \ others\prc_hdarc_bite_c.uti \ others\prc_hdarc_bite_d.uti \ others\prc_hdarc_bite_f.uti \ others\prc_hdarc_bite_g.uti \ others\prc_hdarc_bite_h.uti \ others\prc_hdarc_bite_l.uti \ others\prc_hdarc_bite_m.uti \ others\prc_hdarc_bite_s.uti \ others\prc_hdarc_bite_t.uti \ others\prc_hdarc_slam_c.uti \ others\prc_hdarc_slam_g.uti \ others\prc_hdarc_slam_h.uti \ others\prc_hdarc_slam_l.uti \ others\prc_hdarc_slam_m.uti \ others\prc_hdarc_slam_s.uti \ others\prc_hdarc_slam_t.uti \ others\prc_hench_wight3.utc \ others\prc_hex_darkcomp.utc \ others\prc_hide_algoid.uti \ others\prc_hide_myconid.uti \ others\prc_hide_shambmd.uti \ others\prc_hound_doom.utc \ others\prc_ill_tent_c.uti \ others\prc_ill_tent_d.uti \ others\prc_ill_tent_f.uti \ others\prc_ill_tent_g.uti \ others\prc_ill_tent_h.uti \ others\prc_ill_tent_l.uti \ others\prc_ill_tent_m.uti \ others\prc_ill_tent_s.uti \ others\prc_ill_tent_t.uti \ others\prc_invisobj.utp \ others\prc_invoketoken.uti \ others\prc_ip100_0.uti \ others\prc_ip100_1.uti \ others\prc_ip100_2.uti \ others\prc_ip100_3.uti \ others\prc_ip100_4.uti \ others\prc_ip100_5.uti \ others\prc_ip101.uti \ others\prc_ip102.uti \ others\prc_ip103.uti \ others\prc_ip104.uti \ others\prc_ip120.uti \ others\prc_ip121.uti \ others\prc_ip122.uti \ others\prc_ip123.uti \ others\prc_ip124.uti \ others\prc_ip125.uti \ others\prc_ip126.uti \ others\prc_ip127.uti \ others\prc_ip128.uti \ others\prc_ip129.uti \ others\prc_ip130.uti \ others\prc_ip131.uti \ others\prc_ip132.uti \ others\prc_ip133.uti \ others\prc_ip134.uti \ others\prc_ip150_0.uti \ others\prc_ip150_1.uti \ others\prc_ip150_2.uti \ others\prc_ip150_3.uti \ others\prc_ip150_4.uti \ others\prc_ip85.uti \ others\prc_ip86.uti \ others\prc_ip87.uti \ others\prc_ip88.uti \ others\prc_ip89.uti \ others\prc_ip90.uti \ others\prc_ip91.uti \ others\prc_ip92_0.uti \ others\prc_ip92_1.uti \ others\prc_ip92_10.uti \ others\prc_ip92_100.uti \ others\prc_ip92_1000.uti \ others\prc_ip92_1001.uti \ others\prc_ip92_1002.uti \ others\prc_ip92_1003.uti \ others\prc_ip92_1004.uti \ others\prc_ip92_1005.uti \ others\prc_ip92_1006.uti \ others\prc_ip92_1007.uti \ others\prc_ip92_1008.uti \ others\prc_ip92_1009.uti \ others\prc_ip92_101.uti \ others\prc_ip92_1010.uti \ others\prc_ip92_1011.uti \ others\prc_ip92_1012.uti \ others\prc_ip92_1013.uti \ others\prc_ip92_1014.uti \ others\prc_ip92_1015.uti \ others\prc_ip92_1016.uti \ others\prc_ip92_1017.uti \ others\prc_ip92_1018.uti \ others\prc_ip92_1019.uti \ others\prc_ip92_102.uti \ others\prc_ip92_1020.uti \ others\prc_ip92_1021.uti \ others\prc_ip92_1022.uti \ others\prc_ip92_1023.uti \ others\prc_ip92_1024.uti \ others\prc_ip92_1025.uti \ others\prc_ip92_1026.uti \ others\prc_ip92_1027.uti \ others\prc_ip92_1028.uti \ others\prc_ip92_1029.uti \ others\prc_ip92_103.uti \ others\prc_ip92_1030.uti \ others\prc_ip92_1031.uti \ others\prc_ip92_1032.uti \ others\prc_ip92_1033.uti \ others\prc_ip92_1034.uti \ others\prc_ip92_1035.uti \ others\prc_ip92_1036.uti \ others\prc_ip92_1037.uti \ others\prc_ip92_1038.uti \ others\prc_ip92_1039.uti \ others\prc_ip92_104.uti \ others\prc_ip92_1040.uti \ others\prc_ip92_1041.uti \ others\prc_ip92_1042.uti \ others\prc_ip92_1043.uti \ others\prc_ip92_1044.uti \ others\prc_ip92_1045.uti \ others\prc_ip92_1046.uti \ others\prc_ip92_1047.uti \ others\prc_ip92_1048.uti \ others\prc_ip92_1049.uti \ others\prc_ip92_105.uti \ others\prc_ip92_1050.uti \ others\prc_ip92_1051.uti \ others\prc_ip92_1052.uti \ others\prc_ip92_1053.uti \ others\prc_ip92_1054.uti \ others\prc_ip92_1055.uti \ others\prc_ip92_1056.uti \ others\prc_ip92_1057.uti \ others\prc_ip92_1058.uti \ others\prc_ip92_1059.uti \ others\prc_ip92_106.uti \ others\prc_ip92_1060.uti \ others\prc_ip92_1061.uti \ others\prc_ip92_1062.uti \ others\prc_ip92_1063.uti \ others\prc_ip92_1064.uti \ others\prc_ip92_1065.uti \ others\prc_ip92_1066.uti \ others\prc_ip92_1067.uti \ others\prc_ip92_1068.uti \ others\prc_ip92_1069.uti \ others\prc_ip92_107.uti \ others\prc_ip92_1070.uti \ others\prc_ip92_1071.uti \ others\prc_ip92_1072.uti \ others\prc_ip92_1073.uti \ others\prc_ip92_1074.uti \ others\prc_ip92_1075.uti \ others\prc_ip92_1076.uti \ others\prc_ip92_1077.uti \ others\prc_ip92_1078.uti \ others\prc_ip92_1079.uti \ others\prc_ip92_108.uti \ others\prc_ip92_1080.uti \ others\prc_ip92_1081.uti \ others\prc_ip92_1082.uti \ others\prc_ip92_1083.uti \ others\prc_ip92_1084.uti \ others\prc_ip92_1085.uti \ others\prc_ip92_1086.uti \ others\prc_ip92_1087.uti \ others\prc_ip92_1088.uti \ others\prc_ip92_1089.uti \ others\prc_ip92_109.uti \ others\prc_ip92_1090.uti \ others\prc_ip92_1091.uti \ others\prc_ip92_1092.uti \ others\prc_ip92_1093.uti \ others\prc_ip92_1094.uti \ others\prc_ip92_1095.uti \ others\prc_ip92_1096.uti \ others\prc_ip92_1097.uti \ others\prc_ip92_1098.uti \ others\prc_ip92_1099.uti \ others\prc_ip92_11.uti \ others\prc_ip92_110.uti \ others\prc_ip92_1100.uti \ others\prc_ip92_1101.uti \ others\prc_ip92_1102.uti \ others\prc_ip92_1103.uti \ others\prc_ip92_1104.uti \ others\prc_ip92_1105.uti \ others\prc_ip92_1106.uti \ others\prc_ip92_1107.uti \ others\prc_ip92_1108.uti \ others\prc_ip92_1109.uti \ others\prc_ip92_111.uti \ others\prc_ip92_1110.uti \ others\prc_ip92_1111.uti \ others\prc_ip92_1112.uti \ others\prc_ip92_1113.uti \ others\prc_ip92_1114.uti \ others\prc_ip92_1115.uti \ others\prc_ip92_1116.uti \ others\prc_ip92_1117.uti \ others\prc_ip92_1118.uti \ others\prc_ip92_1119.uti \ others\prc_ip92_112.uti \ others\prc_ip92_1120.uti \ others\prc_ip92_1121.uti \ others\prc_ip92_1122.uti \ others\prc_ip92_1123.uti \ others\prc_ip92_1124.uti \ others\prc_ip92_1125.uti \ others\prc_ip92_1126.uti \ others\prc_ip92_1127.uti \ others\prc_ip92_1128.uti \ others\prc_ip92_1129.uti \ others\prc_ip92_113.uti \ others\prc_ip92_1130.uti \ others\prc_ip92_1131.uti \ others\prc_ip92_1132.uti \ others\prc_ip92_1133.uti \ others\prc_ip92_1134.uti \ others\prc_ip92_1135.uti \ others\prc_ip92_1136.uti \ others\prc_ip92_1137.uti \ others\prc_ip92_1138.uti \ others\prc_ip92_1139.uti \ others\prc_ip92_114.uti \ others\prc_ip92_1140.uti \ others\prc_ip92_1141.uti \ others\prc_ip92_1142.uti \ others\prc_ip92_1143.uti \ others\prc_ip92_1144.uti \ others\prc_ip92_1145.uti \ others\prc_ip92_1146.uti \ others\prc_ip92_1147.uti \ others\prc_ip92_1148.uti \ others\prc_ip92_1149.uti \ others\prc_ip92_115.uti \ others\prc_ip92_1150.uti \ others\prc_ip92_1151.uti \ others\prc_ip92_1152.uti \ others\prc_ip92_1153.uti \ others\prc_ip92_1154.uti \ others\prc_ip92_1155.uti \ others\prc_ip92_1156.uti \ others\prc_ip92_1157.uti \ others\prc_ip92_1158.uti \ others\prc_ip92_1159.uti \ others\prc_ip92_116.uti \ others\prc_ip92_1160.uti \ others\prc_ip92_1161.uti \ others\prc_ip92_1162.uti \ others\prc_ip92_1163.uti \ others\prc_ip92_1164.uti \ others\prc_ip92_1165.uti \ others\prc_ip92_1166.uti \ others\prc_ip92_1167.uti \ others\prc_ip92_1168.uti \ others\prc_ip92_1169.uti \ others\prc_ip92_117.uti \ others\prc_ip92_1170.uti \ others\prc_ip92_1171.uti \ others\prc_ip92_1172.uti \ others\prc_ip92_1173.uti \ others\prc_ip92_1174.uti \ others\prc_ip92_1175.uti \ others\prc_ip92_1176.uti \ others\prc_ip92_1177.uti \ others\prc_ip92_1178.uti \ others\prc_ip92_1179.uti \ others\prc_ip92_118.uti \ others\prc_ip92_1180.uti \ others\prc_ip92_1181.uti \ others\prc_ip92_1182.uti \ others\prc_ip92_1183.uti \ others\prc_ip92_1184.uti \ others\prc_ip92_1185.uti \ others\prc_ip92_1186.uti \ others\prc_ip92_1187.uti \ others\prc_ip92_1188.uti \ others\prc_ip92_1189.uti \ others\prc_ip92_119.uti \ others\prc_ip92_1190.uti \ others\prc_ip92_1191.uti \ others\prc_ip92_1192.uti \ others\prc_ip92_1193.uti \ others\prc_ip92_1194.uti \ others\prc_ip92_1195.uti \ others\prc_ip92_1196.uti \ others\prc_ip92_1197.uti \ others\prc_ip92_1198.uti \ others\prc_ip92_1199.uti \ others\prc_ip92_12.uti \ others\prc_ip92_120.uti \ others\prc_ip92_1200.uti \ others\prc_ip92_1201.uti \ others\prc_ip92_1202.uti \ others\prc_ip92_1203.uti \ others\prc_ip92_1204.uti \ others\prc_ip92_1205.uti \ others\prc_ip92_1206.uti \ others\prc_ip92_1207.uti \ others\prc_ip92_1208.uti \ others\prc_ip92_1209.uti \ others\prc_ip92_121.uti \ others\prc_ip92_1210.uti \ others\prc_ip92_1211.uti \ others\prc_ip92_1212.uti \ others\prc_ip92_1213.uti \ others\prc_ip92_1214.uti \ others\prc_ip92_1215.uti \ others\prc_ip92_1216.uti \ others\prc_ip92_1217.uti \ others\prc_ip92_1218.uti \ others\prc_ip92_1219.uti \ others\prc_ip92_122.uti \ others\prc_ip92_1220.uti \ others\prc_ip92_1221.uti \ others\prc_ip92_1222.uti \ others\prc_ip92_1223.uti \ others\prc_ip92_1224.uti \ others\prc_ip92_1225.uti \ others\prc_ip92_1226.uti \ others\prc_ip92_1227.uti \ others\prc_ip92_1228.uti \ others\prc_ip92_1229.uti \ others\prc_ip92_123.uti \ others\prc_ip92_1230.uti \ others\prc_ip92_1231.uti \ others\prc_ip92_1232.uti \ others\prc_ip92_1233.uti \ others\prc_ip92_1234.uti \ others\prc_ip92_1235.uti \ others\prc_ip92_1236.uti \ others\prc_ip92_1237.uti \ others\prc_ip92_1238.uti \ others\prc_ip92_1239.uti \ others\prc_ip92_124.uti \ others\prc_ip92_1240.uti \ others\prc_ip92_1241.uti \ others\prc_ip92_1242.uti \ others\prc_ip92_1243.uti \ others\prc_ip92_1244.uti \ others\prc_ip92_1245.uti \ others\prc_ip92_1246.uti \ others\prc_ip92_1247.uti \ others\prc_ip92_1248.uti \ others\prc_ip92_1249.uti \ others\prc_ip92_125.uti \ others\prc_ip92_1250.uti \ others\prc_ip92_1251.uti \ others\prc_ip92_1252.uti \ others\prc_ip92_1253.uti \ others\prc_ip92_1254.uti \ others\prc_ip92_1255.uti \ others\prc_ip92_1256.uti \ others\prc_ip92_1257.uti \ others\prc_ip92_1258.uti \ others\prc_ip92_1259.uti \ others\prc_ip92_126.uti \ others\prc_ip92_1260.uti \ others\prc_ip92_1261.uti \ others\prc_ip92_1262.uti \ others\prc_ip92_1263.uti \ others\prc_ip92_1264.uti \ others\prc_ip92_1265.uti \ others\prc_ip92_1266.uti \ others\prc_ip92_1267.uti \ others\prc_ip92_1268.uti \ others\prc_ip92_1269.uti \ others\prc_ip92_127.uti \ others\prc_ip92_1270.uti \ others\prc_ip92_1271.uti \ others\prc_ip92_1272.uti \ others\prc_ip92_1273.uti \ others\prc_ip92_1274.uti \ others\prc_ip92_1275.uti \ others\prc_ip92_1276.uti \ others\prc_ip92_1277.uti \ others\prc_ip92_1278.uti \ others\prc_ip92_1279.uti \ others\prc_ip92_128.uti \ others\prc_ip92_1280.uti \ others\prc_ip92_1281.uti \ others\prc_ip92_1282.uti \ others\prc_ip92_1283.uti \ others\prc_ip92_1284.uti \ others\prc_ip92_1285.uti \ others\prc_ip92_1286.uti \ others\prc_ip92_1287.uti \ others\prc_ip92_1288.uti \ others\prc_ip92_1289.uti \ others\prc_ip92_129.uti \ others\prc_ip92_1290.uti \ others\prc_ip92_1291.uti \ others\prc_ip92_1292.uti \ others\prc_ip92_1293.uti \ others\prc_ip92_1294.uti \ others\prc_ip92_1295.uti \ others\prc_ip92_1296.uti \ others\prc_ip92_1297.uti \ others\prc_ip92_1298.uti \ others\prc_ip92_1299.uti \ others\prc_ip92_13.uti \ others\prc_ip92_130.uti \ others\prc_ip92_1300.uti \ others\prc_ip92_1301.uti \ others\prc_ip92_1302.uti \ others\prc_ip92_1303.uti \ others\prc_ip92_1304.uti \ others\prc_ip92_1305.uti \ others\prc_ip92_1306.uti \ others\prc_ip92_1307.uti \ others\prc_ip92_1308.uti \ others\prc_ip92_1309.uti \ others\prc_ip92_131.uti \ others\prc_ip92_1310.uti \ others\prc_ip92_1311.uti \ others\prc_ip92_1312.uti \ others\prc_ip92_1313.uti \ others\prc_ip92_1314.uti \ others\prc_ip92_1315.uti \ others\prc_ip92_1316.uti \ others\prc_ip92_1317.uti \ others\prc_ip92_1318.uti \ others\prc_ip92_1319.uti \ others\prc_ip92_132.uti \ others\prc_ip92_1320.uti \ others\prc_ip92_1321.uti \ others\prc_ip92_1322.uti \ others\prc_ip92_1323.uti \ others\prc_ip92_1324.uti \ others\prc_ip92_1325.uti \ others\prc_ip92_1326.uti \ others\prc_ip92_1327.uti \ others\prc_ip92_1328.uti \ others\prc_ip92_1329.uti \ others\prc_ip92_133.uti \ others\prc_ip92_1330.uti \ others\prc_ip92_1331.uti \ others\prc_ip92_1332.uti \ others\prc_ip92_1333.uti \ others\prc_ip92_1334.uti \ others\prc_ip92_1335.uti \ others\prc_ip92_1336.uti \ others\prc_ip92_1337.uti \ others\prc_ip92_1338.uti \ others\prc_ip92_1339.uti \ others\prc_ip92_134.uti \ others\prc_ip92_1340.uti \ others\prc_ip92_1341.uti \ others\prc_ip92_1342.uti \ others\prc_ip92_1343.uti \ others\prc_ip92_1344.uti \ others\prc_ip92_1345.uti \ others\prc_ip92_1346.uti \ others\prc_ip92_1347.uti \ others\prc_ip92_1348.uti \ others\prc_ip92_1349.uti \ others\prc_ip92_135.uti \ others\prc_ip92_1350.uti \ others\prc_ip92_1351.uti \ others\prc_ip92_1352.uti \ others\prc_ip92_1353.uti \ others\prc_ip92_1354.uti \ others\prc_ip92_1355.uti \ others\prc_ip92_1356.uti \ others\prc_ip92_1357.uti \ others\prc_ip92_1358.uti \ others\prc_ip92_1359.uti \ others\prc_ip92_136.uti \ others\prc_ip92_1360.uti \ others\prc_ip92_1361.uti \ others\prc_ip92_1362.uti \ others\prc_ip92_1363.uti \ others\prc_ip92_1364.uti \ others\prc_ip92_1365.uti \ others\prc_ip92_1366.uti \ others\prc_ip92_1367.uti \ others\prc_ip92_1368.uti \ others\prc_ip92_1369.uti \ others\prc_ip92_137.uti \ others\prc_ip92_1370.uti \ others\prc_ip92_1371.uti \ others\prc_ip92_1372.uti \ others\prc_ip92_1373.uti \ others\prc_ip92_1374.uti \ others\prc_ip92_1375.uti \ others\prc_ip92_1376.uti \ others\prc_ip92_1377.uti \ others\prc_ip92_1378.uti \ others\prc_ip92_1379.uti \ others\prc_ip92_138.uti \ others\prc_ip92_1380.uti \ others\prc_ip92_1381.uti \ others\prc_ip92_1382.uti \ others\prc_ip92_1383.uti \ others\prc_ip92_1384.uti \ others\prc_ip92_1385.uti \ others\prc_ip92_1386.uti \ others\prc_ip92_1387.uti \ others\prc_ip92_1388.uti \ others\prc_ip92_1389.uti \ others\prc_ip92_139.uti \ others\prc_ip92_1390.uti \ others\prc_ip92_1391.uti \ others\prc_ip92_1392.uti \ others\prc_ip92_1393.uti \ others\prc_ip92_1394.uti \ others\prc_ip92_1395.uti \ others\prc_ip92_1396.uti \ others\prc_ip92_1397.uti \ others\prc_ip92_1398.uti \ others\prc_ip92_1399.uti \ others\prc_ip92_14.uti \ others\prc_ip92_140.uti \ others\prc_ip92_1400.uti \ others\prc_ip92_1401.uti \ others\prc_ip92_1402.uti \ others\prc_ip92_1403.uti \ others\prc_ip92_1404.uti \ others\prc_ip92_1405.uti \ others\prc_ip92_1406.uti \ others\prc_ip92_1407.uti \ others\prc_ip92_1408.uti \ others\prc_ip92_1409.uti \ others\prc_ip92_141.uti \ others\prc_ip92_1410.uti \ others\prc_ip92_1411.uti \ others\prc_ip92_1412.uti \ others\prc_ip92_1413.uti \ others\prc_ip92_1414.uti \ others\prc_ip92_1415.uti \ others\prc_ip92_1416.uti \ others\prc_ip92_142.uti \ others\prc_ip92_143.uti \ others\prc_ip92_144.uti \ others\prc_ip92_145.uti \ others\prc_ip92_146.uti \ others\prc_ip92_147.uti \ others\prc_ip92_148.uti \ others\prc_ip92_149.uti \ others\prc_ip92_15.uti \ others\prc_ip92_150.uti \ others\prc_ip92_151.uti \ others\prc_ip92_152.uti \ others\prc_ip92_153.uti \ others\prc_ip92_154.uti \ others\prc_ip92_155.uti \ others\prc_ip92_156.uti \ others\prc_ip92_157.uti \ others\prc_ip92_158.uti \ others\prc_ip92_159.uti \ others\prc_ip92_16.uti \ others\prc_ip92_160.uti \ others\prc_ip92_161.uti \ others\prc_ip92_162.uti \ others\prc_ip92_163.uti \ others\prc_ip92_164.uti \ others\prc_ip92_165.uti \ others\prc_ip92_166.uti \ others\prc_ip92_167.uti \ others\prc_ip92_168.uti \ others\prc_ip92_169.uti \ others\prc_ip92_17.uti \ others\prc_ip92_170.uti \ others\prc_ip92_171.uti \ others\prc_ip92_172.uti \ others\prc_ip92_173.uti \ others\prc_ip92_174.uti \ others\prc_ip92_175.uti \ others\prc_ip92_176.uti \ others\prc_ip92_177.uti \ others\prc_ip92_178.uti \ others\prc_ip92_179.uti \ others\prc_ip92_18.uti \ others\prc_ip92_180.uti \ others\prc_ip92_181.uti \ others\prc_ip92_182.uti \ others\prc_ip92_183.uti \ others\prc_ip92_184.uti \ others\prc_ip92_185.uti \ others\prc_ip92_186.uti \ others\prc_ip92_187.uti \ others\prc_ip92_188.uti \ others\prc_ip92_189.uti \ others\prc_ip92_19.uti \ others\prc_ip92_190.uti \ others\prc_ip92_191.uti \ others\prc_ip92_192.uti \ others\prc_ip92_193.uti \ others\prc_ip92_194.uti \ others\prc_ip92_195.uti \ others\prc_ip92_196.uti \ others\prc_ip92_197.uti \ others\prc_ip92_198.uti \ others\prc_ip92_199.uti \ others\prc_ip92_2.uti \ others\prc_ip92_20.uti \ others\prc_ip92_200.uti \ others\prc_ip92_201.uti \ others\prc_ip92_202.uti \ others\prc_ip92_203.uti \ others\prc_ip92_204.uti \ others\prc_ip92_205.uti \ others\prc_ip92_206.uti \ others\prc_ip92_207.uti \ others\prc_ip92_208.uti \ others\prc_ip92_209.uti \ others\prc_ip92_21.uti \ others\prc_ip92_210.uti \ others\prc_ip92_211.uti \ others\prc_ip92_212.uti \ others\prc_ip92_213.uti \ others\prc_ip92_214.uti \ others\prc_ip92_215.uti \ others\prc_ip92_216.uti \ others\prc_ip92_217.uti \ others\prc_ip92_218.uti \ others\prc_ip92_219.uti \ others\prc_ip92_22.uti \ others\prc_ip92_220.uti \ others\prc_ip92_221.uti \ others\prc_ip92_222.uti \ others\prc_ip92_223.uti \ others\prc_ip92_224.uti \ others\prc_ip92_225.uti \ others\prc_ip92_226.uti \ others\prc_ip92_227.uti \ others\prc_ip92_228.uti \ others\prc_ip92_229.uti \ others\prc_ip92_23.uti \ others\prc_ip92_230.uti \ others\prc_ip92_231.uti \ others\prc_ip92_232.uti \ others\prc_ip92_233.uti \ others\prc_ip92_234.uti \ others\prc_ip92_235.uti \ others\prc_ip92_236.uti \ others\prc_ip92_237.uti \ others\prc_ip92_238.uti \ others\prc_ip92_239.uti \ others\prc_ip92_24.uti \ others\prc_ip92_240.uti \ others\prc_ip92_241.uti \ others\prc_ip92_242.uti \ others\prc_ip92_243.uti \ others\prc_ip92_244.uti \ others\prc_ip92_245.uti \ others\prc_ip92_246.uti \ others\prc_ip92_247.uti \ others\prc_ip92_248.uti \ others\prc_ip92_249.uti \ others\prc_ip92_25.uti \ others\prc_ip92_250.uti \ others\prc_ip92_251.uti \ others\prc_ip92_252.uti \ others\prc_ip92_253.uti \ others\prc_ip92_254.uti \ others\prc_ip92_255.uti \ others\prc_ip92_256.uti \ others\prc_ip92_257.uti \ others\prc_ip92_258.uti \ others\prc_ip92_259.uti \ others\prc_ip92_26.uti \ others\prc_ip92_260.uti \ others\prc_ip92_261.uti \ others\prc_ip92_262.uti \ others\prc_ip92_263.uti \ others\prc_ip92_264.uti \ others\prc_ip92_265.uti \ others\prc_ip92_266.uti \ others\prc_ip92_267.uti \ others\prc_ip92_268.uti \ others\prc_ip92_269.uti \ others\prc_ip92_27.uti \ others\prc_ip92_270.uti \ others\prc_ip92_271.uti \ others\prc_ip92_272.uti \ others\prc_ip92_273.uti \ others\prc_ip92_274.uti \ others\prc_ip92_275.uti \ others\prc_ip92_276.uti \ others\prc_ip92_277.uti \ others\prc_ip92_278.uti \ others\prc_ip92_279.uti \ others\prc_ip92_28.uti \ others\prc_ip92_280.uti \ others\prc_ip92_281.uti \ others\prc_ip92_282.uti \ others\prc_ip92_283.uti \ others\prc_ip92_284.uti \ others\prc_ip92_285.uti \ others\prc_ip92_286.uti \ others\prc_ip92_287.uti \ others\prc_ip92_288.uti \ others\prc_ip92_289.uti \ others\prc_ip92_29.uti \ others\prc_ip92_290.uti \ others\prc_ip92_291.uti \ others\prc_ip92_292.uti \ others\prc_ip92_293.uti \ others\prc_ip92_294.uti \ others\prc_ip92_295.uti \ others\prc_ip92_296.uti \ others\prc_ip92_297.uti \ others\prc_ip92_298.uti \ others\prc_ip92_299.uti \ others\prc_ip92_3.uti \ others\prc_ip92_30.uti \ others\prc_ip92_300.uti \ others\prc_ip92_301.uti \ others\prc_ip92_302.uti \ others\prc_ip92_303.uti \ others\prc_ip92_304.uti \ others\prc_ip92_305.uti \ others\prc_ip92_306.uti \ others\prc_ip92_307.uti \ others\prc_ip92_308.uti \ others\prc_ip92_309.uti \ others\prc_ip92_31.uti \ others\prc_ip92_310.uti \ others\prc_ip92_311.uti \ others\prc_ip92_312.uti \ others\prc_ip92_313.uti \ others\prc_ip92_314.uti \ others\prc_ip92_315.uti \ others\prc_ip92_316.uti \ others\prc_ip92_317.uti \ others\prc_ip92_318.uti \ others\prc_ip92_319.uti \ others\prc_ip92_32.uti \ others\prc_ip92_320.uti \ others\prc_ip92_321.uti \ others\prc_ip92_322.uti \ others\prc_ip92_323.uti \ others\prc_ip92_324.uti \ others\prc_ip92_325.uti \ others\prc_ip92_326.uti \ others\prc_ip92_327.uti \ others\prc_ip92_328.uti \ others\prc_ip92_329.uti \ others\prc_ip92_33.uti \ others\prc_ip92_330.uti \ others\prc_ip92_331.uti \ others\prc_ip92_332.uti \ others\prc_ip92_333.uti \ others\prc_ip92_334.uti \ others\prc_ip92_335.uti \ others\prc_ip92_336.uti \ others\prc_ip92_337.uti \ others\prc_ip92_338.uti \ others\prc_ip92_339.uti \ others\prc_ip92_34.uti \ others\prc_ip92_340.uti \ others\prc_ip92_341.uti \ others\prc_ip92_342.uti \ others\prc_ip92_343.uti \ others\prc_ip92_344.uti \ others\prc_ip92_345.uti \ others\prc_ip92_346.uti \ others\prc_ip92_347.uti \ others\prc_ip92_348.uti \ others\prc_ip92_349.uti \ others\prc_ip92_35.uti \ others\prc_ip92_350.uti \ others\prc_ip92_351.uti \ others\prc_ip92_352.uti \ others\prc_ip92_353.uti \ others\prc_ip92_354.uti \ others\prc_ip92_355.uti \ others\prc_ip92_356.uti \ others\prc_ip92_357.uti \ others\prc_ip92_358.uti \ others\prc_ip92_359.uti \ others\prc_ip92_36.uti \ others\prc_ip92_360.uti \ others\prc_ip92_361.uti \ others\prc_ip92_362.uti \ others\prc_ip92_363.uti \ others\prc_ip92_364.uti \ others\prc_ip92_365.uti \ others\prc_ip92_366.uti \ others\prc_ip92_367.uti \ others\prc_ip92_368.uti \ others\prc_ip92_369.uti \ others\prc_ip92_37.uti \ others\prc_ip92_370.uti \ others\prc_ip92_371.uti \ others\prc_ip92_372.uti \ others\prc_ip92_373.uti \ others\prc_ip92_374.uti \ others\prc_ip92_375.uti \ others\prc_ip92_376.uti \ others\prc_ip92_377.uti \ others\prc_ip92_378.uti \ others\prc_ip92_379.uti \ others\prc_ip92_38.uti \ others\prc_ip92_380.uti \ others\prc_ip92_381.uti \ others\prc_ip92_382.uti \ others\prc_ip92_383.uti \ others\prc_ip92_384.uti \ others\prc_ip92_385.uti \ others\prc_ip92_386.uti \ others\prc_ip92_387.uti \ others\prc_ip92_388.uti \ others\prc_ip92_389.uti \ others\prc_ip92_39.uti \ others\prc_ip92_390.uti \ others\prc_ip92_391.uti \ others\prc_ip92_392.uti \ others\prc_ip92_393.uti \ others\prc_ip92_394.uti \ others\prc_ip92_395.uti \ others\prc_ip92_396.uti \ others\prc_ip92_397.uti \ others\prc_ip92_398.uti \ others\prc_ip92_399.uti \ others\prc_ip92_4.uti \ others\prc_ip92_40.uti \ others\prc_ip92_400.uti \ others\prc_ip92_401.uti \ others\prc_ip92_402.uti \ others\prc_ip92_403.uti \ others\prc_ip92_404.uti \ others\prc_ip92_405.uti \ others\prc_ip92_406.uti \ others\prc_ip92_407.uti \ others\prc_ip92_408.uti \ others\prc_ip92_409.uti \ others\prc_ip92_41.uti \ others\prc_ip92_410.uti \ others\prc_ip92_411.uti \ others\prc_ip92_412.uti \ others\prc_ip92_413.uti \ others\prc_ip92_414.uti \ others\prc_ip92_415.uti \ others\prc_ip92_416.uti \ others\prc_ip92_417.uti \ others\prc_ip92_418.uti \ others\prc_ip92_419.uti \ others\prc_ip92_42.uti \ others\prc_ip92_420.uti \ others\prc_ip92_421.uti \ others\prc_ip92_422.uti \ others\prc_ip92_423.uti \ others\prc_ip92_424.uti \ others\prc_ip92_425.uti \ others\prc_ip92_426.uti \ others\prc_ip92_427.uti \ others\prc_ip92_428.uti \ others\prc_ip92_429.uti \ others\prc_ip92_43.uti \ others\prc_ip92_430.uti \ others\prc_ip92_431.uti \ others\prc_ip92_432.uti \ others\prc_ip92_433.uti \ others\prc_ip92_434.uti \ others\prc_ip92_435.uti \ others\prc_ip92_436.uti \ others\prc_ip92_437.uti \ others\prc_ip92_438.uti \ others\prc_ip92_439.uti \ others\prc_ip92_44.uti \ others\prc_ip92_440.uti \ others\prc_ip92_441.uti \ others\prc_ip92_442.uti \ others\prc_ip92_443.uti \ others\prc_ip92_444.uti \ others\prc_ip92_445.uti \ others\prc_ip92_446.uti \ others\prc_ip92_447.uti \ others\prc_ip92_448.uti \ others\prc_ip92_449.uti \ others\prc_ip92_45.uti \ others\prc_ip92_450.uti \ others\prc_ip92_451.uti \ others\prc_ip92_452.uti \ others\prc_ip92_453.uti \ others\prc_ip92_454.uti \ others\prc_ip92_455.uti \ others\prc_ip92_456.uti \ others\prc_ip92_457.uti \ others\prc_ip92_458.uti \ others\prc_ip92_459.uti \ others\prc_ip92_46.uti \ others\prc_ip92_460.uti \ others\prc_ip92_461.uti \ others\prc_ip92_462.uti \ others\prc_ip92_463.uti \ others\prc_ip92_464.uti \ others\prc_ip92_465.uti \ others\prc_ip92_466.uti \ others\prc_ip92_467.uti \ others\prc_ip92_468.uti \ others\prc_ip92_469.uti \ others\prc_ip92_47.uti \ others\prc_ip92_470.uti \ others\prc_ip92_471.uti \ others\prc_ip92_472.uti \ others\prc_ip92_473.uti \ others\prc_ip92_474.uti \ others\prc_ip92_475.uti \ others\prc_ip92_476.uti \ others\prc_ip92_477.uti \ others\prc_ip92_478.uti \ others\prc_ip92_479.uti \ others\prc_ip92_48.uti \ others\prc_ip92_480.uti \ others\prc_ip92_481.uti \ others\prc_ip92_482.uti \ others\prc_ip92_483.uti \ others\prc_ip92_484.uti \ others\prc_ip92_485.uti \ others\prc_ip92_486.uti \ others\prc_ip92_487.uti \ others\prc_ip92_488.uti \ others\prc_ip92_489.uti \ others\prc_ip92_49.uti \ others\prc_ip92_490.uti \ others\prc_ip92_491.uti \ others\prc_ip92_492.uti \ others\prc_ip92_493.uti \ others\prc_ip92_494.uti \ others\prc_ip92_495.uti \ others\prc_ip92_496.uti \ others\prc_ip92_497.uti \ others\prc_ip92_498.uti \ others\prc_ip92_499.uti \ others\prc_ip92_5.uti \ others\prc_ip92_50.uti \ others\prc_ip92_500.uti \ others\prc_ip92_501.uti \ others\prc_ip92_502.uti \ others\prc_ip92_503.uti \ others\prc_ip92_504.uti \ others\prc_ip92_505.uti \ others\prc_ip92_506.uti \ others\prc_ip92_507.uti \ others\prc_ip92_508.uti \ others\prc_ip92_509.uti \ others\prc_ip92_51.uti \ others\prc_ip92_510.uti \ others\prc_ip92_511.uti \ others\prc_ip92_512.uti \ others\prc_ip92_513.uti \ others\prc_ip92_514.uti \ others\prc_ip92_515.uti \ others\prc_ip92_516.uti \ others\prc_ip92_517.uti \ others\prc_ip92_518.uti \ others\prc_ip92_519.uti \ others\prc_ip92_52.uti \ others\prc_ip92_520.uti \ others\prc_ip92_521.uti \ others\prc_ip92_522.uti \ others\prc_ip92_523.uti \ others\prc_ip92_524.uti \ others\prc_ip92_525.uti \ others\prc_ip92_526.uti \ others\prc_ip92_527.uti \ others\prc_ip92_528.uti \ others\prc_ip92_529.uti \ others\prc_ip92_53.uti \ others\prc_ip92_530.uti \ others\prc_ip92_531.uti \ others\prc_ip92_532.uti \ others\prc_ip92_533.uti \ others\prc_ip92_534.uti \ others\prc_ip92_535.uti \ others\prc_ip92_536.uti \ others\prc_ip92_537.uti \ others\prc_ip92_538.uti \ others\prc_ip92_539.uti \ others\prc_ip92_54.uti \ others\prc_ip92_540.uti \ others\prc_ip92_541.uti \ others\prc_ip92_542.uti \ others\prc_ip92_543.uti \ others\prc_ip92_544.uti \ others\prc_ip92_545.uti \ others\prc_ip92_546.uti \ others\prc_ip92_547.uti \ others\prc_ip92_548.uti \ others\prc_ip92_549.uti \ others\prc_ip92_55.uti \ others\prc_ip92_550.uti \ others\prc_ip92_551.uti \ others\prc_ip92_552.uti \ others\prc_ip92_553.uti \ others\prc_ip92_554.uti \ others\prc_ip92_555.uti \ others\prc_ip92_556.uti \ others\prc_ip92_557.uti \ others\prc_ip92_558.uti \ others\prc_ip92_559.uti \ others\prc_ip92_56.uti \ others\prc_ip92_560.uti \ others\prc_ip92_561.uti \ others\prc_ip92_562.uti \ others\prc_ip92_563.uti \ others\prc_ip92_564.uti \ others\prc_ip92_565.uti \ others\prc_ip92_566.uti \ others\prc_ip92_567.uti \ others\prc_ip92_568.uti \ others\prc_ip92_569.uti \ others\prc_ip92_57.uti \ others\prc_ip92_570.uti \ others\prc_ip92_571.uti \ others\prc_ip92_572.uti \ others\prc_ip92_573.uti \ others\prc_ip92_574.uti \ others\prc_ip92_575.uti \ others\prc_ip92_576.uti \ others\prc_ip92_577.uti \ others\prc_ip92_578.uti \ others\prc_ip92_579.uti \ others\prc_ip92_58.uti \ others\prc_ip92_580.uti \ others\prc_ip92_581.uti \ others\prc_ip92_582.uti \ others\prc_ip92_583.uti \ others\prc_ip92_584.uti \ others\prc_ip92_585.uti \ others\prc_ip92_586.uti \ others\prc_ip92_587.uti \ others\prc_ip92_588.uti \ others\prc_ip92_589.uti \ others\prc_ip92_59.uti \ others\prc_ip92_590.uti \ others\prc_ip92_591.uti \ others\prc_ip92_592.uti \ others\prc_ip92_593.uti \ others\prc_ip92_594.uti \ others\prc_ip92_595.uti \ others\prc_ip92_596.uti \ others\prc_ip92_597.uti \ others\prc_ip92_598.uti \ others\prc_ip92_599.uti \ others\prc_ip92_6.uti \ others\prc_ip92_60.uti \ others\prc_ip92_600.uti \ others\prc_ip92_601.uti \ others\prc_ip92_602.uti \ others\prc_ip92_603.uti \ others\prc_ip92_604.uti \ others\prc_ip92_605.uti \ others\prc_ip92_606.uti \ others\prc_ip92_607.uti \ others\prc_ip92_608.uti \ others\prc_ip92_609.uti \ others\prc_ip92_61.uti \ others\prc_ip92_610.uti \ others\prc_ip92_611.uti \ others\prc_ip92_612.uti \ others\prc_ip92_613.uti \ others\prc_ip92_614.uti \ others\prc_ip92_615.uti \ others\prc_ip92_616.uti \ others\prc_ip92_617.uti \ others\prc_ip92_618.uti \ others\prc_ip92_619.uti \ others\prc_ip92_62.uti \ others\prc_ip92_620.uti \ others\prc_ip92_621.uti \ others\prc_ip92_622.uti \ others\prc_ip92_623.uti \ others\prc_ip92_624.uti \ others\prc_ip92_625.uti \ others\prc_ip92_626.uti \ others\prc_ip92_627.uti \ others\prc_ip92_628.uti \ others\prc_ip92_629.uti \ others\prc_ip92_63.uti \ others\prc_ip92_630.uti \ others\prc_ip92_631.uti \ others\prc_ip92_632.uti \ others\prc_ip92_633.uti \ others\prc_ip92_634.uti \ others\prc_ip92_635.uti \ others\prc_ip92_636.uti \ others\prc_ip92_637.uti \ others\prc_ip92_638.uti \ others\prc_ip92_639.uti \ others\prc_ip92_64.uti \ others\prc_ip92_640.uti \ others\prc_ip92_641.uti \ others\prc_ip92_642.uti \ others\prc_ip92_643.uti \ others\prc_ip92_644.uti \ others\prc_ip92_645.uti \ others\prc_ip92_646.uti \ others\prc_ip92_647.uti \ others\prc_ip92_648.uti \ others\prc_ip92_649.uti \ others\prc_ip92_65.uti \ others\prc_ip92_650.uti \ others\prc_ip92_651.uti \ others\prc_ip92_652.uti \ others\prc_ip92_653.uti \ others\prc_ip92_654.uti \ others\prc_ip92_655.uti \ others\prc_ip92_656.uti \ others\prc_ip92_657.uti \ others\prc_ip92_658.uti \ others\prc_ip92_659.uti \ others\prc_ip92_66.uti \ others\prc_ip92_660.uti \ others\prc_ip92_661.uti \ others\prc_ip92_662.uti \ others\prc_ip92_663.uti \ others\prc_ip92_664.uti \ others\prc_ip92_665.uti \ others\prc_ip92_666.uti \ others\prc_ip92_667.uti \ others\prc_ip92_668.uti \ others\prc_ip92_669.uti \ others\prc_ip92_67.uti \ others\prc_ip92_670.uti \ others\prc_ip92_671.uti \ others\prc_ip92_672.uti \ others\prc_ip92_673.uti \ others\prc_ip92_674.uti \ others\prc_ip92_675.uti \ others\prc_ip92_676.uti \ others\prc_ip92_677.uti \ others\prc_ip92_678.uti \ others\prc_ip92_679.uti \ others\prc_ip92_68.uti \ others\prc_ip92_680.uti \ others\prc_ip92_681.uti \ others\prc_ip92_682.uti \ others\prc_ip92_683.uti \ others\prc_ip92_684.uti \ others\prc_ip92_685.uti \ others\prc_ip92_686.uti \ others\prc_ip92_687.uti \ others\prc_ip92_688.uti \ others\prc_ip92_689.uti \ others\prc_ip92_69.uti \ others\prc_ip92_690.uti \ others\prc_ip92_691.uti \ others\prc_ip92_692.uti \ others\prc_ip92_693.uti \ others\prc_ip92_694.uti \ others\prc_ip92_695.uti \ others\prc_ip92_696.uti \ others\prc_ip92_697.uti \ others\prc_ip92_698.uti \ others\prc_ip92_699.uti \ others\prc_ip92_7.uti \ others\prc_ip92_70.uti \ others\prc_ip92_700.uti \ others\prc_ip92_701.uti \ others\prc_ip92_702.uti \ others\prc_ip92_703.uti \ others\prc_ip92_704.uti \ others\prc_ip92_705.uti \ others\prc_ip92_706.uti \ others\prc_ip92_707.uti \ others\prc_ip92_708.uti \ others\prc_ip92_709.uti \ others\prc_ip92_71.uti \ others\prc_ip92_710.uti \ others\prc_ip92_711.uti \ others\prc_ip92_712.uti \ others\prc_ip92_713.uti \ others\prc_ip92_714.uti \ others\prc_ip92_715.uti \ others\prc_ip92_716.uti \ others\prc_ip92_717.uti \ others\prc_ip92_718.uti \ others\prc_ip92_719.uti \ others\prc_ip92_72.uti \ others\prc_ip92_720.uti \ others\prc_ip92_721.uti \ others\prc_ip92_722.uti \ others\prc_ip92_723.uti \ others\prc_ip92_724.uti \ others\prc_ip92_725.uti \ others\prc_ip92_726.uti \ others\prc_ip92_727.uti \ others\prc_ip92_728.uti \ others\prc_ip92_729.uti \ others\prc_ip92_73.uti \ others\prc_ip92_730.uti \ others\prc_ip92_731.uti \ others\prc_ip92_732.uti \ others\prc_ip92_733.uti \ others\prc_ip92_734.uti \ others\prc_ip92_735.uti \ others\prc_ip92_736.uti \ others\prc_ip92_737.uti \ others\prc_ip92_738.uti \ others\prc_ip92_739.uti \ others\prc_ip92_74.uti \ others\prc_ip92_740.uti \ others\prc_ip92_741.uti \ others\prc_ip92_742.uti \ others\prc_ip92_743.uti \ others\prc_ip92_744.uti \ others\prc_ip92_745.uti \ others\prc_ip92_746.uti \ others\prc_ip92_747.uti \ others\prc_ip92_748.uti \ others\prc_ip92_749.uti \ others\prc_ip92_75.uti \ others\prc_ip92_750.uti \ others\prc_ip92_751.uti \ others\prc_ip92_752.uti \ others\prc_ip92_753.uti \ others\prc_ip92_754.uti \ others\prc_ip92_755.uti \ others\prc_ip92_756.uti \ others\prc_ip92_757.uti \ others\prc_ip92_758.uti \ others\prc_ip92_759.uti \ others\prc_ip92_76.uti \ others\prc_ip92_760.uti \ others\prc_ip92_761.uti \ others\prc_ip92_762.uti \ others\prc_ip92_763.uti \ others\prc_ip92_764.uti \ others\prc_ip92_765.uti \ others\prc_ip92_766.uti \ others\prc_ip92_767.uti \ others\prc_ip92_768.uti \ others\prc_ip92_769.uti \ others\prc_ip92_77.uti \ others\prc_ip92_770.uti \ others\prc_ip92_771.uti \ others\prc_ip92_772.uti \ others\prc_ip92_773.uti \ others\prc_ip92_774.uti \ others\prc_ip92_775.uti \ others\prc_ip92_776.uti \ others\prc_ip92_777.uti \ others\prc_ip92_778.uti \ others\prc_ip92_779.uti \ others\prc_ip92_78.uti \ others\prc_ip92_780.uti \ others\prc_ip92_781.uti \ others\prc_ip92_782.uti \ others\prc_ip92_783.uti \ others\prc_ip92_784.uti \ others\prc_ip92_785.uti \ others\prc_ip92_786.uti \ others\prc_ip92_787.uti \ others\prc_ip92_788.uti \ others\prc_ip92_789.uti \ others\prc_ip92_79.uti \ others\prc_ip92_790.uti \ others\prc_ip92_791.uti \ others\prc_ip92_792.uti \ others\prc_ip92_793.uti \ others\prc_ip92_794.uti \ others\prc_ip92_795.uti \ others\prc_ip92_796.uti \ others\prc_ip92_797.uti \ others\prc_ip92_798.uti \ others\prc_ip92_799.uti \ others\prc_ip92_8.uti \ others\prc_ip92_80.uti \ others\prc_ip92_800.uti \ others\prc_ip92_801.uti \ others\prc_ip92_802.uti \ others\prc_ip92_803.uti \ others\prc_ip92_804.uti \ others\prc_ip92_805.uti \ others\prc_ip92_806.uti \ others\prc_ip92_807.uti \ others\prc_ip92_808.uti \ others\prc_ip92_809.uti \ others\prc_ip92_81.uti \ others\prc_ip92_810.uti \ others\prc_ip92_811.uti \ others\prc_ip92_812.uti \ others\prc_ip92_813.uti \ others\prc_ip92_814.uti \ others\prc_ip92_815.uti \ others\prc_ip92_816.uti \ others\prc_ip92_817.uti \ others\prc_ip92_818.uti \ others\prc_ip92_819.uti \ others\prc_ip92_82.uti \ others\prc_ip92_820.uti \ others\prc_ip92_821.uti \ others\prc_ip92_822.uti \ others\prc_ip92_823.uti \ others\prc_ip92_824.uti \ others\prc_ip92_825.uti \ others\prc_ip92_826.uti \ others\prc_ip92_827.uti \ others\prc_ip92_828.uti \ others\prc_ip92_829.uti \ others\prc_ip92_83.uti \ others\prc_ip92_830.uti \ others\prc_ip92_831.uti \ others\prc_ip92_832.uti \ others\prc_ip92_833.uti \ others\prc_ip92_834.uti \ others\prc_ip92_835.uti \ others\prc_ip92_836.uti \ others\prc_ip92_837.uti \ others\prc_ip92_838.uti \ others\prc_ip92_839.uti \ others\prc_ip92_84.uti \ others\prc_ip92_840.uti \ others\prc_ip92_841.uti \ others\prc_ip92_842.uti \ others\prc_ip92_843.uti \ others\prc_ip92_844.uti \ others\prc_ip92_845.uti \ others\prc_ip92_846.uti \ others\prc_ip92_847.uti \ others\prc_ip92_848.uti \ others\prc_ip92_849.uti \ others\prc_ip92_85.uti \ others\prc_ip92_850.uti \ others\prc_ip92_851.uti \ others\prc_ip92_852.uti \ others\prc_ip92_853.uti \ others\prc_ip92_854.uti \ others\prc_ip92_855.uti \ others\prc_ip92_856.uti \ others\prc_ip92_857.uti \ others\prc_ip92_858.uti \ others\prc_ip92_859.uti \ others\prc_ip92_86.uti \ others\prc_ip92_860.uti \ others\prc_ip92_861.uti \ others\prc_ip92_862.uti \ others\prc_ip92_863.uti \ others\prc_ip92_864.uti \ others\prc_ip92_865.uti \ others\prc_ip92_866.uti \ others\prc_ip92_867.uti \ others\prc_ip92_868.uti \ others\prc_ip92_869.uti \ others\prc_ip92_87.uti \ others\prc_ip92_870.uti \ others\prc_ip92_871.uti \ others\prc_ip92_872.uti \ others\prc_ip92_873.uti \ others\prc_ip92_874.uti \ others\prc_ip92_875.uti \ others\prc_ip92_876.uti \ others\prc_ip92_877.uti \ others\prc_ip92_878.uti \ others\prc_ip92_879.uti \ others\prc_ip92_88.uti \ others\prc_ip92_880.uti \ others\prc_ip92_881.uti \ others\prc_ip92_882.uti \ others\prc_ip92_883.uti \ others\prc_ip92_884.uti \ others\prc_ip92_885.uti \ others\prc_ip92_886.uti \ others\prc_ip92_887.uti \ others\prc_ip92_888.uti \ others\prc_ip92_889.uti \ others\prc_ip92_89.uti \ others\prc_ip92_890.uti \ others\prc_ip92_891.uti \ others\prc_ip92_892.uti \ others\prc_ip92_893.uti \ others\prc_ip92_894.uti \ others\prc_ip92_895.uti \ others\prc_ip92_896.uti \ others\prc_ip92_897.uti \ others\prc_ip92_898.uti \ others\prc_ip92_899.uti \ others\prc_ip92_9.uti \ others\prc_ip92_90.uti \ others\prc_ip92_900.uti \ others\prc_ip92_901.uti \ others\prc_ip92_902.uti \ others\prc_ip92_903.uti \ others\prc_ip92_904.uti \ others\prc_ip92_905.uti \ others\prc_ip92_906.uti \ others\prc_ip92_907.uti \ others\prc_ip92_908.uti \ others\prc_ip92_909.uti \ others\prc_ip92_91.uti \ others\prc_ip92_910.uti \ others\prc_ip92_911.uti \ others\prc_ip92_912.uti \ others\prc_ip92_913.uti \ others\prc_ip92_914.uti \ others\prc_ip92_915.uti \ others\prc_ip92_916.uti \ others\prc_ip92_917.uti \ others\prc_ip92_918.uti \ others\prc_ip92_919.uti \ others\prc_ip92_92.uti \ others\prc_ip92_920.uti \ others\prc_ip92_921.uti \ others\prc_ip92_922.uti \ others\prc_ip92_923.uti \ others\prc_ip92_924.uti \ others\prc_ip92_925.uti \ others\prc_ip92_926.uti \ others\prc_ip92_927.uti \ others\prc_ip92_928.uti \ others\prc_ip92_929.uti \ others\prc_ip92_93.uti \ others\prc_ip92_930.uti \ others\prc_ip92_931.uti \ others\prc_ip92_932.uti \ others\prc_ip92_933.uti \ others\prc_ip92_934.uti \ others\prc_ip92_935.uti \ others\prc_ip92_936.uti \ others\prc_ip92_937.uti \ others\prc_ip92_938.uti \ others\prc_ip92_939.uti \ others\prc_ip92_94.uti \ others\prc_ip92_940.uti \ others\prc_ip92_941.uti \ others\prc_ip92_942.uti \ others\prc_ip92_943.uti \ others\prc_ip92_944.uti \ others\prc_ip92_945.uti \ others\prc_ip92_946.uti \ others\prc_ip92_947.uti \ others\prc_ip92_948.uti \ others\prc_ip92_949.uti \ others\prc_ip92_95.uti \ others\prc_ip92_950.uti \ others\prc_ip92_951.uti \ others\prc_ip92_952.uti \ others\prc_ip92_953.uti \ others\prc_ip92_954.uti \ others\prc_ip92_955.uti \ others\prc_ip92_956.uti \ others\prc_ip92_957.uti \ others\prc_ip92_958.uti \ others\prc_ip92_959.uti \ others\prc_ip92_96.uti \ others\prc_ip92_960.uti \ others\prc_ip92_961.uti \ others\prc_ip92_962.uti \ others\prc_ip92_963.uti \ others\prc_ip92_964.uti \ others\prc_ip92_965.uti \ others\prc_ip92_966.uti \ others\prc_ip92_967.uti \ others\prc_ip92_968.uti \ others\prc_ip92_969.uti \ others\prc_ip92_97.uti \ others\prc_ip92_970.uti \ others\prc_ip92_971.uti \ others\prc_ip92_972.uti \ others\prc_ip92_973.uti \ others\prc_ip92_974.uti \ others\prc_ip92_975.uti \ others\prc_ip92_976.uti \ others\prc_ip92_977.uti \ others\prc_ip92_978.uti \ others\prc_ip92_979.uti \ others\prc_ip92_98.uti \ others\prc_ip92_980.uti \ others\prc_ip92_981.uti \ others\prc_ip92_982.uti \ others\prc_ip92_983.uti \ others\prc_ip92_984.uti \ others\prc_ip92_985.uti \ others\prc_ip92_986.uti \ others\prc_ip92_987.uti \ others\prc_ip92_988.uti \ others\prc_ip92_989.uti \ others\prc_ip92_99.uti \ others\prc_ip92_990.uti \ others\prc_ip92_991.uti \ others\prc_ip92_992.uti \ others\prc_ip92_993.uti \ others\prc_ip92_994.uti \ others\prc_ip92_995.uti \ others\prc_ip92_996.uti \ others\prc_ip92_997.uti \ others\prc_ip92_998.uti \ others\prc_ip92_999.uti \ others\prc_ip93_0.uti \ others\prc_ip93_1.uti \ others\prc_ip93_10.uti \ others\prc_ip93_100.uti \ others\prc_ip93_1000.uti \ others\prc_ip93_1001.uti \ others\prc_ip93_1002.uti \ others\prc_ip93_1003.uti \ others\prc_ip93_1004.uti \ others\prc_ip93_1005.uti \ others\prc_ip93_1006.uti \ others\prc_ip93_1007.uti \ others\prc_ip93_1008.uti \ others\prc_ip93_1009.uti \ others\prc_ip93_101.uti \ others\prc_ip93_1010.uti \ others\prc_ip93_1011.uti \ others\prc_ip93_1012.uti \ others\prc_ip93_1013.uti \ others\prc_ip93_1014.uti \ others\prc_ip93_1015.uti \ others\prc_ip93_1016.uti \ others\prc_ip93_1017.uti \ others\prc_ip93_1018.uti \ others\prc_ip93_1019.uti \ others\prc_ip93_102.uti \ others\prc_ip93_1020.uti \ others\prc_ip93_1021.uti \ others\prc_ip93_1022.uti \ others\prc_ip93_1023.uti \ others\prc_ip93_1024.uti \ others\prc_ip93_1025.uti \ others\prc_ip93_1026.uti \ others\prc_ip93_1027.uti \ others\prc_ip93_1028.uti \ others\prc_ip93_1029.uti \ others\prc_ip93_103.uti \ others\prc_ip93_1030.uti \ others\prc_ip93_1031.uti \ others\prc_ip93_1032.uti \ others\prc_ip93_1033.uti \ others\prc_ip93_1034.uti \ others\prc_ip93_1035.uti \ others\prc_ip93_1036.uti \ others\prc_ip93_1037.uti \ others\prc_ip93_1038.uti \ others\prc_ip93_1039.uti \ others\prc_ip93_104.uti \ others\prc_ip93_1040.uti \ others\prc_ip93_1041.uti \ others\prc_ip93_1042.uti \ others\prc_ip93_1043.uti \ others\prc_ip93_1044.uti \ others\prc_ip93_1045.uti \ others\prc_ip93_1046.uti \ others\prc_ip93_1047.uti \ others\prc_ip93_1048.uti \ others\prc_ip93_1049.uti \ others\prc_ip93_105.uti \ others\prc_ip93_1050.uti \ others\prc_ip93_1051.uti \ others\prc_ip93_1052.uti \ others\prc_ip93_1053.uti \ others\prc_ip93_1054.uti \ others\prc_ip93_1055.uti \ others\prc_ip93_1056.uti \ others\prc_ip93_1057.uti \ others\prc_ip93_1058.uti \ others\prc_ip93_1059.uti \ others\prc_ip93_106.uti \ others\prc_ip93_1060.uti \ others\prc_ip93_1061.uti \ others\prc_ip93_1062.uti \ others\prc_ip93_1063.uti \ others\prc_ip93_1064.uti \ others\prc_ip93_1065.uti \ others\prc_ip93_1066.uti \ others\prc_ip93_1067.uti \ others\prc_ip93_1068.uti \ others\prc_ip93_1069.uti \ others\prc_ip93_107.uti \ others\prc_ip93_1070.uti \ others\prc_ip93_1071.uti \ others\prc_ip93_1072.uti \ others\prc_ip93_1073.uti \ others\prc_ip93_1074.uti \ others\prc_ip93_1075.uti \ others\prc_ip93_1076.uti \ others\prc_ip93_1077.uti \ others\prc_ip93_1078.uti \ others\prc_ip93_1079.uti \ others\prc_ip93_108.uti \ others\prc_ip93_1080.uti \ others\prc_ip93_1081.uti \ others\prc_ip93_1082.uti \ others\prc_ip93_1083.uti \ others\prc_ip93_1084.uti \ others\prc_ip93_1085.uti \ others\prc_ip93_1086.uti \ others\prc_ip93_1087.uti \ others\prc_ip93_1088.uti \ others\prc_ip93_1089.uti \ others\prc_ip93_109.uti \ others\prc_ip93_1090.uti \ others\prc_ip93_1091.uti \ others\prc_ip93_1092.uti \ others\prc_ip93_1093.uti \ others\prc_ip93_1094.uti \ others\prc_ip93_1095.uti \ others\prc_ip93_1096.uti \ others\prc_ip93_1097.uti \ others\prc_ip93_1098.uti \ others\prc_ip93_1099.uti \ others\prc_ip93_11.uti \ others\prc_ip93_110.uti \ others\prc_ip93_1100.uti \ others\prc_ip93_1101.uti \ others\prc_ip93_1102.uti \ others\prc_ip93_1103.uti \ others\prc_ip93_1104.uti \ others\prc_ip93_1105.uti \ others\prc_ip93_1106.uti \ others\prc_ip93_1107.uti \ others\prc_ip93_1108.uti \ others\prc_ip93_1109.uti \ others\prc_ip93_111.uti \ others\prc_ip93_1110.uti \ others\prc_ip93_1111.uti \ others\prc_ip93_1112.uti \ others\prc_ip93_1113.uti \ others\prc_ip93_1114.uti \ others\prc_ip93_1115.uti \ others\prc_ip93_1116.uti \ others\prc_ip93_1117.uti \ others\prc_ip93_1118.uti \ others\prc_ip93_1119.uti \ others\prc_ip93_112.uti \ others\prc_ip93_1120.uti \ others\prc_ip93_1121.uti \ others\prc_ip93_1122.uti \ others\prc_ip93_1123.uti \ others\prc_ip93_1124.uti \ others\prc_ip93_1125.uti \ others\prc_ip93_1126.uti \ others\prc_ip93_1127.uti \ others\prc_ip93_1128.uti \ others\prc_ip93_1129.uti \ others\prc_ip93_113.uti \ others\prc_ip93_1130.uti \ others\prc_ip93_1131.uti \ others\prc_ip93_1132.uti \ others\prc_ip93_1133.uti \ others\prc_ip93_1134.uti \ others\prc_ip93_1135.uti \ others\prc_ip93_1136.uti \ others\prc_ip93_1137.uti \ others\prc_ip93_1138.uti \ others\prc_ip93_1139.uti \ others\prc_ip93_114.uti \ others\prc_ip93_1140.uti \ others\prc_ip93_1141.uti \ others\prc_ip93_1142.uti \ others\prc_ip93_1143.uti \ others\prc_ip93_1144.uti \ others\prc_ip93_1145.uti \ others\prc_ip93_1146.uti \ others\prc_ip93_1147.uti \ others\prc_ip93_1148.uti \ others\prc_ip93_1149.uti \ others\prc_ip93_115.uti \ others\prc_ip93_1150.uti \ others\prc_ip93_1151.uti \ others\prc_ip93_1152.uti \ others\prc_ip93_1153.uti \ others\prc_ip93_1154.uti \ others\prc_ip93_1155.uti \ others\prc_ip93_1156.uti \ others\prc_ip93_1157.uti \ others\prc_ip93_1158.uti \ others\prc_ip93_1159.uti \ others\prc_ip93_116.uti \ others\prc_ip93_1160.uti \ others\prc_ip93_1161.uti \ others\prc_ip93_1162.uti \ others\prc_ip93_1163.uti \ others\prc_ip93_1164.uti \ others\prc_ip93_1165.uti \ others\prc_ip93_1166.uti \ others\prc_ip93_1167.uti \ others\prc_ip93_1168.uti \ others\prc_ip93_1169.uti \ others\prc_ip93_117.uti \ others\prc_ip93_1170.uti \ others\prc_ip93_1171.uti \ others\prc_ip93_1172.uti \ others\prc_ip93_1173.uti \ others\prc_ip93_1174.uti \ others\prc_ip93_1175.uti \ others\prc_ip93_1176.uti \ others\prc_ip93_1177.uti \ others\prc_ip93_1178.uti \ others\prc_ip93_1179.uti \ others\prc_ip93_118.uti \ others\prc_ip93_1180.uti \ others\prc_ip93_1181.uti \ others\prc_ip93_1182.uti \ others\prc_ip93_1183.uti \ others\prc_ip93_1184.uti \ others\prc_ip93_1185.uti \ others\prc_ip93_1186.uti \ others\prc_ip93_1187.uti \ others\prc_ip93_1188.uti \ others\prc_ip93_1189.uti \ others\prc_ip93_119.uti \ others\prc_ip93_1190.uti \ others\prc_ip93_1191.uti \ others\prc_ip93_1192.uti \ others\prc_ip93_1193.uti \ others\prc_ip93_1194.uti \ others\prc_ip93_1195.uti \ others\prc_ip93_1196.uti \ others\prc_ip93_1197.uti \ others\prc_ip93_1198.uti \ others\prc_ip93_1199.uti \ others\prc_ip93_12.uti \ others\prc_ip93_120.uti \ others\prc_ip93_1200.uti \ others\prc_ip93_1201.uti \ others\prc_ip93_1202.uti \ others\prc_ip93_1203.uti \ others\prc_ip93_1204.uti \ others\prc_ip93_1205.uti \ others\prc_ip93_1206.uti \ others\prc_ip93_1207.uti \ others\prc_ip93_1208.uti \ others\prc_ip93_1209.uti \ others\prc_ip93_121.uti \ others\prc_ip93_1210.uti \ others\prc_ip93_1211.uti \ others\prc_ip93_1212.uti \ others\prc_ip93_1213.uti \ others\prc_ip93_1214.uti \ others\prc_ip93_1215.uti \ others\prc_ip93_1216.uti \ others\prc_ip93_1217.uti \ others\prc_ip93_1218.uti \ others\prc_ip93_1219.uti \ others\prc_ip93_122.uti \ others\prc_ip93_1220.uti \ others\prc_ip93_1221.uti \ others\prc_ip93_1222.uti \ others\prc_ip93_1223.uti \ others\prc_ip93_1224.uti \ others\prc_ip93_1225.uti \ others\prc_ip93_1226.uti \ others\prc_ip93_1227.uti \ others\prc_ip93_1228.uti \ others\prc_ip93_1229.uti \ others\prc_ip93_123.uti \ others\prc_ip93_1230.uti \ others\prc_ip93_1231.uti \ others\prc_ip93_1232.uti \ others\prc_ip93_1233.uti \ others\prc_ip93_1234.uti \ others\prc_ip93_1235.uti \ others\prc_ip93_1236.uti \ others\prc_ip93_1237.uti \ others\prc_ip93_1238.uti \ others\prc_ip93_1239.uti \ others\prc_ip93_124.uti \ others\prc_ip93_1240.uti \ others\prc_ip93_1241.uti \ others\prc_ip93_1242.uti \ others\prc_ip93_1243.uti \ others\prc_ip93_1244.uti \ others\prc_ip93_1245.uti \ others\prc_ip93_1246.uti \ others\prc_ip93_1247.uti \ others\prc_ip93_1248.uti \ others\prc_ip93_1249.uti \ others\prc_ip93_125.uti \ others\prc_ip93_1250.uti \ others\prc_ip93_1251.uti \ others\prc_ip93_1252.uti \ others\prc_ip93_1253.uti \ others\prc_ip93_1254.uti \ others\prc_ip93_1255.uti \ others\prc_ip93_1256.uti \ others\prc_ip93_1257.uti \ others\prc_ip93_1258.uti \ others\prc_ip93_1259.uti \ others\prc_ip93_126.uti \ others\prc_ip93_1260.uti \ others\prc_ip93_1261.uti \ others\prc_ip93_1262.uti \ others\prc_ip93_1263.uti \ others\prc_ip93_1264.uti \ others\prc_ip93_1265.uti \ others\prc_ip93_1266.uti \ others\prc_ip93_1267.uti \ others\prc_ip93_1268.uti \ others\prc_ip93_1269.uti \ others\prc_ip93_127.uti \ others\prc_ip93_1270.uti \ others\prc_ip93_1271.uti \ others\prc_ip93_1272.uti \ others\prc_ip93_1273.uti \ others\prc_ip93_1274.uti \ others\prc_ip93_1275.uti \ others\prc_ip93_1276.uti \ others\prc_ip93_1277.uti \ others\prc_ip93_1278.uti \ others\prc_ip93_1279.uti \ others\prc_ip93_128.uti \ others\prc_ip93_1280.uti \ others\prc_ip93_1281.uti \ others\prc_ip93_1282.uti \ others\prc_ip93_1283.uti \ others\prc_ip93_1284.uti \ others\prc_ip93_1285.uti \ others\prc_ip93_1286.uti \ others\prc_ip93_1287.uti \ others\prc_ip93_1288.uti \ others\prc_ip93_1289.uti \ others\prc_ip93_129.uti \ others\prc_ip93_1290.uti \ others\prc_ip93_1291.uti \ others\prc_ip93_1292.uti \ others\prc_ip93_1293.uti \ others\prc_ip93_1294.uti \ others\prc_ip93_1295.uti \ others\prc_ip93_1296.uti \ others\prc_ip93_1297.uti \ others\prc_ip93_1298.uti \ others\prc_ip93_1299.uti \ others\prc_ip93_13.uti \ others\prc_ip93_130.uti \ others\prc_ip93_1300.uti \ others\prc_ip93_1301.uti \ others\prc_ip93_1302.uti \ others\prc_ip93_1303.uti \ others\prc_ip93_1304.uti \ others\prc_ip93_1305.uti \ others\prc_ip93_1306.uti \ others\prc_ip93_1307.uti \ others\prc_ip93_1308.uti \ others\prc_ip93_1309.uti \ others\prc_ip93_131.uti \ others\prc_ip93_1310.uti \ others\prc_ip93_1311.uti \ others\prc_ip93_1312.uti \ others\prc_ip93_1313.uti \ others\prc_ip93_1314.uti \ others\prc_ip93_1315.uti \ others\prc_ip93_1316.uti \ others\prc_ip93_1317.uti \ others\prc_ip93_1318.uti \ others\prc_ip93_1319.uti \ others\prc_ip93_132.uti \ others\prc_ip93_1320.uti \ others\prc_ip93_1321.uti \ others\prc_ip93_1322.uti \ others\prc_ip93_1323.uti \ others\prc_ip93_1324.uti \ others\prc_ip93_1325.uti \ others\prc_ip93_1326.uti \ others\prc_ip93_1327.uti \ others\prc_ip93_1328.uti \ others\prc_ip93_1329.uti \ others\prc_ip93_133.uti \ others\prc_ip93_1330.uti \ others\prc_ip93_1331.uti \ others\prc_ip93_1332.uti \ others\prc_ip93_1333.uti \ others\prc_ip93_1334.uti \ others\prc_ip93_1335.uti \ others\prc_ip93_1336.uti \ others\prc_ip93_1337.uti \ others\prc_ip93_1338.uti \ others\prc_ip93_1339.uti \ others\prc_ip93_134.uti \ others\prc_ip93_1340.uti \ others\prc_ip93_1341.uti \ others\prc_ip93_1342.uti \ others\prc_ip93_1343.uti \ others\prc_ip93_1344.uti \ others\prc_ip93_1345.uti \ others\prc_ip93_1346.uti \ others\prc_ip93_1347.uti \ others\prc_ip93_1348.uti \ others\prc_ip93_1349.uti \ others\prc_ip93_135.uti \ others\prc_ip93_1350.uti \ others\prc_ip93_1351.uti \ others\prc_ip93_1352.uti \ others\prc_ip93_1353.uti \ others\prc_ip93_1354.uti \ others\prc_ip93_1355.uti \ others\prc_ip93_1356.uti \ others\prc_ip93_1357.uti \ others\prc_ip93_1358.uti \ others\prc_ip93_1359.uti \ others\prc_ip93_136.uti \ others\prc_ip93_1360.uti \ others\prc_ip93_1361.uti \ others\prc_ip93_1362.uti \ others\prc_ip93_1363.uti \ others\prc_ip93_1364.uti \ others\prc_ip93_1365.uti \ others\prc_ip93_1366.uti \ others\prc_ip93_1367.uti \ others\prc_ip93_1368.uti \ others\prc_ip93_1369.uti \ others\prc_ip93_137.uti \ others\prc_ip93_1370.uti \ others\prc_ip93_1371.uti \ others\prc_ip93_1372.uti \ others\prc_ip93_1373.uti \ others\prc_ip93_1374.uti \ others\prc_ip93_1375.uti \ others\prc_ip93_1376.uti \ others\prc_ip93_1377.uti \ others\prc_ip93_1378.uti \ others\prc_ip93_1379.uti \ others\prc_ip93_138.uti \ others\prc_ip93_1380.uti \ others\prc_ip93_1381.uti \ others\prc_ip93_1382.uti \ others\prc_ip93_1383.uti \ others\prc_ip93_1384.uti \ others\prc_ip93_1385.uti \ others\prc_ip93_1386.uti \ others\prc_ip93_1387.uti \ others\prc_ip93_1388.uti \ others\prc_ip93_1389.uti \ others\prc_ip93_139.uti \ others\prc_ip93_1390.uti \ others\prc_ip93_1391.uti \ others\prc_ip93_1392.uti \ others\prc_ip93_1393.uti \ others\prc_ip93_1394.uti \ others\prc_ip93_1395.uti \ others\prc_ip93_1396.uti \ others\prc_ip93_1397.uti \ others\prc_ip93_1398.uti \ others\prc_ip93_1399.uti \ others\prc_ip93_14.uti \ others\prc_ip93_140.uti \ others\prc_ip93_1400.uti \ others\prc_ip93_1401.uti \ others\prc_ip93_1402.uti \ others\prc_ip93_1403.uti \ others\prc_ip93_1404.uti \ others\prc_ip93_1405.uti \ others\prc_ip93_1406.uti \ others\prc_ip93_1407.uti \ others\prc_ip93_1408.uti \ others\prc_ip93_1409.uti \ others\prc_ip93_141.uti \ others\prc_ip93_1410.uti \ others\prc_ip93_1411.uti \ others\prc_ip93_1412.uti \ others\prc_ip93_1413.uti \ others\prc_ip93_1414.uti \ others\prc_ip93_1415.uti \ others\prc_ip93_1416.uti \ others\prc_ip93_142.uti \ others\prc_ip93_143.uti \ others\prc_ip93_144.uti \ others\prc_ip93_145.uti \ others\prc_ip93_146.uti \ others\prc_ip93_147.uti \ others\prc_ip93_148.uti \ others\prc_ip93_149.uti \ others\prc_ip93_15.uti \ others\prc_ip93_150.uti \ others\prc_ip93_151.uti \ others\prc_ip93_152.uti \ others\prc_ip93_153.uti \ others\prc_ip93_154.uti \ others\prc_ip93_155.uti \ others\prc_ip93_156.uti \ others\prc_ip93_157.uti \ others\prc_ip93_158.uti \ others\prc_ip93_159.uti \ others\prc_ip93_16.uti \ others\prc_ip93_160.uti \ others\prc_ip93_161.uti \ others\prc_ip93_162.uti \ others\prc_ip93_163.uti \ others\prc_ip93_164.uti \ others\prc_ip93_165.uti \ others\prc_ip93_166.uti \ others\prc_ip93_167.uti \ others\prc_ip93_168.uti \ others\prc_ip93_169.uti \ others\prc_ip93_17.uti \ others\prc_ip93_170.uti \ others\prc_ip93_171.uti \ others\prc_ip93_172.uti \ others\prc_ip93_173.uti \ others\prc_ip93_174.uti \ others\prc_ip93_175.uti \ others\prc_ip93_176.uti \ others\prc_ip93_177.uti \ others\prc_ip93_178.uti \ others\prc_ip93_179.uti \ others\prc_ip93_18.uti \ others\prc_ip93_180.uti \ others\prc_ip93_181.uti \ others\prc_ip93_182.uti \ others\prc_ip93_183.uti \ others\prc_ip93_184.uti \ others\prc_ip93_185.uti \ others\prc_ip93_186.uti \ others\prc_ip93_187.uti \ others\prc_ip93_188.uti \ others\prc_ip93_189.uti \ others\prc_ip93_19.uti \ others\prc_ip93_190.uti \ others\prc_ip93_191.uti \ others\prc_ip93_192.uti \ others\prc_ip93_193.uti \ others\prc_ip93_194.uti \ others\prc_ip93_195.uti \ others\prc_ip93_196.uti \ others\prc_ip93_197.uti \ others\prc_ip93_198.uti \ others\prc_ip93_199.uti \ others\prc_ip93_2.uti \ others\prc_ip93_20.uti \ others\prc_ip93_200.uti \ others\prc_ip93_201.uti \ others\prc_ip93_202.uti \ others\prc_ip93_203.uti \ others\prc_ip93_204.uti \ others\prc_ip93_205.uti \ others\prc_ip93_206.uti \ others\prc_ip93_207.uti \ others\prc_ip93_208.uti \ others\prc_ip93_209.uti \ others\prc_ip93_21.uti \ others\prc_ip93_210.uti \ others\prc_ip93_211.uti \ others\prc_ip93_212.uti \ others\prc_ip93_213.uti \ others\prc_ip93_214.uti \ others\prc_ip93_215.uti \ others\prc_ip93_216.uti \ others\prc_ip93_217.uti \ others\prc_ip93_218.uti \ others\prc_ip93_219.uti \ others\prc_ip93_22.uti \ others\prc_ip93_220.uti \ others\prc_ip93_221.uti \ others\prc_ip93_222.uti \ others\prc_ip93_223.uti \ others\prc_ip93_224.uti \ others\prc_ip93_225.uti \ others\prc_ip93_226.uti \ others\prc_ip93_227.uti \ others\prc_ip93_228.uti \ others\prc_ip93_229.uti \ others\prc_ip93_23.uti \ others\prc_ip93_230.uti \ others\prc_ip93_231.uti \ others\prc_ip93_232.uti \ others\prc_ip93_233.uti \ others\prc_ip93_234.uti \ others\prc_ip93_235.uti \ others\prc_ip93_236.uti \ others\prc_ip93_237.uti \ others\prc_ip93_238.uti \ others\prc_ip93_239.uti \ others\prc_ip93_24.uti \ others\prc_ip93_240.uti \ others\prc_ip93_241.uti \ others\prc_ip93_242.uti \ others\prc_ip93_243.uti \ others\prc_ip93_244.uti \ others\prc_ip93_245.uti \ others\prc_ip93_246.uti \ others\prc_ip93_247.uti \ others\prc_ip93_248.uti \ others\prc_ip93_249.uti \ others\prc_ip93_25.uti \ others\prc_ip93_250.uti \ others\prc_ip93_251.uti \ others\prc_ip93_252.uti \ others\prc_ip93_253.uti \ others\prc_ip93_254.uti \ others\prc_ip93_255.uti \ others\prc_ip93_256.uti \ others\prc_ip93_257.uti \ others\prc_ip93_258.uti \ others\prc_ip93_259.uti \ others\prc_ip93_26.uti \ others\prc_ip93_260.uti \ others\prc_ip93_261.uti \ others\prc_ip93_262.uti \ others\prc_ip93_263.uti \ others\prc_ip93_264.uti \ others\prc_ip93_265.uti \ others\prc_ip93_266.uti \ others\prc_ip93_267.uti \ others\prc_ip93_268.uti \ others\prc_ip93_269.uti \ others\prc_ip93_27.uti \ others\prc_ip93_270.uti \ others\prc_ip93_271.uti \ others\prc_ip93_272.uti \ others\prc_ip93_273.uti \ others\prc_ip93_274.uti \ others\prc_ip93_275.uti \ others\prc_ip93_276.uti \ others\prc_ip93_277.uti \ others\prc_ip93_278.uti \ others\prc_ip93_279.uti \ others\prc_ip93_28.uti \ others\prc_ip93_280.uti \ others\prc_ip93_281.uti \ others\prc_ip93_282.uti \ others\prc_ip93_283.uti \ others\prc_ip93_284.uti \ others\prc_ip93_285.uti \ others\prc_ip93_286.uti \ others\prc_ip93_287.uti \ others\prc_ip93_288.uti \ others\prc_ip93_289.uti \ others\prc_ip93_29.uti \ others\prc_ip93_290.uti \ others\prc_ip93_291.uti \ others\prc_ip93_292.uti \ others\prc_ip93_293.uti \ others\prc_ip93_294.uti \ others\prc_ip93_295.uti \ others\prc_ip93_296.uti \ others\prc_ip93_297.uti \ others\prc_ip93_298.uti \ others\prc_ip93_299.uti \ others\prc_ip93_3.uti \ others\prc_ip93_30.uti \ others\prc_ip93_300.uti \ others\prc_ip93_301.uti \ others\prc_ip93_302.uti \ others\prc_ip93_303.uti \ others\prc_ip93_304.uti \ others\prc_ip93_305.uti \ others\prc_ip93_306.uti \ others\prc_ip93_307.uti \ others\prc_ip93_308.uti \ others\prc_ip93_309.uti \ others\prc_ip93_31.uti \ others\prc_ip93_310.uti \ others\prc_ip93_311.uti \ others\prc_ip93_312.uti \ others\prc_ip93_313.uti \ others\prc_ip93_314.uti \ others\prc_ip93_315.uti \ others\prc_ip93_316.uti \ others\prc_ip93_317.uti \ others\prc_ip93_318.uti \ others\prc_ip93_319.uti \ others\prc_ip93_32.uti \ others\prc_ip93_320.uti \ others\prc_ip93_321.uti \ others\prc_ip93_322.uti \ others\prc_ip93_323.uti \ others\prc_ip93_324.uti \ others\prc_ip93_325.uti \ others\prc_ip93_326.uti \ others\prc_ip93_327.uti \ others\prc_ip93_328.uti \ others\prc_ip93_329.uti \ others\prc_ip93_33.uti \ others\prc_ip93_330.uti \ others\prc_ip93_331.uti \ others\prc_ip93_332.uti \ others\prc_ip93_333.uti \ others\prc_ip93_334.uti \ others\prc_ip93_335.uti \ others\prc_ip93_336.uti \ others\prc_ip93_337.uti \ others\prc_ip93_338.uti \ others\prc_ip93_339.uti \ others\prc_ip93_34.uti \ others\prc_ip93_340.uti \ others\prc_ip93_341.uti \ others\prc_ip93_342.uti \ others\prc_ip93_343.uti \ others\prc_ip93_344.uti \ others\prc_ip93_345.uti \ others\prc_ip93_346.uti \ others\prc_ip93_347.uti \ others\prc_ip93_348.uti \ others\prc_ip93_349.uti \ others\prc_ip93_35.uti \ others\prc_ip93_350.uti \ others\prc_ip93_351.uti \ others\prc_ip93_352.uti \ others\prc_ip93_353.uti \ others\prc_ip93_354.uti \ others\prc_ip93_355.uti \ others\prc_ip93_356.uti \ others\prc_ip93_357.uti \ others\prc_ip93_358.uti \ others\prc_ip93_359.uti \ others\prc_ip93_36.uti \ others\prc_ip93_360.uti \ others\prc_ip93_361.uti \ others\prc_ip93_362.uti \ others\prc_ip93_363.uti \ others\prc_ip93_364.uti \ others\prc_ip93_365.uti \ others\prc_ip93_366.uti \ others\prc_ip93_367.uti \ others\prc_ip93_368.uti \ others\prc_ip93_369.uti \ others\prc_ip93_37.uti \ others\prc_ip93_370.uti \ others\prc_ip93_371.uti \ others\prc_ip93_372.uti \ others\prc_ip93_373.uti \ others\prc_ip93_374.uti \ others\prc_ip93_375.uti \ others\prc_ip93_376.uti \ others\prc_ip93_377.uti \ others\prc_ip93_378.uti \ others\prc_ip93_379.uti \ others\prc_ip93_38.uti \ others\prc_ip93_380.uti \ others\prc_ip93_381.uti \ others\prc_ip93_382.uti \ others\prc_ip93_383.uti \ others\prc_ip93_384.uti \ others\prc_ip93_385.uti \ others\prc_ip93_386.uti \ others\prc_ip93_387.uti \ others\prc_ip93_388.uti \ others\prc_ip93_389.uti \ others\prc_ip93_39.uti \ others\prc_ip93_390.uti \ others\prc_ip93_391.uti \ others\prc_ip93_392.uti \ others\prc_ip93_393.uti \ others\prc_ip93_394.uti \ others\prc_ip93_395.uti \ others\prc_ip93_396.uti \ others\prc_ip93_397.uti \ others\prc_ip93_398.uti \ others\prc_ip93_399.uti \ others\prc_ip93_4.uti \ others\prc_ip93_40.uti \ others\prc_ip93_400.uti \ others\prc_ip93_401.uti \ others\prc_ip93_402.uti \ others\prc_ip93_403.uti \ others\prc_ip93_404.uti \ others\prc_ip93_405.uti \ others\prc_ip93_406.uti \ others\prc_ip93_407.uti \ others\prc_ip93_408.uti \ others\prc_ip93_409.uti \ others\prc_ip93_41.uti \ others\prc_ip93_410.uti \ others\prc_ip93_411.uti \ others\prc_ip93_412.uti \ others\prc_ip93_413.uti \ others\prc_ip93_414.uti \ others\prc_ip93_415.uti \ others\prc_ip93_416.uti \ others\prc_ip93_417.uti \ others\prc_ip93_418.uti \ others\prc_ip93_419.uti \ others\prc_ip93_42.uti \ others\prc_ip93_420.uti \ others\prc_ip93_421.uti \ others\prc_ip93_422.uti \ others\prc_ip93_423.uti \ others\prc_ip93_424.uti \ others\prc_ip93_425.uti \ others\prc_ip93_426.uti \ others\prc_ip93_427.uti \ others\prc_ip93_428.uti \ others\prc_ip93_429.uti \ others\prc_ip93_43.uti \ others\prc_ip93_430.uti \ others\prc_ip93_431.uti \ others\prc_ip93_432.uti \ others\prc_ip93_433.uti \ others\prc_ip93_434.uti \ others\prc_ip93_435.uti \ others\prc_ip93_436.uti \ others\prc_ip93_437.uti \ others\prc_ip93_438.uti \ others\prc_ip93_439.uti \ others\prc_ip93_44.uti \ others\prc_ip93_440.uti \ others\prc_ip93_441.uti \ others\prc_ip93_442.uti \ others\prc_ip93_443.uti \ others\prc_ip93_444.uti \ others\prc_ip93_445.uti \ others\prc_ip93_446.uti \ others\prc_ip93_447.uti \ others\prc_ip93_448.uti \ others\prc_ip93_449.uti \ others\prc_ip93_45.uti \ others\prc_ip93_450.uti \ others\prc_ip93_451.uti \ others\prc_ip93_452.uti \ others\prc_ip93_453.uti \ others\prc_ip93_454.uti \ others\prc_ip93_455.uti \ others\prc_ip93_456.uti \ others\prc_ip93_457.uti \ others\prc_ip93_458.uti \ others\prc_ip93_459.uti \ others\prc_ip93_46.uti \ others\prc_ip93_460.uti \ others\prc_ip93_461.uti \ others\prc_ip93_462.uti \ others\prc_ip93_463.uti \ others\prc_ip93_464.uti \ others\prc_ip93_465.uti \ others\prc_ip93_466.uti \ others\prc_ip93_467.uti \ others\prc_ip93_468.uti \ others\prc_ip93_469.uti \ others\prc_ip93_47.uti \ others\prc_ip93_470.uti \ others\prc_ip93_471.uti \ others\prc_ip93_472.uti \ others\prc_ip93_473.uti \ others\prc_ip93_474.uti \ others\prc_ip93_475.uti \ others\prc_ip93_476.uti \ others\prc_ip93_477.uti \ others\prc_ip93_478.uti \ others\prc_ip93_479.uti \ others\prc_ip93_48.uti \ others\prc_ip93_480.uti \ others\prc_ip93_481.uti \ others\prc_ip93_482.uti \ others\prc_ip93_483.uti \ others\prc_ip93_484.uti \ others\prc_ip93_485.uti \ others\prc_ip93_486.uti \ others\prc_ip93_487.uti \ others\prc_ip93_488.uti \ others\prc_ip93_489.uti \ others\prc_ip93_49.uti \ others\prc_ip93_490.uti \ others\prc_ip93_491.uti \ others\prc_ip93_492.uti \ others\prc_ip93_493.uti \ others\prc_ip93_494.uti \ others\prc_ip93_495.uti \ others\prc_ip93_496.uti \ others\prc_ip93_497.uti \ others\prc_ip93_498.uti \ others\prc_ip93_499.uti \ others\prc_ip93_5.uti \ others\prc_ip93_50.uti \ others\prc_ip93_500.uti \ others\prc_ip93_501.uti \ others\prc_ip93_502.uti \ others\prc_ip93_503.uti \ others\prc_ip93_504.uti \ others\prc_ip93_505.uti \ others\prc_ip93_506.uti \ others\prc_ip93_507.uti \ others\prc_ip93_508.uti \ others\prc_ip93_509.uti \ others\prc_ip93_51.uti \ others\prc_ip93_510.uti \ others\prc_ip93_511.uti \ others\prc_ip93_512.uti \ others\prc_ip93_513.uti \ others\prc_ip93_514.uti \ others\prc_ip93_515.uti \ others\prc_ip93_516.uti \ others\prc_ip93_517.uti \ others\prc_ip93_518.uti \ others\prc_ip93_519.uti \ others\prc_ip93_52.uti \ others\prc_ip93_520.uti \ others\prc_ip93_521.uti \ others\prc_ip93_522.uti \ others\prc_ip93_523.uti \ others\prc_ip93_524.uti \ others\prc_ip93_525.uti \ others\prc_ip93_526.uti \ others\prc_ip93_527.uti \ others\prc_ip93_528.uti \ others\prc_ip93_529.uti \ others\prc_ip93_53.uti \ others\prc_ip93_530.uti \ others\prc_ip93_531.uti \ others\prc_ip93_532.uti \ others\prc_ip93_533.uti \ others\prc_ip93_534.uti \ others\prc_ip93_535.uti \ others\prc_ip93_536.uti \ others\prc_ip93_537.uti \ others\prc_ip93_538.uti \ others\prc_ip93_539.uti \ others\prc_ip93_54.uti \ others\prc_ip93_540.uti \ others\prc_ip93_541.uti \ others\prc_ip93_542.uti \ others\prc_ip93_543.uti \ others\prc_ip93_544.uti \ others\prc_ip93_545.uti \ others\prc_ip93_546.uti \ others\prc_ip93_547.uti \ others\prc_ip93_548.uti \ others\prc_ip93_549.uti \ others\prc_ip93_55.uti \ others\prc_ip93_550.uti \ others\prc_ip93_551.uti \ others\prc_ip93_552.uti \ others\prc_ip93_553.uti \ others\prc_ip93_554.uti \ others\prc_ip93_555.uti \ others\prc_ip93_556.uti \ others\prc_ip93_557.uti \ others\prc_ip93_558.uti \ others\prc_ip93_559.uti \ others\prc_ip93_56.uti \ others\prc_ip93_560.uti \ others\prc_ip93_561.uti \ others\prc_ip93_562.uti \ others\prc_ip93_563.uti \ others\prc_ip93_564.uti \ others\prc_ip93_565.uti \ others\prc_ip93_566.uti \ others\prc_ip93_567.uti \ others\prc_ip93_568.uti \ others\prc_ip93_569.uti \ others\prc_ip93_57.uti \ others\prc_ip93_570.uti \ others\prc_ip93_571.uti \ others\prc_ip93_572.uti \ others\prc_ip93_573.uti \ others\prc_ip93_574.uti \ others\prc_ip93_575.uti \ others\prc_ip93_576.uti \ others\prc_ip93_577.uti \ others\prc_ip93_578.uti \ others\prc_ip93_579.uti \ others\prc_ip93_58.uti \ others\prc_ip93_580.uti \ others\prc_ip93_581.uti \ others\prc_ip93_582.uti \ others\prc_ip93_583.uti \ others\prc_ip93_584.uti \ others\prc_ip93_585.uti \ others\prc_ip93_586.uti \ others\prc_ip93_587.uti \ others\prc_ip93_588.uti \ others\prc_ip93_589.uti \ others\prc_ip93_59.uti \ others\prc_ip93_590.uti \ others\prc_ip93_591.uti \ others\prc_ip93_592.uti \ others\prc_ip93_593.uti \ others\prc_ip93_594.uti \ others\prc_ip93_595.uti \ others\prc_ip93_596.uti \ others\prc_ip93_597.uti \ others\prc_ip93_598.uti \ others\prc_ip93_599.uti \ others\prc_ip93_6.uti \ others\prc_ip93_60.uti \ others\prc_ip93_600.uti \ others\prc_ip93_601.uti \ others\prc_ip93_602.uti \ others\prc_ip93_603.uti \ others\prc_ip93_604.uti \ others\prc_ip93_605.uti \ others\prc_ip93_606.uti \ others\prc_ip93_607.uti \ others\prc_ip93_608.uti \ others\prc_ip93_609.uti \ others\prc_ip93_61.uti \ others\prc_ip93_610.uti \ others\prc_ip93_611.uti \ others\prc_ip93_612.uti \ others\prc_ip93_613.uti \ others\prc_ip93_614.uti \ others\prc_ip93_615.uti \ others\prc_ip93_616.uti \ others\prc_ip93_617.uti \ others\prc_ip93_618.uti \ others\prc_ip93_619.uti \ others\prc_ip93_62.uti \ others\prc_ip93_620.uti \ others\prc_ip93_621.uti \ others\prc_ip93_622.uti \ others\prc_ip93_623.uti \ others\prc_ip93_624.uti \ others\prc_ip93_625.uti \ others\prc_ip93_626.uti \ others\prc_ip93_627.uti \ others\prc_ip93_628.uti \ others\prc_ip93_629.uti \ others\prc_ip93_63.uti \ others\prc_ip93_630.uti \ others\prc_ip93_631.uti \ others\prc_ip93_632.uti \ others\prc_ip93_633.uti \ others\prc_ip93_634.uti \ others\prc_ip93_635.uti \ others\prc_ip93_636.uti \ others\prc_ip93_637.uti \ others\prc_ip93_638.uti \ others\prc_ip93_639.uti \ others\prc_ip93_64.uti \ others\prc_ip93_640.uti \ others\prc_ip93_641.uti \ others\prc_ip93_642.uti \ others\prc_ip93_643.uti \ others\prc_ip93_644.uti \ others\prc_ip93_645.uti \ others\prc_ip93_646.uti \ others\prc_ip93_647.uti \ others\prc_ip93_648.uti \ others\prc_ip93_649.uti \ others\prc_ip93_65.uti \ others\prc_ip93_650.uti \ others\prc_ip93_651.uti \ others\prc_ip93_652.uti \ others\prc_ip93_653.uti \ others\prc_ip93_654.uti \ others\prc_ip93_655.uti \ others\prc_ip93_656.uti \ others\prc_ip93_657.uti \ others\prc_ip93_658.uti \ others\prc_ip93_659.uti \ others\prc_ip93_66.uti \ others\prc_ip93_660.uti \ others\prc_ip93_661.uti \ others\prc_ip93_662.uti \ others\prc_ip93_663.uti \ others\prc_ip93_664.uti \ others\prc_ip93_665.uti \ others\prc_ip93_666.uti \ others\prc_ip93_667.uti \ others\prc_ip93_668.uti \ others\prc_ip93_669.uti \ others\prc_ip93_67.uti \ others\prc_ip93_670.uti \ others\prc_ip93_671.uti \ others\prc_ip93_672.uti \ others\prc_ip93_673.uti \ others\prc_ip93_674.uti \ others\prc_ip93_675.uti \ others\prc_ip93_676.uti \ others\prc_ip93_677.uti \ others\prc_ip93_678.uti \ others\prc_ip93_679.uti \ others\prc_ip93_68.uti \ others\prc_ip93_680.uti \ others\prc_ip93_681.uti \ others\prc_ip93_682.uti \ others\prc_ip93_683.uti \ others\prc_ip93_684.uti \ others\prc_ip93_685.uti \ others\prc_ip93_686.uti \ others\prc_ip93_687.uti \ others\prc_ip93_688.uti \ others\prc_ip93_689.uti \ others\prc_ip93_69.uti \ others\prc_ip93_690.uti \ others\prc_ip93_691.uti \ others\prc_ip93_692.uti \ others\prc_ip93_693.uti \ others\prc_ip93_694.uti \ others\prc_ip93_695.uti \ others\prc_ip93_696.uti \ others\prc_ip93_697.uti \ others\prc_ip93_698.uti \ others\prc_ip93_699.uti \ others\prc_ip93_7.uti \ others\prc_ip93_70.uti \ others\prc_ip93_700.uti \ others\prc_ip93_701.uti \ others\prc_ip93_702.uti \ others\prc_ip93_703.uti \ others\prc_ip93_704.uti \ others\prc_ip93_705.uti \ others\prc_ip93_706.uti \ others\prc_ip93_707.uti \ others\prc_ip93_708.uti \ others\prc_ip93_709.uti \ others\prc_ip93_71.uti \ others\prc_ip93_710.uti \ others\prc_ip93_711.uti \ others\prc_ip93_712.uti \ others\prc_ip93_713.uti \ others\prc_ip93_714.uti \ others\prc_ip93_715.uti \ others\prc_ip93_716.uti \ others\prc_ip93_717.uti \ others\prc_ip93_718.uti \ others\prc_ip93_719.uti \ others\prc_ip93_72.uti \ others\prc_ip93_720.uti \ others\prc_ip93_721.uti \ others\prc_ip93_722.uti \ others\prc_ip93_723.uti \ others\prc_ip93_724.uti \ others\prc_ip93_725.uti \ others\prc_ip93_726.uti \ others\prc_ip93_727.uti \ others\prc_ip93_728.uti \ others\prc_ip93_729.uti \ others\prc_ip93_73.uti \ others\prc_ip93_730.uti \ others\prc_ip93_731.uti \ others\prc_ip93_732.uti \ others\prc_ip93_733.uti \ others\prc_ip93_734.uti \ others\prc_ip93_735.uti \ others\prc_ip93_736.uti \ others\prc_ip93_737.uti \ others\prc_ip93_738.uti \ others\prc_ip93_739.uti \ others\prc_ip93_74.uti \ others\prc_ip93_740.uti \ others\prc_ip93_741.uti \ others\prc_ip93_742.uti \ others\prc_ip93_743.uti \ others\prc_ip93_744.uti \ others\prc_ip93_745.uti \ others\prc_ip93_746.uti \ others\prc_ip93_747.uti \ others\prc_ip93_748.uti \ others\prc_ip93_749.uti \ others\prc_ip93_75.uti \ others\prc_ip93_750.uti \ others\prc_ip93_751.uti \ others\prc_ip93_752.uti \ others\prc_ip93_753.uti \ others\prc_ip93_754.uti \ others\prc_ip93_755.uti \ others\prc_ip93_756.uti \ others\prc_ip93_757.uti \ others\prc_ip93_758.uti \ others\prc_ip93_759.uti \ others\prc_ip93_76.uti \ others\prc_ip93_760.uti \ others\prc_ip93_761.uti \ others\prc_ip93_762.uti \ others\prc_ip93_763.uti \ others\prc_ip93_764.uti \ others\prc_ip93_765.uti \ others\prc_ip93_766.uti \ others\prc_ip93_767.uti \ others\prc_ip93_768.uti \ others\prc_ip93_769.uti \ others\prc_ip93_77.uti \ others\prc_ip93_770.uti \ others\prc_ip93_771.uti \ others\prc_ip93_772.uti \ others\prc_ip93_773.uti \ others\prc_ip93_774.uti \ others\prc_ip93_775.uti \ others\prc_ip93_776.uti \ others\prc_ip93_777.uti \ others\prc_ip93_778.uti \ others\prc_ip93_779.uti \ others\prc_ip93_78.uti \ others\prc_ip93_780.uti \ others\prc_ip93_781.uti \ others\prc_ip93_782.uti \ others\prc_ip93_783.uti \ others\prc_ip93_784.uti \ others\prc_ip93_785.uti \ others\prc_ip93_786.uti \ others\prc_ip93_787.uti \ others\prc_ip93_788.uti \ others\prc_ip93_789.uti \ others\prc_ip93_79.uti \ others\prc_ip93_790.uti \ others\prc_ip93_791.uti \ others\prc_ip93_792.uti \ others\prc_ip93_793.uti \ others\prc_ip93_794.uti \ others\prc_ip93_795.uti \ others\prc_ip93_796.uti \ others\prc_ip93_797.uti \ others\prc_ip93_798.uti \ others\prc_ip93_799.uti \ others\prc_ip93_8.uti \ others\prc_ip93_80.uti \ others\prc_ip93_800.uti \ others\prc_ip93_801.uti \ others\prc_ip93_802.uti \ others\prc_ip93_803.uti \ others\prc_ip93_804.uti \ others\prc_ip93_805.uti \ others\prc_ip93_806.uti \ others\prc_ip93_807.uti \ others\prc_ip93_808.uti \ others\prc_ip93_809.uti \ others\prc_ip93_81.uti \ others\prc_ip93_810.uti \ others\prc_ip93_811.uti \ others\prc_ip93_812.uti \ others\prc_ip93_813.uti \ others\prc_ip93_814.uti \ others\prc_ip93_815.uti \ others\prc_ip93_816.uti \ others\prc_ip93_817.uti \ others\prc_ip93_818.uti \ others\prc_ip93_819.uti \ others\prc_ip93_82.uti \ others\prc_ip93_820.uti \ others\prc_ip93_821.uti \ others\prc_ip93_822.uti \ others\prc_ip93_823.uti \ others\prc_ip93_824.uti \ others\prc_ip93_825.uti \ others\prc_ip93_826.uti \ others\prc_ip93_827.uti \ others\prc_ip93_828.uti \ others\prc_ip93_829.uti \ others\prc_ip93_83.uti \ others\prc_ip93_830.uti \ others\prc_ip93_831.uti \ others\prc_ip93_832.uti \ others\prc_ip93_833.uti \ others\prc_ip93_834.uti \ others\prc_ip93_835.uti \ others\prc_ip93_836.uti \ others\prc_ip93_837.uti \ others\prc_ip93_838.uti \ others\prc_ip93_839.uti \ others\prc_ip93_84.uti \ others\prc_ip93_840.uti \ others\prc_ip93_841.uti \ others\prc_ip93_842.uti \ others\prc_ip93_843.uti \ others\prc_ip93_844.uti \ others\prc_ip93_845.uti \ others\prc_ip93_846.uti \ others\prc_ip93_847.uti \ others\prc_ip93_848.uti \ others\prc_ip93_849.uti \ others\prc_ip93_85.uti \ others\prc_ip93_850.uti \ others\prc_ip93_851.uti \ others\prc_ip93_852.uti \ others\prc_ip93_853.uti \ others\prc_ip93_854.uti \ others\prc_ip93_855.uti \ others\prc_ip93_856.uti \ others\prc_ip93_857.uti \ others\prc_ip93_858.uti \ others\prc_ip93_859.uti \ others\prc_ip93_86.uti \ others\prc_ip93_860.uti \ others\prc_ip93_861.uti \ others\prc_ip93_862.uti \ others\prc_ip93_863.uti \ others\prc_ip93_864.uti \ others\prc_ip93_865.uti \ others\prc_ip93_866.uti \ others\prc_ip93_867.uti \ others\prc_ip93_868.uti \ others\prc_ip93_869.uti \ others\prc_ip93_87.uti \ others\prc_ip93_870.uti \ others\prc_ip93_871.uti \ others\prc_ip93_872.uti \ others\prc_ip93_873.uti \ others\prc_ip93_874.uti \ others\prc_ip93_875.uti \ others\prc_ip93_876.uti \ others\prc_ip93_877.uti \ others\prc_ip93_878.uti \ others\prc_ip93_879.uti \ others\prc_ip93_88.uti \ others\prc_ip93_880.uti \ others\prc_ip93_881.uti \ others\prc_ip93_882.uti \ others\prc_ip93_883.uti \ others\prc_ip93_884.uti \ others\prc_ip93_885.uti \ others\prc_ip93_886.uti \ others\prc_ip93_887.uti \ others\prc_ip93_888.uti \ others\prc_ip93_889.uti \ others\prc_ip93_89.uti \ others\prc_ip93_890.uti \ others\prc_ip93_891.uti \ others\prc_ip93_892.uti \ others\prc_ip93_893.uti \ others\prc_ip93_894.uti \ others\prc_ip93_895.uti \ others\prc_ip93_896.uti \ others\prc_ip93_897.uti \ others\prc_ip93_898.uti \ others\prc_ip93_899.uti \ others\prc_ip93_9.uti \ others\prc_ip93_90.uti \ others\prc_ip93_900.uti \ others\prc_ip93_901.uti \ others\prc_ip93_902.uti \ others\prc_ip93_903.uti \ others\prc_ip93_904.uti \ others\prc_ip93_905.uti \ others\prc_ip93_906.uti \ others\prc_ip93_907.uti \ others\prc_ip93_908.uti \ others\prc_ip93_909.uti \ others\prc_ip93_91.uti \ others\prc_ip93_910.uti \ others\prc_ip93_911.uti \ others\prc_ip93_912.uti \ others\prc_ip93_913.uti \ others\prc_ip93_914.uti \ others\prc_ip93_915.uti \ others\prc_ip93_916.uti \ others\prc_ip93_917.uti \ others\prc_ip93_918.uti \ others\prc_ip93_919.uti \ others\prc_ip93_92.uti \ others\prc_ip93_920.uti \ others\prc_ip93_921.uti \ others\prc_ip93_922.uti \ others\prc_ip93_923.uti \ others\prc_ip93_924.uti \ others\prc_ip93_925.uti \ others\prc_ip93_926.uti \ others\prc_ip93_927.uti \ others\prc_ip93_928.uti \ others\prc_ip93_929.uti \ others\prc_ip93_93.uti \ others\prc_ip93_930.uti \ others\prc_ip93_931.uti \ others\prc_ip93_932.uti \ others\prc_ip93_933.uti \ others\prc_ip93_934.uti \ others\prc_ip93_935.uti \ others\prc_ip93_936.uti \ others\prc_ip93_937.uti \ others\prc_ip93_938.uti \ others\prc_ip93_939.uti \ others\prc_ip93_94.uti \ others\prc_ip93_940.uti \ others\prc_ip93_941.uti \ others\prc_ip93_942.uti \ others\prc_ip93_943.uti \ others\prc_ip93_944.uti \ others\prc_ip93_945.uti \ others\prc_ip93_946.uti \ others\prc_ip93_947.uti \ others\prc_ip93_948.uti \ others\prc_ip93_949.uti \ others\prc_ip93_95.uti \ others\prc_ip93_950.uti \ others\prc_ip93_951.uti \ others\prc_ip93_952.uti \ others\prc_ip93_953.uti \ others\prc_ip93_954.uti \ others\prc_ip93_955.uti \ others\prc_ip93_956.uti \ others\prc_ip93_957.uti \ others\prc_ip93_958.uti \ others\prc_ip93_959.uti \ others\prc_ip93_96.uti \ others\prc_ip93_960.uti \ others\prc_ip93_961.uti \ others\prc_ip93_962.uti \ others\prc_ip93_963.uti \ others\prc_ip93_964.uti \ others\prc_ip93_965.uti \ others\prc_ip93_966.uti \ others\prc_ip93_967.uti \ others\prc_ip93_968.uti \ others\prc_ip93_969.uti \ others\prc_ip93_97.uti \ others\prc_ip93_970.uti \ others\prc_ip93_971.uti \ others\prc_ip93_972.uti \ others\prc_ip93_973.uti \ others\prc_ip93_974.uti \ others\prc_ip93_975.uti \ others\prc_ip93_976.uti \ others\prc_ip93_977.uti \ others\prc_ip93_978.uti \ others\prc_ip93_979.uti \ others\prc_ip93_98.uti \ others\prc_ip93_980.uti \ others\prc_ip93_981.uti \ others\prc_ip93_982.uti \ others\prc_ip93_983.uti \ others\prc_ip93_984.uti \ others\prc_ip93_985.uti \ others\prc_ip93_986.uti \ others\prc_ip93_987.uti \ others\prc_ip93_988.uti \ others\prc_ip93_989.uti \ others\prc_ip93_99.uti \ others\prc_ip93_990.uti \ others\prc_ip93_991.uti \ others\prc_ip93_992.uti \ others\prc_ip93_993.uti \ others\prc_ip93_994.uti \ others\prc_ip93_995.uti \ others\prc_ip93_996.uti \ others\prc_ip93_997.uti \ others\prc_ip93_998.uti \ others\prc_ip93_999.uti \ others\prc_ip94_0.uti \ others\prc_ip94_1.uti \ others\prc_ip94_10.uti \ others\prc_ip94_100.uti \ others\prc_ip94_1000.uti \ others\prc_ip94_1001.uti \ others\prc_ip94_1002.uti \ others\prc_ip94_1003.uti \ others\prc_ip94_1004.uti \ others\prc_ip94_1005.uti \ others\prc_ip94_1006.uti \ others\prc_ip94_1007.uti \ others\prc_ip94_1008.uti \ others\prc_ip94_1009.uti \ others\prc_ip94_101.uti \ others\prc_ip94_1010.uti \ others\prc_ip94_1011.uti \ others\prc_ip94_1012.uti \ others\prc_ip94_1013.uti \ others\prc_ip94_1014.uti \ others\prc_ip94_1015.uti \ others\prc_ip94_1016.uti \ others\prc_ip94_1017.uti \ others\prc_ip94_1018.uti \ others\prc_ip94_1019.uti \ others\prc_ip94_102.uti \ others\prc_ip94_1020.uti \ others\prc_ip94_1021.uti \ others\prc_ip94_1022.uti \ others\prc_ip94_1023.uti \ others\prc_ip94_1024.uti \ others\prc_ip94_1025.uti \ others\prc_ip94_1026.uti \ others\prc_ip94_1027.uti \ others\prc_ip94_1028.uti \ others\prc_ip94_1029.uti \ others\prc_ip94_103.uti \ others\prc_ip94_1030.uti \ others\prc_ip94_1031.uti \ others\prc_ip94_1032.uti \ others\prc_ip94_1033.uti \ others\prc_ip94_1034.uti \ others\prc_ip94_1035.uti \ others\prc_ip94_1036.uti \ others\prc_ip94_1037.uti \ others\prc_ip94_1038.uti \ others\prc_ip94_1039.uti \ others\prc_ip94_104.uti \ others\prc_ip94_1040.uti \ others\prc_ip94_1041.uti \ others\prc_ip94_1042.uti \ others\prc_ip94_1043.uti \ others\prc_ip94_1044.uti \ others\prc_ip94_1045.uti \ others\prc_ip94_1046.uti \ others\prc_ip94_1047.uti \ others\prc_ip94_1048.uti \ others\prc_ip94_1049.uti \ others\prc_ip94_105.uti \ others\prc_ip94_1050.uti \ others\prc_ip94_1051.uti \ others\prc_ip94_1052.uti \ others\prc_ip94_1053.uti \ others\prc_ip94_1054.uti \ others\prc_ip94_1055.uti \ others\prc_ip94_1056.uti \ others\prc_ip94_1057.uti \ others\prc_ip94_1058.uti \ others\prc_ip94_1059.uti \ others\prc_ip94_106.uti \ others\prc_ip94_1060.uti \ others\prc_ip94_1061.uti \ others\prc_ip94_1062.uti \ others\prc_ip94_1063.uti \ others\prc_ip94_1064.uti \ others\prc_ip94_1065.uti \ others\prc_ip94_1066.uti \ others\prc_ip94_1067.uti \ others\prc_ip94_1068.uti \ others\prc_ip94_1069.uti \ others\prc_ip94_107.uti \ others\prc_ip94_1070.uti \ others\prc_ip94_1071.uti \ others\prc_ip94_1072.uti \ others\prc_ip94_1073.uti \ others\prc_ip94_1074.uti \ others\prc_ip94_1075.uti \ others\prc_ip94_1076.uti \ others\prc_ip94_1077.uti \ others\prc_ip94_1078.uti \ others\prc_ip94_1079.uti \ others\prc_ip94_108.uti \ others\prc_ip94_1080.uti \ others\prc_ip94_1081.uti \ others\prc_ip94_1082.uti \ others\prc_ip94_1083.uti \ others\prc_ip94_1084.uti \ others\prc_ip94_1085.uti \ others\prc_ip94_1086.uti \ others\prc_ip94_1087.uti \ others\prc_ip94_1088.uti \ others\prc_ip94_1089.uti \ others\prc_ip94_109.uti \ others\prc_ip94_1090.uti \ others\prc_ip94_1091.uti \ others\prc_ip94_1092.uti \ others\prc_ip94_1093.uti \ others\prc_ip94_1094.uti \ others\prc_ip94_1095.uti \ others\prc_ip94_1096.uti \ others\prc_ip94_1097.uti \ others\prc_ip94_1098.uti \ others\prc_ip94_1099.uti \ others\prc_ip94_11.uti \ others\prc_ip94_110.uti \ others\prc_ip94_1100.uti \ others\prc_ip94_1101.uti \ others\prc_ip94_1102.uti \ others\prc_ip94_1103.uti \ others\prc_ip94_1104.uti \ others\prc_ip94_1105.uti \ others\prc_ip94_1106.uti \ others\prc_ip94_1107.uti \ others\prc_ip94_1108.uti \ others\prc_ip94_1109.uti \ others\prc_ip94_111.uti \ others\prc_ip94_1110.uti \ others\prc_ip94_1111.uti \ others\prc_ip94_1112.uti \ others\prc_ip94_1113.uti \ others\prc_ip94_1114.uti \ others\prc_ip94_1115.uti \ others\prc_ip94_1116.uti \ others\prc_ip94_1117.uti \ others\prc_ip94_1118.uti \ others\prc_ip94_1119.uti \ others\prc_ip94_112.uti \ others\prc_ip94_1120.uti \ others\prc_ip94_1121.uti \ others\prc_ip94_1122.uti \ others\prc_ip94_1123.uti \ others\prc_ip94_1124.uti \ others\prc_ip94_1125.uti \ others\prc_ip94_1126.uti \ others\prc_ip94_1127.uti \ others\prc_ip94_1128.uti \ others\prc_ip94_1129.uti \ others\prc_ip94_113.uti \ others\prc_ip94_1130.uti \ others\prc_ip94_1131.uti \ others\prc_ip94_1132.uti \ others\prc_ip94_1133.uti \ others\prc_ip94_1134.uti \ others\prc_ip94_1135.uti \ others\prc_ip94_1136.uti \ others\prc_ip94_1137.uti \ others\prc_ip94_1138.uti \ others\prc_ip94_1139.uti \ others\prc_ip94_114.uti \ others\prc_ip94_1140.uti \ others\prc_ip94_1141.uti \ others\prc_ip94_1142.uti \ others\prc_ip94_1143.uti \ others\prc_ip94_1144.uti \ others\prc_ip94_1145.uti \ others\prc_ip94_1146.uti \ others\prc_ip94_1147.uti \ others\prc_ip94_1148.uti \ others\prc_ip94_1149.uti \ others\prc_ip94_115.uti \ others\prc_ip94_1150.uti \ others\prc_ip94_1151.uti \ others\prc_ip94_1152.uti \ others\prc_ip94_1153.uti \ others\prc_ip94_1154.uti \ others\prc_ip94_1155.uti \ others\prc_ip94_1156.uti \ others\prc_ip94_1157.uti \ others\prc_ip94_1158.uti \ others\prc_ip94_1159.uti \ others\prc_ip94_116.uti \ others\prc_ip94_1160.uti \ others\prc_ip94_1161.uti \ others\prc_ip94_1162.uti \ others\prc_ip94_1163.uti \ others\prc_ip94_1164.uti \ others\prc_ip94_1165.uti \ others\prc_ip94_1166.uti \ others\prc_ip94_1167.uti \ others\prc_ip94_1168.uti \ others\prc_ip94_1169.uti \ others\prc_ip94_117.uti \ others\prc_ip94_1170.uti \ others\prc_ip94_1171.uti \ others\prc_ip94_1172.uti \ others\prc_ip94_1173.uti \ others\prc_ip94_1174.uti \ others\prc_ip94_1175.uti \ others\prc_ip94_1176.uti \ others\prc_ip94_1177.uti \ others\prc_ip94_1178.uti \ others\prc_ip94_1179.uti \ others\prc_ip94_118.uti \ others\prc_ip94_1180.uti \ others\prc_ip94_1181.uti \ others\prc_ip94_1182.uti \ others\prc_ip94_1183.uti \ others\prc_ip94_1184.uti \ others\prc_ip94_1185.uti \ others\prc_ip94_1186.uti \ others\prc_ip94_1187.uti \ others\prc_ip94_1188.uti \ others\prc_ip94_1189.uti \ others\prc_ip94_119.uti \ others\prc_ip94_1190.uti \ others\prc_ip94_1191.uti \ others\prc_ip94_1192.uti \ others\prc_ip94_1193.uti \ others\prc_ip94_1194.uti \ others\prc_ip94_1195.uti \ others\prc_ip94_1196.uti \ others\prc_ip94_1197.uti \ others\prc_ip94_1198.uti \ others\prc_ip94_1199.uti \ others\prc_ip94_12.uti \ others\prc_ip94_120.uti \ others\prc_ip94_1200.uti \ others\prc_ip94_1201.uti \ others\prc_ip94_1202.uti \ others\prc_ip94_1203.uti \ others\prc_ip94_1204.uti \ others\prc_ip94_1205.uti \ others\prc_ip94_1206.uti \ others\prc_ip94_1207.uti \ others\prc_ip94_1208.uti \ others\prc_ip94_1209.uti \ others\prc_ip94_121.uti \ others\prc_ip94_1210.uti \ others\prc_ip94_1211.uti \ others\prc_ip94_1212.uti \ others\prc_ip94_1213.uti \ others\prc_ip94_1214.uti \ others\prc_ip94_1215.uti \ others\prc_ip94_1216.uti \ others\prc_ip94_1217.uti \ others\prc_ip94_1218.uti \ others\prc_ip94_1219.uti \ others\prc_ip94_122.uti \ others\prc_ip94_1220.uti \ others\prc_ip94_1221.uti \ others\prc_ip94_1222.uti \ others\prc_ip94_1223.uti \ others\prc_ip94_1224.uti \ others\prc_ip94_1225.uti \ others\prc_ip94_1226.uti \ others\prc_ip94_1227.uti \ others\prc_ip94_1228.uti \ others\prc_ip94_1229.uti \ others\prc_ip94_123.uti \ others\prc_ip94_1230.uti \ others\prc_ip94_1231.uti \ others\prc_ip94_1232.uti \ others\prc_ip94_1233.uti \ others\prc_ip94_1234.uti \ others\prc_ip94_1235.uti \ others\prc_ip94_1236.uti \ others\prc_ip94_1237.uti \ others\prc_ip94_1238.uti \ others\prc_ip94_1239.uti \ others\prc_ip94_124.uti \ others\prc_ip94_1240.uti \ others\prc_ip94_1241.uti \ others\prc_ip94_1242.uti \ others\prc_ip94_1243.uti \ others\prc_ip94_1244.uti \ others\prc_ip94_1245.uti \ others\prc_ip94_1246.uti \ others\prc_ip94_1247.uti \ others\prc_ip94_1248.uti \ others\prc_ip94_1249.uti \ others\prc_ip94_125.uti \ others\prc_ip94_1250.uti \ others\prc_ip94_1251.uti \ others\prc_ip94_1252.uti \ others\prc_ip94_1253.uti \ others\prc_ip94_1254.uti \ others\prc_ip94_1255.uti \ others\prc_ip94_1256.uti \ others\prc_ip94_1257.uti \ others\prc_ip94_1258.uti \ others\prc_ip94_1259.uti \ others\prc_ip94_126.uti \ others\prc_ip94_1260.uti \ others\prc_ip94_1261.uti \ others\prc_ip94_1262.uti \ others\prc_ip94_1263.uti \ others\prc_ip94_1264.uti \ others\prc_ip94_1265.uti \ others\prc_ip94_1266.uti \ others\prc_ip94_1267.uti \ others\prc_ip94_1268.uti \ others\prc_ip94_1269.uti \ others\prc_ip94_127.uti \ others\prc_ip94_1270.uti \ others\prc_ip94_1271.uti \ others\prc_ip94_1272.uti \ others\prc_ip94_1273.uti \ others\prc_ip94_1274.uti \ others\prc_ip94_1275.uti \ others\prc_ip94_1276.uti \ others\prc_ip94_1277.uti \ others\prc_ip94_1278.uti \ others\prc_ip94_1279.uti \ others\prc_ip94_128.uti \ others\prc_ip94_1280.uti \ others\prc_ip94_1281.uti \ others\prc_ip94_1282.uti \ others\prc_ip94_1283.uti \ others\prc_ip94_1284.uti \ others\prc_ip94_1285.uti \ others\prc_ip94_1286.uti \ others\prc_ip94_1287.uti \ others\prc_ip94_1288.uti \ others\prc_ip94_1289.uti \ others\prc_ip94_129.uti \ others\prc_ip94_1290.uti \ others\prc_ip94_1291.uti \ others\prc_ip94_1292.uti \ others\prc_ip94_1293.uti \ others\prc_ip94_1294.uti \ others\prc_ip94_1295.uti \ others\prc_ip94_1296.uti \ others\prc_ip94_1297.uti \ others\prc_ip94_1298.uti \ others\prc_ip94_1299.uti \ others\prc_ip94_13.uti \ others\prc_ip94_130.uti \ others\prc_ip94_1300.uti \ others\prc_ip94_1301.uti \ others\prc_ip94_1302.uti \ others\prc_ip94_1303.uti \ others\prc_ip94_1304.uti \ others\prc_ip94_1305.uti \ others\prc_ip94_1306.uti \ others\prc_ip94_1307.uti \ others\prc_ip94_1308.uti \ others\prc_ip94_1309.uti \ others\prc_ip94_131.uti \ others\prc_ip94_1310.uti \ others\prc_ip94_1311.uti \ others\prc_ip94_1312.uti \ others\prc_ip94_1313.uti \ others\prc_ip94_1314.uti \ others\prc_ip94_1315.uti \ others\prc_ip94_1316.uti \ others\prc_ip94_1317.uti \ others\prc_ip94_1318.uti \ others\prc_ip94_1319.uti \ others\prc_ip94_132.uti \ others\prc_ip94_1320.uti \ others\prc_ip94_1321.uti \ others\prc_ip94_1322.uti \ others\prc_ip94_1323.uti \ others\prc_ip94_1324.uti \ others\prc_ip94_1325.uti \ others\prc_ip94_1326.uti \ others\prc_ip94_1327.uti \ others\prc_ip94_1328.uti \ others\prc_ip94_1329.uti \ others\prc_ip94_133.uti \ others\prc_ip94_1330.uti \ others\prc_ip94_1331.uti \ others\prc_ip94_1332.uti \ others\prc_ip94_1333.uti \ others\prc_ip94_1334.uti \ others\prc_ip94_1335.uti \ others\prc_ip94_1336.uti \ others\prc_ip94_1337.uti \ others\prc_ip94_1338.uti \ others\prc_ip94_1339.uti \ others\prc_ip94_134.uti \ others\prc_ip94_1340.uti \ others\prc_ip94_1341.uti \ others\prc_ip94_1342.uti \ others\prc_ip94_1343.uti \ others\prc_ip94_1344.uti \ others\prc_ip94_1345.uti \ others\prc_ip94_1346.uti \ others\prc_ip94_1347.uti \ others\prc_ip94_1348.uti \ others\prc_ip94_1349.uti \ others\prc_ip94_135.uti \ others\prc_ip94_1350.uti \ others\prc_ip94_1351.uti \ others\prc_ip94_1352.uti \ others\prc_ip94_1353.uti \ others\prc_ip94_1354.uti \ others\prc_ip94_1355.uti \ others\prc_ip94_1356.uti \ others\prc_ip94_1357.uti \ others\prc_ip94_1358.uti \ others\prc_ip94_1359.uti \ others\prc_ip94_136.uti \ others\prc_ip94_1360.uti \ others\prc_ip94_1361.uti \ others\prc_ip94_1362.uti \ others\prc_ip94_1363.uti \ others\prc_ip94_1364.uti \ others\prc_ip94_1365.uti \ others\prc_ip94_1366.uti \ others\prc_ip94_1367.uti \ others\prc_ip94_1368.uti \ others\prc_ip94_1369.uti \ others\prc_ip94_137.uti \ others\prc_ip94_1370.uti \ others\prc_ip94_1371.uti \ others\prc_ip94_1372.uti \ others\prc_ip94_1373.uti \ others\prc_ip94_1374.uti \ others\prc_ip94_1375.uti \ others\prc_ip94_1376.uti \ others\prc_ip94_1377.uti \ others\prc_ip94_1378.uti \ others\prc_ip94_1379.uti \ others\prc_ip94_138.uti \ others\prc_ip94_1380.uti \ others\prc_ip94_1381.uti \ others\prc_ip94_1382.uti \ others\prc_ip94_1383.uti \ others\prc_ip94_1384.uti \ others\prc_ip94_1385.uti \ others\prc_ip94_1386.uti \ others\prc_ip94_1387.uti \ others\prc_ip94_1388.uti \ others\prc_ip94_1389.uti \ others\prc_ip94_139.uti \ others\prc_ip94_1390.uti \ others\prc_ip94_1391.uti \ others\prc_ip94_1392.uti \ others\prc_ip94_1393.uti \ others\prc_ip94_1394.uti \ others\prc_ip94_1395.uti \ others\prc_ip94_1396.uti \ others\prc_ip94_1397.uti \ others\prc_ip94_1398.uti \ others\prc_ip94_1399.uti \ others\prc_ip94_14.uti \ others\prc_ip94_140.uti \ others\prc_ip94_1400.uti \ others\prc_ip94_1401.uti \ others\prc_ip94_1402.uti \ others\prc_ip94_1403.uti \ others\prc_ip94_1404.uti \ others\prc_ip94_1405.uti \ others\prc_ip94_1406.uti \ others\prc_ip94_1407.uti \ others\prc_ip94_1408.uti \ others\prc_ip94_1409.uti \ others\prc_ip94_141.uti \ others\prc_ip94_1410.uti \ others\prc_ip94_1411.uti \ others\prc_ip94_1412.uti \ others\prc_ip94_1413.uti \ others\prc_ip94_1414.uti \ others\prc_ip94_1415.uti \ others\prc_ip94_1416.uti \ others\prc_ip94_142.uti \ others\prc_ip94_143.uti \ others\prc_ip94_144.uti \ others\prc_ip94_145.uti \ others\prc_ip94_146.uti \ others\prc_ip94_147.uti \ others\prc_ip94_148.uti \ others\prc_ip94_149.uti \ others\prc_ip94_15.uti \ others\prc_ip94_150.uti \ others\prc_ip94_151.uti \ others\prc_ip94_152.uti \ others\prc_ip94_153.uti \ others\prc_ip94_154.uti \ others\prc_ip94_155.uti \ others\prc_ip94_156.uti \ others\prc_ip94_157.uti \ others\prc_ip94_158.uti \ others\prc_ip94_159.uti \ others\prc_ip94_16.uti \ others\prc_ip94_160.uti \ others\prc_ip94_161.uti \ others\prc_ip94_162.uti \ others\prc_ip94_163.uti \ others\prc_ip94_164.uti \ others\prc_ip94_165.uti \ others\prc_ip94_166.uti \ others\prc_ip94_167.uti \ others\prc_ip94_168.uti \ others\prc_ip94_169.uti \ others\prc_ip94_17.uti \ others\prc_ip94_170.uti \ others\prc_ip94_171.uti \ others\prc_ip94_172.uti \ others\prc_ip94_173.uti \ others\prc_ip94_174.uti \ others\prc_ip94_175.uti \ others\prc_ip94_176.uti \ others\prc_ip94_177.uti \ others\prc_ip94_178.uti \ others\prc_ip94_179.uti \ others\prc_ip94_18.uti \ others\prc_ip94_180.uti \ others\prc_ip94_181.uti \ others\prc_ip94_182.uti \ others\prc_ip94_183.uti \ others\prc_ip94_184.uti \ others\prc_ip94_185.uti \ others\prc_ip94_186.uti \ others\prc_ip94_187.uti \ others\prc_ip94_188.uti \ others\prc_ip94_189.uti \ others\prc_ip94_19.uti \ others\prc_ip94_190.uti \ others\prc_ip94_191.uti \ others\prc_ip94_192.uti \ others\prc_ip94_193.uti \ others\prc_ip94_194.uti \ others\prc_ip94_195.uti \ others\prc_ip94_196.uti \ others\prc_ip94_197.uti \ others\prc_ip94_198.uti \ others\prc_ip94_199.uti \ others\prc_ip94_2.uti \ others\prc_ip94_20.uti \ others\prc_ip94_200.uti \ others\prc_ip94_201.uti \ others\prc_ip94_202.uti \ others\prc_ip94_203.uti \ others\prc_ip94_204.uti \ others\prc_ip94_205.uti \ others\prc_ip94_206.uti \ others\prc_ip94_207.uti \ others\prc_ip94_208.uti \ others\prc_ip94_209.uti \ others\prc_ip94_21.uti \ others\prc_ip94_210.uti \ others\prc_ip94_211.uti \ others\prc_ip94_212.uti \ others\prc_ip94_213.uti \ others\prc_ip94_214.uti \ others\prc_ip94_215.uti \ others\prc_ip94_216.uti \ others\prc_ip94_217.uti \ others\prc_ip94_218.uti \ others\prc_ip94_219.uti \ others\prc_ip94_22.uti \ others\prc_ip94_220.uti \ others\prc_ip94_221.uti \ others\prc_ip94_222.uti \ others\prc_ip94_223.uti \ others\prc_ip94_224.uti \ others\prc_ip94_225.uti \ others\prc_ip94_226.uti \ others\prc_ip94_227.uti \ others\prc_ip94_228.uti \ others\prc_ip94_229.uti \ others\prc_ip94_23.uti \ others\prc_ip94_230.uti \ others\prc_ip94_231.uti \ others\prc_ip94_232.uti \ others\prc_ip94_233.uti \ others\prc_ip94_234.uti \ others\prc_ip94_235.uti \ others\prc_ip94_236.uti \ others\prc_ip94_237.uti \ others\prc_ip94_238.uti \ others\prc_ip94_239.uti \ others\prc_ip94_24.uti \ others\prc_ip94_240.uti \ others\prc_ip94_241.uti \ others\prc_ip94_242.uti \ others\prc_ip94_243.uti \ others\prc_ip94_244.uti \ others\prc_ip94_245.uti \ others\prc_ip94_246.uti \ others\prc_ip94_247.uti \ others\prc_ip94_248.uti \ others\prc_ip94_249.uti \ others\prc_ip94_25.uti \ others\prc_ip94_250.uti \ others\prc_ip94_251.uti \ others\prc_ip94_252.uti \ others\prc_ip94_253.uti \ others\prc_ip94_254.uti \ others\prc_ip94_255.uti \ others\prc_ip94_256.uti \ others\prc_ip94_257.uti \ others\prc_ip94_258.uti \ others\prc_ip94_259.uti \ others\prc_ip94_26.uti \ others\prc_ip94_260.uti \ others\prc_ip94_261.uti \ others\prc_ip94_262.uti \ others\prc_ip94_263.uti \ others\prc_ip94_264.uti \ others\prc_ip94_265.uti \ others\prc_ip94_266.uti \ others\prc_ip94_267.uti \ others\prc_ip94_268.uti \ others\prc_ip94_269.uti \ others\prc_ip94_27.uti \ others\prc_ip94_270.uti \ others\prc_ip94_271.uti \ others\prc_ip94_272.uti \ others\prc_ip94_273.uti \ others\prc_ip94_274.uti \ others\prc_ip94_275.uti \ others\prc_ip94_276.uti \ others\prc_ip94_277.uti \ others\prc_ip94_278.uti \ others\prc_ip94_279.uti \ others\prc_ip94_28.uti \ others\prc_ip94_280.uti \ others\prc_ip94_281.uti \ others\prc_ip94_282.uti \ others\prc_ip94_283.uti \ others\prc_ip94_284.uti \ others\prc_ip94_285.uti \ others\prc_ip94_286.uti \ others\prc_ip94_287.uti \ others\prc_ip94_288.uti \ others\prc_ip94_289.uti \ others\prc_ip94_29.uti \ others\prc_ip94_290.uti \ others\prc_ip94_291.uti \ others\prc_ip94_292.uti \ others\prc_ip94_293.uti \ others\prc_ip94_294.uti \ others\prc_ip94_295.uti \ others\prc_ip94_296.uti \ others\prc_ip94_297.uti \ others\prc_ip94_298.uti \ others\prc_ip94_299.uti \ others\prc_ip94_3.uti \ others\prc_ip94_30.uti \ others\prc_ip94_300.uti \ others\prc_ip94_301.uti \ others\prc_ip94_302.uti \ others\prc_ip94_303.uti \ others\prc_ip94_304.uti \ others\prc_ip94_305.uti \ others\prc_ip94_306.uti \ others\prc_ip94_307.uti \ others\prc_ip94_308.uti \ others\prc_ip94_309.uti \ others\prc_ip94_31.uti \ others\prc_ip94_310.uti \ others\prc_ip94_311.uti \ others\prc_ip94_312.uti \ others\prc_ip94_313.uti \ others\prc_ip94_314.uti \ others\prc_ip94_315.uti \ others\prc_ip94_316.uti \ others\prc_ip94_317.uti \ others\prc_ip94_318.uti \ others\prc_ip94_319.uti \ others\prc_ip94_32.uti \ others\prc_ip94_320.uti \ others\prc_ip94_321.uti \ others\prc_ip94_322.uti \ others\prc_ip94_323.uti \ others\prc_ip94_324.uti \ others\prc_ip94_325.uti \ others\prc_ip94_326.uti \ others\prc_ip94_327.uti \ others\prc_ip94_328.uti \ others\prc_ip94_329.uti \ others\prc_ip94_33.uti \ others\prc_ip94_330.uti \ others\prc_ip94_331.uti \ others\prc_ip94_332.uti \ others\prc_ip94_333.uti \ others\prc_ip94_334.uti \ others\prc_ip94_335.uti \ others\prc_ip94_336.uti \ others\prc_ip94_337.uti \ others\prc_ip94_338.uti \ others\prc_ip94_339.uti \ others\prc_ip94_34.uti \ others\prc_ip94_340.uti \ others\prc_ip94_341.uti \ others\prc_ip94_342.uti \ others\prc_ip94_343.uti \ others\prc_ip94_344.uti \ others\prc_ip94_345.uti \ others\prc_ip94_346.uti \ others\prc_ip94_347.uti \ others\prc_ip94_348.uti \ others\prc_ip94_349.uti \ others\prc_ip94_35.uti \ others\prc_ip94_350.uti \ others\prc_ip94_351.uti \ others\prc_ip94_352.uti \ others\prc_ip94_353.uti \ others\prc_ip94_354.uti \ others\prc_ip94_355.uti \ others\prc_ip94_356.uti \ others\prc_ip94_357.uti \ others\prc_ip94_358.uti \ others\prc_ip94_359.uti \ others\prc_ip94_36.uti \ others\prc_ip94_360.uti \ others\prc_ip94_361.uti \ others\prc_ip94_362.uti \ others\prc_ip94_363.uti \ others\prc_ip94_364.uti \ others\prc_ip94_365.uti \ others\prc_ip94_366.uti \ others\prc_ip94_367.uti \ others\prc_ip94_368.uti \ others\prc_ip94_369.uti \ others\prc_ip94_37.uti \ others\prc_ip94_370.uti \ others\prc_ip94_371.uti \ others\prc_ip94_372.uti \ others\prc_ip94_373.uti \ others\prc_ip94_374.uti \ others\prc_ip94_375.uti \ others\prc_ip94_376.uti \ others\prc_ip94_377.uti \ others\prc_ip94_378.uti \ others\prc_ip94_379.uti \ others\prc_ip94_38.uti \ others\prc_ip94_380.uti \ others\prc_ip94_381.uti \ others\prc_ip94_382.uti \ others\prc_ip94_383.uti \ others\prc_ip94_384.uti \ others\prc_ip94_385.uti \ others\prc_ip94_386.uti \ others\prc_ip94_387.uti \ others\prc_ip94_388.uti \ others\prc_ip94_389.uti \ others\prc_ip94_39.uti \ others\prc_ip94_390.uti \ others\prc_ip94_391.uti \ others\prc_ip94_392.uti \ others\prc_ip94_393.uti \ others\prc_ip94_394.uti \ others\prc_ip94_395.uti \ others\prc_ip94_396.uti \ others\prc_ip94_397.uti \ others\prc_ip94_398.uti \ others\prc_ip94_399.uti \ others\prc_ip94_4.uti \ others\prc_ip94_40.uti \ others\prc_ip94_400.uti \ others\prc_ip94_401.uti \ others\prc_ip94_402.uti \ others\prc_ip94_403.uti \ others\prc_ip94_404.uti \ others\prc_ip94_405.uti \ others\prc_ip94_406.uti \ others\prc_ip94_407.uti \ others\prc_ip94_408.uti \ others\prc_ip94_409.uti \ others\prc_ip94_41.uti \ others\prc_ip94_410.uti \ others\prc_ip94_411.uti \ others\prc_ip94_412.uti \ others\prc_ip94_413.uti \ others\prc_ip94_414.uti \ others\prc_ip94_415.uti \ others\prc_ip94_416.uti \ others\prc_ip94_417.uti \ others\prc_ip94_418.uti \ others\prc_ip94_419.uti \ others\prc_ip94_42.uti \ others\prc_ip94_420.uti \ others\prc_ip94_421.uti \ others\prc_ip94_422.uti \ others\prc_ip94_423.uti \ others\prc_ip94_424.uti \ others\prc_ip94_425.uti \ others\prc_ip94_426.uti \ others\prc_ip94_427.uti \ others\prc_ip94_428.uti \ others\prc_ip94_429.uti \ others\prc_ip94_43.uti \ others\prc_ip94_430.uti \ others\prc_ip94_431.uti \ others\prc_ip94_432.uti \ others\prc_ip94_433.uti \ others\prc_ip94_434.uti \ others\prc_ip94_435.uti \ others\prc_ip94_436.uti \ others\prc_ip94_437.uti \ others\prc_ip94_438.uti \ others\prc_ip94_439.uti \ others\prc_ip94_44.uti \ others\prc_ip94_440.uti \ others\prc_ip94_441.uti \ others\prc_ip94_442.uti \ others\prc_ip94_443.uti \ others\prc_ip94_444.uti \ others\prc_ip94_445.uti \ others\prc_ip94_446.uti \ others\prc_ip94_447.uti \ others\prc_ip94_448.uti \ others\prc_ip94_449.uti \ others\prc_ip94_45.uti \ others\prc_ip94_450.uti \ others\prc_ip94_451.uti \ others\prc_ip94_452.uti \ others\prc_ip94_453.uti \ others\prc_ip94_454.uti \ others\prc_ip94_455.uti \ others\prc_ip94_456.uti \ others\prc_ip94_457.uti \ others\prc_ip94_458.uti \ others\prc_ip94_459.uti \ others\prc_ip94_46.uti \ others\prc_ip94_460.uti \ others\prc_ip94_461.uti \ others\prc_ip94_462.uti \ others\prc_ip94_463.uti \ others\prc_ip94_464.uti \ others\prc_ip94_465.uti \ others\prc_ip94_466.uti \ others\prc_ip94_467.uti \ others\prc_ip94_468.uti \ others\prc_ip94_469.uti \ others\prc_ip94_47.uti \ others\prc_ip94_470.uti \ others\prc_ip94_471.uti \ others\prc_ip94_472.uti \ others\prc_ip94_473.uti \ others\prc_ip94_474.uti \ others\prc_ip94_475.uti \ others\prc_ip94_476.uti \ others\prc_ip94_477.uti \ others\prc_ip94_478.uti \ others\prc_ip94_479.uti \ others\prc_ip94_48.uti \ others\prc_ip94_480.uti \ others\prc_ip94_481.uti \ others\prc_ip94_482.uti \ others\prc_ip94_483.uti \ others\prc_ip94_484.uti \ others\prc_ip94_485.uti \ others\prc_ip94_486.uti \ others\prc_ip94_487.uti \ others\prc_ip94_488.uti \ others\prc_ip94_489.uti \ others\prc_ip94_49.uti \ others\prc_ip94_490.uti \ others\prc_ip94_491.uti \ others\prc_ip94_492.uti \ others\prc_ip94_493.uti \ others\prc_ip94_494.uti \ others\prc_ip94_495.uti \ others\prc_ip94_496.uti \ others\prc_ip94_497.uti \ others\prc_ip94_498.uti \ others\prc_ip94_499.uti \ others\prc_ip94_5.uti \ others\prc_ip94_50.uti \ others\prc_ip94_500.uti \ others\prc_ip94_501.uti \ others\prc_ip94_502.uti \ others\prc_ip94_503.uti \ others\prc_ip94_504.uti \ others\prc_ip94_505.uti \ others\prc_ip94_506.uti \ others\prc_ip94_507.uti \ others\prc_ip94_508.uti \ others\prc_ip94_509.uti \ others\prc_ip94_51.uti \ others\prc_ip94_510.uti \ others\prc_ip94_511.uti \ others\prc_ip94_512.uti \ others\prc_ip94_513.uti \ others\prc_ip94_514.uti \ others\prc_ip94_515.uti \ others\prc_ip94_516.uti \ others\prc_ip94_517.uti \ others\prc_ip94_518.uti \ others\prc_ip94_519.uti \ others\prc_ip94_52.uti \ others\prc_ip94_520.uti \ others\prc_ip94_521.uti \ others\prc_ip94_522.uti \ others\prc_ip94_523.uti \ others\prc_ip94_524.uti \ others\prc_ip94_525.uti \ others\prc_ip94_526.uti \ others\prc_ip94_527.uti \ others\prc_ip94_528.uti \ others\prc_ip94_529.uti \ others\prc_ip94_53.uti \ others\prc_ip94_530.uti \ others\prc_ip94_531.uti \ others\prc_ip94_532.uti \ others\prc_ip94_533.uti \ others\prc_ip94_534.uti \ others\prc_ip94_535.uti \ others\prc_ip94_536.uti \ others\prc_ip94_537.uti \ others\prc_ip94_538.uti \ others\prc_ip94_539.uti \ others\prc_ip94_54.uti \ others\prc_ip94_540.uti \ others\prc_ip94_541.uti \ others\prc_ip94_542.uti \ others\prc_ip94_543.uti \ others\prc_ip94_544.uti \ others\prc_ip94_545.uti \ others\prc_ip94_546.uti \ others\prc_ip94_547.uti \ others\prc_ip94_548.uti \ others\prc_ip94_549.uti \ others\prc_ip94_55.uti \ others\prc_ip94_550.uti \ others\prc_ip94_551.uti \ others\prc_ip94_552.uti \ others\prc_ip94_553.uti \ others\prc_ip94_554.uti \ others\prc_ip94_555.uti \ others\prc_ip94_556.uti \ others\prc_ip94_557.uti \ others\prc_ip94_558.uti \ others\prc_ip94_559.uti \ others\prc_ip94_56.uti \ others\prc_ip94_560.uti \ others\prc_ip94_561.uti \ others\prc_ip94_562.uti \ others\prc_ip94_563.uti \ others\prc_ip94_564.uti \ others\prc_ip94_565.uti \ others\prc_ip94_566.uti \ others\prc_ip94_567.uti \ others\prc_ip94_568.uti \ others\prc_ip94_569.uti \ others\prc_ip94_57.uti \ others\prc_ip94_570.uti \ others\prc_ip94_571.uti \ others\prc_ip94_572.uti \ others\prc_ip94_573.uti \ others\prc_ip94_574.uti \ others\prc_ip94_575.uti \ others\prc_ip94_576.uti \ others\prc_ip94_577.uti \ others\prc_ip94_578.uti \ others\prc_ip94_579.uti \ others\prc_ip94_58.uti \ others\prc_ip94_580.uti \ others\prc_ip94_581.uti \ others\prc_ip94_582.uti \ others\prc_ip94_583.uti \ others\prc_ip94_584.uti \ others\prc_ip94_585.uti \ others\prc_ip94_586.uti \ others\prc_ip94_587.uti \ others\prc_ip94_588.uti \ others\prc_ip94_589.uti \ others\prc_ip94_59.uti \ others\prc_ip94_590.uti \ others\prc_ip94_591.uti \ others\prc_ip94_592.uti \ others\prc_ip94_593.uti \ others\prc_ip94_594.uti \ others\prc_ip94_595.uti \ others\prc_ip94_596.uti \ others\prc_ip94_597.uti \ others\prc_ip94_598.uti \ others\prc_ip94_599.uti \ others\prc_ip94_6.uti \ others\prc_ip94_60.uti \ others\prc_ip94_600.uti \ others\prc_ip94_601.uti \ others\prc_ip94_602.uti \ others\prc_ip94_603.uti \ others\prc_ip94_604.uti \ others\prc_ip94_605.uti \ others\prc_ip94_606.uti \ others\prc_ip94_607.uti \ others\prc_ip94_608.uti \ others\prc_ip94_609.uti \ others\prc_ip94_61.uti \ others\prc_ip94_610.uti \ others\prc_ip94_611.uti \ others\prc_ip94_612.uti \ others\prc_ip94_613.uti \ others\prc_ip94_614.uti \ others\prc_ip94_615.uti \ others\prc_ip94_616.uti \ others\prc_ip94_617.uti \ others\prc_ip94_618.uti \ others\prc_ip94_619.uti \ others\prc_ip94_62.uti \ others\prc_ip94_620.uti \ others\prc_ip94_621.uti \ others\prc_ip94_622.uti \ others\prc_ip94_623.uti \ others\prc_ip94_624.uti \ others\prc_ip94_625.uti \ others\prc_ip94_626.uti \ others\prc_ip94_627.uti \ others\prc_ip94_628.uti \ others\prc_ip94_629.uti \ others\prc_ip94_63.uti \ others\prc_ip94_630.uti \ others\prc_ip94_631.uti \ others\prc_ip94_632.uti \ others\prc_ip94_633.uti \ others\prc_ip94_634.uti \ others\prc_ip94_635.uti \ others\prc_ip94_636.uti \ others\prc_ip94_637.uti \ others\prc_ip94_638.uti \ others\prc_ip94_639.uti \ others\prc_ip94_64.uti \ others\prc_ip94_640.uti \ others\prc_ip94_641.uti \ others\prc_ip94_642.uti \ others\prc_ip94_643.uti \ others\prc_ip94_644.uti \ others\prc_ip94_645.uti \ others\prc_ip94_646.uti \ others\prc_ip94_647.uti \ others\prc_ip94_648.uti \ others\prc_ip94_649.uti \ others\prc_ip94_65.uti \ others\prc_ip94_650.uti \ others\prc_ip94_651.uti \ others\prc_ip94_652.uti \ others\prc_ip94_653.uti \ others\prc_ip94_654.uti \ others\prc_ip94_655.uti \ others\prc_ip94_656.uti \ others\prc_ip94_657.uti \ others\prc_ip94_658.uti \ others\prc_ip94_659.uti \ others\prc_ip94_66.uti \ others\prc_ip94_660.uti \ others\prc_ip94_661.uti \ others\prc_ip94_662.uti \ others\prc_ip94_663.uti \ others\prc_ip94_664.uti \ others\prc_ip94_665.uti \ others\prc_ip94_666.uti \ others\prc_ip94_667.uti \ others\prc_ip94_668.uti \ others\prc_ip94_669.uti \ others\prc_ip94_67.uti \ others\prc_ip94_670.uti \ others\prc_ip94_671.uti \ others\prc_ip94_672.uti \ others\prc_ip94_673.uti \ others\prc_ip94_674.uti \ others\prc_ip94_675.uti \ others\prc_ip94_676.uti \ others\prc_ip94_677.uti \ others\prc_ip94_678.uti \ others\prc_ip94_679.uti \ others\prc_ip94_68.uti \ others\prc_ip94_680.uti \ others\prc_ip94_681.uti \ others\prc_ip94_682.uti \ others\prc_ip94_683.uti \ others\prc_ip94_684.uti \ others\prc_ip94_685.uti \ others\prc_ip94_686.uti \ others\prc_ip94_687.uti \ others\prc_ip94_688.uti \ others\prc_ip94_689.uti \ others\prc_ip94_69.uti \ others\prc_ip94_690.uti \ others\prc_ip94_691.uti \ others\prc_ip94_692.uti \ others\prc_ip94_693.uti \ others\prc_ip94_694.uti \ others\prc_ip94_695.uti \ others\prc_ip94_696.uti \ others\prc_ip94_697.uti \ others\prc_ip94_698.uti \ others\prc_ip94_699.uti \ others\prc_ip94_7.uti \ others\prc_ip94_70.uti \ others\prc_ip94_700.uti \ others\prc_ip94_701.uti \ others\prc_ip94_702.uti \ others\prc_ip94_703.uti \ others\prc_ip94_704.uti \ others\prc_ip94_705.uti \ others\prc_ip94_706.uti \ others\prc_ip94_707.uti \ others\prc_ip94_708.uti \ others\prc_ip94_709.uti \ others\prc_ip94_71.uti \ others\prc_ip94_710.uti \ others\prc_ip94_711.uti \ others\prc_ip94_712.uti \ others\prc_ip94_713.uti \ others\prc_ip94_714.uti \ others\prc_ip94_715.uti \ others\prc_ip94_716.uti \ others\prc_ip94_717.uti \ others\prc_ip94_718.uti \ others\prc_ip94_719.uti \ others\prc_ip94_72.uti \ others\prc_ip94_720.uti \ others\prc_ip94_721.uti \ others\prc_ip94_722.uti \ others\prc_ip94_723.uti \ others\prc_ip94_724.uti \ others\prc_ip94_725.uti \ others\prc_ip94_726.uti \ others\prc_ip94_727.uti \ others\prc_ip94_728.uti \ others\prc_ip94_729.uti \ others\prc_ip94_73.uti \ others\prc_ip94_730.uti \ others\prc_ip94_731.uti \ others\prc_ip94_732.uti \ others\prc_ip94_733.uti \ others\prc_ip94_734.uti \ others\prc_ip94_735.uti \ others\prc_ip94_736.uti \ others\prc_ip94_737.uti \ others\prc_ip94_738.uti \ others\prc_ip94_739.uti \ others\prc_ip94_74.uti \ others\prc_ip94_740.uti \ others\prc_ip94_741.uti \ others\prc_ip94_742.uti \ others\prc_ip94_743.uti \ others\prc_ip94_744.uti \ others\prc_ip94_745.uti \ others\prc_ip94_746.uti \ others\prc_ip94_747.uti \ others\prc_ip94_748.uti \ others\prc_ip94_749.uti \ others\prc_ip94_75.uti \ others\prc_ip94_750.uti \ others\prc_ip94_751.uti \ others\prc_ip94_752.uti \ others\prc_ip94_753.uti \ others\prc_ip94_754.uti \ others\prc_ip94_755.uti \ others\prc_ip94_756.uti \ others\prc_ip94_757.uti \ others\prc_ip94_758.uti \ others\prc_ip94_759.uti \ others\prc_ip94_76.uti \ others\prc_ip94_760.uti \ others\prc_ip94_761.uti \ others\prc_ip94_762.uti \ others\prc_ip94_763.uti \ others\prc_ip94_764.uti \ others\prc_ip94_765.uti \ others\prc_ip94_766.uti \ others\prc_ip94_767.uti \ others\prc_ip94_768.uti \ others\prc_ip94_769.uti \ others\prc_ip94_77.uti \ others\prc_ip94_770.uti \ others\prc_ip94_771.uti \ others\prc_ip94_772.uti \ others\prc_ip94_773.uti \ others\prc_ip94_774.uti \ others\prc_ip94_775.uti \ others\prc_ip94_776.uti \ others\prc_ip94_777.uti \ others\prc_ip94_778.uti \ others\prc_ip94_779.uti \ others\prc_ip94_78.uti \ others\prc_ip94_780.uti \ others\prc_ip94_781.uti \ others\prc_ip94_782.uti \ others\prc_ip94_783.uti \ others\prc_ip94_784.uti \ others\prc_ip94_785.uti \ others\prc_ip94_786.uti \ others\prc_ip94_787.uti \ others\prc_ip94_788.uti \ others\prc_ip94_789.uti \ others\prc_ip94_79.uti \ others\prc_ip94_790.uti \ others\prc_ip94_791.uti \ others\prc_ip94_792.uti \ others\prc_ip94_793.uti \ others\prc_ip94_794.uti \ others\prc_ip94_795.uti \ others\prc_ip94_796.uti \ others\prc_ip94_797.uti \ others\prc_ip94_798.uti \ others\prc_ip94_799.uti \ others\prc_ip94_8.uti \ others\prc_ip94_80.uti \ others\prc_ip94_800.uti \ others\prc_ip94_801.uti \ others\prc_ip94_802.uti \ others\prc_ip94_803.uti \ others\prc_ip94_804.uti \ others\prc_ip94_805.uti \ others\prc_ip94_806.uti \ others\prc_ip94_807.uti \ others\prc_ip94_808.uti \ others\prc_ip94_809.uti \ others\prc_ip94_81.uti \ others\prc_ip94_810.uti \ others\prc_ip94_811.uti \ others\prc_ip94_812.uti \ others\prc_ip94_813.uti \ others\prc_ip94_814.uti \ others\prc_ip94_815.uti \ others\prc_ip94_816.uti \ others\prc_ip94_817.uti \ others\prc_ip94_818.uti \ others\prc_ip94_819.uti \ others\prc_ip94_82.uti \ others\prc_ip94_820.uti \ others\prc_ip94_821.uti \ others\prc_ip94_822.uti \ others\prc_ip94_823.uti \ others\prc_ip94_824.uti \ others\prc_ip94_825.uti \ others\prc_ip94_826.uti \ others\prc_ip94_827.uti \ others\prc_ip94_828.uti \ others\prc_ip94_829.uti \ others\prc_ip94_83.uti \ others\prc_ip94_830.uti \ others\prc_ip94_831.uti \ others\prc_ip94_832.uti \ others\prc_ip94_833.uti \ others\prc_ip94_834.uti \ others\prc_ip94_835.uti \ others\prc_ip94_836.uti \ others\prc_ip94_837.uti \ others\prc_ip94_838.uti \ others\prc_ip94_839.uti \ others\prc_ip94_84.uti \ others\prc_ip94_840.uti \ others\prc_ip94_841.uti \ others\prc_ip94_842.uti \ others\prc_ip94_843.uti \ others\prc_ip94_844.uti \ others\prc_ip94_845.uti \ others\prc_ip94_846.uti \ others\prc_ip94_847.uti \ others\prc_ip94_848.uti \ others\prc_ip94_849.uti \ others\prc_ip94_85.uti \ others\prc_ip94_850.uti \ others\prc_ip94_851.uti \ others\prc_ip94_852.uti \ others\prc_ip94_853.uti \ others\prc_ip94_854.uti \ others\prc_ip94_855.uti \ others\prc_ip94_856.uti \ others\prc_ip94_857.uti \ others\prc_ip94_858.uti \ others\prc_ip94_859.uti \ others\prc_ip94_86.uti \ others\prc_ip94_860.uti \ others\prc_ip94_861.uti \ others\prc_ip94_862.uti \ others\prc_ip94_863.uti \ others\prc_ip94_864.uti \ others\prc_ip94_865.uti \ others\prc_ip94_866.uti \ others\prc_ip94_867.uti \ others\prc_ip94_868.uti \ others\prc_ip94_869.uti \ others\prc_ip94_87.uti \ others\prc_ip94_870.uti \ others\prc_ip94_871.uti \ others\prc_ip94_872.uti \ others\prc_ip94_873.uti \ others\prc_ip94_874.uti \ others\prc_ip94_875.uti \ others\prc_ip94_876.uti \ others\prc_ip94_877.uti \ others\prc_ip94_878.uti \ others\prc_ip94_879.uti \ others\prc_ip94_88.uti \ others\prc_ip94_880.uti \ others\prc_ip94_881.uti \ others\prc_ip94_882.uti \ others\prc_ip94_883.uti \ others\prc_ip94_884.uti \ others\prc_ip94_885.uti \ others\prc_ip94_886.uti \ others\prc_ip94_887.uti \ others\prc_ip94_888.uti \ others\prc_ip94_889.uti \ others\prc_ip94_89.uti \ others\prc_ip94_890.uti \ others\prc_ip94_891.uti \ others\prc_ip94_892.uti \ others\prc_ip94_893.uti \ others\prc_ip94_894.uti \ others\prc_ip94_895.uti \ others\prc_ip94_896.uti \ others\prc_ip94_897.uti \ others\prc_ip94_898.uti \ others\prc_ip94_899.uti \ others\prc_ip94_9.uti \ others\prc_ip94_90.uti \ others\prc_ip94_900.uti \ others\prc_ip94_901.uti \ others\prc_ip94_902.uti \ others\prc_ip94_903.uti \ others\prc_ip94_904.uti \ others\prc_ip94_905.uti \ others\prc_ip94_906.uti \ others\prc_ip94_907.uti \ others\prc_ip94_908.uti \ others\prc_ip94_909.uti \ others\prc_ip94_91.uti \ others\prc_ip94_910.uti \ others\prc_ip94_911.uti \ others\prc_ip94_912.uti \ others\prc_ip94_913.uti \ others\prc_ip94_914.uti \ others\prc_ip94_915.uti \ others\prc_ip94_916.uti \ others\prc_ip94_917.uti \ others\prc_ip94_918.uti \ others\prc_ip94_919.uti \ others\prc_ip94_92.uti \ others\prc_ip94_920.uti \ others\prc_ip94_921.uti \ others\prc_ip94_922.uti \ others\prc_ip94_923.uti \ others\prc_ip94_924.uti \ others\prc_ip94_925.uti \ others\prc_ip94_926.uti \ others\prc_ip94_927.uti \ others\prc_ip94_928.uti \ others\prc_ip94_929.uti \ others\prc_ip94_93.uti \ others\prc_ip94_930.uti \ others\prc_ip94_931.uti \ others\prc_ip94_932.uti \ others\prc_ip94_933.uti \ others\prc_ip94_934.uti \ others\prc_ip94_935.uti \ others\prc_ip94_936.uti \ others\prc_ip94_937.uti \ others\prc_ip94_938.uti \ others\prc_ip94_939.uti \ others\prc_ip94_94.uti \ others\prc_ip94_940.uti \ others\prc_ip94_941.uti \ others\prc_ip94_942.uti \ others\prc_ip94_943.uti \ others\prc_ip94_944.uti \ others\prc_ip94_945.uti \ others\prc_ip94_946.uti \ others\prc_ip94_947.uti \ others\prc_ip94_948.uti \ others\prc_ip94_949.uti \ others\prc_ip94_95.uti \ others\prc_ip94_950.uti \ others\prc_ip94_951.uti \ others\prc_ip94_952.uti \ others\prc_ip94_953.uti \ others\prc_ip94_954.uti \ others\prc_ip94_955.uti \ others\prc_ip94_956.uti \ others\prc_ip94_957.uti \ others\prc_ip94_958.uti \ others\prc_ip94_959.uti \ others\prc_ip94_96.uti \ others\prc_ip94_960.uti \ others\prc_ip94_961.uti \ others\prc_ip94_962.uti \ others\prc_ip94_963.uti \ others\prc_ip94_964.uti \ others\prc_ip94_965.uti \ others\prc_ip94_966.uti \ others\prc_ip94_967.uti \ others\prc_ip94_968.uti \ others\prc_ip94_969.uti \ others\prc_ip94_97.uti \ others\prc_ip94_970.uti \ others\prc_ip94_971.uti \ others\prc_ip94_972.uti \ others\prc_ip94_973.uti \ others\prc_ip94_974.uti \ others\prc_ip94_975.uti \ others\prc_ip94_976.uti \ others\prc_ip94_977.uti \ others\prc_ip94_978.uti \ others\prc_ip94_979.uti \ others\prc_ip94_98.uti \ others\prc_ip94_980.uti \ others\prc_ip94_981.uti \ others\prc_ip94_982.uti \ others\prc_ip94_983.uti \ others\prc_ip94_984.uti \ others\prc_ip94_985.uti \ others\prc_ip94_986.uti \ others\prc_ip94_987.uti \ others\prc_ip94_988.uti \ others\prc_ip94_989.uti \ others\prc_ip94_99.uti \ others\prc_ip94_990.uti \ others\prc_ip94_991.uti \ others\prc_ip94_992.uti \ others\prc_ip94_993.uti \ others\prc_ip94_994.uti \ others\prc_ip94_995.uti \ others\prc_ip94_996.uti \ others\prc_ip94_997.uti \ others\prc_ip94_998.uti \ others\prc_ip94_999.uti \ others\prc_ip95_0.uti \ others\prc_ip95_1.uti \ others\prc_ip95_2.uti \ others\prc_ip95_3.uti \ others\prc_ip95_4.uti \ others\prc_ip95_5.uti \ others\prc_ip96_0.uti \ others\prc_ip96_1.uti \ others\prc_ip96_10.uti \ others\prc_ip96_11.uti \ others\prc_ip96_12.uti \ others\prc_ip96_13.uti \ others\prc_ip96_14.uti \ others\prc_ip96_15.uti \ others\prc_ip96_16.uti \ others\prc_ip96_17.uti \ others\prc_ip96_18.uti \ others\prc_ip96_19.uti \ others\prc_ip96_2.uti \ others\prc_ip96_20.uti \ others\prc_ip96_21.uti \ others\prc_ip96_22.uti \ others\prc_ip96_23.uti \ others\prc_ip96_24.uti \ others\prc_ip96_25.uti \ others\prc_ip96_26.uti \ others\prc_ip96_27.uti \ others\prc_ip96_28.uti \ others\prc_ip96_29.uti \ others\prc_ip96_3.uti \ others\prc_ip96_30.uti \ others\prc_ip96_31.uti \ others\prc_ip96_32.uti \ others\prc_ip96_33.uti \ others\prc_ip96_34.uti \ others\prc_ip96_35.uti \ others\prc_ip96_36.uti \ others\prc_ip96_37.uti \ others\prc_ip96_38.uti \ others\prc_ip96_4.uti \ others\prc_ip96_5.uti \ others\prc_ip96_6.uti \ others\prc_ip96_7.uti \ others\prc_ip96_8.uti \ others\prc_ip96_9.uti \ others\prc_ipbase.uti \ others\prc_it_acidfire.uti \ others\prc_it_alcfrost.uti \ others\prc_it_alcslpgas.uti \ others\prc_it_alcspark.uti \ others\prc_it_antitox.uti \ others\prc_it_biledrp.uti \ others\prc_it_blendcrm.uti \ others\prc_it_crcklpdr.uti \ others\prc_it_emblmfr.uti \ others\prc_it_enrgpot.uti \ others\prc_it_fareyeoil.uti \ others\prc_it_festerbmb.uti \ others\prc_it_flashplt.uti \ others\prc_it_healblm.uti \ others\prc_it_keenear.uti \ others\prc_it_lockslip.uti \ others\prc_it_natdrgt.uti \ others\prc_it_nerv.uti \ others\prc_it_poist0.uti \ others\prc_it_poist1.uti \ others\prc_it_poist2.uti \ others\prc_it_poist3.uti \ others\prc_it_scrmflsk.uti \ others\prc_it_shedden.uti \ others\prc_it_shedden2.uti \ others\prc_it_shedden3.uti \ others\prc_it_shedden4.uti \ others\prc_it_shedden5.uti \ others\prc_it_softfoot.uti \ others\prc_it_weepstn.uti \ others\prc_kobdratail_c.uti \ others\prc_kobdratail_g.uti \ others\prc_kobdratail_h.uti \ others\prc_kobdratail_l.uti \ others\prc_kobdratail_m.uti \ others\prc_kobdratail_s.uti \ others\prc_kobdratail_t.uti \ others\prc_lemurhide.uti \ others\prc_lizf_bite_c.uti \ others\prc_lizf_bite_d.uti \ others\prc_lizf_bite_f.uti \ others\prc_lizf_bite_g.uti \ others\prc_lizf_bite_h.uti \ others\prc_lizf_bite_l.uti \ others\prc_lizf_bite_m.uti \ others\prc_lizf_bite_s.uti \ others\prc_lizf_bite_t.uti \ others\prc_lngth_el_m.uti \ others\prc_lngth_elt_c.uti \ others\prc_lngth_elt_f.uti \ others\prc_lngth_elt_g.uti \ others\prc_lngth_elt_h.uti \ others\prc_lngth_elt_l.uti \ others\prc_lngth_elt_s.uti \ others\prc_lngth_elt_t.uti \ others\prc_luhix.uti \ others\prc_magiccraft.utm \ others\prc_maniftoken.uti \ others\prc_mino_char.uti \ others\prc_mino_gore_c.uti \ others\prc_mino_gore_d.uti \ others\prc_mino_gore_f.uti \ others\prc_mino_gore_g.uti \ others\prc_mino_gore_h.uti \ others\prc_mino_gore_l.uti \ others\prc_mino_gore_m.uti \ others\prc_mino_gore_s.uti \ others\prc_mino_gore_t.uti \ others\prc_mos_21.utc \ others\prc_mos_24.utc \ others\prc_mos_27.utc \ others\prc_mos_30.utc \ others\prc_mos_33.utc \ others\prc_mos_36.utc \ others\prc_mos_39.utc \ others\prc_mos_allip.utc \ others\prc_mos_spectre1.utc \ others\prc_mos_spectre2.utc \ others\prc_mos_wraith.utc \ others\prc_movetoken.uti \ others\prc_mshrm_pwdr.uti \ others\prc_myconid.utc \ others\prc_nightwing.uti \ others\prc_no_teleport.utt \ others\prc_nodmgbite.uti \ others\prc_npc_0_0_0.utc \ others\prc_npc_0_0_1.utc \ others\prc_npc_0_1_0.utc \ others\prc_npc_0_1_1.utc \ others\prc_npc_0_10_0.utc \ others\prc_npc_0_10_1.utc \ others\prc_npc_0_2_0.utc \ others\prc_npc_0_2_1.utc \ others\prc_npc_0_3_0.utc \ others\prc_npc_0_3_1.utc \ others\prc_npc_0_4_0.utc \ others\prc_npc_0_4_1.utc \ others\prc_npc_0_5_0.utc \ others\prc_npc_0_5_1.utc \ others\prc_npc_0_6_0.utc \ others\prc_npc_0_6_1.utc \ others\prc_npc_0_7_0.utc \ others\prc_npc_0_7_1.utc \ others\prc_npc_0_8_0.utc \ others\prc_npc_0_8_1.utc \ others\prc_npc_0_9_0.utc \ others\prc_npc_0_9_1.utc \ others\prc_npc_1_0_0.utc \ others\prc_npc_1_0_1.utc \ others\prc_npc_1_1_0.utc \ others\prc_npc_1_1_1.utc \ others\prc_npc_1_10_0.utc \ others\prc_npc_1_10_1.utc \ others\prc_npc_1_2_0.utc \ others\prc_npc_1_2_1.utc \ others\prc_npc_1_3_0.utc \ others\prc_npc_1_3_1.utc \ others\prc_npc_1_4_0.utc \ others\prc_npc_1_4_1.utc \ others\prc_npc_1_5_0.utc \ others\prc_npc_1_5_1.utc \ others\prc_npc_1_6_0.utc \ others\prc_npc_1_6_1.utc \ others\prc_npc_1_7_0.utc \ others\prc_npc_1_7_1.utc \ others\prc_npc_1_8_0.utc \ others\prc_npc_1_8_1.utc \ others\prc_npc_1_9_0.utc \ others\prc_npc_1_9_1.utc \ others\prc_npc_105_0_0.utc \ others\prc_npc_105_0_1.utc \ others\prc_npc_105_1_0.utc \ others\prc_npc_105_1_1.utc \ others\prc_npc_105_10_0.utc \ others\prc_npc_105_10_1.utc \ others\prc_npc_105_2_0.utc \ others\prc_npc_105_2_1.utc \ others\prc_npc_105_3_0.utc \ others\prc_npc_105_3_1.utc \ others\prc_npc_105_4_0.utc \ others\prc_npc_105_4_1.utc \ others\prc_npc_105_5_0.utc \ others\prc_npc_105_5_1.utc \ others\prc_npc_105_6_0.utc \ others\prc_npc_105_6_1.utc \ others\prc_npc_105_7_0.utc \ others\prc_npc_105_7_1.utc \ others\prc_npc_105_8_0.utc \ others\prc_npc_105_8_1.utc \ others\prc_npc_105_9_0.utc \ others\prc_npc_105_9_1.utc \ others\prc_npc_106_0_0.utc \ others\prc_npc_106_0_1.utc \ others\prc_npc_106_1_0.utc \ others\prc_npc_106_1_1.utc \ others\prc_npc_106_10_0.utc \ others\prc_npc_106_10_1.utc \ others\prc_npc_106_2_0.utc \ others\prc_npc_106_2_1.utc \ others\prc_npc_106_3_0.utc \ others\prc_npc_106_3_1.utc \ others\prc_npc_106_4_0.utc \ others\prc_npc_106_4_1.utc \ others\prc_npc_106_5_0.utc \ others\prc_npc_106_5_1.utc \ others\prc_npc_106_6_0.utc \ others\prc_npc_106_6_1.utc \ others\prc_npc_106_7_0.utc \ others\prc_npc_106_7_1.utc \ others\prc_npc_106_8_0.utc \ others\prc_npc_106_8_1.utc \ others\prc_npc_106_9_0.utc \ others\prc_npc_106_9_1.utc \ others\prc_npc_107_0_0.utc \ others\prc_npc_107_0_1.utc \ others\prc_npc_107_1_0.utc \ others\prc_npc_107_1_1.utc \ others\prc_npc_107_10_0.utc \ others\prc_npc_107_10_1.utc \ others\prc_npc_107_2_0.utc \ others\prc_npc_107_2_1.utc \ others\prc_npc_107_3_0.utc \ others\prc_npc_107_3_1.utc \ others\prc_npc_107_4_0.utc \ others\prc_npc_107_4_1.utc \ others\prc_npc_107_5_0.utc \ others\prc_npc_107_5_1.utc \ others\prc_npc_107_6_0.utc \ others\prc_npc_107_6_1.utc \ others\prc_npc_107_7_0.utc \ others\prc_npc_107_7_1.utc \ others\prc_npc_107_8_0.utc \ others\prc_npc_107_8_1.utc \ others\prc_npc_107_9_0.utc \ others\prc_npc_107_9_1.utc \ others\prc_npc_108_0_0.utc \ others\prc_npc_108_0_1.utc \ others\prc_npc_108_1_0.utc \ others\prc_npc_108_1_1.utc \ others\prc_npc_108_10_0.utc \ others\prc_npc_108_10_1.utc \ others\prc_npc_108_2_0.utc \ others\prc_npc_108_2_1.utc \ others\prc_npc_108_3_0.utc \ others\prc_npc_108_3_1.utc \ others\prc_npc_108_4_0.utc \ others\prc_npc_108_4_1.utc \ others\prc_npc_108_5_0.utc \ others\prc_npc_108_5_1.utc \ others\prc_npc_108_6_0.utc \ others\prc_npc_108_6_1.utc \ others\prc_npc_108_7_0.utc \ others\prc_npc_108_7_1.utc \ others\prc_npc_108_8_0.utc \ others\prc_npc_108_8_1.utc \ others\prc_npc_108_9_0.utc \ others\prc_npc_108_9_1.utc \ others\prc_npc_109_0_0.utc \ others\prc_npc_109_0_1.utc \ others\prc_npc_109_1_0.utc \ others\prc_npc_109_1_1.utc \ others\prc_npc_109_10_0.utc \ others\prc_npc_109_10_1.utc \ others\prc_npc_109_2_0.utc \ others\prc_npc_109_2_1.utc \ others\prc_npc_109_3_0.utc \ others\prc_npc_109_3_1.utc \ others\prc_npc_109_4_0.utc \ others\prc_npc_109_4_1.utc \ others\prc_npc_109_5_0.utc \ others\prc_npc_109_5_1.utc \ others\prc_npc_109_6_0.utc \ others\prc_npc_109_6_1.utc \ others\prc_npc_109_7_0.utc \ others\prc_npc_109_7_1.utc \ others\prc_npc_109_8_0.utc \ others\prc_npc_109_8_1.utc \ others\prc_npc_109_9_0.utc \ others\prc_npc_109_9_1.utc \ others\prc_npc_110_0_0.utc \ others\prc_npc_110_0_1.utc \ others\prc_npc_110_1_0.utc \ others\prc_npc_110_1_1.utc \ others\prc_npc_110_10_0.utc \ others\prc_npc_110_10_1.utc \ others\prc_npc_110_2_0.utc \ others\prc_npc_110_2_1.utc \ others\prc_npc_110_3_0.utc \ others\prc_npc_110_3_1.utc \ others\prc_npc_110_4_0.utc \ others\prc_npc_110_4_1.utc \ others\prc_npc_110_5_0.utc \ others\prc_npc_110_5_1.utc \ others\prc_npc_110_6_0.utc \ others\prc_npc_110_6_1.utc \ others\prc_npc_110_7_0.utc \ others\prc_npc_110_7_1.utc \ others\prc_npc_110_8_0.utc \ others\prc_npc_110_8_1.utc \ others\prc_npc_110_9_0.utc \ others\prc_npc_110_9_1.utc \ others\prc_npc_111_0_0.utc \ others\prc_npc_111_0_1.utc \ others\prc_npc_111_1_0.utc \ others\prc_npc_111_1_1.utc \ others\prc_npc_111_10_0.utc \ others\prc_npc_111_10_1.utc \ others\prc_npc_111_2_0.utc \ others\prc_npc_111_2_1.utc \ others\prc_npc_111_3_0.utc \ others\prc_npc_111_3_1.utc \ others\prc_npc_111_4_0.utc \ others\prc_npc_111_4_1.utc \ others\prc_npc_111_5_0.utc \ others\prc_npc_111_5_1.utc \ others\prc_npc_111_6_0.utc \ others\prc_npc_111_6_1.utc \ others\prc_npc_111_7_0.utc \ others\prc_npc_111_7_1.utc \ others\prc_npc_111_8_0.utc \ others\prc_npc_111_8_1.utc \ others\prc_npc_111_9_0.utc \ others\prc_npc_111_9_1.utc \ others\prc_npc_112_0_0.utc \ others\prc_npc_112_0_1.utc \ others\prc_npc_112_1_0.utc \ others\prc_npc_112_1_1.utc \ others\prc_npc_112_10_0.utc \ others\prc_npc_112_10_1.utc \ others\prc_npc_112_2_0.utc \ others\prc_npc_112_2_1.utc \ others\prc_npc_112_3_0.utc \ others\prc_npc_112_3_1.utc \ others\prc_npc_112_4_0.utc \ others\prc_npc_112_4_1.utc \ others\prc_npc_112_5_0.utc \ others\prc_npc_112_5_1.utc \ others\prc_npc_112_6_0.utc \ others\prc_npc_112_6_1.utc \ others\prc_npc_112_7_0.utc \ others\prc_npc_112_7_1.utc \ others\prc_npc_112_8_0.utc \ others\prc_npc_112_8_1.utc \ others\prc_npc_112_9_0.utc \ others\prc_npc_112_9_1.utc \ others\prc_npc_131_0_0.utc \ others\prc_npc_131_0_1.utc \ others\prc_npc_131_1_0.utc \ others\prc_npc_131_1_1.utc \ others\prc_npc_131_10_0.utc \ others\prc_npc_131_10_1.utc \ others\prc_npc_131_2_0.utc \ others\prc_npc_131_2_1.utc \ others\prc_npc_131_3_0.utc \ others\prc_npc_131_3_1.utc \ others\prc_npc_131_4_0.utc \ others\prc_npc_131_4_1.utc \ others\prc_npc_131_5_0.utc \ others\prc_npc_131_5_1.utc \ others\prc_npc_131_6_0.utc \ others\prc_npc_131_6_1.utc \ others\prc_npc_131_7_0.utc \ others\prc_npc_131_7_1.utc \ others\prc_npc_131_8_0.utc \ others\prc_npc_131_8_1.utc \ others\prc_npc_131_9_0.utc \ others\prc_npc_131_9_1.utc \ others\prc_npc_133_0_0.utc \ others\prc_npc_133_0_1.utc \ others\prc_npc_133_1_0.utc \ others\prc_npc_133_1_1.utc \ others\prc_npc_133_10_0.utc \ others\prc_npc_133_10_1.utc \ others\prc_npc_133_2_0.utc \ others\prc_npc_133_2_1.utc \ others\prc_npc_133_3_0.utc \ others\prc_npc_133_3_1.utc \ others\prc_npc_133_4_0.utc \ others\prc_npc_133_4_1.utc \ others\prc_npc_133_5_0.utc \ others\prc_npc_133_5_1.utc \ others\prc_npc_133_6_0.utc \ others\prc_npc_133_6_1.utc \ others\prc_npc_133_7_0.utc \ others\prc_npc_133_7_1.utc \ others\prc_npc_133_8_0.utc \ others\prc_npc_133_8_1.utc \ others\prc_npc_133_9_0.utc \ others\prc_npc_133_9_1.utc \ others\prc_npc_134_0_0.utc \ others\prc_npc_134_0_1.utc \ others\prc_npc_134_1_0.utc \ others\prc_npc_134_1_1.utc \ others\prc_npc_134_10_0.utc \ others\prc_npc_134_10_1.utc \ others\prc_npc_134_2_0.utc \ others\prc_npc_134_2_1.utc \ others\prc_npc_134_3_0.utc \ others\prc_npc_134_3_1.utc \ others\prc_npc_134_4_0.utc \ others\prc_npc_134_4_1.utc \ others\prc_npc_134_5_0.utc \ others\prc_npc_134_5_1.utc \ others\prc_npc_134_6_0.utc \ others\prc_npc_134_6_1.utc \ others\prc_npc_134_7_0.utc \ others\prc_npc_134_7_1.utc \ others\prc_npc_134_8_0.utc \ others\prc_npc_134_8_1.utc \ others\prc_npc_134_9_0.utc \ others\prc_npc_134_9_1.utc \ others\prc_npc_135_0_0.utc \ others\prc_npc_135_0_1.utc \ others\prc_npc_135_1_0.utc \ others\prc_npc_135_1_1.utc \ others\prc_npc_135_10_0.utc \ others\prc_npc_135_10_1.utc \ others\prc_npc_135_2_0.utc \ others\prc_npc_135_2_1.utc \ others\prc_npc_135_3_0.utc \ others\prc_npc_135_3_1.utc \ others\prc_npc_135_4_0.utc \ others\prc_npc_135_4_1.utc \ others\prc_npc_135_5_0.utc \ others\prc_npc_135_5_1.utc \ others\prc_npc_135_6_0.utc \ others\prc_npc_135_6_1.utc \ others\prc_npc_135_7_0.utc \ others\prc_npc_135_7_1.utc \ others\prc_npc_135_8_0.utc \ others\prc_npc_135_8_1.utc \ others\prc_npc_135_9_0.utc \ others\prc_npc_135_9_1.utc \ others\prc_npc_136_0_0.utc \ others\prc_npc_136_0_1.utc \ others\prc_npc_136_1_0.utc \ others\prc_npc_136_1_1.utc \ others\prc_npc_136_10_0.utc \ others\prc_npc_136_10_1.utc \ others\prc_npc_136_2_0.utc \ others\prc_npc_136_2_1.utc \ others\prc_npc_136_3_0.utc \ others\prc_npc_136_3_1.utc \ others\prc_npc_136_4_0.utc \ others\prc_npc_136_4_1.utc \ others\prc_npc_136_5_0.utc \ others\prc_npc_136_5_1.utc \ others\prc_npc_136_6_0.utc \ others\prc_npc_136_6_1.utc \ others\prc_npc_136_7_0.utc \ others\prc_npc_136_7_1.utc \ others\prc_npc_136_8_0.utc \ others\prc_npc_136_8_1.utc \ others\prc_npc_136_9_0.utc \ others\prc_npc_136_9_1.utc \ others\prc_npc_140_0_0.utc \ others\prc_npc_140_0_1.utc \ others\prc_npc_140_1_0.utc \ others\prc_npc_140_1_1.utc \ others\prc_npc_140_10_0.utc \ others\prc_npc_140_10_1.utc \ others\prc_npc_140_2_0.utc \ others\prc_npc_140_2_1.utc \ others\prc_npc_140_3_0.utc \ others\prc_npc_140_3_1.utc \ others\prc_npc_140_4_0.utc \ others\prc_npc_140_4_1.utc \ others\prc_npc_140_5_0.utc \ others\prc_npc_140_5_1.utc \ others\prc_npc_140_6_0.utc \ others\prc_npc_140_6_1.utc \ others\prc_npc_140_7_0.utc \ others\prc_npc_140_7_1.utc \ others\prc_npc_140_8_0.utc \ others\prc_npc_140_8_1.utc \ others\prc_npc_140_9_0.utc \ others\prc_npc_140_9_1.utc \ others\prc_npc_146_0_0.utc \ others\prc_npc_146_0_1.utc \ others\prc_npc_146_1_0.utc \ others\prc_npc_146_1_1.utc \ others\prc_npc_146_10_0.utc \ others\prc_npc_146_10_1.utc \ others\prc_npc_146_2_0.utc \ others\prc_npc_146_2_1.utc \ others\prc_npc_146_3_0.utc \ others\prc_npc_146_3_1.utc \ others\prc_npc_146_4_0.utc \ others\prc_npc_146_4_1.utc \ others\prc_npc_146_5_0.utc \ others\prc_npc_146_5_1.utc \ others\prc_npc_146_6_0.utc \ others\prc_npc_146_6_1.utc \ others\prc_npc_146_7_0.utc \ others\prc_npc_146_7_1.utc \ others\prc_npc_146_8_0.utc \ others\prc_npc_146_8_1.utc \ others\prc_npc_146_9_0.utc \ others\prc_npc_146_9_1.utc \ others\prc_npc_147_0_0.utc \ others\prc_npc_147_0_1.utc \ others\prc_npc_147_1_0.utc \ others\prc_npc_147_1_1.utc \ others\prc_npc_147_10_0.utc \ others\prc_npc_147_10_1.utc \ others\prc_npc_147_2_0.utc \ others\prc_npc_147_2_1.utc \ others\prc_npc_147_3_0.utc \ others\prc_npc_147_3_1.utc \ others\prc_npc_147_4_0.utc \ others\prc_npc_147_4_1.utc \ others\prc_npc_147_5_0.utc \ others\prc_npc_147_5_1.utc \ others\prc_npc_147_6_0.utc \ others\prc_npc_147_6_1.utc \ others\prc_npc_147_7_0.utc \ others\prc_npc_147_7_1.utc \ others\prc_npc_147_8_0.utc \ others\prc_npc_147_8_1.utc \ others\prc_npc_147_9_0.utc \ others\prc_npc_147_9_1.utc \ others\prc_npc_148_0_0.utc \ others\prc_npc_148_0_1.utc \ others\prc_npc_148_1_0.utc \ others\prc_npc_148_1_1.utc \ others\prc_npc_148_10_0.utc \ others\prc_npc_148_10_1.utc \ others\prc_npc_148_2_0.utc \ others\prc_npc_148_2_1.utc \ others\prc_npc_148_3_0.utc \ others\prc_npc_148_3_1.utc \ others\prc_npc_148_4_0.utc \ others\prc_npc_148_4_1.utc \ others\prc_npc_148_5_0.utc \ others\prc_npc_148_5_1.utc \ others\prc_npc_148_6_0.utc \ others\prc_npc_148_6_1.utc \ others\prc_npc_148_7_0.utc \ others\prc_npc_148_7_1.utc \ others\prc_npc_148_8_0.utc \ others\prc_npc_148_8_1.utc \ others\prc_npc_148_9_0.utc \ others\prc_npc_148_9_1.utc \ others\prc_npc_149_0_0.utc \ others\prc_npc_149_0_1.utc \ others\prc_npc_149_1_0.utc \ others\prc_npc_149_1_1.utc \ others\prc_npc_149_10_0.utc \ others\prc_npc_149_10_1.utc \ others\prc_npc_149_2_0.utc \ others\prc_npc_149_2_1.utc \ others\prc_npc_149_3_0.utc \ others\prc_npc_149_3_1.utc \ others\prc_npc_149_4_0.utc \ others\prc_npc_149_4_1.utc \ others\prc_npc_149_5_0.utc \ others\prc_npc_149_5_1.utc \ others\prc_npc_149_6_0.utc \ others\prc_npc_149_6_1.utc \ others\prc_npc_149_7_0.utc \ others\prc_npc_149_7_1.utc \ others\prc_npc_149_8_0.utc \ others\prc_npc_149_8_1.utc \ others\prc_npc_149_9_0.utc \ others\prc_npc_149_9_1.utc \ others\prc_npc_150_0_0.utc \ others\prc_npc_150_0_1.utc \ others\prc_npc_150_1_0.utc \ others\prc_npc_150_1_1.utc \ others\prc_npc_150_10_0.utc \ others\prc_npc_150_10_1.utc \ others\prc_npc_150_2_0.utc \ others\prc_npc_150_2_1.utc \ others\prc_npc_150_3_0.utc \ others\prc_npc_150_3_1.utc \ others\prc_npc_150_4_0.utc \ others\prc_npc_150_4_1.utc \ others\prc_npc_150_5_0.utc \ others\prc_npc_150_5_1.utc \ others\prc_npc_150_6_0.utc \ others\prc_npc_150_6_1.utc \ others\prc_npc_150_7_0.utc \ others\prc_npc_150_7_1.utc \ others\prc_npc_150_8_0.utc \ others\prc_npc_150_8_1.utc \ others\prc_npc_150_9_0.utc \ others\prc_npc_150_9_1.utc \ others\prc_npc_151_0_0.utc \ others\prc_npc_151_0_1.utc \ others\prc_npc_151_1_0.utc \ others\prc_npc_151_1_1.utc \ others\prc_npc_151_10_0.utc \ others\prc_npc_151_10_1.utc \ others\prc_npc_151_2_0.utc \ others\prc_npc_151_2_1.utc \ others\prc_npc_151_3_0.utc \ others\prc_npc_151_3_1.utc \ others\prc_npc_151_4_0.utc \ others\prc_npc_151_4_1.utc \ others\prc_npc_151_5_0.utc \ others\prc_npc_151_5_1.utc \ others\prc_npc_151_6_0.utc \ others\prc_npc_151_6_1.utc \ others\prc_npc_151_7_0.utc \ others\prc_npc_151_7_1.utc \ others\prc_npc_151_8_0.utc \ others\prc_npc_151_8_1.utc \ others\prc_npc_151_9_0.utc \ others\prc_npc_151_9_1.utc \ others\prc_npc_152_0_0.utc \ others\prc_npc_152_0_1.utc \ others\prc_npc_152_1_0.utc \ others\prc_npc_152_1_1.utc \ others\prc_npc_152_10_0.utc \ others\prc_npc_152_10_1.utc \ others\prc_npc_152_2_0.utc \ others\prc_npc_152_2_1.utc \ others\prc_npc_152_3_0.utc \ others\prc_npc_152_3_1.utc \ others\prc_npc_152_4_0.utc \ others\prc_npc_152_4_1.utc \ others\prc_npc_152_5_0.utc \ others\prc_npc_152_5_1.utc \ others\prc_npc_152_6_0.utc \ others\prc_npc_152_6_1.utc \ others\prc_npc_152_7_0.utc \ others\prc_npc_152_7_1.utc \ others\prc_npc_152_8_0.utc \ others\prc_npc_152_8_1.utc \ others\prc_npc_152_9_0.utc \ others\prc_npc_152_9_1.utc \ others\prc_npc_153_0_0.utc \ others\prc_npc_153_0_1.utc \ others\prc_npc_153_1_0.utc \ others\prc_npc_153_1_1.utc \ others\prc_npc_153_10_0.utc \ others\prc_npc_153_10_1.utc \ others\prc_npc_153_2_0.utc \ others\prc_npc_153_2_1.utc \ others\prc_npc_153_3_0.utc \ others\prc_npc_153_3_1.utc \ others\prc_npc_153_4_0.utc \ others\prc_npc_153_4_1.utc \ others\prc_npc_153_5_0.utc \ others\prc_npc_153_5_1.utc \ others\prc_npc_153_6_0.utc \ others\prc_npc_153_6_1.utc \ others\prc_npc_153_7_0.utc \ others\prc_npc_153_7_1.utc \ others\prc_npc_153_8_0.utc \ others\prc_npc_153_8_1.utc \ others\prc_npc_153_9_0.utc \ others\prc_npc_153_9_1.utc \ others\prc_npc_155_0_0.utc \ others\prc_npc_155_0_1.utc \ others\prc_npc_155_1_0.utc \ others\prc_npc_155_1_1.utc \ others\prc_npc_155_10_0.utc \ others\prc_npc_155_10_1.utc \ others\prc_npc_155_2_0.utc \ others\prc_npc_155_2_1.utc \ others\prc_npc_155_3_0.utc \ others\prc_npc_155_3_1.utc \ others\prc_npc_155_4_0.utc \ others\prc_npc_155_4_1.utc \ others\prc_npc_155_5_0.utc \ others\prc_npc_155_5_1.utc \ others\prc_npc_155_6_0.utc \ others\prc_npc_155_6_1.utc \ others\prc_npc_155_7_0.utc \ others\prc_npc_155_7_1.utc \ others\prc_npc_155_8_0.utc \ others\prc_npc_155_8_1.utc \ others\prc_npc_155_9_0.utc \ others\prc_npc_155_9_1.utc \ others\prc_npc_156_0_0.utc \ others\prc_npc_156_0_1.utc \ others\prc_npc_156_1_0.utc \ others\prc_npc_156_1_1.utc \ others\prc_npc_156_10_0.utc \ others\prc_npc_156_10_1.utc \ others\prc_npc_156_2_0.utc \ others\prc_npc_156_2_1.utc \ others\prc_npc_156_3_0.utc \ others\prc_npc_156_3_1.utc \ others\prc_npc_156_4_0.utc \ others\prc_npc_156_4_1.utc \ others\prc_npc_156_5_0.utc \ others\prc_npc_156_5_1.utc \ others\prc_npc_156_6_0.utc \ others\prc_npc_156_6_1.utc \ others\prc_npc_156_7_0.utc \ others\prc_npc_156_7_1.utc \ others\prc_npc_156_8_0.utc \ others\prc_npc_156_8_1.utc \ others\prc_npc_156_9_0.utc \ others\prc_npc_156_9_1.utc \ others\prc_npc_159_0_0.utc \ others\prc_npc_159_0_1.utc \ others\prc_npc_159_1_0.utc \ others\prc_npc_159_1_1.utc \ others\prc_npc_159_10_0.utc \ others\prc_npc_159_10_1.utc \ others\prc_npc_159_2_0.utc \ others\prc_npc_159_2_1.utc \ others\prc_npc_159_3_0.utc \ others\prc_npc_159_3_1.utc \ others\prc_npc_159_4_0.utc \ others\prc_npc_159_4_1.utc \ others\prc_npc_159_5_0.utc \ others\prc_npc_159_5_1.utc \ others\prc_npc_159_6_0.utc \ others\prc_npc_159_6_1.utc \ others\prc_npc_159_7_0.utc \ others\prc_npc_159_7_1.utc \ others\prc_npc_159_8_0.utc \ others\prc_npc_159_8_1.utc \ others\prc_npc_159_9_0.utc \ others\prc_npc_159_9_1.utc \ others\prc_npc_161_0_0.utc \ others\prc_npc_161_0_1.utc \ others\prc_npc_161_1_0.utc \ others\prc_npc_161_1_1.utc \ others\prc_npc_161_10_0.utc \ others\prc_npc_161_10_1.utc \ others\prc_npc_161_2_0.utc \ others\prc_npc_161_2_1.utc \ others\prc_npc_161_3_0.utc \ others\prc_npc_161_3_1.utc \ others\prc_npc_161_4_0.utc \ others\prc_npc_161_4_1.utc \ others\prc_npc_161_5_0.utc \ others\prc_npc_161_5_1.utc \ others\prc_npc_161_6_0.utc \ others\prc_npc_161_6_1.utc \ others\prc_npc_161_7_0.utc \ others\prc_npc_161_7_1.utc \ others\prc_npc_161_8_0.utc \ others\prc_npc_161_8_1.utc \ others\prc_npc_161_9_0.utc \ others\prc_npc_161_9_1.utc \ others\prc_npc_162_0_0.utc \ others\prc_npc_162_0_1.utc \ others\prc_npc_162_1_0.utc \ others\prc_npc_162_1_1.utc \ others\prc_npc_162_10_0.utc \ others\prc_npc_162_10_1.utc \ others\prc_npc_162_2_0.utc \ others\prc_npc_162_2_1.utc \ others\prc_npc_162_3_0.utc \ others\prc_npc_162_3_1.utc \ others\prc_npc_162_4_0.utc \ others\prc_npc_162_4_1.utc \ others\prc_npc_162_5_0.utc \ others\prc_npc_162_5_1.utc \ others\prc_npc_162_6_0.utc \ others\prc_npc_162_6_1.utc \ others\prc_npc_162_7_0.utc \ others\prc_npc_162_7_1.utc \ others\prc_npc_162_8_0.utc \ others\prc_npc_162_8_1.utc \ others\prc_npc_162_9_0.utc \ others\prc_npc_162_9_1.utc \ others\prc_npc_163_0_0.utc \ others\prc_npc_163_0_1.utc \ others\prc_npc_163_1_0.utc \ others\prc_npc_163_1_1.utc \ others\prc_npc_163_10_0.utc \ others\prc_npc_163_10_1.utc \ others\prc_npc_163_2_0.utc \ others\prc_npc_163_2_1.utc \ others\prc_npc_163_3_0.utc \ others\prc_npc_163_3_1.utc \ others\prc_npc_163_4_0.utc \ others\prc_npc_163_4_1.utc \ others\prc_npc_163_5_0.utc \ others\prc_npc_163_5_1.utc \ others\prc_npc_163_6_0.utc \ others\prc_npc_163_6_1.utc \ others\prc_npc_163_7_0.utc \ others\prc_npc_163_7_1.utc \ others\prc_npc_163_8_0.utc \ others\prc_npc_163_8_1.utc \ others\prc_npc_163_9_0.utc \ others\prc_npc_163_9_1.utc \ others\prc_npc_164_0_0.utc \ others\prc_npc_164_0_1.utc \ others\prc_npc_164_1_0.utc \ others\prc_npc_164_1_1.utc \ others\prc_npc_164_10_0.utc \ others\prc_npc_164_10_1.utc \ others\prc_npc_164_2_0.utc \ others\prc_npc_164_2_1.utc \ others\prc_npc_164_3_0.utc \ others\prc_npc_164_3_1.utc \ others\prc_npc_164_4_0.utc \ others\prc_npc_164_4_1.utc \ others\prc_npc_164_5_0.utc \ others\prc_npc_164_5_1.utc \ others\prc_npc_164_6_0.utc \ others\prc_npc_164_6_1.utc \ others\prc_npc_164_7_0.utc \ others\prc_npc_164_7_1.utc \ others\prc_npc_164_8_0.utc \ others\prc_npc_164_8_1.utc \ others\prc_npc_164_9_0.utc \ others\prc_npc_164_9_1.utc \ others\prc_npc_165_0_0.utc \ others\prc_npc_165_0_1.utc \ others\prc_npc_165_1_0.utc \ others\prc_npc_165_1_1.utc \ others\prc_npc_165_10_0.utc \ others\prc_npc_165_10_1.utc \ others\prc_npc_165_2_0.utc \ others\prc_npc_165_2_1.utc \ others\prc_npc_165_3_0.utc \ others\prc_npc_165_3_1.utc \ others\prc_npc_165_4_0.utc \ others\prc_npc_165_4_1.utc \ others\prc_npc_165_5_0.utc \ others\prc_npc_165_5_1.utc \ others\prc_npc_165_6_0.utc \ others\prc_npc_165_6_1.utc \ others\prc_npc_165_7_0.utc \ others\prc_npc_165_7_1.utc \ others\prc_npc_165_8_0.utc \ others\prc_npc_165_8_1.utc \ others\prc_npc_165_9_0.utc \ others\prc_npc_165_9_1.utc \ others\prc_npc_166_0_0.utc \ others\prc_npc_166_0_1.utc \ others\prc_npc_166_1_0.utc \ others\prc_npc_166_1_1.utc \ others\prc_npc_166_10_0.utc \ others\prc_npc_166_10_1.utc \ others\prc_npc_166_2_0.utc \ others\prc_npc_166_2_1.utc \ others\prc_npc_166_3_0.utc \ others\prc_npc_166_3_1.utc \ others\prc_npc_166_4_0.utc \ others\prc_npc_166_4_1.utc \ others\prc_npc_166_5_0.utc \ others\prc_npc_166_5_1.utc \ others\prc_npc_166_6_0.utc \ others\prc_npc_166_6_1.utc \ others\prc_npc_166_7_0.utc \ others\prc_npc_166_7_1.utc \ others\prc_npc_166_8_0.utc \ others\prc_npc_166_8_1.utc \ others\prc_npc_166_9_0.utc \ others\prc_npc_166_9_1.utc \ others\prc_npc_167_0_0.utc \ others\prc_npc_167_0_1.utc \ others\prc_npc_167_1_0.utc \ others\prc_npc_167_1_1.utc \ others\prc_npc_167_10_0.utc \ others\prc_npc_167_10_1.utc \ others\prc_npc_167_2_0.utc \ others\prc_npc_167_2_1.utc \ others\prc_npc_167_3_0.utc \ others\prc_npc_167_3_1.utc \ others\prc_npc_167_4_0.utc \ others\prc_npc_167_4_1.utc \ others\prc_npc_167_5_0.utc \ others\prc_npc_167_5_1.utc \ others\prc_npc_167_6_0.utc \ others\prc_npc_167_6_1.utc \ others\prc_npc_167_7_0.utc \ others\prc_npc_167_7_1.utc \ others\prc_npc_167_8_0.utc \ others\prc_npc_167_8_1.utc \ others\prc_npc_167_9_0.utc \ others\prc_npc_167_9_1.utc \ others\prc_npc_168_0_0.utc \ others\prc_npc_168_0_1.utc \ others\prc_npc_168_1_0.utc \ others\prc_npc_168_1_1.utc \ others\prc_npc_168_10_0.utc \ others\prc_npc_168_10_1.utc \ others\prc_npc_168_2_0.utc \ others\prc_npc_168_2_1.utc \ others\prc_npc_168_3_0.utc \ others\prc_npc_168_3_1.utc \ others\prc_npc_168_4_0.utc \ others\prc_npc_168_4_1.utc \ others\prc_npc_168_5_0.utc \ others\prc_npc_168_5_1.utc \ others\prc_npc_168_6_0.utc \ others\prc_npc_168_6_1.utc \ others\prc_npc_168_7_0.utc \ others\prc_npc_168_7_1.utc \ others\prc_npc_168_8_0.utc \ others\prc_npc_168_8_1.utc \ others\prc_npc_168_9_0.utc \ others\prc_npc_168_9_1.utc \ others\prc_npc_174_0_0.utc \ others\prc_npc_174_0_1.utc \ others\prc_npc_174_1_0.utc \ others\prc_npc_174_1_1.utc \ others\prc_npc_174_10_0.utc \ others\prc_npc_174_10_1.utc \ others\prc_npc_174_2_0.utc \ others\prc_npc_174_2_1.utc \ others\prc_npc_174_3_0.utc \ others\prc_npc_174_3_1.utc \ others\prc_npc_174_4_0.utc \ others\prc_npc_174_4_1.utc \ others\prc_npc_174_5_0.utc \ others\prc_npc_174_5_1.utc \ others\prc_npc_174_6_0.utc \ others\prc_npc_174_6_1.utc \ others\prc_npc_174_7_0.utc \ others\prc_npc_174_7_1.utc \ others\prc_npc_174_8_0.utc \ others\prc_npc_174_8_1.utc \ others\prc_npc_174_9_0.utc \ others\prc_npc_174_9_1.utc \ others\prc_npc_175_0_0.utc \ others\prc_npc_175_0_1.utc \ others\prc_npc_175_1_0.utc \ others\prc_npc_175_1_1.utc \ others\prc_npc_175_10_0.utc \ others\prc_npc_175_10_1.utc \ others\prc_npc_175_2_0.utc \ others\prc_npc_175_2_1.utc \ others\prc_npc_175_3_0.utc \ others\prc_npc_175_3_1.utc \ others\prc_npc_175_4_0.utc \ others\prc_npc_175_4_1.utc \ others\prc_npc_175_5_0.utc \ others\prc_npc_175_5_1.utc \ others\prc_npc_175_6_0.utc \ others\prc_npc_175_6_1.utc \ others\prc_npc_175_7_0.utc \ others\prc_npc_175_7_1.utc \ others\prc_npc_175_8_0.utc \ others\prc_npc_175_8_1.utc \ others\prc_npc_175_9_0.utc \ others\prc_npc_175_9_1.utc \ others\prc_npc_176_0_0.utc \ others\prc_npc_176_0_1.utc \ others\prc_npc_176_1_0.utc \ others\prc_npc_176_1_1.utc \ others\prc_npc_176_10_0.utc \ others\prc_npc_176_10_1.utc \ others\prc_npc_176_2_0.utc \ others\prc_npc_176_2_1.utc \ others\prc_npc_176_3_0.utc \ others\prc_npc_176_3_1.utc \ others\prc_npc_176_4_0.utc \ others\prc_npc_176_4_1.utc \ others\prc_npc_176_5_0.utc \ others\prc_npc_176_5_1.utc \ others\prc_npc_176_6_0.utc \ others\prc_npc_176_6_1.utc \ others\prc_npc_176_7_0.utc \ others\prc_npc_176_7_1.utc \ others\prc_npc_176_8_0.utc \ others\prc_npc_176_8_1.utc \ others\prc_npc_176_9_0.utc \ others\prc_npc_176_9_1.utc \ others\prc_npc_179_0_0.utc \ others\prc_npc_179_0_1.utc \ others\prc_npc_179_1_0.utc \ others\prc_npc_179_1_1.utc \ others\prc_npc_179_10_0.utc \ others\prc_npc_179_10_1.utc \ others\prc_npc_179_2_0.utc \ others\prc_npc_179_2_1.utc \ others\prc_npc_179_3_0.utc \ others\prc_npc_179_3_1.utc \ others\prc_npc_179_4_0.utc \ others\prc_npc_179_4_1.utc \ others\prc_npc_179_5_0.utc \ others\prc_npc_179_5_1.utc \ others\prc_npc_179_6_0.utc \ others\prc_npc_179_6_1.utc \ others\prc_npc_179_7_0.utc \ others\prc_npc_179_7_1.utc \ others\prc_npc_179_8_0.utc \ others\prc_npc_179_8_1.utc \ others\prc_npc_179_9_0.utc \ others\prc_npc_179_9_1.utc \ others\prc_npc_182_0_0.utc \ others\prc_npc_182_0_1.utc \ others\prc_npc_182_1_0.utc \ others\prc_npc_182_1_1.utc \ others\prc_npc_182_10_0.utc \ others\prc_npc_182_10_1.utc \ others\prc_npc_182_2_0.utc \ others\prc_npc_182_2_1.utc \ others\prc_npc_182_3_0.utc \ others\prc_npc_182_3_1.utc \ others\prc_npc_182_4_0.utc \ others\prc_npc_182_4_1.utc \ others\prc_npc_182_5_0.utc \ others\prc_npc_182_5_1.utc \ others\prc_npc_182_6_0.utc \ others\prc_npc_182_6_1.utc \ others\prc_npc_182_7_0.utc \ others\prc_npc_182_7_1.utc \ others\prc_npc_182_8_0.utc \ others\prc_npc_182_8_1.utc \ others\prc_npc_182_9_0.utc \ others\prc_npc_182_9_1.utc \ others\prc_npc_183_0_0.utc \ others\prc_npc_183_0_1.utc \ others\prc_npc_183_1_0.utc \ others\prc_npc_183_1_1.utc \ others\prc_npc_183_10_0.utc \ others\prc_npc_183_10_1.utc \ others\prc_npc_183_2_0.utc \ others\prc_npc_183_2_1.utc \ others\prc_npc_183_3_0.utc \ others\prc_npc_183_3_1.utc \ others\prc_npc_183_4_0.utc \ others\prc_npc_183_4_1.utc \ others\prc_npc_183_5_0.utc \ others\prc_npc_183_5_1.utc \ others\prc_npc_183_6_0.utc \ others\prc_npc_183_6_1.utc \ others\prc_npc_183_7_0.utc \ others\prc_npc_183_7_1.utc \ others\prc_npc_183_8_0.utc \ others\prc_npc_183_8_1.utc \ others\prc_npc_183_9_0.utc \ others\prc_npc_183_9_1.utc \ others\prc_npc_184_0_0.utc \ others\prc_npc_184_0_1.utc \ others\prc_npc_184_1_0.utc \ others\prc_npc_184_1_1.utc \ others\prc_npc_184_10_0.utc \ others\prc_npc_184_10_1.utc \ others\prc_npc_184_2_0.utc \ others\prc_npc_184_2_1.utc \ others\prc_npc_184_3_0.utc \ others\prc_npc_184_3_1.utc \ others\prc_npc_184_4_0.utc \ others\prc_npc_184_4_1.utc \ others\prc_npc_184_5_0.utc \ others\prc_npc_184_5_1.utc \ others\prc_npc_184_6_0.utc \ others\prc_npc_184_6_1.utc \ others\prc_npc_184_7_0.utc \ others\prc_npc_184_7_1.utc \ others\prc_npc_184_8_0.utc \ others\prc_npc_184_8_1.utc \ others\prc_npc_184_9_0.utc \ others\prc_npc_184_9_1.utc \ others\prc_npc_187_0_0.utc \ others\prc_npc_187_0_1.utc \ others\prc_npc_187_1_0.utc \ others\prc_npc_187_1_1.utc \ others\prc_npc_187_10_0.utc \ others\prc_npc_187_10_1.utc \ others\prc_npc_187_2_0.utc \ others\prc_npc_187_2_1.utc \ others\prc_npc_187_3_0.utc \ others\prc_npc_187_3_1.utc \ others\prc_npc_187_4_0.utc \ others\prc_npc_187_4_1.utc \ others\prc_npc_187_5_0.utc \ others\prc_npc_187_5_1.utc \ others\prc_npc_187_6_0.utc \ others\prc_npc_187_6_1.utc \ others\prc_npc_187_7_0.utc \ others\prc_npc_187_7_1.utc \ others\prc_npc_187_8_0.utc \ others\prc_npc_187_8_1.utc \ others\prc_npc_187_9_0.utc \ others\prc_npc_187_9_1.utc \ others\prc_npc_190_0_0.utc \ others\prc_npc_190_0_1.utc \ others\prc_npc_190_1_0.utc \ others\prc_npc_190_1_1.utc \ others\prc_npc_190_10_0.utc \ others\prc_npc_190_10_1.utc \ others\prc_npc_190_2_0.utc \ others\prc_npc_190_2_1.utc \ others\prc_npc_190_3_0.utc \ others\prc_npc_190_3_1.utc \ others\prc_npc_190_4_0.utc \ others\prc_npc_190_4_1.utc \ others\prc_npc_190_5_0.utc \ others\prc_npc_190_5_1.utc \ others\prc_npc_190_6_0.utc \ others\prc_npc_190_6_1.utc \ others\prc_npc_190_7_0.utc \ others\prc_npc_190_7_1.utc \ others\prc_npc_190_8_0.utc \ others\prc_npc_190_8_1.utc \ others\prc_npc_190_9_0.utc \ others\prc_npc_190_9_1.utc \ others\prc_npc_191_0_0.utc \ others\prc_npc_191_0_1.utc \ others\prc_npc_191_1_0.utc \ others\prc_npc_191_1_1.utc \ others\prc_npc_191_10_0.utc \ others\prc_npc_191_10_1.utc \ others\prc_npc_191_2_0.utc \ others\prc_npc_191_2_1.utc \ others\prc_npc_191_3_0.utc \ others\prc_npc_191_3_1.utc \ others\prc_npc_191_4_0.utc \ others\prc_npc_191_4_1.utc \ others\prc_npc_191_5_0.utc \ others\prc_npc_191_5_1.utc \ others\prc_npc_191_6_0.utc \ others\prc_npc_191_6_1.utc \ others\prc_npc_191_7_0.utc \ others\prc_npc_191_7_1.utc \ others\prc_npc_191_8_0.utc \ others\prc_npc_191_8_1.utc \ others\prc_npc_191_9_0.utc \ others\prc_npc_191_9_1.utc \ others\prc_npc_192_0_0.utc \ others\prc_npc_192_0_1.utc \ others\prc_npc_192_1_0.utc \ others\prc_npc_192_1_1.utc \ others\prc_npc_192_10_0.utc \ others\prc_npc_192_10_1.utc \ others\prc_npc_192_2_0.utc \ others\prc_npc_192_2_1.utc \ others\prc_npc_192_3_0.utc \ others\prc_npc_192_3_1.utc \ others\prc_npc_192_4_0.utc \ others\prc_npc_192_4_1.utc \ others\prc_npc_192_5_0.utc \ others\prc_npc_192_5_1.utc \ others\prc_npc_192_6_0.utc \ others\prc_npc_192_6_1.utc \ others\prc_npc_192_7_0.utc \ others\prc_npc_192_7_1.utc \ others\prc_npc_192_8_0.utc \ others\prc_npc_192_8_1.utc \ others\prc_npc_192_9_0.utc \ others\prc_npc_192_9_1.utc \ others\prc_npc_193_0_0.utc \ others\prc_npc_193_0_1.utc \ others\prc_npc_193_1_0.utc \ others\prc_npc_193_1_1.utc \ others\prc_npc_193_10_0.utc \ others\prc_npc_193_10_1.utc \ others\prc_npc_193_2_0.utc \ others\prc_npc_193_2_1.utc \ others\prc_npc_193_3_0.utc \ others\prc_npc_193_3_1.utc \ others\prc_npc_193_4_0.utc \ others\prc_npc_193_4_1.utc \ others\prc_npc_193_5_0.utc \ others\prc_npc_193_5_1.utc \ others\prc_npc_193_6_0.utc \ others\prc_npc_193_6_1.utc \ others\prc_npc_193_7_0.utc \ others\prc_npc_193_7_1.utc \ others\prc_npc_193_8_0.utc \ others\prc_npc_193_8_1.utc \ others\prc_npc_193_9_0.utc \ others\prc_npc_193_9_1.utc \ others\prc_npc_194_0_0.utc \ others\prc_npc_194_0_1.utc \ others\prc_npc_194_1_0.utc \ others\prc_npc_194_1_1.utc \ others\prc_npc_194_10_0.utc \ others\prc_npc_194_10_1.utc \ others\prc_npc_194_2_0.utc \ others\prc_npc_194_2_1.utc \ others\prc_npc_194_3_0.utc \ others\prc_npc_194_3_1.utc \ others\prc_npc_194_4_0.utc \ others\prc_npc_194_4_1.utc \ others\prc_npc_194_5_0.utc \ others\prc_npc_194_5_1.utc \ others\prc_npc_194_6_0.utc \ others\prc_npc_194_6_1.utc \ others\prc_npc_194_7_0.utc \ others\prc_npc_194_7_1.utc \ others\prc_npc_194_8_0.utc \ others\prc_npc_194_8_1.utc \ others\prc_npc_194_9_0.utc \ others\prc_npc_194_9_1.utc \ others\prc_npc_195_0_0.utc \ others\prc_npc_195_0_1.utc \ others\prc_npc_195_1_0.utc \ others\prc_npc_195_1_1.utc \ others\prc_npc_195_10_0.utc \ others\prc_npc_195_10_1.utc \ others\prc_npc_195_2_0.utc \ others\prc_npc_195_2_1.utc \ others\prc_npc_195_3_0.utc \ others\prc_npc_195_3_1.utc \ others\prc_npc_195_4_0.utc \ others\prc_npc_195_4_1.utc \ others\prc_npc_195_5_0.utc \ others\prc_npc_195_5_1.utc \ others\prc_npc_195_6_0.utc \ others\prc_npc_195_6_1.utc \ others\prc_npc_195_7_0.utc \ others\prc_npc_195_7_1.utc \ others\prc_npc_195_8_0.utc \ others\prc_npc_195_8_1.utc \ others\prc_npc_195_9_0.utc \ others\prc_npc_195_9_1.utc \ others\prc_npc_196_0_0.utc \ others\prc_npc_196_0_1.utc \ others\prc_npc_196_1_0.utc \ others\prc_npc_196_1_1.utc \ others\prc_npc_196_10_0.utc \ others\prc_npc_196_10_1.utc \ others\prc_npc_196_2_0.utc \ others\prc_npc_196_2_1.utc \ others\prc_npc_196_3_0.utc \ others\prc_npc_196_3_1.utc \ others\prc_npc_196_4_0.utc \ others\prc_npc_196_4_1.utc \ others\prc_npc_196_5_0.utc \ others\prc_npc_196_5_1.utc \ others\prc_npc_196_6_0.utc \ others\prc_npc_196_6_1.utc \ others\prc_npc_196_7_0.utc \ others\prc_npc_196_7_1.utc \ others\prc_npc_196_8_0.utc \ others\prc_npc_196_8_1.utc \ others\prc_npc_196_9_0.utc \ others\prc_npc_196_9_1.utc \ others\prc_npc_197_0_0.utc \ others\prc_npc_197_0_1.utc \ others\prc_npc_197_1_0.utc \ others\prc_npc_197_1_1.utc \ others\prc_npc_197_10_0.utc \ others\prc_npc_197_10_1.utc \ others\prc_npc_197_2_0.utc \ others\prc_npc_197_2_1.utc \ others\prc_npc_197_3_0.utc \ others\prc_npc_197_3_1.utc \ others\prc_npc_197_4_0.utc \ others\prc_npc_197_4_1.utc \ others\prc_npc_197_5_0.utc \ others\prc_npc_197_5_1.utc \ others\prc_npc_197_6_0.utc \ others\prc_npc_197_6_1.utc \ others\prc_npc_197_7_0.utc \ others\prc_npc_197_7_1.utc \ others\prc_npc_197_8_0.utc \ others\prc_npc_197_8_1.utc \ others\prc_npc_197_9_0.utc \ others\prc_npc_197_9_1.utc \ others\prc_npc_198_0_0.utc \ others\prc_npc_198_0_1.utc \ others\prc_npc_198_1_0.utc \ others\prc_npc_198_1_1.utc \ others\prc_npc_198_10_0.utc \ others\prc_npc_198_10_1.utc \ others\prc_npc_198_2_0.utc \ others\prc_npc_198_2_1.utc \ others\prc_npc_198_3_0.utc \ others\prc_npc_198_3_1.utc \ others\prc_npc_198_4_0.utc \ others\prc_npc_198_4_1.utc \ others\prc_npc_198_5_0.utc \ others\prc_npc_198_5_1.utc \ others\prc_npc_198_6_0.utc \ others\prc_npc_198_6_1.utc \ others\prc_npc_198_7_0.utc \ others\prc_npc_198_7_1.utc \ others\prc_npc_198_8_0.utc \ others\prc_npc_198_8_1.utc \ others\prc_npc_198_9_0.utc \ others\prc_npc_198_9_1.utc \ others\prc_npc_199_0_0.utc \ others\prc_npc_199_0_1.utc \ others\prc_npc_199_1_0.utc \ others\prc_npc_199_1_1.utc \ others\prc_npc_199_10_0.utc \ others\prc_npc_199_10_1.utc \ others\prc_npc_199_2_0.utc \ others\prc_npc_199_2_1.utc \ others\prc_npc_199_3_0.utc \ others\prc_npc_199_3_1.utc \ others\prc_npc_199_4_0.utc \ others\prc_npc_199_4_1.utc \ others\prc_npc_199_5_0.utc \ others\prc_npc_199_5_1.utc \ others\prc_npc_199_6_0.utc \ others\prc_npc_199_6_1.utc \ others\prc_npc_199_7_0.utc \ others\prc_npc_199_7_1.utc \ others\prc_npc_199_8_0.utc \ others\prc_npc_199_8_1.utc \ others\prc_npc_199_9_0.utc \ others\prc_npc_199_9_1.utc \ others\prc_npc_2_0_0.utc \ others\prc_npc_2_0_1.utc \ others\prc_npc_2_1_0.utc \ others\prc_npc_2_1_1.utc \ others\prc_npc_2_10_0.utc \ others\prc_npc_2_10_1.utc \ others\prc_npc_2_2_0.utc \ others\prc_npc_2_2_1.utc \ others\prc_npc_2_3_0.utc \ others\prc_npc_2_3_1.utc \ others\prc_npc_2_4_0.utc \ others\prc_npc_2_4_1.utc \ others\prc_npc_2_5_0.utc \ others\prc_npc_2_5_1.utc \ others\prc_npc_2_6_0.utc \ others\prc_npc_2_6_1.utc \ others\prc_npc_2_7_0.utc \ others\prc_npc_2_7_1.utc \ others\prc_npc_2_8_0.utc \ others\prc_npc_2_8_1.utc \ others\prc_npc_2_9_0.utc \ others\prc_npc_2_9_1.utc \ others\prc_npc_200_0_0.utc \ others\prc_npc_200_0_1.utc \ others\prc_npc_200_1_0.utc \ others\prc_npc_200_1_1.utc \ others\prc_npc_200_10_0.utc \ others\prc_npc_200_10_1.utc \ others\prc_npc_200_2_0.utc \ others\prc_npc_200_2_1.utc \ others\prc_npc_200_3_0.utc \ others\prc_npc_200_3_1.utc \ others\prc_npc_200_4_0.utc \ others\prc_npc_200_4_1.utc \ others\prc_npc_200_5_0.utc \ others\prc_npc_200_5_1.utc \ others\prc_npc_200_6_0.utc \ others\prc_npc_200_6_1.utc \ others\prc_npc_200_7_0.utc \ others\prc_npc_200_7_1.utc \ others\prc_npc_200_8_0.utc \ others\prc_npc_200_8_1.utc \ others\prc_npc_200_9_0.utc \ others\prc_npc_200_9_1.utc \ others\prc_npc_201_0_0.utc \ others\prc_npc_201_0_1.utc \ others\prc_npc_201_1_0.utc \ others\prc_npc_201_1_1.utc \ others\prc_npc_201_10_0.utc \ others\prc_npc_201_10_1.utc \ others\prc_npc_201_2_0.utc \ others\prc_npc_201_2_1.utc \ others\prc_npc_201_3_0.utc \ others\prc_npc_201_3_1.utc \ others\prc_npc_201_4_0.utc \ others\prc_npc_201_4_1.utc \ others\prc_npc_201_5_0.utc \ others\prc_npc_201_5_1.utc \ others\prc_npc_201_6_0.utc \ others\prc_npc_201_6_1.utc \ others\prc_npc_201_7_0.utc \ others\prc_npc_201_7_1.utc \ others\prc_npc_201_8_0.utc \ others\prc_npc_201_8_1.utc \ others\prc_npc_201_9_0.utc \ others\prc_npc_201_9_1.utc \ others\prc_npc_202_0_0.utc \ others\prc_npc_202_0_1.utc \ others\prc_npc_202_1_0.utc \ others\prc_npc_202_1_1.utc \ others\prc_npc_202_10_0.utc \ others\prc_npc_202_10_1.utc \ others\prc_npc_202_2_0.utc \ others\prc_npc_202_2_1.utc \ others\prc_npc_202_3_0.utc \ others\prc_npc_202_3_1.utc \ others\prc_npc_202_4_0.utc \ others\prc_npc_202_4_1.utc \ others\prc_npc_202_5_0.utc \ others\prc_npc_202_5_1.utc \ others\prc_npc_202_6_0.utc \ others\prc_npc_202_6_1.utc \ others\prc_npc_202_7_0.utc \ others\prc_npc_202_7_1.utc \ others\prc_npc_202_8_0.utc \ others\prc_npc_202_8_1.utc \ others\prc_npc_202_9_0.utc \ others\prc_npc_202_9_1.utc \ others\prc_npc_203_0_0.utc \ others\prc_npc_203_0_1.utc \ others\prc_npc_203_1_0.utc \ others\prc_npc_203_1_1.utc \ others\prc_npc_203_10_0.utc \ others\prc_npc_203_10_1.utc \ others\prc_npc_203_2_0.utc \ others\prc_npc_203_2_1.utc \ others\prc_npc_203_3_0.utc \ others\prc_npc_203_3_1.utc \ others\prc_npc_203_4_0.utc \ others\prc_npc_203_4_1.utc \ others\prc_npc_203_5_0.utc \ others\prc_npc_203_5_1.utc \ others\prc_npc_203_6_0.utc \ others\prc_npc_203_6_1.utc \ others\prc_npc_203_7_0.utc \ others\prc_npc_203_7_1.utc \ others\prc_npc_203_8_0.utc \ others\prc_npc_203_8_1.utc \ others\prc_npc_203_9_0.utc \ others\prc_npc_203_9_1.utc \ others\prc_npc_204_0_0.utc \ others\prc_npc_204_0_1.utc \ others\prc_npc_204_1_0.utc \ others\prc_npc_204_1_1.utc \ others\prc_npc_204_10_0.utc \ others\prc_npc_204_10_1.utc \ others\prc_npc_204_2_0.utc \ others\prc_npc_204_2_1.utc \ others\prc_npc_204_3_0.utc \ others\prc_npc_204_3_1.utc \ others\prc_npc_204_4_0.utc \ others\prc_npc_204_4_1.utc \ others\prc_npc_204_5_0.utc \ others\prc_npc_204_5_1.utc \ others\prc_npc_204_6_0.utc \ others\prc_npc_204_6_1.utc \ others\prc_npc_204_7_0.utc \ others\prc_npc_204_7_1.utc \ others\prc_npc_204_8_0.utc \ others\prc_npc_204_8_1.utc \ others\prc_npc_204_9_0.utc \ others\prc_npc_204_9_1.utc \ others\prc_npc_205_0_0.utc \ others\prc_npc_205_0_1.utc \ others\prc_npc_205_1_0.utc \ others\prc_npc_205_1_1.utc \ others\prc_npc_205_10_0.utc \ others\prc_npc_205_10_1.utc \ others\prc_npc_205_2_0.utc \ others\prc_npc_205_2_1.utc \ others\prc_npc_205_3_0.utc \ others\prc_npc_205_3_1.utc \ others\prc_npc_205_4_0.utc \ others\prc_npc_205_4_1.utc \ others\prc_npc_205_5_0.utc \ others\prc_npc_205_5_1.utc \ others\prc_npc_205_6_0.utc \ others\prc_npc_205_6_1.utc \ others\prc_npc_205_7_0.utc \ others\prc_npc_205_7_1.utc \ others\prc_npc_205_8_0.utc \ others\prc_npc_205_8_1.utc \ others\prc_npc_205_9_0.utc \ others\prc_npc_205_9_1.utc \ others\prc_npc_206_0_0.utc \ others\prc_npc_206_0_1.utc \ others\prc_npc_206_1_0.utc \ others\prc_npc_206_1_1.utc \ others\prc_npc_206_10_0.utc \ others\prc_npc_206_10_1.utc \ others\prc_npc_206_2_0.utc \ others\prc_npc_206_2_1.utc \ others\prc_npc_206_3_0.utc \ others\prc_npc_206_3_1.utc \ others\prc_npc_206_4_0.utc \ others\prc_npc_206_4_1.utc \ others\prc_npc_206_5_0.utc \ others\prc_npc_206_5_1.utc \ others\prc_npc_206_6_0.utc \ others\prc_npc_206_6_1.utc \ others\prc_npc_206_7_0.utc \ others\prc_npc_206_7_1.utc \ others\prc_npc_206_8_0.utc \ others\prc_npc_206_8_1.utc \ others\prc_npc_206_9_0.utc \ others\prc_npc_206_9_1.utc \ others\prc_npc_209_0_0.utc \ others\prc_npc_209_0_1.utc \ others\prc_npc_209_1_0.utc \ others\prc_npc_209_1_1.utc \ others\prc_npc_209_10_0.utc \ others\prc_npc_209_10_1.utc \ others\prc_npc_209_2_0.utc \ others\prc_npc_209_2_1.utc \ others\prc_npc_209_3_0.utc \ others\prc_npc_209_3_1.utc \ others\prc_npc_209_4_0.utc \ others\prc_npc_209_4_1.utc \ others\prc_npc_209_5_0.utc \ others\prc_npc_209_5_1.utc \ others\prc_npc_209_6_0.utc \ others\prc_npc_209_6_1.utc \ others\prc_npc_209_7_0.utc \ others\prc_npc_209_7_1.utc \ others\prc_npc_209_8_0.utc \ others\prc_npc_209_8_1.utc \ others\prc_npc_209_9_0.utc \ others\prc_npc_209_9_1.utc \ others\prc_npc_212_0_0.utc \ others\prc_npc_212_0_1.utc \ others\prc_npc_212_1_0.utc \ others\prc_npc_212_1_1.utc \ others\prc_npc_212_10_0.utc \ others\prc_npc_212_10_1.utc \ others\prc_npc_212_2_0.utc \ others\prc_npc_212_2_1.utc \ others\prc_npc_212_3_0.utc \ others\prc_npc_212_3_1.utc \ others\prc_npc_212_4_0.utc \ others\prc_npc_212_4_1.utc \ others\prc_npc_212_5_0.utc \ others\prc_npc_212_5_1.utc \ others\prc_npc_212_6_0.utc \ others\prc_npc_212_6_1.utc \ others\prc_npc_212_7_0.utc \ others\prc_npc_212_7_1.utc \ others\prc_npc_212_8_0.utc \ others\prc_npc_212_8_1.utc \ others\prc_npc_212_9_0.utc \ others\prc_npc_212_9_1.utc \ others\prc_npc_213_0_0.utc \ others\prc_npc_213_0_1.utc \ others\prc_npc_213_1_0.utc \ others\prc_npc_213_1_1.utc \ others\prc_npc_213_10_0.utc \ others\prc_npc_213_10_1.utc \ others\prc_npc_213_2_0.utc \ others\prc_npc_213_2_1.utc \ others\prc_npc_213_3_0.utc \ others\prc_npc_213_3_1.utc \ others\prc_npc_213_4_0.utc \ others\prc_npc_213_4_1.utc \ others\prc_npc_213_5_0.utc \ others\prc_npc_213_5_1.utc \ others\prc_npc_213_6_0.utc \ others\prc_npc_213_6_1.utc \ others\prc_npc_213_7_0.utc \ others\prc_npc_213_7_1.utc \ others\prc_npc_213_8_0.utc \ others\prc_npc_213_8_1.utc \ others\prc_npc_213_9_0.utc \ others\prc_npc_213_9_1.utc \ others\prc_npc_214_0_0.utc \ others\prc_npc_214_0_1.utc \ others\prc_npc_214_1_0.utc \ others\prc_npc_214_1_1.utc \ others\prc_npc_214_10_0.utc \ others\prc_npc_214_10_1.utc \ others\prc_npc_214_2_0.utc \ others\prc_npc_214_2_1.utc \ others\prc_npc_214_3_0.utc \ others\prc_npc_214_3_1.utc \ others\prc_npc_214_4_0.utc \ others\prc_npc_214_4_1.utc \ others\prc_npc_214_5_0.utc \ others\prc_npc_214_5_1.utc \ others\prc_npc_214_6_0.utc \ others\prc_npc_214_6_1.utc \ others\prc_npc_214_7_0.utc \ others\prc_npc_214_7_1.utc \ others\prc_npc_214_8_0.utc \ others\prc_npc_214_8_1.utc \ others\prc_npc_214_9_0.utc \ others\prc_npc_214_9_1.utc \ others\prc_npc_215_0_0.utc \ others\prc_npc_215_0_1.utc \ others\prc_npc_215_1_0.utc \ others\prc_npc_215_1_1.utc \ others\prc_npc_215_10_0.utc \ others\prc_npc_215_10_1.utc \ others\prc_npc_215_2_0.utc \ others\prc_npc_215_2_1.utc \ others\prc_npc_215_3_0.utc \ others\prc_npc_215_3_1.utc \ others\prc_npc_215_4_0.utc \ others\prc_npc_215_4_1.utc \ others\prc_npc_215_5_0.utc \ others\prc_npc_215_5_1.utc \ others\prc_npc_215_6_0.utc \ others\prc_npc_215_6_1.utc \ others\prc_npc_215_7_0.utc \ others\prc_npc_215_7_1.utc \ others\prc_npc_215_8_0.utc \ others\prc_npc_215_8_1.utc \ others\prc_npc_215_9_0.utc \ others\prc_npc_215_9_1.utc \ others\prc_npc_216_0_0.utc \ others\prc_npc_216_0_1.utc \ others\prc_npc_216_1_0.utc \ others\prc_npc_216_1_1.utc \ others\prc_npc_216_10_0.utc \ others\prc_npc_216_10_1.utc \ others\prc_npc_216_2_0.utc \ others\prc_npc_216_2_1.utc \ others\prc_npc_216_3_0.utc \ others\prc_npc_216_3_1.utc \ others\prc_npc_216_4_0.utc \ others\prc_npc_216_4_1.utc \ others\prc_npc_216_5_0.utc \ others\prc_npc_216_5_1.utc \ others\prc_npc_216_6_0.utc \ others\prc_npc_216_6_1.utc \ others\prc_npc_216_7_0.utc \ others\prc_npc_216_7_1.utc \ others\prc_npc_216_8_0.utc \ others\prc_npc_216_8_1.utc \ others\prc_npc_216_9_0.utc \ others\prc_npc_216_9_1.utc \ others\prc_npc_217_0_0.utc \ others\prc_npc_217_0_1.utc \ others\prc_npc_217_1_0.utc \ others\prc_npc_217_1_1.utc \ others\prc_npc_217_10_0.utc \ others\prc_npc_217_10_1.utc \ others\prc_npc_217_2_0.utc \ others\prc_npc_217_2_1.utc \ others\prc_npc_217_3_0.utc \ others\prc_npc_217_3_1.utc \ others\prc_npc_217_4_0.utc \ others\prc_npc_217_4_1.utc \ others\prc_npc_217_5_0.utc \ others\prc_npc_217_5_1.utc \ others\prc_npc_217_6_0.utc \ others\prc_npc_217_6_1.utc \ others\prc_npc_217_7_0.utc \ others\prc_npc_217_7_1.utc \ others\prc_npc_217_8_0.utc \ others\prc_npc_217_8_1.utc \ others\prc_npc_217_9_0.utc \ others\prc_npc_217_9_1.utc \ others\prc_npc_218_0_0.utc \ others\prc_npc_218_0_1.utc \ others\prc_npc_218_1_0.utc \ others\prc_npc_218_1_1.utc \ others\prc_npc_218_10_0.utc \ others\prc_npc_218_10_1.utc \ others\prc_npc_218_2_0.utc \ others\prc_npc_218_2_1.utc \ others\prc_npc_218_3_0.utc \ others\prc_npc_218_3_1.utc \ others\prc_npc_218_4_0.utc \ others\prc_npc_218_4_1.utc \ others\prc_npc_218_5_0.utc \ others\prc_npc_218_5_1.utc \ others\prc_npc_218_6_0.utc \ others\prc_npc_218_6_1.utc \ others\prc_npc_218_7_0.utc \ others\prc_npc_218_7_1.utc \ others\prc_npc_218_8_0.utc \ others\prc_npc_218_8_1.utc \ others\prc_npc_218_9_0.utc \ others\prc_npc_218_9_1.utc \ others\prc_npc_219_0_0.utc \ others\prc_npc_219_0_1.utc \ others\prc_npc_219_1_0.utc \ others\prc_npc_219_1_1.utc \ others\prc_npc_219_10_0.utc \ others\prc_npc_219_10_1.utc \ others\prc_npc_219_2_0.utc \ others\prc_npc_219_2_1.utc \ others\prc_npc_219_3_0.utc \ others\prc_npc_219_3_1.utc \ others\prc_npc_219_4_0.utc \ others\prc_npc_219_4_1.utc \ others\prc_npc_219_5_0.utc \ others\prc_npc_219_5_1.utc \ others\prc_npc_219_6_0.utc \ others\prc_npc_219_6_1.utc \ others\prc_npc_219_7_0.utc \ others\prc_npc_219_7_1.utc \ others\prc_npc_219_8_0.utc \ others\prc_npc_219_8_1.utc \ others\prc_npc_219_9_0.utc \ others\prc_npc_219_9_1.utc \ others\prc_npc_220_0_0.utc \ others\prc_npc_220_0_1.utc \ others\prc_npc_220_1_0.utc \ others\prc_npc_220_1_1.utc \ others\prc_npc_220_10_0.utc \ others\prc_npc_220_10_1.utc \ others\prc_npc_220_2_0.utc \ others\prc_npc_220_2_1.utc \ others\prc_npc_220_3_0.utc \ others\prc_npc_220_3_1.utc \ others\prc_npc_220_4_0.utc \ others\prc_npc_220_4_1.utc \ others\prc_npc_220_5_0.utc \ others\prc_npc_220_5_1.utc \ others\prc_npc_220_6_0.utc \ others\prc_npc_220_6_1.utc \ others\prc_npc_220_7_0.utc \ others\prc_npc_220_7_1.utc \ others\prc_npc_220_8_0.utc \ others\prc_npc_220_8_1.utc \ others\prc_npc_220_9_0.utc \ others\prc_npc_220_9_1.utc \ others\prc_npc_221_0_0.utc \ others\prc_npc_221_0_1.utc \ others\prc_npc_221_1_0.utc \ others\prc_npc_221_1_1.utc \ others\prc_npc_221_10_0.utc \ others\prc_npc_221_10_1.utc \ others\prc_npc_221_2_0.utc \ others\prc_npc_221_2_1.utc \ others\prc_npc_221_3_0.utc \ others\prc_npc_221_3_1.utc \ others\prc_npc_221_4_0.utc \ others\prc_npc_221_4_1.utc \ others\prc_npc_221_5_0.utc \ others\prc_npc_221_5_1.utc \ others\prc_npc_221_6_0.utc \ others\prc_npc_221_6_1.utc \ others\prc_npc_221_7_0.utc \ others\prc_npc_221_7_1.utc \ others\prc_npc_221_8_0.utc \ others\prc_npc_221_8_1.utc \ others\prc_npc_221_9_0.utc \ others\prc_npc_221_9_1.utc \ others\prc_npc_222_0_0.utc \ others\prc_npc_222_0_1.utc \ others\prc_npc_222_1_0.utc \ others\prc_npc_222_1_1.utc \ others\prc_npc_222_10_0.utc \ others\prc_npc_222_10_1.utc \ others\prc_npc_222_2_0.utc \ others\prc_npc_222_2_1.utc \ others\prc_npc_222_3_0.utc \ others\prc_npc_222_3_1.utc \ others\prc_npc_222_4_0.utc \ others\prc_npc_222_4_1.utc \ others\prc_npc_222_5_0.utc \ others\prc_npc_222_5_1.utc \ others\prc_npc_222_6_0.utc \ others\prc_npc_222_6_1.utc \ others\prc_npc_222_7_0.utc \ others\prc_npc_222_7_1.utc \ others\prc_npc_222_8_0.utc \ others\prc_npc_222_8_1.utc \ others\prc_npc_222_9_0.utc \ others\prc_npc_222_9_1.utc \ others\prc_npc_223_0_0.utc \ others\prc_npc_223_0_1.utc \ others\prc_npc_223_1_0.utc \ others\prc_npc_223_1_1.utc \ others\prc_npc_223_10_0.utc \ others\prc_npc_223_10_1.utc \ others\prc_npc_223_2_0.utc \ others\prc_npc_223_2_1.utc \ others\prc_npc_223_3_0.utc \ others\prc_npc_223_3_1.utc \ others\prc_npc_223_4_0.utc \ others\prc_npc_223_4_1.utc \ others\prc_npc_223_5_0.utc \ others\prc_npc_223_5_1.utc \ others\prc_npc_223_6_0.utc \ others\prc_npc_223_6_1.utc \ others\prc_npc_223_7_0.utc \ others\prc_npc_223_7_1.utc \ others\prc_npc_223_8_0.utc \ others\prc_npc_223_8_1.utc \ others\prc_npc_223_9_0.utc \ others\prc_npc_223_9_1.utc \ others\prc_npc_224_0_0.utc \ others\prc_npc_224_0_1.utc \ others\prc_npc_224_1_0.utc \ others\prc_npc_224_1_1.utc \ others\prc_npc_224_10_0.utc \ others\prc_npc_224_10_1.utc \ others\prc_npc_224_2_0.utc \ others\prc_npc_224_2_1.utc \ others\prc_npc_224_3_0.utc \ others\prc_npc_224_3_1.utc \ others\prc_npc_224_4_0.utc \ others\prc_npc_224_4_1.utc \ others\prc_npc_224_5_0.utc \ others\prc_npc_224_5_1.utc \ others\prc_npc_224_6_0.utc \ others\prc_npc_224_6_1.utc \ others\prc_npc_224_7_0.utc \ others\prc_npc_224_7_1.utc \ others\prc_npc_224_8_0.utc \ others\prc_npc_224_8_1.utc \ others\prc_npc_224_9_0.utc \ others\prc_npc_224_9_1.utc \ others\prc_npc_225_0_0.utc \ others\prc_npc_225_0_1.utc \ others\prc_npc_225_1_0.utc \ others\prc_npc_225_1_1.utc \ others\prc_npc_225_10_0.utc \ others\prc_npc_225_10_1.utc \ others\prc_npc_225_2_0.utc \ others\prc_npc_225_2_1.utc \ others\prc_npc_225_3_0.utc \ others\prc_npc_225_3_1.utc \ others\prc_npc_225_4_0.utc \ others\prc_npc_225_4_1.utc \ others\prc_npc_225_5_0.utc \ others\prc_npc_225_5_1.utc \ others\prc_npc_225_6_0.utc \ others\prc_npc_225_6_1.utc \ others\prc_npc_225_7_0.utc \ others\prc_npc_225_7_1.utc \ others\prc_npc_225_8_0.utc \ others\prc_npc_225_8_1.utc \ others\prc_npc_225_9_0.utc \ others\prc_npc_225_9_1.utc \ others\prc_npc_226_0_0.utc \ others\prc_npc_226_0_1.utc \ others\prc_npc_226_1_0.utc \ others\prc_npc_226_1_1.utc \ others\prc_npc_226_10_0.utc \ others\prc_npc_226_10_1.utc \ others\prc_npc_226_2_0.utc \ others\prc_npc_226_2_1.utc \ others\prc_npc_226_3_0.utc \ others\prc_npc_226_3_1.utc \ others\prc_npc_226_4_0.utc \ others\prc_npc_226_4_1.utc \ others\prc_npc_226_5_0.utc \ others\prc_npc_226_5_1.utc \ others\prc_npc_226_6_0.utc \ others\prc_npc_226_6_1.utc \ others\prc_npc_226_7_0.utc \ others\prc_npc_226_7_1.utc \ others\prc_npc_226_8_0.utc \ others\prc_npc_226_8_1.utc \ others\prc_npc_226_9_0.utc \ others\prc_npc_226_9_1.utc \ others\prc_npc_227_0_0.utc \ others\prc_npc_227_0_1.utc \ others\prc_npc_227_1_0.utc \ others\prc_npc_227_1_1.utc \ others\prc_npc_227_10_0.utc \ others\prc_npc_227_10_1.utc \ others\prc_npc_227_2_0.utc \ others\prc_npc_227_2_1.utc \ others\prc_npc_227_3_0.utc \ others\prc_npc_227_3_1.utc \ others\prc_npc_227_4_0.utc \ others\prc_npc_227_4_1.utc \ others\prc_npc_227_5_0.utc \ others\prc_npc_227_5_1.utc \ others\prc_npc_227_6_0.utc \ others\prc_npc_227_6_1.utc \ others\prc_npc_227_7_0.utc \ others\prc_npc_227_7_1.utc \ others\prc_npc_227_8_0.utc \ others\prc_npc_227_8_1.utc \ others\prc_npc_227_9_0.utc \ others\prc_npc_227_9_1.utc \ others\prc_npc_229_0_0.utc \ others\prc_npc_229_0_1.utc \ others\prc_npc_229_1_0.utc \ others\prc_npc_229_1_1.utc \ others\prc_npc_229_10_0.utc \ others\prc_npc_229_10_1.utc \ others\prc_npc_229_2_0.utc \ others\prc_npc_229_2_1.utc \ others\prc_npc_229_3_0.utc \ others\prc_npc_229_3_1.utc \ others\prc_npc_229_4_0.utc \ others\prc_npc_229_4_1.utc \ others\prc_npc_229_5_0.utc \ others\prc_npc_229_5_1.utc \ others\prc_npc_229_6_0.utc \ others\prc_npc_229_6_1.utc \ others\prc_npc_229_7_0.utc \ others\prc_npc_229_7_1.utc \ others\prc_npc_229_8_0.utc \ others\prc_npc_229_8_1.utc \ others\prc_npc_229_9_0.utc \ others\prc_npc_229_9_1.utc \ others\prc_npc_230_0_0.utc \ others\prc_npc_230_0_1.utc \ others\prc_npc_230_1_0.utc \ others\prc_npc_230_1_1.utc \ others\prc_npc_230_10_0.utc \ others\prc_npc_230_10_1.utc \ others\prc_npc_230_2_0.utc \ others\prc_npc_230_2_1.utc \ others\prc_npc_230_3_0.utc \ others\prc_npc_230_3_1.utc \ others\prc_npc_230_4_0.utc \ others\prc_npc_230_4_1.utc \ others\prc_npc_230_5_0.utc \ others\prc_npc_230_5_1.utc \ others\prc_npc_230_6_0.utc \ others\prc_npc_230_6_1.utc \ others\prc_npc_230_7_0.utc \ others\prc_npc_230_7_1.utc \ others\prc_npc_230_8_0.utc \ others\prc_npc_230_8_1.utc \ others\prc_npc_230_9_0.utc \ others\prc_npc_230_9_1.utc \ others\prc_npc_231_0_0.utc \ others\prc_npc_231_0_1.utc \ others\prc_npc_231_1_0.utc \ others\prc_npc_231_1_1.utc \ others\prc_npc_231_10_0.utc \ others\prc_npc_231_10_1.utc \ others\prc_npc_231_2_0.utc \ others\prc_npc_231_2_1.utc \ others\prc_npc_231_3_0.utc \ others\prc_npc_231_3_1.utc \ others\prc_npc_231_4_0.utc \ others\prc_npc_231_4_1.utc \ others\prc_npc_231_5_0.utc \ others\prc_npc_231_5_1.utc \ others\prc_npc_231_6_0.utc \ others\prc_npc_231_6_1.utc \ others\prc_npc_231_7_0.utc \ others\prc_npc_231_7_1.utc \ others\prc_npc_231_8_0.utc \ others\prc_npc_231_8_1.utc \ others\prc_npc_231_9_0.utc \ others\prc_npc_231_9_1.utc \ others\prc_npc_235_0_0.utc \ others\prc_npc_235_0_1.utc \ others\prc_npc_235_1_0.utc \ others\prc_npc_235_1_1.utc \ others\prc_npc_235_10_0.utc \ others\prc_npc_235_10_1.utc \ others\prc_npc_235_2_0.utc \ others\prc_npc_235_2_1.utc \ others\prc_npc_235_3_0.utc \ others\prc_npc_235_3_1.utc \ others\prc_npc_235_4_0.utc \ others\prc_npc_235_4_1.utc \ others\prc_npc_235_5_0.utc \ others\prc_npc_235_5_1.utc \ others\prc_npc_235_6_0.utc \ others\prc_npc_235_6_1.utc \ others\prc_npc_235_7_0.utc \ others\prc_npc_235_7_1.utc \ others\prc_npc_235_8_0.utc \ others\prc_npc_235_8_1.utc \ others\prc_npc_235_9_0.utc \ others\prc_npc_235_9_1.utc \ others\prc_npc_236_0_0.utc \ others\prc_npc_236_0_1.utc \ others\prc_npc_236_1_0.utc \ others\prc_npc_236_1_1.utc \ others\prc_npc_236_10_0.utc \ others\prc_npc_236_10_1.utc \ others\prc_npc_236_2_0.utc \ others\prc_npc_236_2_1.utc \ others\prc_npc_236_3_0.utc \ others\prc_npc_236_3_1.utc \ others\prc_npc_236_4_0.utc \ others\prc_npc_236_4_1.utc \ others\prc_npc_236_5_0.utc \ others\prc_npc_236_5_1.utc \ others\prc_npc_236_6_0.utc \ others\prc_npc_236_6_1.utc \ others\prc_npc_236_7_0.utc \ others\prc_npc_236_7_1.utc \ others\prc_npc_236_8_0.utc \ others\prc_npc_236_8_1.utc \ others\prc_npc_236_9_0.utc \ others\prc_npc_236_9_1.utc \ others\prc_npc_237_0_0.utc \ others\prc_npc_237_0_1.utc \ others\prc_npc_237_1_0.utc \ others\prc_npc_237_1_1.utc \ others\prc_npc_237_10_0.utc \ others\prc_npc_237_10_1.utc \ others\prc_npc_237_2_0.utc \ others\prc_npc_237_2_1.utc \ others\prc_npc_237_3_0.utc \ others\prc_npc_237_3_1.utc \ others\prc_npc_237_4_0.utc \ others\prc_npc_237_4_1.utc \ others\prc_npc_237_5_0.utc \ others\prc_npc_237_5_1.utc \ others\prc_npc_237_6_0.utc \ others\prc_npc_237_6_1.utc \ others\prc_npc_237_7_0.utc \ others\prc_npc_237_7_1.utc \ others\prc_npc_237_8_0.utc \ others\prc_npc_237_8_1.utc \ others\prc_npc_237_9_0.utc \ others\prc_npc_237_9_1.utc \ others\prc_npc_238_0_0.utc \ others\prc_npc_238_0_1.utc \ others\prc_npc_238_1_0.utc \ others\prc_npc_238_1_1.utc \ others\prc_npc_238_10_0.utc \ others\prc_npc_238_10_1.utc \ others\prc_npc_238_2_0.utc \ others\prc_npc_238_2_1.utc \ others\prc_npc_238_3_0.utc \ others\prc_npc_238_3_1.utc \ others\prc_npc_238_4_0.utc \ others\prc_npc_238_4_1.utc \ others\prc_npc_238_5_0.utc \ others\prc_npc_238_5_1.utc \ others\prc_npc_238_6_0.utc \ others\prc_npc_238_6_1.utc \ others\prc_npc_238_7_0.utc \ others\prc_npc_238_7_1.utc \ others\prc_npc_238_8_0.utc \ others\prc_npc_238_8_1.utc \ others\prc_npc_238_9_0.utc \ others\prc_npc_238_9_1.utc \ others\prc_npc_241_0_0.utc \ others\prc_npc_241_0_1.utc \ others\prc_npc_241_1_0.utc \ others\prc_npc_241_1_1.utc \ others\prc_npc_241_10_0.utc \ others\prc_npc_241_10_1.utc \ others\prc_npc_241_2_0.utc \ others\prc_npc_241_2_1.utc \ others\prc_npc_241_3_0.utc \ others\prc_npc_241_3_1.utc \ others\prc_npc_241_4_0.utc \ others\prc_npc_241_4_1.utc \ others\prc_npc_241_5_0.utc \ others\prc_npc_241_5_1.utc \ others\prc_npc_241_6_0.utc \ others\prc_npc_241_6_1.utc \ others\prc_npc_241_7_0.utc \ others\prc_npc_241_7_1.utc \ others\prc_npc_241_8_0.utc \ others\prc_npc_241_8_1.utc \ others\prc_npc_241_9_0.utc \ others\prc_npc_241_9_1.utc \ others\prc_npc_243_0_0.utc \ others\prc_npc_243_0_1.utc \ others\prc_npc_243_1_0.utc \ others\prc_npc_243_1_1.utc \ others\prc_npc_243_10_0.utc \ others\prc_npc_243_10_1.utc \ others\prc_npc_243_2_0.utc \ others\prc_npc_243_2_1.utc \ others\prc_npc_243_3_0.utc \ others\prc_npc_243_3_1.utc \ others\prc_npc_243_4_0.utc \ others\prc_npc_243_4_1.utc \ others\prc_npc_243_5_0.utc \ others\prc_npc_243_5_1.utc \ others\prc_npc_243_6_0.utc \ others\prc_npc_243_6_1.utc \ others\prc_npc_243_7_0.utc \ others\prc_npc_243_7_1.utc \ others\prc_npc_243_8_0.utc \ others\prc_npc_243_8_1.utc \ others\prc_npc_243_9_0.utc \ others\prc_npc_243_9_1.utc \ others\prc_npc_245_0_0.utc \ others\prc_npc_245_0_1.utc \ others\prc_npc_245_1_0.utc \ others\prc_npc_245_1_1.utc \ others\prc_npc_245_10_0.utc \ others\prc_npc_245_10_1.utc \ others\prc_npc_245_2_0.utc \ others\prc_npc_245_2_1.utc \ others\prc_npc_245_3_0.utc \ others\prc_npc_245_3_1.utc \ others\prc_npc_245_4_0.utc \ others\prc_npc_245_4_1.utc \ others\prc_npc_245_5_0.utc \ others\prc_npc_245_5_1.utc \ others\prc_npc_245_6_0.utc \ others\prc_npc_245_6_1.utc \ others\prc_npc_245_7_0.utc \ others\prc_npc_245_7_1.utc \ others\prc_npc_245_8_0.utc \ others\prc_npc_245_8_1.utc \ others\prc_npc_245_9_0.utc \ others\prc_npc_245_9_1.utc \ others\prc_npc_246_0_0.utc \ others\prc_npc_246_0_1.utc \ others\prc_npc_246_1_0.utc \ others\prc_npc_246_1_1.utc \ others\prc_npc_246_10_0.utc \ others\prc_npc_246_10_1.utc \ others\prc_npc_246_2_0.utc \ others\prc_npc_246_2_1.utc \ others\prc_npc_246_3_0.utc \ others\prc_npc_246_3_1.utc \ others\prc_npc_246_4_0.utc \ others\prc_npc_246_4_1.utc \ others\prc_npc_246_5_0.utc \ others\prc_npc_246_5_1.utc \ others\prc_npc_246_6_0.utc \ others\prc_npc_246_6_1.utc \ others\prc_npc_246_7_0.utc \ others\prc_npc_246_7_1.utc \ others\prc_npc_246_8_0.utc \ others\prc_npc_246_8_1.utc \ others\prc_npc_246_9_0.utc \ others\prc_npc_246_9_1.utc \ others\prc_npc_247_0_0.utc \ others\prc_npc_247_0_1.utc \ others\prc_npc_247_1_0.utc \ others\prc_npc_247_1_1.utc \ others\prc_npc_247_10_0.utc \ others\prc_npc_247_10_1.utc \ others\prc_npc_247_2_0.utc \ others\prc_npc_247_2_1.utc \ others\prc_npc_247_3_0.utc \ others\prc_npc_247_3_1.utc \ others\prc_npc_247_4_0.utc \ others\prc_npc_247_4_1.utc \ others\prc_npc_247_5_0.utc \ others\prc_npc_247_5_1.utc \ others\prc_npc_247_6_0.utc \ others\prc_npc_247_6_1.utc \ others\prc_npc_247_7_0.utc \ others\prc_npc_247_7_1.utc \ others\prc_npc_247_8_0.utc \ others\prc_npc_247_8_1.utc \ others\prc_npc_247_9_0.utc \ others\prc_npc_247_9_1.utc \ others\prc_npc_248_0_0.utc \ others\prc_npc_248_0_1.utc \ others\prc_npc_248_1_0.utc \ others\prc_npc_248_1_1.utc \ others\prc_npc_248_10_0.utc \ others\prc_npc_248_10_1.utc \ others\prc_npc_248_2_0.utc \ others\prc_npc_248_2_1.utc \ others\prc_npc_248_3_0.utc \ others\prc_npc_248_3_1.utc \ others\prc_npc_248_4_0.utc \ others\prc_npc_248_4_1.utc \ others\prc_npc_248_5_0.utc \ others\prc_npc_248_5_1.utc \ others\prc_npc_248_6_0.utc \ others\prc_npc_248_6_1.utc \ others\prc_npc_248_7_0.utc \ others\prc_npc_248_7_1.utc \ others\prc_npc_248_8_0.utc \ others\prc_npc_248_8_1.utc \ others\prc_npc_248_9_0.utc \ others\prc_npc_248_9_1.utc \ others\prc_npc_249_0_0.utc \ others\prc_npc_249_0_1.utc \ others\prc_npc_249_1_0.utc \ others\prc_npc_249_1_1.utc \ others\prc_npc_249_10_0.utc \ others\prc_npc_249_10_1.utc \ others\prc_npc_249_2_0.utc \ others\prc_npc_249_2_1.utc \ others\prc_npc_249_3_0.utc \ others\prc_npc_249_3_1.utc \ others\prc_npc_249_4_0.utc \ others\prc_npc_249_4_1.utc \ others\prc_npc_249_5_0.utc \ others\prc_npc_249_5_1.utc \ others\prc_npc_249_6_0.utc \ others\prc_npc_249_6_1.utc \ others\prc_npc_249_7_0.utc \ others\prc_npc_249_7_1.utc \ others\prc_npc_249_8_0.utc \ others\prc_npc_249_8_1.utc \ others\prc_npc_249_9_0.utc \ others\prc_npc_249_9_1.utc \ others\prc_npc_250_0_0.utc \ others\prc_npc_250_0_1.utc \ others\prc_npc_250_1_0.utc \ others\prc_npc_250_1_1.utc \ others\prc_npc_250_10_0.utc \ others\prc_npc_250_10_1.utc \ others\prc_npc_250_2_0.utc \ others\prc_npc_250_2_1.utc \ others\prc_npc_250_3_0.utc \ others\prc_npc_250_3_1.utc \ others\prc_npc_250_4_0.utc \ others\prc_npc_250_4_1.utc \ others\prc_npc_250_5_0.utc \ others\prc_npc_250_5_1.utc \ others\prc_npc_250_6_0.utc \ others\prc_npc_250_6_1.utc \ others\prc_npc_250_7_0.utc \ others\prc_npc_250_7_1.utc \ others\prc_npc_250_8_0.utc \ others\prc_npc_250_8_1.utc \ others\prc_npc_250_9_0.utc \ others\prc_npc_250_9_1.utc \ others\prc_npc_251_0_0.utc \ others\prc_npc_251_0_1.utc \ others\prc_npc_251_1_0.utc \ others\prc_npc_251_1_1.utc \ others\prc_npc_251_10_0.utc \ others\prc_npc_251_10_1.utc \ others\prc_npc_251_2_0.utc \ others\prc_npc_251_2_1.utc \ others\prc_npc_251_3_0.utc \ others\prc_npc_251_3_1.utc \ others\prc_npc_251_4_0.utc \ others\prc_npc_251_4_1.utc \ others\prc_npc_251_5_0.utc \ others\prc_npc_251_5_1.utc \ others\prc_npc_251_6_0.utc \ others\prc_npc_251_6_1.utc \ others\prc_npc_251_7_0.utc \ others\prc_npc_251_7_1.utc \ others\prc_npc_251_8_0.utc \ others\prc_npc_251_8_1.utc \ others\prc_npc_251_9_0.utc \ others\prc_npc_251_9_1.utc \ others\prc_npc_252_0_0.utc \ others\prc_npc_252_0_1.utc \ others\prc_npc_252_1_0.utc \ others\prc_npc_252_1_1.utc \ others\prc_npc_252_10_0.utc \ others\prc_npc_252_10_1.utc \ others\prc_npc_252_2_0.utc \ others\prc_npc_252_2_1.utc \ others\prc_npc_252_3_0.utc \ others\prc_npc_252_3_1.utc \ others\prc_npc_252_4_0.utc \ others\prc_npc_252_4_1.utc \ others\prc_npc_252_5_0.utc \ others\prc_npc_252_5_1.utc \ others\prc_npc_252_6_0.utc \ others\prc_npc_252_6_1.utc \ others\prc_npc_252_7_0.utc \ others\prc_npc_252_7_1.utc \ others\prc_npc_252_8_0.utc \ others\prc_npc_252_8_1.utc \ others\prc_npc_252_9_0.utc \ others\prc_npc_252_9_1.utc \ others\prc_npc_253_0_0.utc \ others\prc_npc_253_0_1.utc \ others\prc_npc_253_1_0.utc \ others\prc_npc_253_1_1.utc \ others\prc_npc_253_10_0.utc \ others\prc_npc_253_10_1.utc \ others\prc_npc_253_2_0.utc \ others\prc_npc_253_2_1.utc \ others\prc_npc_253_3_0.utc \ others\prc_npc_253_3_1.utc \ others\prc_npc_253_4_0.utc \ others\prc_npc_253_4_1.utc \ others\prc_npc_253_5_0.utc \ others\prc_npc_253_5_1.utc \ others\prc_npc_253_6_0.utc \ others\prc_npc_253_6_1.utc \ others\prc_npc_253_7_0.utc \ others\prc_npc_253_7_1.utc \ others\prc_npc_253_8_0.utc \ others\prc_npc_253_8_1.utc \ others\prc_npc_253_9_0.utc \ others\prc_npc_253_9_1.utc \ others\prc_npc_3_0_0.utc \ others\prc_npc_3_0_1.utc \ others\prc_npc_3_1_0.utc \ others\prc_npc_3_1_1.utc \ others\prc_npc_3_10_0.utc \ others\prc_npc_3_10_1.utc \ others\prc_npc_3_2_0.utc \ others\prc_npc_3_2_1.utc \ others\prc_npc_3_3_0.utc \ others\prc_npc_3_3_1.utc \ others\prc_npc_3_4_0.utc \ others\prc_npc_3_4_1.utc \ others\prc_npc_3_5_0.utc \ others\prc_npc_3_5_1.utc \ others\prc_npc_3_6_0.utc \ others\prc_npc_3_6_1.utc \ others\prc_npc_3_7_0.utc \ others\prc_npc_3_7_1.utc \ others\prc_npc_3_8_0.utc \ others\prc_npc_3_8_1.utc \ others\prc_npc_3_9_0.utc \ others\prc_npc_3_9_1.utc \ others\prc_npc_33_0_0.utc \ others\prc_npc_33_0_1.utc \ others\prc_npc_33_1_0.utc \ others\prc_npc_33_1_1.utc \ others\prc_npc_33_10_0.utc \ others\prc_npc_33_10_1.utc \ others\prc_npc_33_2_0.utc \ others\prc_npc_33_2_1.utc \ others\prc_npc_33_3_0.utc \ others\prc_npc_33_3_1.utc \ others\prc_npc_33_4_0.utc \ others\prc_npc_33_4_1.utc \ others\prc_npc_33_5_0.utc \ others\prc_npc_33_5_1.utc \ others\prc_npc_33_6_0.utc \ others\prc_npc_33_6_1.utc \ others\prc_npc_33_7_0.utc \ others\prc_npc_33_7_1.utc \ others\prc_npc_33_8_0.utc \ others\prc_npc_33_8_1.utc \ others\prc_npc_33_9_0.utc \ others\prc_npc_33_9_1.utc \ others\prc_npc_34_0_0.utc \ others\prc_npc_34_0_1.utc \ others\prc_npc_34_1_0.utc \ others\prc_npc_34_1_1.utc \ others\prc_npc_34_10_0.utc \ others\prc_npc_34_10_1.utc \ others\prc_npc_34_2_0.utc \ others\prc_npc_34_2_1.utc \ others\prc_npc_34_3_0.utc \ others\prc_npc_34_3_1.utc \ others\prc_npc_34_4_0.utc \ others\prc_npc_34_4_1.utc \ others\prc_npc_34_5_0.utc \ others\prc_npc_34_5_1.utc \ others\prc_npc_34_6_0.utc \ others\prc_npc_34_6_1.utc \ others\prc_npc_34_7_0.utc \ others\prc_npc_34_7_1.utc \ others\prc_npc_34_8_0.utc \ others\prc_npc_34_8_1.utc \ others\prc_npc_34_9_0.utc \ others\prc_npc_34_9_1.utc \ others\prc_npc_35_0_0.utc \ others\prc_npc_35_0_1.utc \ others\prc_npc_35_1_0.utc \ others\prc_npc_35_1_1.utc \ others\prc_npc_35_10_0.utc \ others\prc_npc_35_10_1.utc \ others\prc_npc_35_2_0.utc \ others\prc_npc_35_2_1.utc \ others\prc_npc_35_3_0.utc \ others\prc_npc_35_3_1.utc \ others\prc_npc_35_4_0.utc \ others\prc_npc_35_4_1.utc \ others\prc_npc_35_5_0.utc \ others\prc_npc_35_5_1.utc \ others\prc_npc_35_6_0.utc \ others\prc_npc_35_6_1.utc \ others\prc_npc_35_7_0.utc \ others\prc_npc_35_7_1.utc \ others\prc_npc_35_8_0.utc \ others\prc_npc_35_8_1.utc \ others\prc_npc_35_9_0.utc \ others\prc_npc_35_9_1.utc \ others\prc_npc_36_0_0.utc \ others\prc_npc_36_0_1.utc \ others\prc_npc_36_1_0.utc \ others\prc_npc_36_1_1.utc \ others\prc_npc_36_10_0.utc \ others\prc_npc_36_10_1.utc \ others\prc_npc_36_2_0.utc \ others\prc_npc_36_2_1.utc \ others\prc_npc_36_3_0.utc \ others\prc_npc_36_3_1.utc \ others\prc_npc_36_4_0.utc \ others\prc_npc_36_4_1.utc \ others\prc_npc_36_5_0.utc \ others\prc_npc_36_5_1.utc \ others\prc_npc_36_6_0.utc \ others\prc_npc_36_6_1.utc \ others\prc_npc_36_7_0.utc \ others\prc_npc_36_7_1.utc \ others\prc_npc_36_8_0.utc \ others\prc_npc_36_8_1.utc \ others\prc_npc_36_9_0.utc \ others\prc_npc_36_9_1.utc \ others\prc_npc_37_0_0.utc \ others\prc_npc_37_0_1.utc \ others\prc_npc_37_1_0.utc \ others\prc_npc_37_1_1.utc \ others\prc_npc_37_10_0.utc \ others\prc_npc_37_10_1.utc \ others\prc_npc_37_2_0.utc \ others\prc_npc_37_2_1.utc \ others\prc_npc_37_3_0.utc \ others\prc_npc_37_3_1.utc \ others\prc_npc_37_4_0.utc \ others\prc_npc_37_4_1.utc \ others\prc_npc_37_5_0.utc \ others\prc_npc_37_5_1.utc \ others\prc_npc_37_6_0.utc \ others\prc_npc_37_6_1.utc \ others\prc_npc_37_7_0.utc \ others\prc_npc_37_7_1.utc \ others\prc_npc_37_8_0.utc \ others\prc_npc_37_8_1.utc \ others\prc_npc_37_9_0.utc \ others\prc_npc_37_9_1.utc \ others\prc_npc_38_0_0.utc \ others\prc_npc_38_0_1.utc \ others\prc_npc_38_1_0.utc \ others\prc_npc_38_1_1.utc \ others\prc_npc_38_10_0.utc \ others\prc_npc_38_10_1.utc \ others\prc_npc_38_2_0.utc \ others\prc_npc_38_2_1.utc \ others\prc_npc_38_3_0.utc \ others\prc_npc_38_3_1.utc \ others\prc_npc_38_4_0.utc \ others\prc_npc_38_4_1.utc \ others\prc_npc_38_5_0.utc \ others\prc_npc_38_5_1.utc \ others\prc_npc_38_6_0.utc \ others\prc_npc_38_6_1.utc \ others\prc_npc_38_7_0.utc \ others\prc_npc_38_7_1.utc \ others\prc_npc_38_8_0.utc \ others\prc_npc_38_8_1.utc \ others\prc_npc_38_9_0.utc \ others\prc_npc_38_9_1.utc \ others\prc_npc_39_0_0.utc \ others\prc_npc_39_0_1.utc \ others\prc_npc_39_1_0.utc \ others\prc_npc_39_1_1.utc \ others\prc_npc_39_10_0.utc \ others\prc_npc_39_10_1.utc \ others\prc_npc_39_2_0.utc \ others\prc_npc_39_2_1.utc \ others\prc_npc_39_3_0.utc \ others\prc_npc_39_3_1.utc \ others\prc_npc_39_4_0.utc \ others\prc_npc_39_4_1.utc \ others\prc_npc_39_5_0.utc \ others\prc_npc_39_5_1.utc \ others\prc_npc_39_6_0.utc \ others\prc_npc_39_6_1.utc \ others\prc_npc_39_7_0.utc \ others\prc_npc_39_7_1.utc \ others\prc_npc_39_8_0.utc \ others\prc_npc_39_8_1.utc \ others\prc_npc_39_9_0.utc \ others\prc_npc_39_9_1.utc \ others\prc_npc_4_0_0.utc \ others\prc_npc_4_0_1.utc \ others\prc_npc_4_1_0.utc \ others\prc_npc_4_1_1.utc \ others\prc_npc_4_10_0.utc \ others\prc_npc_4_10_1.utc \ others\prc_npc_4_2_0.utc \ others\prc_npc_4_2_1.utc \ others\prc_npc_4_3_0.utc \ others\prc_npc_4_3_1.utc \ others\prc_npc_4_4_0.utc \ others\prc_npc_4_4_1.utc \ others\prc_npc_4_5_0.utc \ others\prc_npc_4_5_1.utc \ others\prc_npc_4_6_0.utc \ others\prc_npc_4_6_1.utc \ others\prc_npc_4_7_0.utc \ others\prc_npc_4_7_1.utc \ others\prc_npc_4_8_0.utc \ others\prc_npc_4_8_1.utc \ others\prc_npc_4_9_0.utc \ others\prc_npc_4_9_1.utc \ others\prc_npc_41_0_0.utc \ others\prc_npc_41_0_1.utc \ others\prc_npc_41_1_0.utc \ others\prc_npc_41_1_1.utc \ others\prc_npc_41_10_0.utc \ others\prc_npc_41_10_1.utc \ others\prc_npc_41_2_0.utc \ others\prc_npc_41_2_1.utc \ others\prc_npc_41_3_0.utc \ others\prc_npc_41_3_1.utc \ others\prc_npc_41_4_0.utc \ others\prc_npc_41_4_1.utc \ others\prc_npc_41_5_0.utc \ others\prc_npc_41_5_1.utc \ others\prc_npc_41_6_0.utc \ others\prc_npc_41_6_1.utc \ others\prc_npc_41_7_0.utc \ others\prc_npc_41_7_1.utc \ others\prc_npc_41_8_0.utc \ others\prc_npc_41_8_1.utc \ others\prc_npc_41_9_0.utc \ others\prc_npc_41_9_1.utc \ others\prc_npc_42_0_0.utc \ others\prc_npc_42_0_1.utc \ others\prc_npc_42_1_0.utc \ others\prc_npc_42_1_1.utc \ others\prc_npc_42_10_0.utc \ others\prc_npc_42_10_1.utc \ others\prc_npc_42_2_0.utc \ others\prc_npc_42_2_1.utc \ others\prc_npc_42_3_0.utc \ others\prc_npc_42_3_1.utc \ others\prc_npc_42_4_0.utc \ others\prc_npc_42_4_1.utc \ others\prc_npc_42_5_0.utc \ others\prc_npc_42_5_1.utc \ others\prc_npc_42_6_0.utc \ others\prc_npc_42_6_1.utc \ others\prc_npc_42_7_0.utc \ others\prc_npc_42_7_1.utc \ others\prc_npc_42_8_0.utc \ others\prc_npc_42_8_1.utc \ others\prc_npc_42_9_0.utc \ others\prc_npc_42_9_1.utc \ others\prc_npc_43_0_0.utc \ others\prc_npc_43_0_1.utc \ others\prc_npc_43_1_0.utc \ others\prc_npc_43_1_1.utc \ others\prc_npc_43_10_0.utc \ others\prc_npc_43_10_1.utc \ others\prc_npc_43_2_0.utc \ others\prc_npc_43_2_1.utc \ others\prc_npc_43_3_0.utc \ others\prc_npc_43_3_1.utc \ others\prc_npc_43_4_0.utc \ others\prc_npc_43_4_1.utc \ others\prc_npc_43_5_0.utc \ others\prc_npc_43_5_1.utc \ others\prc_npc_43_6_0.utc \ others\prc_npc_43_6_1.utc \ others\prc_npc_43_7_0.utc \ others\prc_npc_43_7_1.utc \ others\prc_npc_43_8_0.utc \ others\prc_npc_43_8_1.utc \ others\prc_npc_43_9_0.utc \ others\prc_npc_43_9_1.utc \ others\prc_npc_44_0_0.utc \ others\prc_npc_44_0_1.utc \ others\prc_npc_44_1_0.utc \ others\prc_npc_44_1_1.utc \ others\prc_npc_44_10_0.utc \ others\prc_npc_44_10_1.utc \ others\prc_npc_44_2_0.utc \ others\prc_npc_44_2_1.utc \ others\prc_npc_44_3_0.utc \ others\prc_npc_44_3_1.utc \ others\prc_npc_44_4_0.utc \ others\prc_npc_44_4_1.utc \ others\prc_npc_44_5_0.utc \ others\prc_npc_44_5_1.utc \ others\prc_npc_44_6_0.utc \ others\prc_npc_44_6_1.utc \ others\prc_npc_44_7_0.utc \ others\prc_npc_44_7_1.utc \ others\prc_npc_44_8_0.utc \ others\prc_npc_44_8_1.utc \ others\prc_npc_44_9_0.utc \ others\prc_npc_44_9_1.utc \ others\prc_npc_45_0_0.utc \ others\prc_npc_45_0_1.utc \ others\prc_npc_45_1_0.utc \ others\prc_npc_45_1_1.utc \ others\prc_npc_45_10_0.utc \ others\prc_npc_45_10_1.utc \ others\prc_npc_45_2_0.utc \ others\prc_npc_45_2_1.utc \ others\prc_npc_45_3_0.utc \ others\prc_npc_45_3_1.utc \ others\prc_npc_45_4_0.utc \ others\prc_npc_45_4_1.utc \ others\prc_npc_45_5_0.utc \ others\prc_npc_45_5_1.utc \ others\prc_npc_45_6_0.utc \ others\prc_npc_45_6_1.utc \ others\prc_npc_45_7_0.utc \ others\prc_npc_45_7_1.utc \ others\prc_npc_45_8_0.utc \ others\prc_npc_45_8_1.utc \ others\prc_npc_45_9_0.utc \ others\prc_npc_45_9_1.utc \ others\prc_npc_46_0_0.utc \ others\prc_npc_46_0_1.utc \ others\prc_npc_46_1_0.utc \ others\prc_npc_46_1_1.utc \ others\prc_npc_46_10_0.utc \ others\prc_npc_46_10_1.utc \ others\prc_npc_46_2_0.utc \ others\prc_npc_46_2_1.utc \ others\prc_npc_46_3_0.utc \ others\prc_npc_46_3_1.utc \ others\prc_npc_46_4_0.utc \ others\prc_npc_46_4_1.utc \ others\prc_npc_46_5_0.utc \ others\prc_npc_46_5_1.utc \ others\prc_npc_46_6_0.utc \ others\prc_npc_46_6_1.utc \ others\prc_npc_46_7_0.utc \ others\prc_npc_46_7_1.utc \ others\prc_npc_46_8_0.utc \ others\prc_npc_46_8_1.utc \ others\prc_npc_46_9_0.utc \ others\prc_npc_46_9_1.utc \ others\prc_npc_47_0_0.utc \ others\prc_npc_47_0_1.utc \ others\prc_npc_47_1_0.utc \ others\prc_npc_47_1_1.utc \ others\prc_npc_47_10_0.utc \ others\prc_npc_47_10_1.utc \ others\prc_npc_47_2_0.utc \ others\prc_npc_47_2_1.utc \ others\prc_npc_47_3_0.utc \ others\prc_npc_47_3_1.utc \ others\prc_npc_47_4_0.utc \ others\prc_npc_47_4_1.utc \ others\prc_npc_47_5_0.utc \ others\prc_npc_47_5_1.utc \ others\prc_npc_47_6_0.utc \ others\prc_npc_47_6_1.utc \ others\prc_npc_47_7_0.utc \ others\prc_npc_47_7_1.utc \ others\prc_npc_47_8_0.utc \ others\prc_npc_47_8_1.utc \ others\prc_npc_47_9_0.utc \ others\prc_npc_47_9_1.utc \ others\prc_npc_48_0_0.utc \ others\prc_npc_48_0_1.utc \ others\prc_npc_48_1_0.utc \ others\prc_npc_48_1_1.utc \ others\prc_npc_48_10_0.utc \ others\prc_npc_48_10_1.utc \ others\prc_npc_48_2_0.utc \ others\prc_npc_48_2_1.utc \ others\prc_npc_48_3_0.utc \ others\prc_npc_48_3_1.utc \ others\prc_npc_48_4_0.utc \ others\prc_npc_48_4_1.utc \ others\prc_npc_48_5_0.utc \ others\prc_npc_48_5_1.utc \ others\prc_npc_48_6_0.utc \ others\prc_npc_48_6_1.utc \ others\prc_npc_48_7_0.utc \ others\prc_npc_48_7_1.utc \ others\prc_npc_48_8_0.utc \ others\prc_npc_48_8_1.utc \ others\prc_npc_48_9_0.utc \ others\prc_npc_48_9_1.utc \ others\prc_npc_49_0_0.utc \ others\prc_npc_49_0_1.utc \ others\prc_npc_49_1_0.utc \ others\prc_npc_49_1_1.utc \ others\prc_npc_49_10_0.utc \ others\prc_npc_49_10_1.utc \ others\prc_npc_49_2_0.utc \ others\prc_npc_49_2_1.utc \ others\prc_npc_49_3_0.utc \ others\prc_npc_49_3_1.utc \ others\prc_npc_49_4_0.utc \ others\prc_npc_49_4_1.utc \ others\prc_npc_49_5_0.utc \ others\prc_npc_49_5_1.utc \ others\prc_npc_49_6_0.utc \ others\prc_npc_49_6_1.utc \ others\prc_npc_49_7_0.utc \ others\prc_npc_49_7_1.utc \ others\prc_npc_49_8_0.utc \ others\prc_npc_49_8_1.utc \ others\prc_npc_49_9_0.utc \ others\prc_npc_49_9_1.utc \ others\prc_npc_5_0_0.utc \ others\prc_npc_5_0_1.utc \ others\prc_npc_5_1_0.utc \ others\prc_npc_5_1_1.utc \ others\prc_npc_5_10_0.utc \ others\prc_npc_5_10_1.utc \ others\prc_npc_5_2_0.utc \ others\prc_npc_5_2_1.utc \ others\prc_npc_5_3_0.utc \ others\prc_npc_5_3_1.utc \ others\prc_npc_5_4_0.utc \ others\prc_npc_5_4_1.utc \ others\prc_npc_5_5_0.utc \ others\prc_npc_5_5_1.utc \ others\prc_npc_5_6_0.utc \ others\prc_npc_5_6_1.utc \ others\prc_npc_5_7_0.utc \ others\prc_npc_5_7_1.utc \ others\prc_npc_5_8_0.utc \ others\prc_npc_5_8_1.utc \ others\prc_npc_5_9_0.utc \ others\prc_npc_5_9_1.utc \ others\prc_npc_50_0_0.utc \ others\prc_npc_50_0_1.utc \ others\prc_npc_50_1_0.utc \ others\prc_npc_50_1_1.utc \ others\prc_npc_50_10_0.utc \ others\prc_npc_50_10_1.utc \ others\prc_npc_50_2_0.utc \ others\prc_npc_50_2_1.utc \ others\prc_npc_50_3_0.utc \ others\prc_npc_50_3_1.utc \ others\prc_npc_50_4_0.utc \ others\prc_npc_50_4_1.utc \ others\prc_npc_50_5_0.utc \ others\prc_npc_50_5_1.utc \ others\prc_npc_50_6_0.utc \ others\prc_npc_50_6_1.utc \ others\prc_npc_50_7_0.utc \ others\prc_npc_50_7_1.utc \ others\prc_npc_50_8_0.utc \ others\prc_npc_50_8_1.utc \ others\prc_npc_50_9_0.utc \ others\prc_npc_50_9_1.utc \ others\prc_npc_51_0_0.utc \ others\prc_npc_51_0_1.utc \ others\prc_npc_51_1_0.utc \ others\prc_npc_51_1_1.utc \ others\prc_npc_51_10_0.utc \ others\prc_npc_51_10_1.utc \ others\prc_npc_51_2_0.utc \ others\prc_npc_51_2_1.utc \ others\prc_npc_51_3_0.utc \ others\prc_npc_51_3_1.utc \ others\prc_npc_51_4_0.utc \ others\prc_npc_51_4_1.utc \ others\prc_npc_51_5_0.utc \ others\prc_npc_51_5_1.utc \ others\prc_npc_51_6_0.utc \ others\prc_npc_51_6_1.utc \ others\prc_npc_51_7_0.utc \ others\prc_npc_51_7_1.utc \ others\prc_npc_51_8_0.utc \ others\prc_npc_51_8_1.utc \ others\prc_npc_51_9_0.utc \ others\prc_npc_51_9_1.utc \ others\prc_npc_53_0_0.utc \ others\prc_npc_53_0_1.utc \ others\prc_npc_53_1_0.utc \ others\prc_npc_53_1_1.utc \ others\prc_npc_53_10_0.utc \ others\prc_npc_53_10_1.utc \ others\prc_npc_53_2_0.utc \ others\prc_npc_53_2_1.utc \ others\prc_npc_53_3_0.utc \ others\prc_npc_53_3_1.utc \ others\prc_npc_53_4_0.utc \ others\prc_npc_53_4_1.utc \ others\prc_npc_53_5_0.utc \ others\prc_npc_53_5_1.utc \ others\prc_npc_53_6_0.utc \ others\prc_npc_53_6_1.utc \ others\prc_npc_53_7_0.utc \ others\prc_npc_53_7_1.utc \ others\prc_npc_53_8_0.utc \ others\prc_npc_53_8_1.utc \ others\prc_npc_53_9_0.utc \ others\prc_npc_53_9_1.utc \ others\prc_npc_54_0_0.utc \ others\prc_npc_54_0_1.utc \ others\prc_npc_54_1_0.utc \ others\prc_npc_54_1_1.utc \ others\prc_npc_54_10_0.utc \ others\prc_npc_54_10_1.utc \ others\prc_npc_54_2_0.utc \ others\prc_npc_54_2_1.utc \ others\prc_npc_54_3_0.utc \ others\prc_npc_54_3_1.utc \ others\prc_npc_54_4_0.utc \ others\prc_npc_54_4_1.utc \ others\prc_npc_54_5_0.utc \ others\prc_npc_54_5_1.utc \ others\prc_npc_54_6_0.utc \ others\prc_npc_54_6_1.utc \ others\prc_npc_54_7_0.utc \ others\prc_npc_54_7_1.utc \ others\prc_npc_54_8_0.utc \ others\prc_npc_54_8_1.utc \ others\prc_npc_54_9_0.utc \ others\prc_npc_54_9_1.utc \ others\prc_npc_55_0_0.utc \ others\prc_npc_55_0_1.utc \ others\prc_npc_55_1_0.utc \ others\prc_npc_55_1_1.utc \ others\prc_npc_55_10_0.utc \ others\prc_npc_55_10_1.utc \ others\prc_npc_55_2_0.utc \ others\prc_npc_55_2_1.utc \ others\prc_npc_55_3_0.utc \ others\prc_npc_55_3_1.utc \ others\prc_npc_55_4_0.utc \ others\prc_npc_55_4_1.utc \ others\prc_npc_55_5_0.utc \ others\prc_npc_55_5_1.utc \ others\prc_npc_55_6_0.utc \ others\prc_npc_55_6_1.utc \ others\prc_npc_55_7_0.utc \ others\prc_npc_55_7_1.utc \ others\prc_npc_55_8_0.utc \ others\prc_npc_55_8_1.utc \ others\prc_npc_55_9_0.utc \ others\prc_npc_55_9_1.utc \ others\prc_npc_56_0_0.utc \ others\prc_npc_56_0_1.utc \ others\prc_npc_56_1_0.utc \ others\prc_npc_56_1_1.utc \ others\prc_npc_56_10_0.utc \ others\prc_npc_56_10_1.utc \ others\prc_npc_56_2_0.utc \ others\prc_npc_56_2_1.utc \ others\prc_npc_56_3_0.utc \ others\prc_npc_56_3_1.utc \ others\prc_npc_56_4_0.utc \ others\prc_npc_56_4_1.utc \ others\prc_npc_56_5_0.utc \ others\prc_npc_56_5_1.utc \ others\prc_npc_56_6_0.utc \ others\prc_npc_56_6_1.utc \ others\prc_npc_56_7_0.utc \ others\prc_npc_56_7_1.utc \ others\prc_npc_56_8_0.utc \ others\prc_npc_56_8_1.utc \ others\prc_npc_56_9_0.utc \ others\prc_npc_56_9_1.utc \ others\prc_npc_58_0_0.utc \ others\prc_npc_58_0_1.utc \ others\prc_npc_58_1_0.utc \ others\prc_npc_58_1_1.utc \ others\prc_npc_58_10_0.utc \ others\prc_npc_58_10_1.utc \ others\prc_npc_58_2_0.utc \ others\prc_npc_58_2_1.utc \ others\prc_npc_58_3_0.utc \ others\prc_npc_58_3_1.utc \ others\prc_npc_58_4_0.utc \ others\prc_npc_58_4_1.utc \ others\prc_npc_58_5_0.utc \ others\prc_npc_58_5_1.utc \ others\prc_npc_58_6_0.utc \ others\prc_npc_58_6_1.utc \ others\prc_npc_58_7_0.utc \ others\prc_npc_58_7_1.utc \ others\prc_npc_58_8_0.utc \ others\prc_npc_58_8_1.utc \ others\prc_npc_58_9_0.utc \ others\prc_npc_58_9_1.utc \ others\prc_npc_6_0_0.utc \ others\prc_npc_6_0_1.utc \ others\prc_npc_6_1_0.utc \ others\prc_npc_6_1_1.utc \ others\prc_npc_6_10_0.utc \ others\prc_npc_6_10_1.utc \ others\prc_npc_6_2_0.utc \ others\prc_npc_6_2_1.utc \ others\prc_npc_6_3_0.utc \ others\prc_npc_6_3_1.utc \ others\prc_npc_6_4_0.utc \ others\prc_npc_6_4_1.utc \ others\prc_npc_6_5_0.utc \ others\prc_npc_6_5_1.utc \ others\prc_npc_6_6_0.utc \ others\prc_npc_6_6_1.utc \ others\prc_npc_6_7_0.utc \ others\prc_npc_6_7_1.utc \ others\prc_npc_6_8_0.utc \ others\prc_npc_6_8_1.utc \ others\prc_npc_6_9_0.utc \ others\prc_npc_6_9_1.utc \ others\prc_npc_84_0_0.utc \ others\prc_npc_84_0_1.utc \ others\prc_npc_84_1_0.utc \ others\prc_npc_84_1_1.utc \ others\prc_npc_84_10_0.utc \ others\prc_npc_84_10_1.utc \ others\prc_npc_84_2_0.utc \ others\prc_npc_84_2_1.utc \ others\prc_npc_84_3_0.utc \ others\prc_npc_84_3_1.utc \ others\prc_npc_84_4_0.utc \ others\prc_npc_84_4_1.utc \ others\prc_npc_84_5_0.utc \ others\prc_npc_84_5_1.utc \ others\prc_npc_84_6_0.utc \ others\prc_npc_84_6_1.utc \ others\prc_npc_84_7_0.utc \ others\prc_npc_84_7_1.utc \ others\prc_npc_84_8_0.utc \ others\prc_npc_84_8_1.utc \ others\prc_npc_84_9_0.utc \ others\prc_npc_84_9_1.utc \ others\prc_npc_94_0_0.utc \ others\prc_npc_94_0_1.utc \ others\prc_npc_94_1_0.utc \ others\prc_npc_94_1_1.utc \ others\prc_npc_94_10_0.utc \ others\prc_npc_94_10_1.utc \ others\prc_npc_94_2_0.utc \ others\prc_npc_94_2_1.utc \ others\prc_npc_94_3_0.utc \ others\prc_npc_94_3_1.utc \ others\prc_npc_94_4_0.utc \ others\prc_npc_94_4_1.utc \ others\prc_npc_94_5_0.utc \ others\prc_npc_94_5_1.utc \ others\prc_npc_94_6_0.utc \ others\prc_npc_94_6_1.utc \ others\prc_npc_94_7_0.utc \ others\prc_npc_94_7_1.utc \ others\prc_npc_94_8_0.utc \ others\prc_npc_94_8_1.utc \ others\prc_npc_94_9_0.utc \ others\prc_npc_94_9_1.utc \ others\prc_npc_96_0_0.utc \ others\prc_npc_96_0_1.utc \ others\prc_npc_96_1_0.utc \ others\prc_npc_96_1_1.utc \ others\prc_npc_96_10_0.utc \ others\prc_npc_96_10_1.utc \ others\prc_npc_96_2_0.utc \ others\prc_npc_96_2_1.utc \ others\prc_npc_96_3_0.utc \ others\prc_npc_96_3_1.utc \ others\prc_npc_96_4_0.utc \ others\prc_npc_96_4_1.utc \ others\prc_npc_96_5_0.utc \ others\prc_npc_96_5_1.utc \ others\prc_npc_96_6_0.utc \ others\prc_npc_96_6_1.utc \ others\prc_npc_96_7_0.utc \ others\prc_npc_96_7_1.utc \ others\prc_npc_96_8_0.utc \ others\prc_npc_96_8_1.utc \ others\prc_npc_96_9_0.utc \ others\prc_npc_96_9_1.utc \ others\prc_osy_claw.uti \ others\prc_osy_hide.uti \ others\prc_pm_mage1.utc \ others\prc_pm_mage10.utc \ others\prc_pm_mage11.utc \ others\prc_pm_mage2.utc \ others\prc_pm_mage3.utc \ others\prc_pm_mage4.utc \ others\prc_pm_mage5.utc \ others\prc_pm_mage6.utc \ others\prc_pm_mage7.utc \ others\prc_pm_mage8.utc \ others\prc_pm_mage9.utc \ others\prc_pnp_familiar.uti \ others\prc_pnpfam_bat.utc \ others\prc_pnpfam_cat.utc \ others\prc_pnpfam_hawk.utc \ others\prc_pnpfam_imp.utc \ others\prc_pnpfam_owl.utc \ others\prc_pnpfam_qust.utc \ others\prc_pnpfam_rat.utc \ others\prc_pnpfam_raven.utc \ others\prc_pnpfam_snake.utc \ others\prc_pnpfam_varg.utc \ others\prc_pnpfam_weasl.utc \ others\prc_pony_hoof01.uti \ others\prc_pyro_lash_wh.uti \ others\prc_raks_bite_c.uti \ others\prc_raks_bite_d.uti \ others\prc_raks_bite_f.uti \ others\prc_raks_bite_g.uti \ others\prc_raks_bite_h.uti \ others\prc_raks_bite_l.uti \ others\prc_raks_bite_m.uti \ others\prc_raks_bite_s.uti \ others\prc_raks_bite_t.uti \ others\prc_rat_swarm.utc \ others\prc_rdd_bite_c.uti \ others\prc_rdd_bite_d.uti \ others\prc_rdd_bite_f.uti \ others\prc_rdd_bite_g.uti \ others\prc_rdd_bite_h.uti \ others\prc_rdd_bite_l.uti \ others\prc_rdd_bite_m.uti \ others\prc_rdd_bite_s.uti \ others\prc_rdd_bite_t.uti \ others\prc_rdd_tail_c.uti \ others\prc_rdd_tail_g.uti \ others\prc_rdd_tail_h.uti \ others\prc_rdd_tail_l.uti \ others\prc_rdd_wing_c.uti \ others\prc_rdd_wing_g.uti \ others\prc_rdd_wing_h.uti \ others\prc_rdd_wing_l.uti \ others\prc_rdd_wing_m.uti \ others\prc_rune_1.uti \ others\prc_s_airlarge.utc \ others\prc_s_earthlarge.utc \ others\prc_s_firelarge.utc \ others\prc_s_waterlarge.utc \ others\prc_s_wolf002.utc \ others\prc_s_wolf003.utc \ others\prc_s_wolf004.utc \ others\prc_s_wolf005.utc \ others\prc_sannish.uti \ others\prc_scr_0.uti \ others\prc_scr_1.uti \ others\prc_scr_100.uti \ others\prc_scr_1000.uti \ others\prc_scr_1002.uti \ others\prc_scr_1004.uti \ others\prc_scr_1006.uti \ others\prc_scr_1008.uti \ others\prc_scr_101.uti \ others\prc_scr_1010.uti \ others\prc_scr_1012.uti \ others\prc_scr_1014.uti \ others\prc_scr_1015.uti \ others\prc_scr_1016.uti \ others\prc_scr_1019.uti \ others\prc_scr_1021.uti \ others\prc_scr_1022.uti \ others\prc_scr_1023.uti \ others\prc_scr_1024.uti \ others\prc_scr_1025.uti \ others\prc_scr_1026.uti \ others\prc_scr_1027.uti \ others\prc_scr_1028.uti \ others\prc_scr_1029.uti \ others\prc_scr_103.uti \ others\prc_scr_1030.uti \ others\prc_scr_1031.uti \ others\prc_scr_1033.uti \ others\prc_scr_1035.uti \ others\prc_scr_1036.uti \ others\prc_scr_1037.uti \ others\prc_scr_104.uti \ others\prc_scr_1040.uti \ others\prc_scr_1042.uti \ others\prc_scr_1044.uti \ others\prc_scr_1046.uti \ others\prc_scr_1047.uti \ others\prc_scr_1049.uti \ others\prc_scr_105.uti \ others\prc_scr_1051.uti \ others\prc_scr_1053.uti \ others\prc_scr_1054.uti \ others\prc_scr_1056.uti \ others\prc_scr_1058.uti \ others\prc_scr_106.uti \ others\prc_scr_1060.uti \ others\prc_scr_1062.uti \ others\prc_scr_1064.uti \ others\prc_scr_1065.uti \ others\prc_scr_1066.uti \ others\prc_scr_1067.uti \ others\prc_scr_1070.uti \ others\prc_scr_1071.uti \ others\prc_scr_1072.uti \ others\prc_scr_1073.uti \ others\prc_scr_1074.uti \ others\prc_scr_1075.uti \ others\prc_scr_1077.uti \ others\prc_scr_1079.uti \ others\prc_scr_108.uti \ others\prc_scr_1080.uti \ others\prc_scr_1081.uti \ others\prc_scr_1084.uti \ others\prc_scr_1085.uti \ others\prc_scr_1087.uti \ others\prc_scr_1089.uti \ others\prc_scr_1092.uti \ others\prc_scr_1093.uti \ others\prc_scr_1094.uti \ others\prc_scr_1096.uti \ others\prc_scr_1098.uti \ others\prc_scr_11.uti \ others\prc_scr_110.uti \ others\prc_scr_1101.uti \ others\prc_scr_1103.uti \ others\prc_scr_1106.uti \ others\prc_scr_1109.uti \ others\prc_scr_1110.uti \ others\prc_scr_1112.uti \ others\prc_scr_1114.uti \ others\prc_scr_1115.uti \ others\prc_scr_1116.uti \ others\prc_scr_1117.uti \ others\prc_scr_1118.uti \ others\prc_scr_1120.uti \ others\prc_scr_1122.uti \ others\prc_scr_1123.uti \ others\prc_scr_1125.uti \ others\prc_scr_1127.uti \ others\prc_scr_1129.uti \ others\prc_scr_113.uti \ others\prc_scr_1130.uti \ others\prc_scr_1131.uti \ others\prc_scr_1132.uti \ others\prc_scr_1133.uti \ others\prc_scr_1136.uti \ others\prc_scr_1137.uti \ others\prc_scr_1138.uti \ others\prc_scr_1139.uti \ others\prc_scr_1145.uti \ others\prc_scr_1147.uti \ others\prc_scr_1149.uti \ others\prc_scr_115.uti \ others\prc_scr_1150.uti \ others\prc_scr_1151.uti \ others\prc_scr_1153.uti \ others\prc_scr_1154.uti \ others\prc_scr_1155.uti \ others\prc_scr_1156.uti \ others\prc_scr_1157.uti \ others\prc_scr_1158.uti \ others\prc_scr_1159.uti \ others\prc_scr_1160.uti \ others\prc_scr_1161.uti \ others\prc_scr_1162.uti \ others\prc_scr_1163.uti \ others\prc_scr_1164.uti \ others\prc_scr_1165.uti \ others\prc_scr_1166.uti \ others\prc_scr_1167.uti \ others\prc_scr_1168.uti \ others\prc_scr_1169.uti \ others\prc_scr_1170.uti \ others\prc_scr_1172.uti \ others\prc_scr_1173.uti \ others\prc_scr_1174.uti \ others\prc_scr_1175.uti \ others\prc_scr_1176.uti \ others\prc_scr_1177.uti \ others\prc_scr_1178.uti \ others\prc_scr_1179.uti \ others\prc_scr_118.uti \ others\prc_scr_1180.uti \ others\prc_scr_1181.uti \ others\prc_scr_1182.uti \ others\prc_scr_1183.uti \ others\prc_scr_1184.uti \ others\prc_scr_1185.uti \ others\prc_scr_1186.uti \ others\prc_scr_1187.uti \ others\prc_scr_1188.uti \ others\prc_scr_1189.uti \ others\prc_scr_119.uti \ others\prc_scr_1190.uti \ others\prc_scr_1191.uti \ others\prc_scr_1192.uti \ others\prc_scr_1193.uti \ others\prc_scr_1195.uti \ others\prc_scr_1197.uti \ others\prc_scr_1198.uti \ others\prc_scr_1199.uti \ others\prc_scr_120.uti \ others\prc_scr_1201.uti \ others\prc_scr_1202.uti \ others\prc_scr_1203.uti \ others\prc_scr_1204.uti \ others\prc_scr_1206.uti \ others\prc_scr_1207.uti \ others\prc_scr_1208.uti \ others\prc_scr_1209.uti \ others\prc_scr_121.uti \ others\prc_scr_1210.uti \ others\prc_scr_1211.uti \ others\prc_scr_1212.uti \ others\prc_scr_1216.uti \ others\prc_scr_1217.uti \ others\prc_scr_1218.uti \ others\prc_scr_1219.uti \ others\prc_scr_122.uti \ others\prc_scr_1220.uti \ others\prc_scr_1221.uti \ others\prc_scr_1222.uti \ others\prc_scr_1223.uti \ others\prc_scr_1224.uti \ others\prc_scr_1225.uti \ others\prc_scr_1226.uti \ others\prc_scr_1227.uti \ others\prc_scr_1228.uti \ others\prc_scr_1229.uti \ others\prc_scr_123.uti \ others\prc_scr_1230.uti \ others\prc_scr_1231.uti \ others\prc_scr_1232.uti \ others\prc_scr_1233.uti \ others\prc_scr_1234.uti \ others\prc_scr_1235.uti \ others\prc_scr_1236.uti \ others\prc_scr_1237.uti \ others\prc_scr_1238.uti \ others\prc_scr_1239.uti \ others\prc_scr_1240.uti \ others\prc_scr_1241.uti \ others\prc_scr_1242.uti \ others\prc_scr_1251.uti \ others\prc_scr_1252.uti \ others\prc_scr_1253.uti \ others\prc_scr_1254.uti \ others\prc_scr_1255.uti \ others\prc_scr_1256.uti \ others\prc_scr_1257.uti \ others\prc_scr_1258.uti \ others\prc_scr_1259.uti \ others\prc_scr_126.uti \ others\prc_scr_1261.uti \ others\prc_scr_1262.uti \ others\prc_scr_1263.uti \ others\prc_scr_1264.uti \ others\prc_scr_1265.uti \ others\prc_scr_1266.uti \ others\prc_scr_1267.uti \ others\prc_scr_1268.uti \ others\prc_scr_127.uti \ others\prc_scr_1270.uti \ others\prc_scr_1271.uti \ others\prc_scr_1272.uti \ others\prc_scr_1273.uti \ others\prc_scr_1274.uti \ others\prc_scr_1275.uti \ others\prc_scr_1276.uti \ others\prc_scr_1277.uti \ others\prc_scr_1278.uti \ others\prc_scr_128.uti \ others\prc_scr_1280.uti \ others\prc_scr_1281.uti \ others\prc_scr_1282.uti \ others\prc_scr_1283.uti \ others\prc_scr_1284.uti \ others\prc_scr_1285.uti \ others\prc_scr_1286.uti \ others\prc_scr_1287.uti \ others\prc_scr_1288.uti \ others\prc_scr_1289.uti \ others\prc_scr_129.uti \ others\prc_scr_1290.uti \ others\prc_scr_1291.uti \ others\prc_scr_1292.uti \ others\prc_scr_1293.uti \ others\prc_scr_1294.uti \ others\prc_scr_1295.uti \ others\prc_scr_1296.uti \ others\prc_scr_1297.uti \ others\prc_scr_1299.uti \ others\prc_scr_130.uti \ others\prc_scr_1300.uti \ others\prc_scr_1301.uti \ others\prc_scr_1302.uti \ others\prc_scr_1303.uti \ others\prc_scr_1304.uti \ others\prc_scr_1305.uti \ others\prc_scr_1306.uti \ others\prc_scr_1307.uti \ others\prc_scr_1308.uti \ others\prc_scr_1309.uti \ others\prc_scr_131.uti \ others\prc_scr_1310.uti \ others\prc_scr_1311.uti \ others\prc_scr_1312.uti \ others\prc_scr_1313.uti \ others\prc_scr_1314.uti \ others\prc_scr_1315.uti \ others\prc_scr_1316.uti \ others\prc_scr_1317.uti \ others\prc_scr_1318.uti \ others\prc_scr_1319.uti \ others\prc_scr_1320.uti \ others\prc_scr_1321.uti \ others\prc_scr_1322.uti \ others\prc_scr_1323.uti \ others\prc_scr_1324.uti \ others\prc_scr_1325.uti \ others\prc_scr_1326.uti \ others\prc_scr_1327.uti \ others\prc_scr_1328.uti \ others\prc_scr_1329.uti \ others\prc_scr_133.uti \ others\prc_scr_1330.uti \ others\prc_scr_1331.uti \ others\prc_scr_1332.uti \ others\prc_scr_1333.uti \ others\prc_scr_1334.uti \ others\prc_scr_1335.uti \ others\prc_scr_1336.uti \ others\prc_scr_1337.uti \ others\prc_scr_1343.uti \ others\prc_scr_1344.uti \ others\prc_scr_1345.uti \ others\prc_scr_1346.uti \ others\prc_scr_1347.uti \ others\prc_scr_1348.uti \ others\prc_scr_1349.uti \ others\prc_scr_1351.uti \ others\prc_scr_1352.uti \ others\prc_scr_1353.uti \ others\prc_scr_1354.uti \ others\prc_scr_1355.uti \ others\prc_scr_1356.uti \ others\prc_scr_1357.uti \ others\prc_scr_1358.uti \ others\prc_scr_1359.uti \ others\prc_scr_136.uti \ others\prc_scr_1360.uti \ others\prc_scr_1361.uti \ others\prc_scr_1362.uti \ others\prc_scr_1365.uti \ others\prc_scr_1369.uti \ others\prc_scr_137.uti \ others\prc_scr_1370.uti \ others\prc_scr_1371.uti \ others\prc_scr_1373.uti \ others\prc_scr_1374.uti \ others\prc_scr_1375.uti \ others\prc_scr_1376.uti \ others\prc_scr_1377.uti \ others\prc_scr_1378.uti \ others\prc_scr_1379.uti \ others\prc_scr_1380.uti \ others\prc_scr_1382.uti \ others\prc_scr_1383.uti \ others\prc_scr_1384.uti \ others\prc_scr_1385.uti \ others\prc_scr_1386.uti \ others\prc_scr_1387.uti \ others\prc_scr_1388.uti \ others\prc_scr_139.uti \ others\prc_scr_14.uti \ others\prc_scr_140.uti \ others\prc_scr_1416.uti \ others\prc_scr_1417.uti \ others\prc_scr_1418.uti \ others\prc_scr_1419.uti \ others\prc_scr_142.uti \ others\prc_scr_1420.uti \ others\prc_scr_1421.uti \ others\prc_scr_1422.uti \ others\prc_scr_1423.uti \ others\prc_scr_1424.uti \ others\prc_scr_1425.uti \ others\prc_scr_1426.uti \ others\prc_scr_1427.uti \ others\prc_scr_1428.uti \ others\prc_scr_1429.uti \ others\prc_scr_143.uti \ others\prc_scr_1430.uti \ others\prc_scr_1431.uti \ others\prc_scr_1432.uti \ others\prc_scr_1433.uti \ others\prc_scr_1434.uti \ others\prc_scr_1435.uti \ others\prc_scr_1436.uti \ others\prc_scr_1437.uti \ others\prc_scr_1438.uti \ others\prc_scr_1439.uti \ others\prc_scr_144.uti \ others\prc_scr_1440.uti \ others\prc_scr_1441.uti \ others\prc_scr_1442.uti \ others\prc_scr_1443.uti \ others\prc_scr_1444.uti \ others\prc_scr_1445.uti \ others\prc_scr_1446.uti \ others\prc_scr_1447.uti \ others\prc_scr_1448.uti \ others\prc_scr_1449.uti \ others\prc_scr_1450.uti \ others\prc_scr_1451.uti \ others\prc_scr_1452.uti \ others\prc_scr_1453.uti \ others\prc_scr_1454.uti \ others\prc_scr_1455.uti \ others\prc_scr_147.uti \ others\prc_scr_148.uti \ others\prc_scr_149.uti \ others\prc_scr_15.uti \ others\prc_scr_150.uti \ others\prc_scr_151.uti \ others\prc_scr_152.uti \ others\prc_scr_153.uti \ others\prc_scr_154.uti \ others\prc_scr_155.uti \ others\prc_scr_157.uti \ others\prc_scr_158.uti \ others\prc_scr_159.uti \ others\prc_scr_160.uti \ others\prc_scr_161.uti \ others\prc_scr_162.uti \ others\prc_scr_164.uti \ others\prc_scr_167.uti \ others\prc_scr_168.uti \ others\prc_scr_169.uti \ others\prc_scr_170.uti \ others\prc_scr_171.uti \ others\prc_scr_172.uti \ others\prc_scr_179.uti \ others\prc_scr_18.uti \ others\prc_scr_180.uti \ others\prc_scr_182.uti \ others\prc_scr_183.uti \ others\prc_scr_184.uti \ others\prc_scr_187.uti \ others\prc_scr_188.uti \ others\prc_scr_189.uti \ others\prc_scr_190.uti \ others\prc_scr_192.uti \ others\prc_scr_195.uti \ others\prc_scr_197.uti \ others\prc_scr_198.uti \ others\prc_scr_2.uti \ others\prc_scr_20.uti \ others\prc_scr_200.uti \ others\prc_scr_201.uti \ others\prc_scr_204.uti \ others\prc_scr_205.uti \ others\prc_scr_206.uti \ others\prc_scr_207.uti \ others\prc_scr_208.uti \ others\prc_scr_209.uti \ others\prc_scr_210.uti \ others\prc_scr_211.uti \ others\prc_scr_212.uti \ others\prc_scr_213.uti \ others\prc_scr_215.uti \ others\prc_scr_216.uti \ others\prc_scr_219.uti \ others\prc_scr_221.uti \ others\prc_scr_223.uti \ others\prc_scr_224.uti \ others\prc_scr_226.uti \ others\prc_scr_227.uti \ others\prc_scr_228.uti \ others\prc_scr_229.uti \ others\prc_scr_230.uti \ others\prc_scr_231.uti \ others\prc_scr_232.uti \ others\prc_scr_233.uti \ others\prc_scr_234.uti \ others\prc_scr_236.uti \ others\prc_scr_238.uti \ others\prc_scr_239.uti \ others\prc_scr_240.uti \ others\prc_scr_241.uti \ others\prc_scr_242.uti \ others\prc_scr_243.uti \ others\prc_scr_244.uti \ others\prc_scr_245.uti \ others\prc_scr_246.uti \ others\prc_scr_247.uti \ others\prc_scr_249.uti \ others\prc_scr_25.uti \ others\prc_scr_250.uti \ others\prc_scr_251.uti \ others\prc_scr_253.uti \ others\prc_scr_254.uti \ others\prc_scr_255.uti \ others\prc_scr_257.uti \ others\prc_scr_259.uti \ others\prc_scr_260.uti \ others\prc_scr_261.uti \ others\prc_scr_262.uti \ others\prc_scr_264.uti \ others\prc_scr_265.uti \ others\prc_scr_266.uti \ others\prc_scr_267.uti \ others\prc_scr_268.uti \ others\prc_scr_269.uti \ others\prc_scr_270.uti \ others\prc_scr_271.uti \ others\prc_scr_272.uti \ others\prc_scr_273.uti \ others\prc_scr_274.uti \ others\prc_scr_275.uti \ others\prc_scr_277.uti \ others\prc_scr_278.uti \ others\prc_scr_279.uti \ others\prc_scr_28.uti \ others\prc_scr_280.uti \ others\prc_scr_281.uti \ others\prc_scr_282.uti \ others\prc_scr_287.uti \ others\prc_scr_288.uti \ others\prc_scr_291.uti \ others\prc_scr_294.uti \ others\prc_scr_303.uti \ others\prc_scr_304.uti \ others\prc_scr_305.uti \ others\prc_scr_307.uti \ others\prc_scr_308.uti \ others\prc_scr_31.uti \ others\prc_scr_310.uti \ others\prc_scr_311.uti \ others\prc_scr_314.uti \ others\prc_scr_316.uti \ others\prc_scr_321.uti \ others\prc_scr_322.uti \ others\prc_scr_323.uti \ others\prc_scr_324.uti \ others\prc_scr_326.uti \ others\prc_scr_327.uti \ others\prc_scr_33.uti \ others\prc_scr_345.uti \ others\prc_scr_346.uti \ others\prc_scr_347.uti \ others\prc_scr_348.uti \ others\prc_scr_349.uti \ others\prc_scr_35.uti \ others\prc_scr_350.uti \ others\prc_scr_351.uti \ others\prc_scr_352.uti \ others\prc_scr_353.uti \ others\prc_scr_354.uti \ others\prc_scr_355.uti \ others\prc_scr_356.uti \ others\prc_scr_357.uti \ others\prc_scr_358.uti \ others\prc_scr_360.uti \ others\prc_scr_361.uti \ others\prc_scr_362.uti \ others\prc_scr_363.uti \ others\prc_scr_364.uti \ others\prc_scr_365.uti \ others\prc_scr_366.uti \ others\prc_scr_367.uti \ others\prc_scr_368.uti \ others\prc_scr_369.uti \ others\prc_scr_37.uti \ others\prc_scr_370.uti \ others\prc_scr_371.uti \ others\prc_scr_372.uti \ others\prc_scr_373.uti \ others\prc_scr_374.uti \ others\prc_scr_375.uti \ others\prc_scr_376.uti \ others\prc_scr_377.uti \ others\prc_scr_378.uti \ others\prc_scr_379.uti \ others\prc_scr_380.uti \ others\prc_scr_381.uti \ others\prc_scr_382.uti \ others\prc_scr_383.uti \ others\prc_scr_384.uti \ others\prc_scr_385.uti \ others\prc_scr_386.uti \ others\prc_scr_387.uti \ others\prc_scr_388.uti \ others\prc_scr_389.uti \ others\prc_scr_390.uti \ others\prc_scr_391.uti \ others\prc_scr_392.uti \ others\prc_scr_393.uti \ others\prc_scr_394.uti \ others\prc_scr_398.uti \ others\prc_scr_399.uti \ others\prc_scr_40.uti \ others\prc_scr_410.uti \ others\prc_scr_426.uti \ others\prc_scr_428.uti \ others\prc_scr_43.uti \ others\prc_scr_450.uti \ others\prc_scr_451.uti \ others\prc_scr_452.uti \ others\prc_scr_453.uti \ others\prc_scr_454.uti \ others\prc_scr_455.uti \ others\prc_scr_456.uti \ others\prc_scr_457.uti \ others\prc_scr_458.uti \ others\prc_scr_459.uti \ others\prc_scr_46.uti \ others\prc_scr_460.uti \ others\prc_scr_461.uti \ others\prc_scr_462.uti \ others\prc_scr_463.uti \ others\prc_scr_464.uti \ others\prc_scr_465.uti \ others\prc_scr_466.uti \ others\prc_scr_467.uti \ others\prc_scr_468.uti \ others\prc_scr_469.uti \ others\prc_scr_470.uti \ others\prc_scr_471.uti \ others\prc_scr_472.uti \ others\prc_scr_473.uti \ others\prc_scr_474.uti \ others\prc_scr_476.uti \ others\prc_scr_477.uti \ others\prc_scr_478.uti \ others\prc_scr_479.uti \ others\prc_scr_48.uti \ others\prc_scr_480.uti \ others\prc_scr_481.uti \ others\prc_scr_482.uti \ others\prc_scr_483.uti \ others\prc_scr_484.uti \ others\prc_scr_486.uti \ others\prc_scr_49.uti \ others\prc_scr_5.uti \ others\prc_scr_50.uti \ others\prc_scr_52.uti \ others\prc_scr_54.uti \ others\prc_scr_546.uti \ others\prc_scr_55.uti \ others\prc_scr_551.uti \ others\prc_scr_553.uti \ others\prc_scr_554.uti \ others\prc_scr_555.uti \ others\prc_scr_556.uti \ others\prc_scr_557.uti \ others\prc_scr_558.uti \ others\prc_scr_559.uti \ others\prc_scr_560.uti \ others\prc_scr_561.uti \ others\prc_scr_566.uti \ others\prc_scr_567.uti \ others\prc_scr_569.uti \ others\prc_scr_57.uti \ others\prc_scr_60.uti \ others\prc_scr_63.uti \ others\prc_scr_66.uti \ others\prc_scr_68.uti \ others\prc_scr_69.uti \ others\prc_scr_72.uti \ others\prc_scr_75.uti \ others\prc_scr_76.uti \ others\prc_scr_77.uti \ others\prc_scr_78.uti \ others\prc_scr_8.uti \ others\prc_scr_81.uti \ others\prc_scr_84.uti \ others\prc_scr_86.uti \ others\prc_scr_865.uti \ others\prc_scr_868.uti \ others\prc_scr_87.uti \ others\prc_scr_871.uti \ others\prc_scr_874.uti \ others\prc_scr_877.uti \ others\prc_scr_88.uti \ others\prc_scr_880.uti \ others\prc_scr_881.uti \ others\prc_scr_884.uti \ others\prc_scr_888.uti \ others\prc_scr_89.uti \ others\prc_scr_890.uti \ others\prc_scr_892.uti \ others\prc_scr_894.uti \ others\prc_scr_896.uti \ others\prc_scr_898.uti \ others\prc_scr_899.uti \ others\prc_scr_9.uti \ others\prc_scr_90.uti \ others\prc_scr_900.uti \ others\prc_scr_901.uti \ others\prc_scr_903.uti \ others\prc_scr_904.uti \ others\prc_scr_905.uti \ others\prc_scr_906.uti \ others\prc_scr_907.uti \ others\prc_scr_908.uti \ others\prc_scr_909.uti \ others\prc_scr_910.uti \ others\prc_scr_911.uti \ others\prc_scr_912.uti \ others\prc_scr_913.uti \ others\prc_scr_92.uti \ others\prc_scr_928.uti \ others\prc_scr_929.uti \ others\prc_scr_930.uti \ others\prc_scr_931.uti \ others\prc_scr_932.uti \ others\prc_scr_933.uti \ others\prc_scr_934.uti \ others\prc_scr_935.uti \ others\prc_scr_936.uti \ others\prc_scr_937.uti \ others\prc_scr_938.uti \ others\prc_scr_939.uti \ others\prc_scr_94.uti \ others\prc_scr_940.uti \ others\prc_scr_941.uti \ others\prc_scr_942.uti \ others\prc_scr_943.uti \ others\prc_scr_944.uti \ others\prc_scr_945.uti \ others\prc_scr_946.uti \ others\prc_scr_947.uti \ others\prc_scr_948.uti \ others\prc_scr_95.uti \ others\prc_scr_950.uti \ others\prc_scr_951.uti \ others\prc_scr_952.uti \ others\prc_scr_954.uti \ others\prc_scr_955.uti \ others\prc_scr_956.uti \ others\prc_scr_957.uti \ others\prc_scr_959.uti \ others\prc_scr_960.uti \ others\prc_scr_961.uti \ others\prc_scr_962.uti \ others\prc_scr_965.uti \ others\prc_scr_966.uti \ others\prc_scr_967.uti \ others\prc_scr_968.uti \ others\prc_scr_969.uti \ others\prc_scr_970.uti \ others\prc_scr_971.uti \ others\prc_scr_972.uti \ others\prc_scr_973.uti \ others\prc_scr_974.uti \ others\prc_scr_975.uti \ others\prc_scr_976.uti \ others\prc_scr_977.uti \ others\prc_scr_978.uti \ others\prc_scr_979.uti \ others\prc_scr_98.uti \ others\prc_scr_980.uti \ others\prc_scr_981.uti \ others\prc_scr_982.uti \ others\prc_scr_983.uti \ others\prc_scr_984.uti \ others\prc_scr_986.uti \ others\prc_scr_988.uti \ others\prc_scr_99.uti \ others\prc_scr_990.uti \ others\prc_scr_991.uti \ others\prc_scr_992.uti \ others\prc_scr_993.uti \ others\prc_scr_994.uti \ others\prc_scr_995.uti \ others\prc_scr_997.uti \ others\prc_scrolls.utm \ others\prc_serparrow.uti \ others\prc_serpbolt.uti \ others\prc_serpdart.uti \ others\prc_shambmound.utc \ others\prc_shamn_cat.utc \ others\prc_shd_animcon.uti \ others\prc_shd_animgarg.utc \ others\prc_shd_animhuge.utc \ others\prc_shftr_gore_c.uti \ others\prc_shftr_gore_d.uti \ others\prc_shftr_gore_f.uti \ others\prc_shftr_gore_g.uti \ others\prc_shftr_gore_h.uti \ others\prc_shftr_gore_l.uti \ others\prc_shftr_gore_m.uti \ others\prc_shftr_gore_s.uti \ others\prc_shftr_gore_t.uti \ others\prc_sk_mblade_bs.uti \ others\prc_sk_mblade_ls.uti \ others\prc_sk_mblade_ss.uti \ others\prc_sk_mblade_th.uti \ others\prc_skelbear.utc \ others\prc_skelhide.uti \ others\prc_skulltalis.uti \ others\prc_slam_algoid.uti \ others\prc_spirit_weapn.utc \ others\prc_sprtwp_armor.uti \ others\prc_sprtwpn_hide.uti \ others\prc_sprtwpn_slam.uti \ others\prc_str_lookup.utw \ others\prc_sum_andro.utc \ others\prc_sum_bonet.utc \ others\prc_sum_bonewar.utc \ others\prc_sum_cornugon.utc \ others\prc_sum_dbl.utc \ others\prc_sum_dk.utc \ others\prc_sum_dretch.utc \ others\prc_sum_gelugon.utc \ others\prc_sum_glabrezu.utc \ others\prc_sum_grav.utc \ others\prc_sum_hamatula.utc \ others\prc_sum_lamhide.uti \ others\prc_sum_lammasu.utc \ others\prc_sum_lemure.utc \ others\prc_sum_lion.utc \ others\prc_sum_mohrg.utc \ others\prc_sum_osyluth.utc \ others\prc_sum_sklch.utc \ others\prc_sum_treant.utc \ others\prc_sum_treant.uti \ others\prc_sum_unicorn.utc \ others\prc_sum_unihide.uti \ others\prc_sum_vamp1.utc \ others\prc_sum_vamp2.utc \ others\prc_sum_wight.utc \ others\prc_sum_zlord.utc \ others\prc_tana_bite_c.uti \ others\prc_tana_bite_d.uti \ others\prc_tana_bite_f.uti \ others\prc_tana_bite_g.uti \ others\prc_tana_bite_h.uti \ others\prc_tana_bite_l.uti \ others\prc_tana_bite_m.uti \ others\prc_tana_bite_s.uti \ others\prc_tana_bite_t.uti \ others\prc_target.uti \ others\prc_temptation.utc \ others\prc_terran_brndy.uti \ others\prc_tn_dbl.uti \ others\prc_tn_dk.uti \ others\prc_tn_fthug.utc \ others\prc_to_mohrg.utc \ others\prc_to_mummy.utc \ others\prc_to_nighthide.uti \ others\prc_to_nightwing.utc \ others\prc_tplagueswarm.utc \ others\prc_troll_bite_c.uti \ others\prc_troll_bite_d.uti \ others\prc_troll_bite_f.uti \ others\prc_troll_bite_g.uti \ others\prc_troll_bite_h.uti \ others\prc_troll_bite_l.uti \ others\prc_troll_bite_m.uti \ others\prc_troll_bite_s.uti \ others\prc_troll_bite_t.uti \ others\prc_true_svrtng.uti \ others\prc_true_svrtngg.uti \ others\prc_unarmed_b.uti \ others\prc_unarmed_p.uti \ others\prc_unarmed_s.uti \ others\prc_unarmed_sp.uti \ others\prc_uttertoken.uti \ others\prc_vampdrain.mdl \ others\prc_viper.utc \ others\prc_vodare.uti \ others\prc_vtth_bite_c.uti \ others\prc_vtth_bite_g.uti \ others\prc_vtth_bite_h.uti \ others\prc_vtth_bite_l.uti \ others\prc_vtth_bite_m.uti \ others\prc_vtth_bite_s.uti \ others\prc_vtth_bite_t.uti \ others\prc_walliron.utp \ others\prc_warf_slam_c.uti \ others\prc_warf_slam_g.uti \ others\prc_warf_slam_h.uti \ others\prc_warf_slam_l.uti \ others\prc_warf_slam_m.uti \ others\prc_warf_slam_s.uti \ others\prc_warf_slam_t.uti \ others\prc_wblnn001.uti \ others\prc_wblph001.uti \ others\prc_wblpl001.uti \ others\prc_wf_admtbody.uti \ others\prc_wf_compbody.uti \ others\prc_wf_feats.uti \ others\prc_wf_helmadmt.uti \ others\prc_wf_helmhead.uti \ others\prc_wf_helmmith.uti \ others\prc_wf_helmwood.uti \ others\prc_wf_mithbody.uti \ others\prc_wf_unacbody.uti \ others\prc_wf_woodbody.uti \ others\prc_wol_aradros.uti \ others\prc_wol_arik.uti \ others\prc_wol_blackrzr.uti \ others\prc_wol_blckarch.uti \ others\prc_wol_btevstar.uti \ others\prc_wol_bully.uti \ others\prc_wol_calad.uti \ others\prc_wol_corals.uti \ others\prc_wol_cptmortm.uti \ others\prc_wol_crimruin.uti \ others\prc_wol_devious.uti \ others\prc_wol_direwind.uti \ others\prc_wol_divspark.uti \ others\prc_wol_dsrtwind.uti \ others\prc_wol_durind.uti \ others\prc_wol_dwtob.uti \ others\prc_wol_dymond.uti \ others\prc_wol_eventide.uti \ others\prc_wol_exordius.uti \ others\prc_wol_faithful.uti \ others\prc_wol_fiendkll.uti \ others\prc_wol_flay.uti \ others\prc_wol_flmcstr.uti \ others\prc_wol_fullmoon.uti \ others\prc_wol_guurgal.uti \ others\prc_wol_hillcrus.uti \ others\prc_wol_infil.uti \ others\prc_wol_kamate.uti \ others\prc_wol_lastcit.uti \ others\prc_wol_lipeng.uti \ others\prc_wol_lorestlr.uti \ others\prc_wol_mindspli.uti \ others\prc_wol_notched.uti \ others\prc_wol_quickspr.uti \ others\prc_wol_ramthene.uti \ others\prc_wol_ravenknd.uti \ others\prc_wol_scales.uti \ others\prc_wol_shishio.uti \ others\prc_wol_simplebw.uti \ others\prc_wol_stalker.uti \ others\prc_wol_steadfst.uti \ others\prc_wol_sunsword.uti \ others\prc_wol_supernal.uti \ others\prc_wol_thaas.uti \ others\prc_wol_tigerfng.uti \ others\prc_wol_treebro.uti \ others\prc_wol_umbral.uti \ others\prc_wol_unfetter.uti \ others\prc_wol_ur.uti \ others\prc_wol_vicious.uti \ others\prc_wol_wargirds.uti \ others\prc_wol_whelm.uti \ others\prc_wol_witches.uti \ others\prc_wol_wyrmbane.uti \ others\prc_wspec001.uti \ others\prc_wspel001.uti \ others\prc_wspet001.uti \ others\prc_wspgd001.uti \ others\prc_wspsp001.uti \ others\prc_wswdp001.uti \ others\prc_wswfa001.uti \ others\prc_wswsi001.uti \ others\prc_wxblma001.uti \ others\prc_wxblmh001.uti \ others\prc_wxdbsc001.uti \ others\prccompdye.uti \ others\prgt_invis.utp \ others\prgt_kit.uti \ others\pseudoairelder.utc \ others\pseudoairgreat.utc \ others\pseudoairhuge.utc \ others\pseudobadgerdire.utc \ others\pseudobeardire.utc \ others\pseudoboardire.utc \ others\pseudodirespider.uti \ others\pseudodiretiger.utc \ others\pseudoearthelder.utc \ others\pseudoearthgreat.utc \ others\pseudoearthhuge.utc \ others\pseudofireelder.utc \ others\pseudofiregreat.utc \ others\pseudofirehuge.utc \ others\pseudonatural001.uti \ others\pseudonatural002.uti \ others\pseudonaturaldir.uti \ others\pseudonaturalel.uti \ others\pseudonaturalfi.uti \ others\pseudonaturalfir.uti \ others\pseudonaturalhu.uti \ others\pseudonaturalhug.uti \ others\pseudonaturaltig.uti \ others\pseudonaturalwa.uti \ others\pseudonaturalwat.uti \ others\pseudospiddire.utc \ others\pseudowaterelder.utc \ others\pseudowatergreat.utc \ others\pseudowaterhuge.utc \ others\pseudowolfdire.utc \ others\pseuodnaturaldir.uti \ others\psi_assimilate.mdl \ others\psi_ast_con_claw.uti \ others\psi_ast_con_conv.dlg \ others\psi_ast_con_skin.uti \ others\psi_ast_con_slam.uti \ others\psi_astral_con1.utc \ others\psi_astral_con1a.utc \ others\psi_astral_con2.utc \ others\psi_astral_con2a.utc \ others\psi_astral_con3.utc \ others\psi_astral_con3a.utc \ others\psi_astral_con4.utc \ others\psi_astral_con4a.utc \ others\psi_astral_con4b.utc \ others\psi_astral_con5.utc \ others\psi_astral_con5a.utc \ others\psi_astral_con5b.utc \ others\psi_astral_con6.utc \ others\psi_astral_con6a.utc \ others\psi_astral_con6b.utc \ others\psi_astral_con7.utc \ others\psi_astral_con7a.utc \ others\psi_astral_con7b.utc \ others\psi_astral_con7c.utc \ others\psi_astral_con8.utc \ others\psi_astral_con8a.utc \ others\psi_astral_con8b.utc \ others\psi_astral_con8c.utc \ others\psi_astral_con9.utc \ others\psi_astral_con9a.utc \ others\psi_astral_con9b.utc \ others\psi_astral_con9c.utc \ others\psi_astralseed.mdl \ others\psi_burst.mdl \ others\psi_concblst_im.mdl \ others\psi_concusblast.mdl \ others\psi_crisislife.mdl \ others\psi_ctrlobj.utc \ others\psi_dispbuffer.mdl \ others\psi_eneradapt.mdl \ others\psi_intelfort.mdl \ others\psi_notimebody.mdl \ others\psi_psychirurgy.mdl \ others\psi_psycrush.mdl \ others\psi_reagony.mdl \ others\psi_shadbody.mdl \ others\psi_sk_mbld_conv.dlg \ others\psi_sk_tshield_0.uti \ others\psi_synesthete.mdl \ others\psi_tempaccel.mdl \ others\psi_thrall_clc.utc \ others\psi_thrall_cleri.utc \ others\psi_thrall_fgt.utc \ others\psi_thrall_fight.utc \ others\psi_thrall_rog.utc \ others\psi_thrall_rogue.utc \ others\psi_thrall_sorc.utc \ others\psi_thrall_wiz.utc \ others\psi_ultrablst.mdl \ others\quasit_15.uti \ others\quasit_20.uti \ others\quasit_25.uti \ others\quasit_30.uti \ others\quasit_35.uti \ others\quasit_40.uti \ others\quasit_m_15.uti \ others\quasit_m_20.uti \ others\quasit_m_25.uti \ others\quasit_m_30.uti \ others\quasit_m_35.uti \ others\quasit_m_40.uti \ others\rakshasaf.ltr \ others\rakshasal.ltr \ others\rakshasam.ltr \ others\rash10.uti \ others\rash5.uti \ others\rash6.uti \ others\rash7.uti \ others\rash8.uti \ others\rash9.uti \ others\redspawnf.ltr \ others\redspawnl.ltr \ others\redspawnm.ltr \ others\restfulbed.utp \ others\restfulbed001.utp \ others\restfulbedroll.utp \ others\restfulcot.utp \ others\rive.uti \ others\runescarreddagge.uti \ others\s_ghoullord.utc \ others\s_ghoulravager.utc \ others\servantprops.uti \ others\servantprops2.uti \ others\servantprops3.uti \ others\servantprops4.uti \ others\shadowelement001.uti \ others\shadowelementalh.uti \ others\shadowswyftf.ltr \ others\shadowswyftm.ltr \ others\shadowwalkerstok.uti \ others\shd_shdelem_eldr.utc \ others\shd_shdelem_huge.utc \ others\shd_shdelem_med.utc \ others\shd_shdelem_med.uti \ others\shd_shdelem_med2.utc \ others\shd_shdelem_med3.utc \ others\shd_shdelem_med4.utc \ others\shifterf.ltr \ others\shifterhide.uti \ others\shifterlistenero.utc \ others\shifterm.ltr \ others\slam1d4.uti \ others\smp_armordark.mdl \ others\smp_blasphemy.mdl \ others\smp_blufireeyes.mdl \ others\smp_chaoscloak.mdl \ others\smp_consecrate20.mdl \ others\smp_crownglory.mdl \ others\smp_daylight.mdl \ others\smp_deathward.mdl \ others\smp_deepsleep.mdl \ others\smp_desecrate100.mdl \ others\smp_desecrate20.mdl \ others\smp_doombolt.mdl \ others\smp_dragblast.mdl \ others\smp_equake_4.mdl \ others\smp_flamesphere.mdl \ others\smp_forbidance.mdl \ others\smp_freemove.mdl \ others\smp_gate.mdl \ others\smp_holyaura.mdl \ others\smp_holyrune.mdl \ others\smp_holysmite.mdl \ others\smp_imp_mag_vest.mdl \ others\smp_invissphere.mdl \ others\smp_orderswrath.mdl \ others\smp_p2ptest.mdl \ others\smp_phasedoor.mdl \ others\smp_pyrofire.mdl \ others\smp_rainbowpat.mdl \ others\smp_ressphere.mdl \ others\smp_scinpattern.mdl \ others\smp_shieldlaw.mdl \ others\smp_tempstasis.mdl \ others\smp_unholyaura.mdl \ others\smp_zonetruth.mdl \ others\smpco_shout.mdl \ others\soul_gem.uti \ others\soul_wight_test.utc \ others\sp_anhil.txi \ others\sp_createtatoo.dlg \ others\sp_it_sparscr101.uti \ others\sp_it_sparscr102.uti \ others\sp_it_sparscr103.uti \ others\sp_it_sparscr104.uti \ others\sp_it_sparscr105.uti \ others\sp_it_sparscr106.uti \ others\sp_it_sparscr107.uti \ others\sp_it_sparscr108.uti \ others\sp_it_sparscr109.uti \ others\sp_it_sparscr110.uti \ others\sp_it_sparscr111.uti \ others\sp_it_sparscr112.uti \ others\sp_it_sparscr113.uti \ others\sp_it_sparscr114.uti \ others\sp_it_sparscr201.uti \ others\sp_it_sparscr202.uti \ others\sp_it_sparscr203.uti \ others\sp_it_sparscr204.uti \ others\sp_it_sparscr205.uti \ others\sp_it_sparscr206.uti \ others\sp_it_sparscr207.uti \ others\sp_it_sparscr208.uti \ others\sp_it_sparscr209.uti \ others\sp_it_sparscr210.uti \ others\sp_it_sparscr211.uti \ others\sp_it_sparscr212.uti \ others\sp_it_sparscr301.uti \ others\sp_it_sparscr302.uti \ others\sp_it_sparscr303.uti \ others\sp_it_sparscr304.uti \ others\sp_it_sparscr305.uti \ others\sp_it_sparscr306.uti \ others\sp_it_sparscr307.uti \ others\sp_it_sparscr308.uti \ others\sp_it_sparscr309.uti \ others\sp_it_sparscr310.uti \ others\sp_it_sparscr311.uti \ others\sp_it_sparscr401.uti \ others\sp_it_sparscr402.uti \ others\sp_it_sparscr403.uti \ others\sp_it_sparscr404.uti \ others\sp_it_sparscr405.uti \ others\sp_it_sparscr406.uti \ others\sp_it_sparscr407.uti \ others\sp_it_sparscr408.uti \ others\sp_it_sparscr409.uti \ others\sp_it_sparscr410.uti \ others\sp_it_sparscr411.uti \ others\sp_it_sparscr412.uti \ others\sp_it_sparscr413.uti \ others\sp_it_sparscr501.uti \ others\sp_it_sparscr502.uti \ others\sp_it_sparscr503.uti \ others\sp_it_sparscr504.uti \ others\sp_it_sparscr601.uti \ others\sp_it_sparscr602.uti \ others\sp_it_sparscr603.uti \ others\sp_it_sparscr604.uti \ others\sp_it_sparscr605.uti \ others\sp_it_sparscr606.uti \ others\sp_it_sparscr607.uti \ others\sp_it_sparscr608.uti \ others\sp_it_sparscr609.uti \ others\sp_it_sparscr701.uti \ others\sp_it_sparscr702.uti \ others\sp_it_sparscr704.uti \ others\sp_it_sparscr705.uti \ others\sp_it_sparscr706.uti \ others\sp_it_sparscr801.uti \ others\sp_it_sparscr802.uti \ others\sp_it_sparscr803.uti \ others\sp_it_sparscr804.uti \ others\sp_it_sparscr901.uti \ others\sp_it_sparscr902.uti \ others\sp_it_sparscr903.uti \ others\sp_it_spdvscr101.uti \ others\sp_it_spdvscr102.uti \ others\sp_it_spdvscr107.uti \ others\sp_it_spdvscr108.uti \ others\sp_it_spdvscr109.uti \ others\sp_it_spdvscr110.uti \ others\sp_it_spdvscr201.uti \ others\sp_it_spdvscr202.uti \ others\sp_it_spdvscr203.uti \ others\sp_it_spdvscr204.uti \ others\sp_it_spdvscr301.uti \ others\sp_it_spdvscr302.uti \ others\sp_it_spdvscr303.uti \ others\sp_it_spdvscr304.uti \ others\sp_it_spdvscr305.uti \ others\sp_it_spdvscr401.uti \ others\sp_it_spdvscr402.uti \ others\sp_it_spdvscr403.uti \ others\sp_it_spdvscr404.uti \ others\sp_it_spdvscr405.uti \ others\sp_it_spdvscr501.uti \ others\sp_it_spdvscr502.uti \ others\sp_it_spdvscr503.uti \ others\sp_it_spdvscr504.uti \ others\sp_it_spdvscr601.uti \ others\sp_it_spdvscr602.uti \ others\sp_it_spdvscr701.uti \ others\sp_it_spdvscr702.uti \ others\sp_it_spdvscr703.uti \ others\sp_it_spdvscr704.uti \ others\sp_it_spdvscr705.uti \ others\sp_it_spdvscr706.uti \ others\sp_it_spdvscr707.uti \ others\sp_it_spdvscr801.uti \ others\sp_it_spdvscr802.uti \ others\sp_it_spdvscr803.uti \ others\sp_it_spdvscr901.uti \ others\sp_plc_symbol.utp \ others\sp_sphereofud.utc \ others\sparkoflife.uti \ others\spellbook.dlg \ others\spikerf.ltr \ others\spikerl.ltr \ others\spikerm.ltr \ others\splscrl_animobj.uti \ others\splscrl_blsbah.uti \ others\splscrl_chillt.uti \ others\splscrl_conse.uti \ others\splscrl_contag.uti \ others\splscrl_gwdm.uti \ others\splscrl_majmiss.uti \ others\splscrl_natav.uti \ others\splscrl_unyield.uti \ others\ss_alliedmartyr.dlg \ others\ss_celestialcoun.dlg \ others\ss_cont_reunion.dlg \ others\ss_dreamscape.dlg \ others\ss_fiendishwords.dlg \ others\stinkb_c_bite_01.uti \ others\stinkb_c_bite_05.uti \ others\stinkb_c_bite_10.uti \ others\stinkb_c_bite_15.uti \ others\stinkb_c_bite_20.uti \ others\stinkb_c_bite_25.uti \ others\stinkb_c_bite_30.uti \ others\stinkb_c_bite_35.uti \ others\stonechildf.ltr \ others\stonechildl.ltr \ others\stonechildm.ltr \ others\summonedgreat001.utc \ others\summonedgreat002.utc \ others\summonedgreat003.utc \ others\summonedgreat004.utc \ others\summonedgreat005.utc \ others\summonedgreat006.utc \ others\summonedgreaterw.utc \ others\summoningstone.uti \ others\supplykit001.uti \ others\supplykit002.uti \ others\svirff.ltr \ others\svirfl.ltr \ others\svirfm.ltr \ others\taerf.ltr \ others\taerm.ltr \ others\tasloif.ltr \ others\tasloim.ltr \ others\tex_dimdoor.txi \ others\tfshad_token.dlg \ others\tob_dw_distembr.utc \ others\tob_dw_embrclaw.uti \ others\tob_dw_embrhide.uti \ others\tof_vfx4.mdl \ others\tof_vfx5.mdl \ others\tog_balor.utc \ others\tog_glabrezu.utc \ others\tog_marilith.utc \ others\tog_succubus.utc \ others\tog_vrock.utc \ others\troglodytef.ltr \ others\troglodytem.ltr \ others\trollf.ltr \ others\trollm.ltr \ others\true_bralan.utc \ others\true_deva.utc \ others\true_wordarch.utc \ others\twinfiend_demon.utc \ others\uldraf.ltr \ others\uldram.ltr \ others\unholy_disciple.utc \ others\ushemoif.ltr \ others\ushemoim.ltr \ others\var_detplants.mdl \ others\var_wavexhaust.mdl \ others\vce_negblast.mdl \ others\vcm_pospower.mdl \ others\vco_canaries.mdl \ others\vco_grnco.mdl \ others\vco_icyspray.mdl \ others\vco_lspindeath.mdl \ others\vco_resurection.mdl \ others\vco_sp_g_regen.mdl \ others\vco_sp_h_regen.mdl \ others\vco_sp_symbl_hp.mdl \ others\vco_sp_symblhpg.mdl \ others\vco_sparklies1.mdl \ others\vco_sparklies2.mdl \ others\vco_spconj1.mdl \ others\vco_symbols.mdl \ others\vco_tofca1evil.mdl \ others\vco_tofca1holy.mdl \ others\vco_tofca1mind.mdl \ others\vco_tofca1natr.mdl \ others\vco_tofca1odd.mdl \ others\vco_tofca1pris.mdl \ others\vco_tofca2pris.mdl \ others\vco_vortex.mdl \ others\vdr_achaierai.mdl \ others\vdr_air01.mdl \ others\vdr_air02.mdl \ others\vdr_antilife.mdl \ others\vdr_baelneyes.mdl \ others\vdr_biglb.mdl \ others\vdr_biglbp.mdl \ others\vdr_biglbpd.mdl \ others\vdr_biglbpf.mdl \ others\vdr_biglbps.mdl \ others\vdr_biglbpst.mdl \ others\vdr_biglbrass.mdl \ others\vdr_biglc.mdl \ others\vdr_biglcpf.mdl \ others\vdr_biglcps.mdl \ others\vdr_biglcpst.mdl \ others\vdr_biglddd.mdl \ others\vdr_bigldsing.mdl \ others\vdr_biglg.mdl \ others\vdr_biglgb.mdl \ others\vdr_biglgbd.mdl \ others\vdr_biglgold.mdl \ others\vdr_biglgpf.mdl \ others\vdr_biglgps.mdl \ others\vdr_biglgpst.mdl \ others\vdr_biglindi.mdl \ others\vdr_biglo.mdl \ others\vdr_biglopf.mdl \ others\vdr_biglops.mdl \ others\vdr_biglopst.mdl \ others\vdr_bigloy.mdl \ others\vdr_bigloyd.mdl \ others\vdr_biglp.mdl \ others\vdr_biglppf.mdl \ others\vdr_biglpps.mdl \ others\vdr_biglppst.mdl \ others\vdr_biglpr.mdl \ others\vdr_biglprd.mdl \ others\vdr_biglr.mdl \ others\vdr_biglro.mdl \ others\vdr_biglrod.mdl \ others\vdr_biglrpf.mdl \ others\vdr_biglrps.mdl \ others\vdr_biglrpst.mdl \ others\vdr_biglsick.mdl \ others\vdr_biglturq.mdl \ others\vdr_biglvio.mdl \ others\vdr_biglw.mdl \ others\vdr_biglwpf.mdl \ others\vdr_biglwps.mdl \ others\vdr_biglwpst.mdl \ others\vdr_bigly.mdl \ others\vdr_biglyg.mdl \ others\vdr_biglygd.mdl \ others\vdr_biglypf.mdl \ others\vdr_biglyps.mdl \ others\vdr_biglypst.mdl \ others\vdr_blue_hand.mdl \ others\vdr_blue_hand2.mdl \ others\vdr_blueshield.mdl \ others\vdr_circlaw.mdl \ others\vdr_coldshield.mdl \ others\vdr_colshield02.mdl \ others\vdr_colshield03.mdl \ others\vdr_deepdarkness.mdl \ others\vdr_detect.mdl \ others\vdr_divshofa.mdl \ others\vdr_drkshadows.mdl \ others\vdr_floatdisk.mdl \ others\vdr_globe.mdl \ others\vdr_heard.mdl \ others\vdr_iounclear.mdl \ others\vdr_ioundarkblue.mdl \ others\vdr_ioundeepred.mdl \ others\vdr_ioundullgrey.mdl \ others\vdr_ioundustyros.mdl \ others\vdr_iounincandex.mdl \ others\vdr_iouniridesce.mdl \ others\vdr_iounlavender.mdl \ others\vdr_iounpaleblue.mdl \ others\vdr_iounpalegree.mdl \ others\vdr_iounpalelave.mdl \ others\vdr_iounpearlywh.mdl \ others\vdr_iounpink.mdl \ others\vdr_iounpinkgree.mdl \ others\vdr_iounscarletb.mdl \ others\vdr_iounvibrantp.mdl \ others\vdr_jadeshield.mdl \ others\vdr_jdshield02.mdl \ others\vdr_jdshield03.mdl \ others\vdr_lightningbl.mdl \ others\vdr_markhunt.mdl \ others\vdr_obscmist.mdl \ others\vdr_pfe_acid.mdl \ others\vdr_pfe_cold.mdl \ others\vdr_pfe_elect.mdl \ others\vdr_pfe_fire.mdl \ others\vdr_pfe_sonic.mdl \ others\vdr_prismsphere.mdl \ others\vdr_prismwall.mdl \ others\vdr_protarrows.mdl \ others\vdr_protenergy.mdl \ others\vdr_rooted.mdl \ others\vdr_rooted01.mdl \ others\vdr_rooted02.mdl \ others\vdr_seen.mdl \ others\vdr_sp_anhil.mdl \ others\vdr_sp_resist.mdl \ others\vdr_spellres_b.mdl \ others\vdr_spellres_g.mdl \ others\vdr_spellres_o.mdl \ others\vdr_spellres_p.mdl \ others\vdr_spellres_y.mdl \ others\vdr_spellres01_b.mdl \ others\vdr_spellres01_g.mdl \ others\vdr_spellres01_o.mdl \ others\vdr_spellres01_p.mdl \ others\vdr_spellres01_y.mdl \ others\vdr_spellres02_b.mdl \ others\vdr_spellres02_g.mdl \ others\vdr_spellres02_o.mdl \ others\vdr_spellres02_p.mdl \ others\vdr_spellres02_y.mdl \ others\vdr_spellturn_g.mdl \ others\vdr_spellturn_m.mdl \ others\vdr_spellturn_o.mdl \ others\vdr_spellturn_p.mdl \ others\vdr_spellturn_r.mdl \ others\vdr_spellturn_s.mdl \ others\vdr_spellturn_v.mdl \ others\vdr_spellturn_y.mdl \ others\vdr_stone03.mdl \ others\vdr_stone04.mdl \ others\vdr_stone05.mdl \ others\vdr_stormofven.mdl \ others\vdr_turning01_c.mdl \ others\vdr_turning01_g.mdl \ others\vdr_turning01_m.mdl \ others\vdr_turning01_o.mdl \ others\vdr_turning01_p.mdl \ others\vdr_turning01_r.mdl \ others\vdr_turning01_s.mdl \ others\vdr_turning01_v.mdl \ others\vdr_turning01_y.mdl \ others\vdr_turning02_g.mdl \ others\vdr_turning02_m.mdl \ others\vdr_turning02_o.mdl \ others\vdr_turning02_p.mdl \ others\vdr_turning02_r.mdl \ others\vdr_turning02_s.mdl \ others\vdr_turning02_v.mdl \ others\vdr_turning02_y.mdl \ others\vdr_utterdark.mdl \ others\vdr_xlglobe.mdl \ others\vff_calmanims.mdl \ others\vff_comtime_blu.mdl \ others\vff_comtime_grn.mdl \ others\vff_comtime_ora.mdl \ others\vff_comtime_pur.mdl \ others\vff_comtime_red.mdl \ others\vff_comtime_yel.mdl \ others\vff_dawn.mdl \ others\vff_dragacid.mdl \ others\vff_dragcold.mdl \ others\vff_dragelec.mdl \ others\vff_draggas.mdl \ others\vff_dragholy.mdl \ others\vff_dragmind.mdl \ others\vff_dragodd.mdl \ others\vff_dragsonic.mdl \ others\vff_dragstrike.mdl \ others\vff_expdblu10.mdl \ others\vff_expdblu20.mdl \ others\vff_expdblu30.mdl \ others\vff_expdgrn10.mdl \ others\vff_expdgrn20.mdl \ others\vff_expdgrn30.mdl \ others\vff_expdpur10.mdl \ others\vff_expdpur20.mdl \ others\vff_expdpur30.mdl \ others\vff_expdwhi10.mdl \ others\vff_expdwhi20.mdl \ others\vff_expdwhi30.mdl \ others\vff_explacid.mdl \ others\vff_explacid_l.mdl \ others\vff_explblinblu.mdl \ others\vff_explblinblul.mdl \ others\vff_explblincya.mdl \ others\vff_explblincyal.mdl \ others\vff_explblingrn.mdl \ others\vff_explblingrnl.mdl \ others\vff_explblinpur.mdl \ others\vff_explblinpurl.mdl \ others\vff_explblinred.mdl \ others\vff_explblinredl.mdl \ others\vff_explblinyel.mdl \ others\vff_explblinyell.mdl \ others\vff_explcold.mdl \ others\vff_explcold_l.mdl \ others\vff_explice.mdl \ others\vff_explstunblu.mdl \ others\vff_explstunblul.mdl \ others\vff_explstungrn.mdl \ others\vff_explstungrnl.mdl \ others\vff_explstunpur.mdl \ others\vff_explstunpurl.mdl \ others\vff_explstunred.mdl \ others\vff_explstunredl.mdl \ others\vff_explstunyel.mdl \ others\vff_explstunyell.mdl \ others\vff_explwordblul.mdl \ others\vff_explwordcyal.mdl \ others\vff_explwordgrnl.mdl \ others\vff_explwordoral.mdl \ others\vff_explwordpurl.mdl \ others\vff_explwordredl.mdl \ others\vff_feeblemind.mdl \ others\vff_masscure.mdl \ others\vff_massinf.mdl \ others\vff_meteorhit.mdl \ others\vff_newword.mdl \ others\vff_newword_l.mdl \ others\vff_rainacid.mdl \ others\vff_red_symbl.mdl \ others\vff_rustgrsp.mdl \ others\vff_soultrap.mdl \ others\vff_sp_regen.mdl \ others\vff_spellf_exp.mdl \ others\vff_spellf_exp_l.mdl \ others\vff_strkchaos.mdl \ others\vff_strkholy_b.mdl \ others\vff_strkholy_c.mdl \ others\vff_strkholy_g.mdl \ others\vff_strkholy_l_b.mdl \ others\vff_strkholy_l_c.mdl \ others\vff_strkholy_l_g.mdl \ others\vff_strkholy_l_o.mdl \ others\vff_strkholy_l_p.mdl \ others\vff_strkholy_l_r.mdl \ others\vff_strkholy_o.mdl \ others\vff_strkholy_p.mdl \ others\vff_strkholy_r.mdl \ others\vff_strksonic.mdl \ others\vfx_baelneyes.mdl \ others\vid_vortex.mdl \ others\vim_abil_cha.mdl \ others\vim_abil_con.mdl \ others\vim_abil_dex.mdl \ others\vim_abil_int.mdl \ others\vim_abil_str.mdl \ others\vim_abil_wis.mdl \ others\vim_armageddon.mdl \ others\vim_augory.mdl \ others\vim_awaken.mdl \ others\vim_batsgib.mdl \ others\vim_bolt1.mdl \ others\vim_bolt2.mdl \ others\vim_bonabil_a.mdl \ others\vim_bonabil_b.mdl \ others\vim_bonabil_c.mdl \ others\vim_bonabil_d.mdl \ others\vim_bonabil_e.mdl \ others\vim_bonblue.mdl \ others\vim_boncyan.mdl \ others\vim_bongreen.mdl \ others\vim_bonorange.mdl \ others\vim_bonpurp.mdl \ others\vim_bonred.mdl \ others\vim_chaoham.mdl \ others\vim_deathwatch.mdl \ others\vim_dimanchor.mdl \ others\vim_dimdoor2.mdl \ others\vim_dimdoor3.mdl \ others\vim_dimlock.mdl \ others\vim_disentigrate.mdl \ others\vim_earthqk.mdl \ others\vim_ent_shield.mdl \ others\vim_epicgem.mdl \ others\vim_epicgemb.mdl \ others\vim_epicgemd.mdl \ others\vim_exp2flame_cy.mdl \ others\vim_exp2flame_gr.mdl \ others\vim_exp2flame_ma.mdl \ others\vim_exp2flame_pu.mdl \ others\vim_faerfire.mdl \ others\vim_faerfire_b.mdl \ others\vim_faerfire_g.mdl \ others\vim_faerfire_v.mdl \ others\vim_freedom.mdl \ others\vim_frostspike.mdl \ others\vim_glitterdust.mdl \ others\vim_harm01_r.mdl \ others\vim_harm02_r.mdl \ others\vim_harm03_r.mdl \ others\vim_harm04_r.mdl \ others\vim_heal01_cya.mdl \ others\vim_heal01_grn.mdl \ others\vim_heal01_ora.mdl \ others\vim_heal01_pur.mdl \ others\vim_heal01_red.mdl \ others\vim_heal02_blu.mdl \ others\vim_heal02_grn.mdl \ others\vim_heal02_pur.mdl \ others\vim_heal02_yel.mdl \ others\vim_heal03_blu.mdl \ others\vim_heal03_grn.mdl \ others\vim_heal03_ora.mdl \ others\vim_heal03_pur.mdl \ others\vim_heal03_yel.mdl \ others\vim_heal04_cya.mdl \ others\vim_heal04_pur.mdl \ others\vim_heal04_red.mdl \ others\vim_heal04_yel.mdl \ others\vim_heal05_blu.mdl \ others\vim_heal05_grn.mdl \ others\vim_heal05_pur.mdl \ others\vim_heal05_red.mdl \ others\vim_heal05_yel.mdl \ others\vim_hellfire.mdl \ others\vim_hellfirestrm.mdl \ others\vim_imprison.mdl \ others\vim_insanity.mdl \ others\vim_lashice.mdl \ others\vim_magblu.mdl \ others\vim_magcya.mdl \ others\vim_maggrn.mdl \ others\vim_maglaw.mdl \ others\vim_magmag.mdl \ others\vim_magora.mdl \ others\vim_magpur.mdl \ others\vim_magred.mdl \ others\vim_magrock.mdl \ others\vim_magsee_g.mdl \ others\vim_magsee_r.mdl \ others\vim_magvio.mdl \ others\vim_magweapon.mdl \ others\vim_magyel.mdl \ others\vim_maze.mdl \ others\vim_movblu.mdl \ others\vim_movgrn.mdl \ others\vim_negabil_blu.mdl \ others\vim_negabil_cya.mdl \ others\vim_negabil_grn.mdl \ others\vim_negabil_ora.mdl \ others\vim_negabil_pur.mdl \ others\vim_negabil_red.mdl \ others\vim_negabil_yel.mdl \ others\vim_protmagic_b.mdl \ others\vim_protmagic_g.mdl \ others\vim_protmagic_o.mdl \ others\vim_protmagic_p.mdl \ others\vim_protmagic_y.mdl \ others\vim_pwblind.mdl \ others\vim_regenerate.mdl \ others\vim_shillelagh.mdl \ others\vim_sparks.mdl \ others\vim_spellf_exp2f.mdl \ others\vim_spellf_heal.mdl \ others\vim_strkacid.mdl \ others\vim_strkcold.mdl \ others\vim_strksonic.mdl \ others\vim_sum_nally1.mdl \ others\vim_summons1.mdl \ others\vim_undheal.mdl \ others\vim_unsumred.mdl \ others\vim_unsumyel.mdl \ others\vper_elemsfire.mdl \ others\vper_elemswater.mdl \ others\vpm_dracaura.mdl \ others\vpr_boltglory.mdl \ others\vpr_brimstone.mdl \ others\vpr_icescrew.mdl \ others\vpr_imprison.mdl \ others\vpr_magehand.mdl \ others\vpr_magmisl_blk.mdl \ others\vpr_magmisl_cya.mdl \ others\vpr_magmisl_grn.mdl \ others\vpr_magmisl_law.mdl \ others\vpr_magmisl_mag.mdl \ others\vpr_magmisl_ora.mdl \ others\vpr_magmisl_pur.mdl \ others\vpr_magmisl_red.mdl \ others\vpr_magmisl_spr.mdl \ others\vpr_magmisl_ste.mdl \ others\vpr_magmisl_vio.mdl \ others\vpr_magmisl_yel.mdl \ others\vpr_markhunt.mdl \ others\vpr_meteorswarm.mdl \ others\vpr_otilcold.mdl \ others\vpr_pumpk.mdl \ others\vpr_redmisl.mdl \ others\vpr_spellf_ball.mdl \ others\vpr_sprope.mdl \ others\vpr_sunburst.mdl \ others\vps_firerain.mdl \ others\vps_firerain_l.mdl \ others\vps_fogfreeze.mdl \ others\vps_fogfreeze_l.mdl \ others\vps_fogpurp.mdl \ others\vps_fogpurp_l.mdl \ others\vps_fogyell.mdl \ others\vps_fogyell_l.mdl \ others\vps_glyphblue.mdl \ others\vps_glyphcold.mdl \ others\vps_glyphred.mdl \ others\vps_glyphviolet.mdl \ others\vps_glyphwhite.mdl \ others\vps_glyphyellow.mdl \ others\vps_sstorm.mdl \ others\vps_sstorm_l.mdl \ others\vps_symb_death.mdl \ others\vps_symb_fear.mdl \ others\vps_symb_insan.mdl \ others\vps_symb_pain.mdl \ others\vps_symb_pers.mdl \ others\vps_symb_sleep.mdl \ others\vps_symb_stun.mdl \ others\vps_symb_weak.mdl \ others\vps_wallblue.mdl \ others\vps_wallblue_l.mdl \ others\vps_wallbred_l.mdl \ others\vps_walldisp.mdl \ others\vps_wallfrost.mdl \ others\vps_wallfrost_l.mdl \ others\vps_wallgrn.mdl \ others\vps_wallgrn_l.mdl \ others\vps_wallpris1.mdl \ others\vps_wallpris2.mdl \ others\vps_wallpurp.mdl \ others\vps_wallpurp_l.mdl \ others\vps_wallred.mdl \ others\vps_wallyello.mdl \ others\vps_wallyello_l.mdl \ others\vy_it_creitem011.uti \ others\warforgedf.ltr \ others\warforgedm.ltr \ others\watermephf.ltr \ others\watermephl.ltr \ others\watermephm.ltr \ others\wblnn_b_011.mdl \ others\wblnn_b_012.mdl \ others\wblnn_b_013.mdl \ others\wblnn_b_014.mdl \ others\wblnn_b_021.mdl \ others\wblnn_b_022.mdl \ others\wblnn_b_023.mdl \ others\wblnn_b_024.mdl \ others\wblnn_b_031.mdl \ others\wblnn_b_032.mdl \ others\wblnn_b_033.mdl \ others\wblnn_b_034.mdl \ others\wblnn_b_051.mdl \ others\wblnn_b_052.mdl \ others\wblnn_b_053.mdl \ others\wblnn_b_054.mdl \ others\wblnn_fxabblu.mdl \ others\wblnn_fxabgrn.mdl \ others\wblnn_fxabgry.mdl \ others\wblnn_fxaborg.mdl \ others\wblnn_fxabpur.mdl \ others\wblnn_fxabwht.mdl \ others\wblnn_fxabyel.mdl \ others\wblnn_fxabyss.mdl \ others\wblnn_fxacid.mdl \ others\wblnn_fxaxio.mdl \ others\wblnn_fxdark.mdl \ others\wblnn_fxdblk.mdl \ others\wblnn_fxdblu.mdl \ others\wblnn_fxdgrn.mdl \ others\wblnn_fxdorg.mdl \ others\wblnn_fxdpur.mdl \ others\wblnn_fxdrblk.mdl \ others\wblnn_fxdrblu.mdl \ others\wblnn_fxdred.mdl \ others\wblnn_fxdrorg.mdl \ others\wblnn_fxdrpur.mdl \ others\wblnn_fxdrred.mdl \ others\wblnn_fxdryel.mdl \ others\wblnn_fxdyel.mdl \ others\wblnn_fxelect.mdl \ others\wblnn_fxfire.mdl \ others\wblnn_fxfog.mdl \ others\wblnn_fxfrbig.mdl \ others\wblnn_fxfrblk.mdl \ others\wblnn_fxfrblu.mdl \ others\wblnn_fxfrgrn.mdl \ others\wblnn_fxfrost.mdl \ others\wblnn_fxfrpur.mdl \ others\wblnn_fxfrred.mdl \ others\wblnn_fxfrwht.mdl \ others\wblnn_fxfryel.mdl \ others\wblnn_fxglblu.mdl \ others\wblnn_fxglgrn.mdl \ others\wblnn_fxglorg.mdl \ others\wblnn_fxglpur.mdl \ others\wblnn_fxglred.mdl \ others\wblnn_fxglyel.mdl \ others\wblnn_fxholy.mdl \ others\wblnn_fxinfer.mdl \ others\wblnn_fxmind.mdl \ others\wblnn_fxneg.mdl \ others\wblnn_fxrunic.mdl \ others\wblnn_fxshat.mdl \ others\wblnn_fxshblk.mdl \ others\wblnn_fxshgrn.mdl \ others\wblnn_fxshorg.mdl \ others\wblnn_fxshpur.mdl \ others\wblnn_fxshred.mdl \ others\wblnn_fxshyel.mdl \ others\wblnn_fxsnow.mdl \ others\wblnn_fxsonic.mdl \ others\wblnn_m_011.mdl \ others\wblnn_m_012.mdl \ others\wblnn_m_013.mdl \ others\wblnn_m_014.mdl \ others\wblnn_m_021.mdl \ others\wblnn_m_022.mdl \ others\wblnn_m_023.mdl \ others\wblnn_m_024.mdl \ others\wblnn_m_031.mdl \ others\wblnn_m_032.mdl \ others\wblnn_m_033.mdl \ others\wblnn_m_034.mdl \ others\wblnn_m_051.mdl \ others\wblnn_m_052.mdl \ others\wblnn_m_053.mdl \ others\wblnn_m_054.mdl \ others\wblnn_t_011.mdl \ others\wblnn_t_012.mdl \ others\wblnn_t_013.mdl \ others\wblnn_t_014.mdl \ others\wblnn_t_021.mdl \ others\wblnn_t_022.mdl \ others\wblnn_t_023.mdl \ others\wblnn_t_024.mdl \ others\wblnn_t_031.mdl \ others\wblnn_t_032.mdl \ others\wblnn_t_033.mdl \ others\wblnn_t_034.mdl \ others\wblnn_t_051.mdl \ others\wblnn_t_052.mdl \ others\wblnn_t_053.mdl \ others\wblnn_t_054.mdl \ others\wblph_b_011.mdl \ others\wblph_b_012.mdl \ others\wblph_b_013.mdl \ others\wblph_b_014.mdl \ others\wblph_b_021.mdl \ others\wblph_b_022.mdl \ others\wblph_b_023.mdl \ others\wblph_b_024.mdl \ others\wblph_b_031.mdl \ others\wblph_b_032.mdl \ others\wblph_b_033.mdl \ others\wblph_b_034.mdl \ others\wblph_b_041.mdl \ others\wblph_b_042.mdl \ others\wblph_b_043.mdl \ others\wblph_b_044.mdl \ others\wblph_fxabblu.mdl \ others\wblph_fxabgrn.mdl \ others\wblph_fxabgry.mdl \ others\wblph_fxaborg.mdl \ others\wblph_fxabpur.mdl \ others\wblph_fxabwht.mdl \ others\wblph_fxabyel.mdl \ others\wblph_fxabyss.mdl \ others\wblph_fxacid.mdl \ others\wblph_fxaxio.mdl \ others\wblph_fxdark.mdl \ others\wblph_fxdblk.mdl \ others\wblph_fxdblu.mdl \ others\wblph_fxdgrn.mdl \ others\wblph_fxdorg.mdl \ others\wblph_fxdpur.mdl \ others\wblph_fxdrblk.mdl \ others\wblph_fxdrblu.mdl \ others\wblph_fxdred.mdl \ others\wblph_fxdrorg.mdl \ others\wblph_fxdrpur.mdl \ others\wblph_fxdrred.mdl \ others\wblph_fxdryel.mdl \ others\wblph_fxdyel.mdl \ others\wblph_fxelect.mdl \ others\wblph_fxfire.mdl \ others\wblph_fxfog.mdl \ others\wblph_fxfrbig.mdl \ others\wblph_fxfrblk.mdl \ others\wblph_fxfrblu.mdl \ others\wblph_fxfrgrn.mdl \ others\wblph_fxfrost.mdl \ others\wblph_fxfrpur.mdl \ others\wblph_fxfrred.mdl \ others\wblph_fxfrwht.mdl \ others\wblph_fxfryel.mdl \ others\wblph_fxglblu.mdl \ others\wblph_fxglgrn.mdl \ others\wblph_fxglorg.mdl \ others\wblph_fxglpur.mdl \ others\wblph_fxglred.mdl \ others\wblph_fxglyel.mdl \ others\wblph_fxholy.mdl \ others\wblph_fxinfer.mdl \ others\wblph_fxmind.mdl \ others\wblph_fxneg.mdl \ others\wblph_fxrunic.mdl \ others\wblph_fxshat.mdl \ others\wblph_fxshblk.mdl \ others\wblph_fxshgrn.mdl \ others\wblph_fxshorg.mdl \ others\wblph_fxshpur.mdl \ others\wblph_fxshred.mdl \ others\wblph_fxshyel.mdl \ others\wblph_fxsnow.mdl \ others\wblph_fxsonic.mdl \ others\wblph_m_011.mdl \ others\wblph_m_012.mdl \ others\wblph_m_013.mdl \ others\wblph_m_014.mdl \ others\wblph_m_021.mdl \ others\wblph_m_022.mdl \ others\wblph_m_023.mdl \ others\wblph_m_024.mdl \ others\wblph_m_031.mdl \ others\wblph_m_032.mdl \ others\wblph_m_033.mdl \ others\wblph_m_034.mdl \ others\wblph_m_041.mdl \ others\wblph_m_042.mdl \ others\wblph_m_043.mdl \ others\wblph_m_044.mdl \ others\wblph_mb.mdl \ others\wblph_t_011.mdl \ others\wblph_t_012.mdl \ others\wblph_t_013.mdl \ others\wblph_t_014.mdl \ others\wblph_t_021.mdl \ others\wblph_t_022.mdl \ others\wblph_t_023.mdl \ others\wblph_t_024.mdl \ others\wblph_t_031.mdl \ others\wblph_t_032.mdl \ others\wblph_t_033.mdl \ others\wblph_t_034.mdl \ others\wblph_t_041.mdl \ others\wblph_t_042.mdl \ others\wblph_t_043.mdl \ others\wblph_t_044.mdl \ others\wblpl_b_011.mdl \ others\wblpl_b_012.mdl \ others\wblpl_b_013.mdl \ others\wblpl_b_014.mdl \ others\wblpl_b_021.mdl \ others\wblpl_b_022.mdl \ others\wblpl_b_023.mdl \ others\wblpl_b_024.mdl \ others\wblpl_b_031.mdl \ others\wblpl_b_032.mdl \ others\wblpl_b_033.mdl \ others\wblpl_b_034.mdl \ others\wblpl_b_041.mdl \ others\wblpl_b_042.mdl \ others\wblpl_b_043.mdl \ others\wblpl_b_044.mdl \ others\wblpl_fxabblu.mdl \ others\wblpl_fxabgrn.mdl \ others\wblpl_fxabgry.mdl \ others\wblpl_fxaborg.mdl \ others\wblpl_fxabpur.mdl \ others\wblpl_fxabwht.mdl \ others\wblpl_fxabyel.mdl \ others\wblpl_fxabyss.mdl \ others\wblpl_fxacid.mdl \ others\wblpl_fxaxio.mdl \ others\wblpl_fxdark.mdl \ others\wblpl_fxdblk.mdl \ others\wblpl_fxdblu.mdl \ others\wblpl_fxdgrn.mdl \ others\wblpl_fxdorg.mdl \ others\wblpl_fxdpur.mdl \ others\wblpl_fxdrblk.mdl \ others\wblpl_fxdrblu.mdl \ others\wblpl_fxdred.mdl \ others\wblpl_fxdrorg.mdl \ others\wblpl_fxdrpur.mdl \ others\wblpl_fxdrred.mdl \ others\wblpl_fxdryel.mdl \ others\wblpl_fxdyel.mdl \ others\wblpl_fxelect.mdl \ others\wblpl_fxfire.mdl \ others\wblpl_fxfog.mdl \ others\wblpl_fxfrbig.mdl \ others\wblpl_fxfrblk.mdl \ others\wblpl_fxfrblu.mdl \ others\wblpl_fxfrgrn.mdl \ others\wblpl_fxfrost.mdl \ others\wblpl_fxfrpur.mdl \ others\wblpl_fxfrred.mdl \ others\wblpl_fxfrwht.mdl \ others\wblpl_fxfryel.mdl \ others\wblpl_fxglblu.mdl \ others\wblpl_fxglgrn.mdl \ others\wblpl_fxglorg.mdl \ others\wblpl_fxglpur.mdl \ others\wblpl_fxglred.mdl \ others\wblpl_fxglyel.mdl \ others\wblpl_fxholy.mdl \ others\wblpl_fxinfer.mdl \ others\wblpl_fxmind.mdl \ others\wblpl_fxneg.mdl \ others\wblpl_fxrunic.mdl \ others\wblpl_fxshat.mdl \ others\wblpl_fxshblk.mdl \ others\wblpl_fxshgrn.mdl \ others\wblpl_fxshorg.mdl \ others\wblpl_fxshpur.mdl \ others\wblpl_fxshred.mdl \ others\wblpl_fxshyel.mdl \ others\wblpl_fxsnow.mdl \ others\wblpl_fxsonic.mdl \ others\wblpl_m_011.mdl \ others\wblpl_m_012.mdl \ others\wblpl_m_013.mdl \ others\wblpl_m_014.mdl \ others\wblpl_m_021.mdl \ others\wblpl_m_022.mdl \ others\wblpl_m_023.mdl \ others\wblpl_m_024.mdl \ others\wblpl_m_031.mdl \ others\wblpl_m_032.mdl \ others\wblpl_m_033.mdl \ others\wblpl_m_034.mdl \ others\wblpl_m_041.mdl \ others\wblpl_m_042.mdl \ others\wblpl_m_043.mdl \ others\wblpl_m_044.mdl \ others\wblpl_mb.mdl \ others\wblpl_t_011.mdl \ others\wblpl_t_012.mdl \ others\wblpl_t_013.mdl \ others\wblpl_t_014.mdl \ others\wblpl_t_021.mdl \ others\wblpl_t_022.mdl \ others\wblpl_t_023.mdl \ others\wblpl_t_024.mdl \ others\wblpl_t_031.mdl \ others\wblpl_t_032.mdl \ others\wblpl_t_033.mdl \ others\wblpl_t_034.mdl \ others\wblpl_t_041.mdl \ others\wblpl_t_042.mdl \ others\wblpl_t_043.mdl \ others\wblpl_t_044.mdl \ others\wblpl_t_051.mdl \ others\wblpl_t_052.mdl \ others\wblpl_t_053.mdl \ others\wblpl_t_054.mdl \ others\wemicf.ltr \ others\wemicl.ltr \ others\wemicm.ltr \ others\werewolfbite.uti \ others\werewolfbitel.uti \ others\werewolfclaw.uti \ others\werewolfclawl.uti \ others\werewolfskin0.uti \ others\werewolfskin0l.uti \ others\werewolfskin0s.uti \ others\werewolfskin1.uti \ others\werewolfskin1l.uti \ others\werewolfskin1s.uti \ others\werewolfskin2.uti \ others\werewolfskin2l.uti \ others\werewolfskin2s.uti \ others\whipofshar.dlg \ others\whipofshar.uti \ others\wo_mummy.utc \ others\wo_mummy_prop.uti \ others\wo_skel.utc \ others\wo_skel_prop.uti \ others\wo_zombie_bugb.utc \ others\wo_zombie_ogre.utc \ others\wo_zombie_prop.uti \ others\wo_zombie_wyv.utc \ others\wol_a_bbb.are \ others\wol_a_bbb.gic \ others\wol_a_bbb.git \ others\wol_a_bbbcreek.utt \ others\wol_a_bbbenter.utt \ others\wol_a_bbbwp.utw \ others\wol_a_dyenter.utt \ others\wol_a_dymond.are \ others\wol_a_dymond.gic \ others\wol_a_dymond.git \ others\wol_a_dymondwp.utw \ others\wol_khofar.utc \ others\wol_twigblight.utc \ others\wol_twigblightci.uti \ others\wol_twigblightcl.uti \ others\wordarchonhammer.uti \ others\wordhide.uti \ others\wp_arr_imbue_1.uti \ others\wpltr_b_011.mdl \ others\wpltr_b_012.mdl \ others\wpltr_b_013.mdl \ others\wpltr_b_014.mdl \ others\wpltr_b_021.mdl \ others\wpltr_b_022.mdl \ others\wpltr_b_023.mdl \ others\wpltr_b_024.mdl \ others\wpltr_b_031.mdl \ others\wpltr_b_032.mdl \ others\wpltr_b_033.mdl \ others\wpltr_b_034.mdl \ others\wpltr_b_041.mdl \ others\wpltr_b_042.mdl \ others\wpltr_b_043.mdl \ others\wpltr_b_044.mdl \ others\wpltr_b_061.mdl \ others\wpltr_b_062.mdl \ others\wpltr_b_063.mdl \ others\wpltr_b_064.mdl \ others\wpltr_b_071.mdl \ others\wpltr_b_072.mdl \ others\wpltr_b_073.mdl \ others\wpltr_b_074.mdl \ others\wpltr_b_081.mdl \ others\wpltr_b_082.mdl \ others\wpltr_b_083.mdl \ others\wpltr_b_084.mdl \ others\wpltr_b_091.mdl \ others\wpltr_b_092.mdl \ others\wpltr_b_093.mdl \ others\wpltr_b_094.mdl \ others\wpltr_fxabblu.mdl \ others\wpltr_fxabgrn.mdl \ others\wpltr_fxabgry.mdl \ others\wpltr_fxaborg.mdl \ others\wpltr_fxabpur.mdl \ others\wpltr_fxabwht.mdl \ others\wpltr_fxabyel.mdl \ others\wpltr_fxdark.mdl \ others\wpltr_fxdblk.mdl \ others\wpltr_fxdblu.mdl \ others\wpltr_fxdgrn.mdl \ others\wpltr_fxdorg.mdl \ others\wpltr_fxdpur.mdl \ others\wpltr_fxdrblk.mdl \ others\wpltr_fxdrblu.mdl \ others\wpltr_fxdred.mdl \ others\wpltr_fxdrorg.mdl \ others\wpltr_fxdrpur.mdl \ others\wpltr_fxdrred.mdl \ others\wpltr_fxdryel.mdl \ others\wpltr_fxdyel.mdl \ others\wpltr_fxfog.mdl \ others\wpltr_fxfrbig.mdl \ others\wpltr_fxfrblk.mdl \ others\wpltr_fxfrblu.mdl \ others\wpltr_fxfrgrn.mdl \ others\wpltr_fxfrpur.mdl \ others\wpltr_fxfrred.mdl \ others\wpltr_fxfrwht.mdl \ others\wpltr_fxfryel.mdl \ others\wpltr_fxglblu.mdl \ others\wpltr_fxglgrn.mdl \ others\wpltr_fxglorg.mdl \ others\wpltr_fxglpur.mdl \ others\wpltr_fxglred.mdl \ others\wpltr_fxglyel.mdl \ others\wpltr_fxmind.mdl \ others\wpltr_fxshblk.mdl \ others\wpltr_fxshgrn.mdl \ others\wpltr_fxshorg.mdl \ others\wpltr_fxshpur.mdl \ others\wpltr_fxshred.mdl \ others\wpltr_fxshyel.mdl \ others\wpltr_fxsnow.mdl \ others\wpltr_m_011.mdl \ others\wpltr_m_012.mdl \ others\wpltr_m_013.mdl \ others\wpltr_m_014.mdl \ others\wpltr_m_021.mdl \ others\wpltr_m_022.mdl \ others\wpltr_m_023.mdl \ others\wpltr_m_024.mdl \ others\wpltr_m_031.mdl \ others\wpltr_m_032.mdl \ others\wpltr_m_033.mdl \ others\wpltr_m_034.mdl \ others\wpltr_m_041.mdl \ others\wpltr_m_042.mdl \ others\wpltr_m_043.mdl \ others\wpltr_m_044.mdl \ others\wpltr_m_061.mdl \ others\wpltr_m_062.mdl \ others\wpltr_m_063.mdl \ others\wpltr_m_064.mdl \ others\wpltr_m_071.mdl \ others\wpltr_m_072.mdl \ others\wpltr_m_073.mdl \ others\wpltr_m_074.mdl \ others\wpltr_m_081.mdl \ others\wpltr_m_082.mdl \ others\wpltr_m_083.mdl \ others\wpltr_m_084.mdl \ others\wpltr_m_091.mdl \ others\wpltr_m_092.mdl \ others\wpltr_m_093.mdl \ others\wpltr_m_094.mdl \ others\wpltr_mb.mdl \ others\wpltr_t_011.mdl \ others\wpltr_t_012.mdl \ others\wpltr_t_013.mdl \ others\wpltr_t_014.mdl \ others\wpltr_t_021.mdl \ others\wpltr_t_022.mdl \ others\wpltr_t_023.mdl \ others\wpltr_t_024.mdl \ others\wpltr_t_031.mdl \ others\wpltr_t_032.mdl \ others\wpltr_t_033.mdl \ others\wpltr_t_034.mdl \ others\wpltr_t_041.mdl \ others\wpltr_t_042.mdl \ others\wpltr_t_043.mdl \ others\wpltr_t_044.mdl \ others\wpltr_t_061.mdl \ others\wpltr_t_062.mdl \ others\wpltr_t_063.mdl \ others\wpltr_t_064.mdl \ others\wpltr_t_071.mdl \ others\wpltr_t_072.mdl \ others\wpltr_t_073.mdl \ others\wpltr_t_074.mdl \ others\wpltr_t_081.mdl \ others\wpltr_t_082.mdl \ others\wpltr_t_083.mdl \ others\wpltr_t_084.mdl \ others\wpltr_t_091.mdl \ others\wpltr_t_092.mdl \ others\wpltr_t_093.mdl \ others\wpltr_t_094.mdl \ others\wspgd_b_011.mdl \ others\wspgd_b_012.mdl \ others\wspgd_b_013.mdl \ others\wspgd_b_014.mdl \ others\wspgd_m_011.mdl \ others\wspgd_m_012.mdl \ others\wspgd_m_013.mdl \ others\wspgd_m_014.mdl \ others\wspgd_t_011.mdl \ others\wspgd_t_012.mdl \ others\wspgd_t_013.mdl \ others\wspgd_t_014.mdl \ others\wspsp_b_011.mdl \ others\wspsp_b_012.mdl \ others\wspsp_b_013.mdl \ others\wspsp_b_014.mdl \ others\wspsp_m_011.mdl \ others\wspsp_m_012.mdl \ others\wspsp_m_013.mdl \ others\wspsp_m_014.mdl \ others\wspsp_t_011.mdl \ others\wspsp_t_012.mdl \ others\wspsp_t_013.mdl \ others\wspsp_t_014.mdl \ others\wswdp_b_011.mdl \ others\wswdp_b_012.mdl \ others\wswdp_b_013.mdl \ others\wswdp_b_014.mdl \ others\wswdp_b_021.mdl \ others\wswdp_b_022.mdl \ others\wswdp_b_023.mdl \ others\wswdp_b_024.mdl \ others\wswdp_b_031.mdl \ others\wswdp_b_032.mdl \ others\wswdp_b_033.mdl \ others\wswdp_b_034.mdl \ others\wswdp_b_041.mdl \ others\wswdp_b_042.mdl \ others\wswdp_b_043.mdl \ others\wswdp_b_044.mdl \ others\wswdp_fxabblu.mdl \ others\wswdp_fxabgrn.mdl \ others\wswdp_fxabgry.mdl \ others\wswdp_fxaborg.mdl \ others\wswdp_fxabpur.mdl \ others\wswdp_fxabwht.mdl \ others\wswdp_fxabyel.mdl \ others\wswdp_fxacid.mdl \ others\wswdp_fxdark.mdl \ others\wswdp_fxdblk.mdl \ others\wswdp_fxdblu.mdl \ others\wswdp_fxdgrn.mdl \ others\wswdp_fxdorg.mdl \ others\wswdp_fxdpur.mdl \ others\wswdp_fxdrblk.mdl \ others\wswdp_fxdrblu.mdl \ others\wswdp_fxdred.mdl \ others\wswdp_fxdrorg.mdl \ others\wswdp_fxdrpur.mdl \ others\wswdp_fxdrred.mdl \ others\wswdp_fxdryel.mdl \ others\wswdp_fxdyel.mdl \ others\wswdp_fxelect.mdl \ others\wswdp_fxfire.mdl \ others\wswdp_fxfog.mdl \ others\wswdp_fxfrbig.mdl \ others\wswdp_fxfrblk.mdl \ others\wswdp_fxfrblu.mdl \ others\wswdp_fxfrgrn.mdl \ others\wswdp_fxfrost.mdl \ others\wswdp_fxfrpur.mdl \ others\wswdp_fxfrred.mdl \ others\wswdp_fxfrwht.mdl \ others\wswdp_fxfryel.mdl \ others\wswdp_fxglblu.mdl \ others\wswdp_fxglgrn.mdl \ others\wswdp_fxglorg.mdl \ others\wswdp_fxglpur.mdl \ others\wswdp_fxglred.mdl \ others\wswdp_fxglyel.mdl \ others\wswdp_fxholy.mdl \ others\wswdp_fxmind.mdl \ others\wswdp_fxneg.mdl \ others\wswdp_fxshblk.mdl \ others\wswdp_fxshgrn.mdl \ others\wswdp_fxshorg.mdl \ others\wswdp_fxshpur.mdl \ others\wswdp_fxshred.mdl \ others\wswdp_fxshyel.mdl \ others\wswdp_fxsnow.mdl \ others\wswdp_fxsonic.mdl \ others\wswdp_m_011.mdl \ others\wswdp_m_012.mdl \ others\wswdp_m_013.mdl \ others\wswdp_m_014.mdl \ others\wswdp_m_021.mdl \ others\wswdp_m_022.mdl \ others\wswdp_m_023.mdl \ others\wswdp_m_024.mdl \ others\wswdp_m_031.mdl \ others\wswdp_m_032.mdl \ others\wswdp_m_033.mdl \ others\wswdp_m_034.mdl \ others\wswdp_m_041.mdl \ others\wswdp_m_042.mdl \ others\wswdp_m_043.mdl \ others\wswdp_m_044.mdl \ others\wswdp_mb.mdl \ others\wswdp_t_011.mdl \ others\wswdp_t_012.mdl \ others\wswdp_t_013.mdl \ others\wswdp_t_014.mdl \ others\wswdp_t_021.mdl \ others\wswdp_t_022.mdl \ others\wswdp_t_023.mdl \ others\wswdp_t_024.mdl \ others\wswdp_t_031.mdl \ others\wswdp_t_032.mdl \ others\wswdp_t_033.mdl \ others\wswdp_t_034.mdl \ others\wswdp_t_041.mdl \ others\wswdp_t_042.mdl \ others\wswdp_t_043.mdl \ others\wswdp_t_044.mdl \ others\wswec_b_011.mdl \ others\wswec_b_012.mdl \ others\wswec_b_013.mdl \ others\wswec_m_011.mdl \ others\wswec_m_012.mdl \ others\wswec_m_013.mdl \ others\wswec_t_011.mdl \ others\wswec_t_012.mdl \ others\wswec_t_013.mdl \ others\wswfa_b_011.mdl \ others\wswfa_b_012.mdl \ others\wswfa_b_013.mdl \ others\wswfa_b_014.mdl \ others\wswfa_b_021.mdl \ others\wswfa_b_022.mdl \ others\wswfa_b_023.mdl \ others\wswfa_b_024.mdl \ others\wswfa_b_031.mdl \ others\wswfa_b_032.mdl \ others\wswfa_b_033.mdl \ others\wswfa_b_034.mdl \ others\wswfa_b_041.mdl \ others\wswfa_b_042.mdl \ others\wswfa_b_043.mdl \ others\wswfa_b_044.mdl \ others\wswfa_b_051.mdl \ others\wswfa_b_052.mdl \ others\wswfa_b_053.mdl \ others\wswfa_b_054.mdl \ others\wswfa_fxabblu.mdl \ others\wswfa_fxabgrn.mdl \ others\wswfa_fxabgry.mdl \ others\wswfa_fxaborg.mdl \ others\wswfa_fxabpur.mdl \ others\wswfa_fxabwht.mdl \ others\wswfa_fxabyel.mdl \ others\wswfa_fxabyss.mdl \ others\wswfa_fxacid.mdl \ others\wswfa_fxaxio.mdl \ others\wswfa_fxdark.mdl \ others\wswfa_fxdblk.mdl \ others\wswfa_fxdblu.mdl \ others\wswfa_fxdgrn.mdl \ others\wswfa_fxdorg.mdl \ others\wswfa_fxdpur.mdl \ others\wswfa_fxdrblk.mdl \ others\wswfa_fxdrblu.mdl \ others\wswfa_fxdred.mdl \ others\wswfa_fxdrorg.mdl \ others\wswfa_fxdrpur.mdl \ others\wswfa_fxdrred.mdl \ others\wswfa_fxdryel.mdl \ others\wswfa_fxdyel.mdl \ others\wswfa_fxelect.mdl \ others\wswfa_fxfire.mdl \ others\wswfa_fxfog.mdl \ others\wswfa_fxfrbig.mdl \ others\wswfa_fxfrblk.mdl \ others\wswfa_fxfrblu.mdl \ others\wswfa_fxfrgrn.mdl \ others\wswfa_fxfrost.mdl \ others\wswfa_fxfrpur.mdl \ others\wswfa_fxfrred.mdl \ others\wswfa_fxfrwht.mdl \ others\wswfa_fxfryel.mdl \ others\wswfa_fxglblu.mdl \ others\wswfa_fxglgrn.mdl \ others\wswfa_fxglorg.mdl \ others\wswfa_fxglpur.mdl \ others\wswfa_fxglred.mdl \ others\wswfa_fxglyel.mdl \ others\wswfa_fxholy.mdl \ others\wswfa_fxinfer.mdl \ others\wswfa_fxmind.mdl \ others\wswfa_fxneg.mdl \ others\wswfa_fxrunic.mdl \ others\wswfa_fxshat.mdl \ others\wswfa_fxshblk.mdl \ others\wswfa_fxshgrn.mdl \ others\wswfa_fxshorg.mdl \ others\wswfa_fxshpur.mdl \ others\wswfa_fxshred.mdl \ others\wswfa_fxshyel.mdl \ others\wswfa_fxsnow.mdl \ others\wswfa_fxsonic.mdl \ others\wswfa_m_011.mdl \ others\wswfa_m_012.mdl \ others\wswfa_m_013.mdl \ others\wswfa_m_014.mdl \ others\wswfa_m_021.mdl \ others\wswfa_m_022.mdl \ others\wswfa_m_023.mdl \ others\wswfa_m_024.mdl \ others\wswfa_m_031.mdl \ others\wswfa_m_032.mdl \ others\wswfa_m_033.mdl \ others\wswfa_m_034.mdl \ others\wswfa_m_041.mdl \ others\wswfa_m_042.mdl \ others\wswfa_m_043.mdl \ others\wswfa_m_044.mdl \ others\wswfa_m_051.mdl \ others\wswfa_m_052.mdl \ others\wswfa_m_053.mdl \ others\wswfa_m_054.mdl \ others\wswfa_mb.mdl \ others\wswfa_t_011.mdl \ others\wswfa_t_012.mdl \ others\wswfa_t_013.mdl \ others\wswfa_t_014.mdl \ others\wswfa_t_021.mdl \ others\wswfa_t_022.mdl \ others\wswfa_t_023.mdl \ others\wswfa_t_024.mdl \ others\wswfa_t_031.mdl \ others\wswfa_t_032.mdl \ others\wswfa_t_033.mdl \ others\wswfa_t_034.mdl \ others\wswfa_t_041.mdl \ others\wswfa_t_042.mdl \ others\wswfa_t_043.mdl \ others\wswfa_t_044.mdl \ others\wswfa_t_051.mdl \ others\wswfa_t_052.mdl \ others\wswfa_t_053.mdl \ others\wswfa_t_054.mdl \ others\wswgs_b_071.mdl \ others\wswgs_b_072.mdl \ others\wswgs_b_073.mdl \ others\wswgs_m_071.mdl \ others\wswgs_m_072.mdl \ others\wswgs_m_073.mdl \ others\wswgs_t_071.mdl \ others\wswgs_t_072.mdl \ others\wswgs_t_073.mdl \ others\wswgs071.uti \ others\wswgs072.uti \ others\wswgs073.uti \ others\wswls_b_091.mdl \ others\wswls_b_092.mdl \ others\wswls_b_093.mdl \ others\wswls_m_091.mdl \ others\wswls_m_092.mdl \ others\wswls_m_093.mdl \ others\wswls_t_091.mdl \ others\wswls_t_092.mdl \ others\wswls_t_093.mdl \ others\wswls091.uti \ others\wswls092.uti \ others\wswls093.uti \ others\wswsi_b_011.mdl \ others\wswsi_b_012.mdl \ others\wswsi_b_013.mdl \ others\wswsi_b_014.mdl \ others\wswsi_b_021.mdl \ others\wswsi_b_022.mdl \ others\wswsi_b_023.mdl \ others\wswsi_b_024.mdl \ others\wswsi_b_031.mdl \ others\wswsi_b_032.mdl \ others\wswsi_b_033.mdl \ others\wswsi_b_034.mdl \ others\wswsi_b_041.mdl \ others\wswsi_b_042.mdl \ others\wswsi_b_043.mdl \ others\wswsi_b_044.mdl \ others\wswsi_b_061.mdl \ others\wswsi_b_062.mdl \ others\wswsi_b_063.mdl \ others\wswsi_b_064.mdl \ others\wswsi_b_071.mdl \ others\wswsi_b_072.mdl \ others\wswsi_b_073.mdl \ others\wswsi_b_074.mdl \ others\wswsi_fxabblu.mdl \ others\wswsi_fxabgrn.mdl \ others\wswsi_fxabgry.mdl \ others\wswsi_fxaborg.mdl \ others\wswsi_fxabpur.mdl \ others\wswsi_fxabwht.mdl \ others\wswsi_fxabyel.mdl \ others\wswsi_fxabyss.mdl \ others\wswsi_fxacid.mdl \ others\wswsi_fxaxio.mdl \ others\wswsi_fxdark.mdl \ others\wswsi_fxdblk.mdl \ others\wswsi_fxdblu.mdl \ others\wswsi_fxdgrn.mdl \ others\wswsi_fxdorg.mdl \ others\wswsi_fxdpur.mdl \ others\wswsi_fxdrblk.mdl \ others\wswsi_fxdrblu.mdl \ others\wswsi_fxdred.mdl \ others\wswsi_fxdrorg.mdl \ others\wswsi_fxdrpur.mdl \ others\wswsi_fxdrred.mdl \ others\wswsi_fxdryel.mdl \ others\wswsi_fxdyel.mdl \ others\wswsi_fxelect.mdl \ others\wswsi_fxfire.mdl \ others\wswsi_fxfog.mdl \ others\wswsi_fxfrbig.mdl \ others\wswsi_fxfrblk.mdl \ others\wswsi_fxfrblu.mdl \ others\wswsi_fxfrgrn.mdl \ others\wswsi_fxfrost.mdl \ others\wswsi_fxfrpur.mdl \ others\wswsi_fxfrred.mdl \ others\wswsi_fxfrwht.mdl \ others\wswsi_fxfryel.mdl \ others\wswsi_fxglblu.mdl \ others\wswsi_fxglgrn.mdl \ others\wswsi_fxglorg.mdl \ others\wswsi_fxglpur.mdl \ others\wswsi_fxglred.mdl \ others\wswsi_fxglyel.mdl \ others\wswsi_fxholy.mdl \ others\wswsi_fxinfer.mdl \ others\wswsi_fxmind.mdl \ others\wswsi_fxneg.mdl \ others\wswsi_fxrunic.mdl \ others\wswsi_fxshat.mdl \ others\wswsi_fxshblk.mdl \ others\wswsi_fxshgrn.mdl \ others\wswsi_fxshorg.mdl \ others\wswsi_fxshpur.mdl \ others\wswsi_fxshred.mdl \ others\wswsi_fxshyel.mdl \ others\wswsi_fxsnow.mdl \ others\wswsi_fxsonic.mdl \ others\wswsi_m_011.mdl \ others\wswsi_m_012.mdl \ others\wswsi_m_013.mdl \ others\wswsi_m_014.mdl \ others\wswsi_m_041.mdl \ others\wswsi_m_042.mdl \ others\wswsi_m_043.mdl \ others\wswsi_m_044.mdl \ others\wswsi_m_061.mdl \ others\wswsi_m_062.mdl \ others\wswsi_m_063.mdl \ others\wswsi_m_064.mdl \ others\wswsi_m_071.mdl \ others\wswsi_m_072.mdl \ others\wswsi_m_073.mdl \ others\wswsi_m_074.mdl \ others\wswsi_mb.mdl \ others\wswsi_t_011.mdl \ others\wswsi_t_012.mdl \ others\wswsi_t_013.mdl \ others\wswsi_t_014.mdl \ others\wswsi_t_021.mdl \ others\wswsi_t_022.mdl \ others\wswsi_t_023.mdl \ others\wswsi_t_024.mdl \ others\wswsi_t_041.mdl \ others\wswsi_t_042.mdl \ others\wswsi_t_043.mdl \ others\wswsi_t_044.mdl \ others\wswsi_t_061.mdl \ others\wswsi_t_062.mdl \ others\wswsi_t_063.mdl \ others\wswsi_t_064.mdl \ others\wswsi_t_071.mdl \ others\wswsi_t_072.mdl \ others\wswsi_t_073.mdl \ others\wswsi_t_074.mdl \ others\wswss_b_071.mdl \ others\wswss_b_072.mdl \ others\wswss_b_073.mdl \ others\wswss_fxabblu.mdl \ others\wswss_fxabgrn.mdl \ others\wswss_fxabgry.mdl \ others\wswss_fxaborg.mdl \ others\wswss_fxabpur.mdl \ others\wswss_fxabwht.mdl \ others\wswss_fxabyel.mdl \ others\wswss_fxdark.mdl \ others\wswss_fxdblk.mdl \ others\wswss_fxdblu.mdl \ others\wswss_fxdgrn.mdl \ others\wswss_fxdorg.mdl \ others\wswss_fxdpur.mdl \ others\wswss_fxdrblk.mdl \ others\wswss_fxdrblu.mdl \ others\wswss_fxdred.mdl \ others\wswss_fxdrorg.mdl \ others\wswss_fxdrpur.mdl \ others\wswss_fxdrred.mdl \ others\wswss_fxdryel.mdl \ others\wswss_fxdyel.mdl \ others\wswss_fxfog.mdl \ others\wswss_fxfrbig.mdl \ others\wswss_fxfrblk.mdl \ others\wswss_fxfrblu.mdl \ others\wswss_fxfrgrn.mdl \ others\wswss_fxfrpur.mdl \ others\wswss_fxfrred.mdl \ others\wswss_fxfrwht.mdl \ others\wswss_fxfryel.mdl \ others\wswss_fxglblu.mdl \ others\wswss_fxglgrn.mdl \ others\wswss_fxglorg.mdl \ others\wswss_fxglpur.mdl \ others\wswss_fxglred.mdl \ others\wswss_fxglyel.mdl \ others\wswss_fxshblk.mdl \ others\wswss_fxshgrn.mdl \ others\wswss_fxshorg.mdl \ others\wswss_fxshpur.mdl \ others\wswss_fxshred.mdl \ others\wswss_fxshyel.mdl \ others\wswss_fxsnow.mdl \ others\wswss_m_071.mdl \ others\wswss_m_072.mdl \ others\wswss_m_073.mdl \ others\wswss_t_071.mdl \ others\wswss_t_072.mdl \ others\wswss_t_073.mdl \ others\wswss071.uti \ others\wswss072.uti \ others\wswss073.uti \ others\wwolf_f_bite_01.uti \ others\wwolf_f_bite_05.uti \ others\wwolf_f_bite_10.uti \ others\wwolf_f_bite_15.uti \ others\wwolf_f_bite_20.uti \ others\wwolf_f_bite_25.uti \ others\wwolf_f_bite_30.uti \ others\wwolf_f_bite_35.uti \ others\wwolf_f_bite_40.uti \ others\wxblma_b_111.mdl \ others\wxblma_b_112.mdl \ others\wxblma_b_113.mdl \ others\wxblma_b_114.mdl \ others\wxblma_b_121.mdl \ others\wxblma_b_122.mdl \ others\wxblma_b_123.mdl \ others\wxblma_b_124.mdl \ others\wxblma_b_131.mdl \ others\wxblma_b_132.mdl \ others\wxblma_b_133.mdl \ others\wxblma_b_134.mdl \ others\wxblma_b_141.mdl \ others\wxblma_b_142.mdl \ others\wxblma_b_143.mdl \ others\wxblma_b_144.mdl \ others\wxblma_b_151.mdl \ others\wxblma_b_152.mdl \ others\wxblma_b_153.mdl \ others\wxblma_b_154.mdl \ others\wxblma_b_161.mdl \ others\wxblma_b_162.mdl \ others\wxblma_b_163.mdl \ others\wxblma_b_164.mdl \ others\wxblma_b_171.mdl \ others\wxblma_b_172.mdl \ others\wxblma_b_173.mdl \ others\wxblma_b_174.mdl \ others\wxblma_b_181.mdl \ others\wxblma_b_182.mdl \ others\wxblma_b_183.mdl \ others\wxblma_b_184.mdl \ others\wxblma_fxabblu.mdl \ others\wxblma_fxabgrn.mdl \ others\wxblma_fxabgry.mdl \ others\wxblma_fxaborg.mdl \ others\wxblma_fxabpur.mdl \ others\wxblma_fxabwht.mdl \ others\wxblma_fxabyel.mdl \ others\wxblma_fxabyss.mdl \ others\wxblma_fxacid.mdl \ others\wxblma_fxaxio.mdl \ others\wxblma_fxdark.mdl \ others\wxblma_fxdblk.mdl \ others\wxblma_fxdblu.mdl \ others\wxblma_fxdgrn.mdl \ others\wxblma_fxdorg.mdl \ others\wxblma_fxdpur.mdl \ others\wxblma_fxdrblk.mdl \ others\wxblma_fxdrblu.mdl \ others\wxblma_fxdred.mdl \ others\wxblma_fxdrorg.mdl \ others\wxblma_fxdrpur.mdl \ others\wxblma_fxdrred.mdl \ others\wxblma_fxdryel.mdl \ others\wxblma_fxdyel.mdl \ others\wxblma_fxelect.mdl \ others\wxblma_fxfire.mdl \ others\wxblma_fxfog.mdl \ others\wxblma_fxfrblk.mdl \ others\wxblma_fxfrblu.mdl \ others\wxblma_fxfrgrn.mdl \ others\wxblma_fxfrost.mdl \ others\wxblma_fxfrpur.mdl \ others\wxblma_fxfrred.mdl \ others\wxblma_fxfrwht.mdl \ others\wxblma_fxfryel.mdl \ others\wxblma_fxglblu.mdl \ others\wxblma_fxglgrn.mdl \ others\wxblma_fxglorg.mdl \ others\wxblma_fxglpur.mdl \ others\wxblma_fxglred.mdl \ others\wxblma_fxglyel.mdl \ others\wxblma_fxholy.mdl \ others\wxblma_fxinfer.mdl \ others\wxblma_fxmind.mdl \ others\wxblma_fxneg.mdl \ others\wxblma_fxrunic.mdl \ others\wxblma_fxshat.mdl \ others\wxblma_fxshblk.mdl \ others\wxblma_fxshgrn.mdl \ others\wxblma_fxshorg.mdl \ others\wxblma_fxshpur.mdl \ others\wxblma_fxshred.mdl \ others\wxblma_fxshyel.mdl \ others\wxblma_fxsnow.mdl \ others\wxblma_fxsonic.mdl \ others\wxblma_m_111.mdl \ others\wxblma_m_112.mdl \ others\wxblma_m_113.mdl \ others\wxblma_m_114.mdl \ others\wxblma_m_121.mdl \ others\wxblma_m_122.mdl \ others\wxblma_m_123.mdl \ others\wxblma_m_124.mdl \ others\wxblma_m_131.mdl \ others\wxblma_m_132.mdl \ others\wxblma_m_133.mdl \ others\wxblma_m_134.mdl \ others\wxblma_m_141.mdl \ others\wxblma_m_142.mdl \ others\wxblma_m_143.mdl \ others\wxblma_m_144.mdl \ others\wxblma_m_151.mdl \ others\wxblma_m_152.mdl \ others\wxblma_m_153.mdl \ others\wxblma_m_154.mdl \ others\wxblma_t_111.mdl \ others\wxblma_t_112.mdl \ others\wxblma_t_113.mdl \ others\wxblma_t_114.mdl \ others\wxblma_t_121.mdl \ others\wxblma_t_122.mdl \ others\wxblma_t_123.mdl \ others\wxblma_t_124.mdl \ others\wxblma_t_131.mdl \ others\wxblma_t_132.mdl \ others\wxblma_t_133.mdl \ others\wxblma_t_134.mdl \ others\wxblma_t_141.mdl \ others\wxblma_t_142.mdl \ others\wxblma_t_143.mdl \ others\wxblma_t_144.mdl \ others\wxblma_t_151.mdl \ others\wxblma_t_152.mdl \ others\wxblma_t_153.mdl \ others\wxblma_t_154.mdl \ others\wxblmh_b_111.mdl \ others\wxblmh_b_112.mdl \ others\wxblmh_b_113.mdl \ others\wxblmh_b_114.mdl \ others\wxblmh_b_121.mdl \ others\wxblmh_b_122.mdl \ others\wxblmh_b_123.mdl \ others\wxblmh_b_124.mdl \ others\wxblmh_b_131.mdl \ others\wxblmh_b_132.mdl \ others\wxblmh_b_133.mdl \ others\wxblmh_b_134.mdl \ others\wxblmh_b_141.mdl \ others\wxblmh_b_142.mdl \ others\wxblmh_b_143.mdl \ others\wxblmh_b_144.mdl \ others\wxblmh_fxabblu.mdl \ others\wxblmh_fxabgrn.mdl \ others\wxblmh_fxabgry.mdl \ others\wxblmh_fxaborg.mdl \ others\wxblmh_fxabpur.mdl \ others\wxblmh_fxabwht.mdl \ others\wxblmh_fxabyel.mdl \ others\wxblmh_fxacid.mdl \ others\wxblmh_fxdark.mdl \ others\wxblmh_fxdblk.mdl \ others\wxblmh_fxdblu.mdl \ others\wxblmh_fxdgrn.mdl \ others\wxblmh_fxdorg.mdl \ others\wxblmh_fxdpur.mdl \ others\wxblmh_fxdrblk.mdl \ others\wxblmh_fxdrblu.mdl \ others\wxblmh_fxdred.mdl \ others\wxblmh_fxdrorg.mdl \ others\wxblmh_fxdrpur.mdl \ others\wxblmh_fxdrred.mdl \ others\wxblmh_fxdryel.mdl \ others\wxblmh_fxdyel.mdl \ others\wxblmh_fxelect.mdl \ others\wxblmh_fxfire.mdl \ others\wxblmh_fxfog.mdl \ others\wxblmh_fxfrblk.mdl \ others\wxblmh_fxfrblu.mdl \ others\wxblmh_fxfrgrn.mdl \ others\wxblmh_fxfrost.mdl \ others\wxblmh_fxfrpur.mdl \ others\wxblmh_fxfrred.mdl \ others\wxblmh_fxfrwht.mdl \ others\wxblmh_fxfryel.mdl \ others\wxblmh_fxglblu.mdl \ others\wxblmh_fxglgrn.mdl \ others\wxblmh_fxglorg.mdl \ others\wxblmh_fxglpur.mdl \ others\wxblmh_fxglred.mdl \ others\wxblmh_fxglyel.mdl \ others\wxblmh_fxholy.mdl \ others\wxblmh_fxmind.mdl \ others\wxblmh_fxneg.mdl \ others\wxblmh_fxshblk.mdl \ others\wxblmh_fxshgrn.mdl \ others\wxblmh_fxshorg.mdl \ others\wxblmh_fxshpur.mdl \ others\wxblmh_fxshred.mdl \ others\wxblmh_fxshyel.mdl \ others\wxblmh_fxsnow.mdl \ others\wxblmh_fxsonic.mdl \ others\wxblmh_m_111.mdl \ others\wxblmh_m_112.mdl \ others\wxblmh_m_113.mdl \ others\wxblmh_m_114.mdl \ others\wxblmh_m_121.mdl \ others\wxblmh_m_122.mdl \ others\wxblmh_m_123.mdl \ others\wxblmh_m_124.mdl \ others\wxblmh_m_131.mdl \ others\wxblmh_m_132.mdl \ others\wxblmh_m_133.mdl \ others\wxblmh_m_134.mdl \ others\wxblmh_m_141.mdl \ others\wxblmh_m_142.mdl \ others\wxblmh_m_143.mdl \ others\wxblmh_m_144.mdl \ others\wxblmh_t_111.mdl \ others\wxblmh_t_112.mdl \ others\wxblmh_t_113.mdl \ others\wxblmh_t_114.mdl \ others\wxblmh_t_121.mdl \ others\wxblmh_t_122.mdl \ others\wxblmh_t_123.mdl \ others\wxblmh_t_124.mdl \ others\wxblmh_t_131.mdl \ others\wxblmh_t_132.mdl \ others\wxblmh_t_133.mdl \ others\wxblmh_t_134.mdl \ others\wxblmh_t_141.mdl \ others\wxblmh_t_142.mdl \ others\wxblmh_t_143.mdl \ others\wxblmh_t_144.mdl \ others\wxblmh_t_151.mdl \ others\wxblmh_t_152.mdl \ others\wxblmh_t_153.mdl \ others\wxblmh_t_154.mdl \ others\wxdbsc_b_111.mdl \ others\wxdbsc_b_112.mdl \ others\wxdbsc_b_113.mdl \ others\wxdbsc_b_114.mdl \ others\wxdbsc_b_121.mdl \ others\wxdbsc_b_122.mdl \ others\wxdbsc_b_123.mdl \ others\wxdbsc_b_124.mdl \ others\wxdbsc_b_131.mdl \ others\wxdbsc_b_132.mdl \ others\wxdbsc_b_133.mdl \ others\wxdbsc_b_134.mdl \ others\wxdbsc_b_141.mdl \ others\wxdbsc_b_142.mdl \ others\wxdbsc_b_143.mdl \ others\wxdbsc_b_144.mdl \ others\wxdbsc_fxabblu.mdl \ others\wxdbsc_fxabgrn.mdl \ others\wxdbsc_fxabgry.mdl \ others\wxdbsc_fxaborg.mdl \ others\wxdbsc_fxabpur.mdl \ others\wxdbsc_fxabwht.mdl \ others\wxdbsc_fxabyel.mdl \ others\wxdbsc_fxabyss.mdl \ others\wxdbsc_fxacid.mdl \ others\wxdbsc_fxaxio.mdl \ others\wxdbsc_fxdark.mdl \ others\wxdbsc_fxdblk.mdl \ others\wxdbsc_fxdblu.mdl \ others\wxdbsc_fxdgrn.mdl \ others\wxdbsc_fxdorg.mdl \ others\wxdbsc_fxdpur.mdl \ others\wxdbsc_fxdrblk.mdl \ others\wxdbsc_fxdrblu.mdl \ others\wxdbsc_fxdred.mdl \ others\wxdbsc_fxdrorg.mdl \ others\wxdbsc_fxdrpur.mdl \ others\wxdbsc_fxdrred.mdl \ others\wxdbsc_fxdryel.mdl \ others\wxdbsc_fxdyel.mdl \ others\wxdbsc_fxelect.mdl \ others\wxdbsc_fxfire.mdl \ others\wxdbsc_fxfog.mdl \ others\wxdbsc_fxfrblk.mdl \ others\wxdbsc_fxfrblu.mdl \ others\wxdbsc_fxfrgrn.mdl \ others\wxdbsc_fxfrost.mdl \ others\wxdbsc_fxfrpur.mdl \ others\wxdbsc_fxfrred.mdl \ others\wxdbsc_fxfrwht.mdl \ others\wxdbsc_fxfryel.mdl \ others\wxdbsc_fxglblu.mdl \ others\wxdbsc_fxglgrn.mdl \ others\wxdbsc_fxglorg.mdl \ others\wxdbsc_fxglpur.mdl \ others\wxdbsc_fxglred.mdl \ others\wxdbsc_fxglyel.mdl \ others\wxdbsc_fxholy.mdl \ others\wxdbsc_fxinfer.mdl \ others\wxdbsc_fxmind.mdl \ others\wxdbsc_fxneg.mdl \ others\wxdbsc_fxrunic.mdl \ others\wxdbsc_fxshat.mdl \ others\wxdbsc_fxshblk.mdl \ others\wxdbsc_fxshgrn.mdl \ others\wxdbsc_fxshorg.mdl \ others\wxdbsc_fxshpur.mdl \ others\wxdbsc_fxshred.mdl \ others\wxdbsc_fxshyel.mdl \ others\wxdbsc_fxsnow.mdl \ others\wxdbsc_fxsonic.mdl \ others\wxdbsc_m_111.mdl \ others\wxdbsc_m_112.mdl \ others\wxdbsc_m_113.mdl \ others\wxdbsc_m_114.mdl \ others\wxdbsc_m_121.mdl \ others\wxdbsc_m_122.mdl \ others\wxdbsc_m_123.mdl \ others\wxdbsc_m_124.mdl \ others\wxdbsc_t_111.mdl \ others\wxdbsc_t_112.mdl \ others\wxdbsc_t_113.mdl \ others\wxdbsc_t_114.mdl \ others\wxdbsc_t_121.mdl \ others\wxdbsc_t_122.mdl \ others\wxdbsc_t_123.mdl \ others\wxdbsc_t_124.mdl \ others\wxdbsc_t_131.mdl \ others\wxdbsc_t_132.mdl \ others\wxdbsc_t_133.mdl \ others\wxdbsc_t_134.mdl \ others\x0_ac_drat001.utc \ others\x0_ac_drat002.utc \ others\x0_ac_drat003.utc \ others\x0_ac_drat004.utc \ others\x0_ac_drat005.utc \ others\x0_ac_drat006.utc \ others\x0_ac_drat007.utc \ others\x0_ac_drat008.utc \ others\x0_ac_drat009.utc \ others\x0_ac_drat010.utc \ others\x0_ac_drat011.utc \ others\x0_ac_drat012.utc \ others\x0_ac_drat013.utc \ others\x0_ac_drat014.utc \ others\x0_ac_drat015.utc \ others\x0_ac_drat016.utc \ others\x0_ac_drat017.utc \ others\x0_ac_drat018.utc \ others\x0_ac_drat019.utc \ others\x0_ac_drat020.utc \ others\x0_ac_drat021.utc \ others\x0_ac_drat022.utc \ others\x0_ac_drat023.utc \ others\x0_ac_drat024.utc \ others\x0_ac_drat025.utc \ others\x0_ac_drat026.utc \ others\x0_ac_drat027.utc \ others\x0_ac_drat028.utc \ others\x0_ac_drat029.utc \ others\x0_ac_drat030.utc \ others\x0_ac_drat031.utc \ others\x0_ac_drat032.utc \ others\x0_ac_drat033.utc \ others\x0_ac_drat034.utc \ others\x0_ac_drat035.utc \ others\x0_ac_drat036.utc \ others\x0_ac_drat037.utc \ others\x0_ac_drat038.utc \ others\x0_ac_drat039.utc \ others\x0_ac_drat040.utc \ others\x0_fm_fdrg01.utc \ others\x0_fm_fdrg02.utc \ others\x0_fm_fdrg03.utc \ others\x0_fm_fdrg04.utc \ others\x0_fm_fdrg05.utc \ others\x0_fm_fdrg06.utc \ others\x0_fm_fdrg07.utc \ others\x0_fm_fdrg08.utc \ others\x0_fm_fdrg09.utc \ others\x0_fm_fdrg10.utc \ others\x0_fm_fdrg11.utc \ others\x0_fm_fdrg12.utc \ others\x0_fm_fdrg13.utc \ others\x0_fm_fdrg14.utc \ others\x0_fm_fdrg15.utc \ others\x0_fm_fdrg16.utc \ others\x0_fm_fdrg17.utc \ others\x0_fm_fdrg18.utc \ others\x0_fm_fdrg19.utc \ others\x0_fm_fdrg20.utc \ others\x0_fm_fdrg21.utc \ others\x0_fm_fdrg22.utc \ others\x0_fm_fdrg23.utc \ others\x0_fm_fdrg24.utc \ others\x0_fm_fdrg25.utc \ others\x0_fm_fdrg26.utc \ others\x0_fm_fdrg27.utc \ others\x0_fm_fdrg28.utc \ others\x0_fm_fdrg29.utc \ others\x0_fm_fdrg30.utc \ others\x0_fm_fdrg31.utc \ others\x0_fm_fdrg32.utc \ others\x0_fm_fdrg33.utc \ others\x0_fm_fdrg34.utc \ others\x0_fm_fdrg35.utc \ others\x0_fm_fdrg36.utc \ others\x0_fm_fdrg37.utc \ others\x0_fm_fdrg38.utc \ others\x0_fm_fdrg39.utc \ others\x0_fm_fdrg40.utc \ others\x0_fm_pdrg001.utc \ others\x0_fm_pdrg002.utc \ others\x0_fm_pdrg003.utc \ others\x0_fm_pdrg004.utc \ others\x0_fm_pdrg005.utc \ others\x0_fm_pdrg006.utc \ others\x0_fm_pdrg007.utc \ others\x0_fm_pdrg008.utc \ others\x0_fm_pdrg009.utc \ others\x0_fm_pdrg010.utc \ others\x0_fm_pdrg011.utc \ others\x0_fm_pdrg012.utc \ others\x0_fm_pdrg013.utc \ others\x0_fm_pdrg014.utc \ others\x0_fm_pdrg015.utc \ others\x0_fm_pdrg016.utc \ others\x0_fm_pdrg017.utc \ others\x0_fm_pdrg018.utc \ others\x0_fm_pdrg019.utc \ others\x0_fm_pdrg020.utc \ others\x0_fm_pdrg021.utc \ others\x0_fm_pdrg022.utc \ others\x0_fm_pdrg023.utc \ others\x0_fm_pdrg024.utc \ others\x0_fm_pdrg025.utc \ others\x0_fm_pdrg026.utc \ others\x0_fm_pdrg027.utc \ others\x0_fm_pdrg028.utc \ others\x0_fm_pdrg029.utc \ others\x0_fm_pdrg030.utc \ others\x0_fm_pdrg031.utc \ others\x0_fm_pdrg032.utc \ others\x0_fm_pdrg033.utc \ others\x0_fm_pdrg034.utc \ others\x0_fm_pdrg035.utc \ others\x0_fm_pdrg036.utc \ others\x0_fm_pdrg037.utc \ others\x0_fm_pdrg038.utc \ others\x0_fm_pdrg039.utc \ others\x0_fm_pdrg040.utc \ others\x1_s_airsmall.utc \ others\x1_s_earthsmall.utc \ others\x1_s_firesmall.utc \ others\x1_s_shadlord.utc \ others\x1_s_shadow.utc \ others\x1_s_shfiend.utc \ others\x1_s_watersmall.utc \ others\x1_wmgrenade005.uti \ others\x2_fm_eye001.utc \ others\x2_fm_eye002.utc \ others\x2_fm_eye003.utc \ others\x2_fm_eye004.utc \ others\x2_fm_eye005.utc \ others\x2_fm_eye006.utc \ others\x2_fm_eye007.utc \ others\x2_fm_eye008.utc \ others\x2_fm_eye009.utc \ others\x2_fm_eye010.utc \ others\x2_fm_eye011.utc \ others\x2_fm_eye012.utc \ others\x2_fm_eye013.utc \ others\x2_fm_eye014.utc \ others\x2_fm_eye015.utc \ others\x2_fm_eye016.utc \ others\x2_fm_eye017.utc \ others\x2_fm_eye018.utc \ others\x2_fm_eye019.utc \ others\x2_fm_eye020.utc \ others\x2_fm_eye021.utc \ others\x2_fm_eye022.utc \ others\x2_fm_eye023.utc \ others\x2_fm_eye024.utc \ others\x2_fm_eye025.utc \ others\x2_fm_eye026.utc \ others\x2_fm_eye027.utc \ others\x2_fm_eye028.utc \ others\x2_fm_eye029.utc \ others\x2_fm_eye030.utc \ others\x2_fm_eye031.utc \ others\x2_fm_eye032.utc \ others\x2_fm_eye033.utc \ others\x2_fm_eye034.utc \ others\x2_fm_eye035.utc \ others\x2_fm_eye036.utc \ others\x2_fm_eye037.utc \ others\x2_fm_eye038.utc \ others\x2_fm_eye039.utc \ others\x2_fm_eye040.utc \ others\x2_s_batthorr001.utc \ others\x2_s_bblade.utc \ others\x2_s_bguard_18.utc \ others\x2_s_bodak_14.utc \ others\x2_s_drgred001.utc \ others\x2_s_eshadlord.utc \ others\x2_s_faerie001.utc \ others\x2_s_ghoul_16.utc \ others\x2_s_lich_20.utc \ others\x2_s_lich_22.utc \ others\x2_s_lich_24.utc \ others\x2_s_lich_26.utc \ others\x2_s_lich_30.utc \ others\x2_s_mummy.utc \ others\x2_s_mummy_9.utc \ others\x2_s_mummywarr.utc \ others\x2_s_spectre_10.utc \ others\x2_s_tynan0.utc \ others\x2_s_tynan1.utc \ others\x2_s_vamp_10.utc \ others\x2_s_vamp_18.utc \ others\x2_s_vrock.utc \ others\x2_s_wraith.utc \ others\x3_palhrs11.utc \ others\x3_palhrs12.utc \ others\x3_palhrs13.utc \ others\x3_palhrs14.utc \ others\x3_palhrs15.utc \ others\x3_palhrs16.utc \ others\x3_palhrs17.utc \ others\x3_palhrs18.utc \ others\xagya2.utc \ others\xchst_cont.utc \ others\xchst_key.uti \ others\xchst_plc.utp \ others\xephf.ltr \ others\xephm.ltr \ others\yuantif.ltr \ others\yuantim.ltr CRAFT2DAS= \ craft2das\craft_armour.2da \ craft2das\craft_golem.2da \ craft2das\craft_ring.2da \ craft2das\craft_weapon.2da \ craft2das\craft_wondrous.2da \ craft2das\prc_craft_alchem.2da \ craft2das\prc_craft_gen_it.2da \ craft2das\prc_craft_poison.2da RACE2DAS= \ race2das\race_feat_aas.2da \ race2das\race_feat_agen.2da \ race2das\race_feat_aqelf.2da \ race2das\race_feat_aranea.2da \ race2das\race_feat_arcdw.2da \ race2das\race_feat_arch.2da \ race2das\race_feat_arkam.2da \ race2das\race_feat_asabi.2da \ race2das\race_feat_ashrat.2da \ race2das\race_feat_avar.2da \ race2das\race_feat_ayuan.2da \ race2das\race_feat_azer.2da \ race2das\race_feat_azurin.2da \ race2das\race_feat_baaz.2da \ race2das\race_feat_bari.2da \ race2das\race_feat_bhuka.2da \ race2das\race_feat_bldlng.2da \ race2das\race_feat_blue.2da \ race2das\race_feat_bozak.2da \ race2das\race_feat_bral.2da \ race2das\race_feat_brecht.2da \ race2das\race_feat_browni.2da \ race2das\race_feat_bugb.2da \ race2das\race_feat_buom.2da \ race2das\race_feat_catfk.2da \ race2das\race_feat_cent.2da \ race2das\race_feat_chaond.2da \ race2das\race_feat_chit.2da \ race2das\race_feat_chnglg.2da \ race2das\race_feat_crucia.2da \ race2das\race_feat_ddwar.2da \ race2das\race_feat_deep.2da \ race2das\race_feat_dhalf.2da \ race2das\race_feat_dkin.2da \ race2das\race_feat_doppel.2da \ race2das\race_feat_drider.2da \ race2das\race_feat_drom.2da \ race2das\race_feat_drow.2da \ race2das\race_feat_dsdwar.2da \ race2das\race_feat_dself.2da \ race2das\race_feat_dsgian.2da \ race2das\race_feat_dshalf.2da \ race2das\race_feat_dshe.2da \ race2das\race_feat_duerg.2da \ race2das\race_feat_dusklg.2da \ race2das\race_feat_dwarf.2da \ race2das\race_feat_egen.2da \ race2das\race_feat_elan.2da \ race2das\race_feat_emptyv.2da \ race2das\race_feat_extam.2da \ race2das\race_feat_feyri.2da \ race2das\race_feat_fgen.2da \ race2das\race_feat_fgnome.2da \ race2das\race_feat_firedw.2da \ race2das\race_feat_flind.2da \ race2das\race_feat_forelf.2da \ race2das\race_feat_frost.2da \ race2das\race_feat_frstbd.2da \ race2das\race_feat_gargun.2da \ race2das\race_feat_gdwa.2da \ race2das\race_feat_gfolk.2da \ race2das\race_feat_ghalf.2da \ race2das\race_feat_gldwar.2da \ race2das\race_feat_gloam.2da \ race2das\race_feat_gloura.2da \ race2das\race_feat_gltter.2da \ race2das\race_feat_gnoll.2da \ race2das\race_feat_gobl.2da \ race2das\race_feat_goelf.2da \ race2das\race_feat_gol.2da \ race2das\race_feat_gorc.2da \ race2das\race_feat_grelf.2da \ race2das\race_feat_grig.2da \ race2das\race_feat_gyank.2da \ race2das\race_feat_gzer.2da \ race2das\race_feat_hadrim.2da \ race2das\race_feat_hadzee.2da \ race2das\race_feat_hagsp.2da \ race2das\race_feat_half.2da \ race2das\race_feat_hdro.2da \ race2das\race_feat_hobgo.2da \ race2das\race_feat_hogre.2da \ race2das\race_feat_hybsil.2da \ race2das\race_feat_illith.2da \ race2das\race_feat_imask.2da \ race2das\race_feat_irda.2da \ race2das\race_feat_kag.2da \ race2das\race_feat_kalash.2da \ race2das\race_feat_kapak.2da \ race2das\race_feat_karsit.2da \ race2das\race_feat_kend.2da \ race2das\race_feat_khaas.2da \ race2das\race_feat_khogre.2da \ race2das\race_feat_killor.2da \ race2das\race_feat_kminot.2da \ race2das\race_feat_kobo.2da \ race2das\race_feat_koro.2da \ race2das\race_feat_krinth.2da \ race2das\race_feat_lashem.2da \ race2das\race_feat_linga.2da \ race2das\race_feat_linge.2da \ race2das\race_feat_lingf.2da \ race2das\race_feat_lingw.2da \ race2das\race_feat_lizar.2da \ race2das\race_feat_maen.2da \ race2das\race_feat_marrul.2da \ race2das\race_feat_marrus.2da \ race2das\race_feat_marrut.2da \ race2das\race_feat_minot.2da \ race2das\race_feat_mongrl.2da \ race2das\race_feat_muckd.2da \ race2das\race_feat_mul.2da \ race2das\race_feat_nathri.2da \ race2das\race_feat_naztha.2da \ race2das\race_feat_neand.2da \ race2das\race_feat_neandr.2da \ race2das\race_feat_neraph.2da \ race2das\race_feat_nezu.2da \ race2das\race_feat_nixie.2da \ race2das\race_feat_nymph.2da \ race2das\race_feat_ogre.2da \ race2das\race_feat_orc.2da \ race2das\race_feat_orog.2da \ race2das\race_feat_pdusk.2da \ race2das\race_feat_phgian.2da \ race2das\race_feat_pixie.2da \ race2das\race_feat_pteran.2da \ race2das\race_feat_pyuan.2da \ race2das\race_feat_raks.2da \ race2das\race_feat_redarc.2da \ race2das\race_feat_reth.2da \ race2das\race_feat_rgnome.2da \ race2das\race_feat_rilkan.2da \ race2das\race_feat_satyr.2da \ race2das\race_feat_scro.2da \ race2das\race_feat_shalf.2da \ race2das\race_feat_shara.2da \ race2das\race_feat_shiftr.2da \ race2das\race_feat_sidhe.2da \ race2das\race_feat_skarn.2da \ race2das\race_feat_skulk.2da \ race2das\race_feat_slvrbw.2da \ race2das\race_feat_snelf.2da \ race2das\race_feat_spdrag.2da \ race2das\race_feat_spiker.2da \ race2das\race_feat_spirit.2da \ race2das\race_feat_stelf.2da \ race2das\race_feat_stnchd.2da \ race2das\race_feat_stngnm.2da \ race2das\race_feat_sunsco.2da \ race2das\race_feat_svelf.2da \ race2das\race_feat_svirf.2da \ race2das\race_feat_swyft.2da \ race2das\race_feat_taer.2da \ race2das\race_feat_tanar.2da \ race2das\race_feat_tasloi.2da \ race2das\race_feat_tgn.2da \ race2das\race_feat_tgnome.2da \ race2das\race_feat_thalf.2da \ race2das\race_feat_tief.2da \ race2das\race_feat_tnhalf.2da \ race2das\race_feat_trog.2da \ race2das\race_feat_troll.2da \ race2das\race_feat_tuladh.2da \ race2das\race_feat_turlem.2da \ race2das\race_feat_uldra.2da \ race2das\race_feat_underf.2da \ race2das\race_feat_urdin.2da \ race2das\race_feat_vana.2da \ race2das\race_feat_varag.2da \ race2das\race_feat_volod.2da \ race2das\race_feat_vtooth.2da \ race2das\race_feat_warchr.2da \ race2das\race_feat_warf.2da \ race2das\race_feat_wdwarf.2da \ race2das\race_feat_wemic.2da \ race2das\race_feat_wgen.2da \ race2das\race_feat_wgnome.2da \ race2das\race_feat_wielf.2da \ race2das\race_feat_wildrn.2da \ race2das\race_feat_woelf.2da \ race2das\race_feat_xeph.2da \ race2das\race_feat_yuan.2da \ race2das\race_feat_zakya.2da \ race2das\race_feat_zenyth.2da \ race2das\racialappear.2da \ race2das\racialtypes.2da RACESCRIPTS= \ racescripts\avar_dive.nss \ racescripts\bdd_cave_conv.nss \ racescripts\bdd_cave_ent.nss \ racescripts\bdd_flavor.nss \ racescripts\bdd_heat.nss \ racescripts\bdd_onplayerrest.nss \ racescripts\hound_aurafear.nss \ racescripts\hound_aurafeara.nss \ racescripts\minot_charge.nss \ racescripts\race_appear.nss \ racescripts\race_ara_human.nss \ racescripts\race_ara_hybrid.nss \ racescripts\race_aranea_web.nss \ racescripts\race_arkamoi.nss \ racescripts\race_arkamoi_mmd.nss \ racescripts\race_azer_flame.nss \ racescripts\race_bar_charge.nss \ racescripts\race_blindbeaut.nss \ racescripts\race_blindbeauta.nss \ racescripts\race_bodylamp.nss \ racescripts\race_bodylampdaz.nss \ racescripts\race_deaththroes.nss \ racescripts\race_enray.nss \ racescripts\race_ev_aquire.nss \ racescripts\race_faerief.nss \ racescripts\race_feyrialter.nss \ racescripts\race_ff_iceblast.nss \ racescripts\race_gloura.nss \ racescripts\race_hadrimoi.nss \ racescripts\race_hadrimoi_bf.nss \ racescripts\race_hb.nss \ racescripts\race_kapak_apply.nss \ racescripts\race_kapak_onhit.nss \ racescripts\race_kil_ancient.nss \ racescripts\race_kil_ft_hunt.nss \ racescripts\race_kil_hunter.nss \ racescripts\race_kil_smite.nss \ racescripts\race_lashemoi.nss \ racescripts\race_lashemoi_bf.nss \ racescripts\race_lifepthconv.nss \ racescripts\race_marrubreath.nss \ racescripts\race_mars_howl.nss \ racescripts\race_mart_howl.nss \ racescripts\race_mephbreath.nss \ racescripts\race_muck_squirt.nss \ racescripts\race_outburst.nss \ racescripts\race_pixpoly.nss \ racescripts\race_psi_stomp.nss \ racescripts\race_razorstorm.nss \ racescripts\race_resiliance.nss \ racescripts\race_resistance.nss \ racescripts\race_rkdisguise.nss \ racescripts\race_shfttrt_con.nss \ racescripts\race_shifter.nss \ racescripts\race_skarn_spine.nss \ racescripts\race_skin.nss \ racescripts\race_sla.nss \ racescripts\race_spiritfkcon.nss \ racescripts\race_stench.nss \ racescripts\race_stencha.nss \ racescripts\race_stunglance.nss \ racescripts\race_touchluck.nss \ racescripts\race_treewalk.nss \ racescripts\race_turlemoi.nss \ racescripts\race_turlemoi_bf.nss \ racescripts\race_warforged.nss \ racescripts\race_waterbreath.nss \ racescripts\race_wld_fury.nss \ racescripts\race_wolfform.nss \ racescripts\race_xeph_burst.nss \ racescripts\x2_s1_suckbrain.nss RACEOBJS= \ raceobjs\avar_dive.ncs \ raceobjs\bdd_cave_conv.ncs \ raceobjs\bdd_cave_ent.ncs \ raceobjs\bdd_flavor.ncs \ raceobjs\bdd_heat.ncs \ raceobjs\bdd_onplayerrest.ncs \ raceobjs\hound_aurafear.ncs \ raceobjs\hound_aurafeara.ncs \ raceobjs\minot_charge.ncs \ raceobjs\race_appear.ncs \ raceobjs\race_ara_human.ncs \ raceobjs\race_ara_hybrid.ncs \ raceobjs\race_aranea_web.ncs \ raceobjs\race_arkamoi.ncs \ raceobjs\race_arkamoi_mmd.ncs \ raceobjs\race_azer_flame.ncs \ raceobjs\race_bar_charge.ncs \ raceobjs\race_blindbeaut.ncs \ raceobjs\race_blindbeauta.ncs \ raceobjs\race_bodylamp.ncs \ raceobjs\race_bodylampdaz.ncs \ raceobjs\race_deaththroes.ncs \ raceobjs\race_enray.ncs \ raceobjs\race_ev_aquire.ncs \ raceobjs\race_faerief.ncs \ raceobjs\race_feyrialter.ncs \ raceobjs\race_ff_iceblast.ncs \ raceobjs\race_gloura.ncs \ raceobjs\race_hadrimoi.ncs \ raceobjs\race_hadrimoi_bf.ncs \ raceobjs\race_hb.ncs \ raceobjs\race_kapak_apply.ncs \ raceobjs\race_kapak_onhit.ncs \ raceobjs\race_kil_ancient.ncs \ raceobjs\race_kil_ft_hunt.ncs \ raceobjs\race_kil_hunter.ncs \ raceobjs\race_kil_smite.ncs \ raceobjs\race_lashemoi.ncs \ raceobjs\race_lashemoi_bf.ncs \ raceobjs\race_lifepthconv.ncs \ raceobjs\race_marrubreath.ncs \ raceobjs\race_mars_howl.ncs \ raceobjs\race_mart_howl.ncs \ raceobjs\race_mephbreath.ncs \ raceobjs\race_muck_squirt.ncs \ raceobjs\race_outburst.ncs \ raceobjs\race_pixpoly.ncs \ raceobjs\race_psi_stomp.ncs \ raceobjs\race_razorstorm.ncs \ raceobjs\race_resiliance.ncs \ raceobjs\race_resistance.ncs \ raceobjs\race_rkdisguise.ncs \ raceobjs\race_shfttrt_con.ncs \ raceobjs\race_shifter.ncs \ raceobjs\race_skarn_spine.ncs \ raceobjs\race_skin.ncs \ raceobjs\race_sla.ncs \ raceobjs\race_spiritfkcon.ncs \ raceobjs\race_stench.ncs \ raceobjs\race_stencha.ncs \ raceobjs\race_stunglance.ncs \ raceobjs\race_touchluck.ncs \ raceobjs\race_treewalk.ncs \ raceobjs\race_turlemoi.ncs \ raceobjs\race_turlemoi_bf.ncs \ raceobjs\race_warforged.ncs \ raceobjs\race_waterbreath.ncs \ raceobjs\race_wld_fury.ncs \ raceobjs\race_wolfform.ncs \ raceobjs\race_xeph_burst.ncs \ raceobjs\x2_s1_suckbrain.ncs PSIONICSSCRIPTS= \ psionics\essence.nss \ psionics\ey_dpcon_med.nss \ psionics\innercore_rest.nss \ psionics\prc_comp_con.nss \ psionics\prc_comp_ent.nss \ psionics\prc_comp_exit.nss \ psionics\prc_enforce_psi.nss \ psionics\prc_immobile.nss \ psionics\prc_pits_enter.nss \ psionics\prc_psi_ppoints.nss \ psionics\prc_temp_con.nss \ psionics\prc_temp_ent.nss \ psionics\prc_temp_exit.nss \ psionics\prc_wild_surge.nss \ psionics\prc_wld_srg_off.nss \ psionics\psi_ac_conv_a1.nss \ psionics\psi_ac_conv_a10a.nss \ psionics\psi_ac_conv_a10c.nss \ psionics\psi_ac_conv_a10e.nss \ psionics\psi_ac_conv_a10f.nss \ psionics\psi_ac_conv_a10s.nss \ psionics\psi_ac_conv_a11.nss \ psionics\psi_ac_conv_a12.nss \ psionics\psi_ac_conv_a13.nss \ psionics\psi_ac_conv_a14.nss \ psionics\psi_ac_conv_a15.nss \ psionics\psi_ac_conv_a16.nss \ psionics\psi_ac_conv_a17.nss \ psionics\psi_ac_conv_a18.nss \ psionics\psi_ac_conv_a19.nss \ psionics\psi_ac_conv_a2.nss \ psionics\psi_ac_conv_a20.nss \ psionics\psi_ac_conv_a21.nss \ psionics\psi_ac_conv_a22a.nss \ psionics\psi_ac_conv_a22c.nss \ psionics\psi_ac_conv_a22e.nss \ psionics\psi_ac_conv_a22f.nss \ psionics\psi_ac_conv_a22s.nss \ psionics\psi_ac_conv_a23.nss \ psionics\psi_ac_conv_a24.nss \ psionics\psi_ac_conv_a25.nss \ psionics\psi_ac_conv_a26.nss \ psionics\psi_ac_conv_a27.nss \ psionics\psi_ac_conv_a28.nss \ psionics\psi_ac_conv_a29.nss \ psionics\psi_ac_conv_a3.nss \ psionics\psi_ac_conv_a30.nss \ psionics\psi_ac_conv_a4.nss \ psionics\psi_ac_conv_a5.nss \ psionics\psi_ac_conv_a6.nss \ psionics\psi_ac_conv_a7.nss \ psionics\psi_ac_conv_a8a.nss \ psionics\psi_ac_conv_a8c.nss \ psionics\psi_ac_conv_a8e.nss \ psionics\psi_ac_conv_a8f.nss \ psionics\psi_ac_conv_a8s.nss \ psionics\psi_ac_conv_a9.nss \ psionics\psi_ac_conv_cln.nss \ psionics\psi_ac_conv_cml1.nss \ psionics\psi_ac_conv_cml2.nss \ psionics\psi_ac_conv_cml3.nss \ psionics\psi_ac_conv_cml4.nss \ psionics\psi_ac_conv_cml5.nss \ psionics\psi_ac_conv_cml6.nss \ psionics\psi_ac_conv_cml7.nss \ psionics\psi_ac_conv_cml8.nss \ psionics\psi_ac_conv_cml9.nss \ psionics\psi_ac_conv_cnsv.nss \ psionics\psi_ac_conv_h1.nss \ psionics\psi_ac_conv_h10.nss \ psionics\psi_ac_conv_h10a.nss \ psionics\psi_ac_conv_h10c.nss \ psionics\psi_ac_conv_h10e.nss \ psionics\psi_ac_conv_h10f.nss \ psionics\psi_ac_conv_h10s.nss \ psionics\psi_ac_conv_h11.nss \ psionics\psi_ac_conv_h12.nss \ psionics\psi_ac_conv_h13.nss \ psionics\psi_ac_conv_h14.nss \ psionics\psi_ac_conv_h15.nss \ psionics\psi_ac_conv_h16.nss \ psionics\psi_ac_conv_h17.nss \ psionics\psi_ac_conv_h18.nss \ psionics\psi_ac_conv_h19.nss \ psionics\psi_ac_conv_h2.nss \ psionics\psi_ac_conv_h20.nss \ psionics\psi_ac_conv_h21.nss \ psionics\psi_ac_conv_h22.nss \ psionics\psi_ac_conv_h22a.nss \ psionics\psi_ac_conv_h22c.nss \ psionics\psi_ac_conv_h22e.nss \ psionics\psi_ac_conv_h22f.nss \ psionics\psi_ac_conv_h22s.nss \ psionics\psi_ac_conv_h23.nss \ psionics\psi_ac_conv_h24.nss \ psionics\psi_ac_conv_h25.nss \ psionics\psi_ac_conv_h26.nss \ psionics\psi_ac_conv_h27.nss \ psionics\psi_ac_conv_h28.nss \ psionics\psi_ac_conv_h29.nss \ psionics\psi_ac_conv_h3.nss \ psionics\psi_ac_conv_h30.nss \ psionics\psi_ac_conv_h4.nss \ psionics\psi_ac_conv_h5.nss \ psionics\psi_ac_conv_h6.nss \ psionics\psi_ac_conv_h7.nss \ psionics\psi_ac_conv_h8.nss \ psionics\psi_ac_conv_h8a.nss \ psionics\psi_ac_conv_h8c.nss \ psionics\psi_ac_conv_h8e.nss \ psionics\psi_ac_conv_h8f.nss \ psionics\psi_ac_conv_h8s.nss \ psionics\psi_ac_conv_h9.nss \ psionics\psi_ac_conv_init.nss \ psionics\psi_ac_conv_loa1.nss \ psionics\psi_ac_conv_loa2.nss \ psionics\psi_ac_conv_loa3.nss \ psionics\psi_ac_conv_loa4.nss \ psionics\psi_ac_conv_loa5.nss \ psionics\psi_ac_conv_n10a.nss \ psionics\psi_ac_conv_n10c.nss \ psionics\psi_ac_conv_n10e.nss \ psionics\psi_ac_conv_n10f.nss \ psionics\psi_ac_conv_n10s.nss \ psionics\psi_ac_conv_n11.nss \ psionics\psi_ac_conv_n12.nss \ psionics\psi_ac_conv_n13.nss \ psionics\psi_ac_conv_n15.nss \ psionics\psi_ac_conv_n16.nss \ psionics\psi_ac_conv_n17.nss \ psionics\psi_ac_conv_n18.nss \ psionics\psi_ac_conv_n19.nss \ psionics\psi_ac_conv_n2.nss \ psionics\psi_ac_conv_n20.nss \ psionics\psi_ac_conv_n21.nss \ psionics\psi_ac_conv_n22.nss \ psionics\psi_ac_conv_n24.nss \ psionics\psi_ac_conv_n25.nss \ psionics\psi_ac_conv_n26.nss \ psionics\psi_ac_conv_n27.nss \ psionics\psi_ac_conv_n28.nss \ psionics\psi_ac_conv_n29.nss \ psionics\psi_ac_conv_n3.nss \ psionics\psi_ac_conv_n30.nss \ psionics\psi_ac_conv_n4.nss \ psionics\psi_ac_conv_n5.nss \ psionics\psi_ac_conv_n6.nss \ psionics\psi_ac_conv_n7.nss \ psionics\psi_ac_conv_n8a.nss \ psionics\psi_ac_conv_n8c.nss \ psionics\psi_ac_conv_n8e.nss \ psionics\psi_ac_conv_n8f.nss \ psionics\psi_ac_conv_n8s.nss \ psionics\psi_ac_conv_n9.nss \ psionics\psi_ac_conv_nbuf.nss \ psionics\psi_ac_conv_nosh.nss \ psionics\psi_ac_conv_r1.nss \ psionics\psi_ac_conv_r10a.nss \ psionics\psi_ac_conv_r10c.nss \ psionics\psi_ac_conv_r10e.nss \ psionics\psi_ac_conv_r10f.nss \ psionics\psi_ac_conv_r10s.nss \ psionics\psi_ac_conv_r11.nss \ psionics\psi_ac_conv_r12.nss \ psionics\psi_ac_conv_r13.nss \ psionics\psi_ac_conv_r14.nss \ psionics\psi_ac_conv_r15.nss \ psionics\psi_ac_conv_r16.nss \ psionics\psi_ac_conv_r17.nss \ psionics\psi_ac_conv_r18.nss \ psionics\psi_ac_conv_r19.nss \ psionics\psi_ac_conv_r2.nss \ psionics\psi_ac_conv_r20.nss \ psionics\psi_ac_conv_r21.nss \ psionics\psi_ac_conv_r22.nss \ psionics\psi_ac_conv_r23.nss \ psionics\psi_ac_conv_r24.nss \ psionics\psi_ac_conv_r25.nss \ psionics\psi_ac_conv_r26.nss \ psionics\psi_ac_conv_r27.nss \ psionics\psi_ac_conv_r28.nss \ psionics\psi_ac_conv_r29.nss \ psionics\psi_ac_conv_r3.nss \ psionics\psi_ac_conv_r30.nss \ psionics\psi_ac_conv_r4.nss \ psionics\psi_ac_conv_r5.nss \ psionics\psi_ac_conv_r6.nss \ psionics\psi_ac_conv_r7.nss \ psionics\psi_ac_conv_r8a.nss \ psionics\psi_ac_conv_r8c.nss \ psionics\psi_ac_conv_r8e.nss \ psionics\psi_ac_conv_r8f.nss \ psionics\psi_ac_conv_r8s.nss \ psionics\psi_ac_conv_r9.nss \ psionics\psi_ac_conv_sav1.nss \ psionics\psi_ac_conv_sav2.nss \ psionics\psi_ac_conv_sav3.nss \ psionics\psi_ac_conv_sav4.nss \ psionics\psi_ac_conv_sav5.nss \ psionics\psi_ac_conv_slv1.nss \ psionics\psi_ac_conv_slv2.nss \ psionics\psi_ac_conv_slv3.nss \ psionics\psi_ac_conv_slv4.nss \ psionics\psi_ac_conv_slv5.nss \ psionics\psi_ac_conv_slv6.nss \ psionics\psi_ac_conv_slv7.nss \ psionics\psi_ac_conv_slv8.nss \ psionics\psi_ac_conv_slv9.nss \ psionics\psi_ac_conv_sm_a.nss \ psionics\psi_ac_conv_sm_b.nss \ psionics\psi_ac_conv_sm_c.nss \ psionics\psi_ac_conv_tokn.nss \ psionics\psi_ac_conv_wipe.nss \ psionics\psi_animalaffin.nss \ psionics\psi_ast_con_conv.nss \ psionics\psi_ast_con_hrtb.nss \ psionics\psi_ast_con_man.nss \ psionics\psi_ast_con_ptch.nss \ psionics\psi_ast_con_spwn.nss \ psionics\psi_astseed_resp.nss \ psionics\psi_aug_off.nss \ psionics\psi_aug_qslot.nss \ psionics\psi_aug_select_d.nss \ psionics\psi_aug_select_t.nss \ psionics\psi_aug_strtconv.nss \ psionics\psi_aug_togg_max.nss \ psionics\psi_augment_conv.nss \ psionics\psi_callweapon.nss \ psionics\psi_dalqur_stun.nss \ psionics\psi_deep_impact.nss \ psionics\psi_diadra.nss \ psionics\psi_diadra_afear.nss \ psionics\psi_diadra_aura.nss \ psionics\psi_diadra_bth.nss \ psionics\psi_diadra_claw.nss \ psionics\psi_diadra_imm.nss \ psionics\psi_diadra_ntrl.nss \ psionics\psi_diadra_tail.nss \ psionics\psi_diadra_wing.nss \ psionics\psi_fell_shot.nss \ psionics\psi_foz_generic.nss \ psionics\psi_g_psi_fist.nss \ psionics\psi_g_psi_shot.nss \ psionics\psi_g_psi_weapon.nss \ psionics\psi_g_stroftwo.nss \ psionics\psi_gen_enter.nss \ psionics\psi_gen_exit.nss \ psionics\psi_imnd_armmnd.nss \ psionics\psi_imnd_lndrslv.nss \ psionics\psi_imnd_mindbod.nss \ psionics\psi_invest_armor.nss \ psionics\psi_ironmind.nss \ psionics\psi_mental_leap.nss \ psionics\psi_meta_chain.nss \ psionics\psi_meta_emp.nss \ psionics\psi_meta_extend.nss \ psionics\psi_meta_max.nss \ psionics\psi_meta_quicken.nss \ psionics\psi_meta_split.nss \ psionics\psi_meta_twin.nss \ psionics\psi_meta_widen.nss \ psionics\psi_overchnl_1.nss \ psionics\psi_overchnl_2.nss \ psionics\psi_overchnl_3.nss \ psionics\psi_overchnl_off.nss \ psionics\psi_pow_2ndchnc.nss \ psionics\psi_pow_amorpha.nss \ psionics\psi_pow_animafin.nss \ psionics\psi_pow_assim.nss \ psionics\psi_pow_astseed.nss \ psionics\psi_pow_aversion.nss \ psionics\psi_pow_baletel.nss \ psionics\psi_pow_banish.nss \ psionics\psi_pow_bdyadjst.nss \ psionics\psi_pow_bdyequib.nss \ psionics\psi_pow_bdypure.nss \ psionics\psi_pow_biofeed.nss \ psionics\psi_pow_bitewolf.nss \ psionics\psi_pow_blckdrgn.nss \ psionics\psi_pow_bolt.nss \ psionics\psi_pow_brnlock.nss \ psionics\psi_pow_bstpwr.nss \ psionics\psi_pow_burst.nss \ psionics\psi_pow_callweap.nss \ psionics\psi_pow_catapsi.nss \ psionics\psi_pow_catapsia.nss \ psionics\psi_pow_catapsib.nss \ psionics\psi_pow_catapsic.nss \ psionics\psi_pow_cham.nss \ psionics\psi_pow_charge.nss \ psionics\psi_pow_charmper.nss \ psionics\psi_pow_cldmnd.nss \ psionics\psi_pow_cldmndm.nss \ psionics\psi_pow_clltomnd.nss \ psionics\psi_pow_clrhand.nss \ psionics\psi_pow_clrsns.nss \ psionics\psi_pow_clwbeast.nss \ psionics\psi_pow_clwnrg.nss \ psionics\psi_pow_clwvamp.nss \ psionics\psi_pow_cncltght.nss \ psionics\psi_pow_compress.nss \ psionics\psi_pow_concblst.nss \ psionics\psi_pow_crsbrth.nss \ psionics\psi_pow_crslife.nss \ psionics\psi_pow_crtsnd.nss \ psionics\psi_pow_crysshrd.nss \ psionics\psi_pow_crysswrm.nss \ psionics\psi_pow_crystlz.nss \ psionics\psi_pow_ctrlair.nss \ psionics\psi_pow_ctrlobj.nss \ psionics\psi_pow_ctrlsnd.nss \ psionics\psi_pow_darkvis.nss \ psionics\psi_pow_daze.nss \ psionics\psi_pow_dctrmvw.nss \ psionics\psi_pow_ddoor.nss \ psionics\psi_pow_decel.nss \ psionics\psi_pow_decerebr.nss \ psionics\psi_pow_defpre.nss \ psionics\psi_pow_demoral.nss \ psionics\psi_pow_destdiss.nss \ psionics\psi_pow_dimanch.nss \ psionics\psi_pow_dimslide.nss \ psionics\psi_pow_dimswap.nss \ psionics\psi_pow_disable.nss \ psionics\psi_pow_disin.nss \ psionics\psi_pow_dismiss.nss \ psionics\psi_pow_dispel.nss \ psionics\psi_pow_displbuf.nss \ psionics\psi_pow_disswpn.nss \ psionics\psi_pow_distract.nss \ psionics\psi_pow_dngrsns.nss \ psionics\psi_pow_dominate.nss \ psionics\psi_pow_dsslvtch.nss \ psionics\psi_pow_dsspttch.nss \ psionics\psi_pow_duoclaw.nss \ psionics\psi_pow_ectococ.nss \ psionics\psi_pow_ectococm.nss \ psionics\psi_pow_ectoform.nss \ psionics\psi_pow_egowhip.nss \ psionics\psi_pow_elfsight.nss \ psionics\psi_pow_empathy.nss \ psionics\psi_pow_empfeed.nss \ psionics\psi_pow_emptrn.nss \ psionics\psi_pow_emptrnh.nss \ psionics\psi_pow_emptymnd.nss \ psionics\psi_pow_enadapt.nss \ psionics\psi_pow_enadpts.nss \ psionics\psi_pow_enball.nss \ psionics\psi_pow_enbolt.nss \ psionics\psi_pow_enbrst.nss \ psionics\psi_pow_encone.nss \ psionics\psi_pow_encurr.nss \ psionics\psi_pow_enmiss.nss \ psionics\psi_pow_enpush.nss \ psionics\psi_pow_enray.nss \ psionics\psi_pow_enrtrt.nss \ psionics\psi_pow_enstun.nss \ psionics\psi_pow_entangle.nss \ psionics\psi_pow_enwall.nss \ psionics\psi_pow_enwall1.nss \ psionics\psi_pow_enwall2.nss \ psionics\psi_pow_enwave.nss \ psionics\psi_pow_escdtct.nss \ psionics\psi_pow_esham.nss \ psionics\psi_pow_eshama.nss \ psionics\psi_pow_eshamb.nss \ psionics\psi_pow_eshamc.nss \ psionics\psi_pow_ethereal.nss \ psionics\psi_pow_ethjaunt.nss \ psionics\psi_pow_evadebst.nss \ psionics\psi_pow_exhalebd.nss \ psionics\psi_pow_expand.nss \ psionics\psi_pow_farhand.nss \ psionics\psi_pow_fatelink.nss \ psionics\psi_pow_formdoom.nss \ psionics\psi_pow_frcscrn.nss \ psionics\psi_pow_freedom.nss \ psionics\psi_pow_frmdment.nss \ psionics\psi_pow_fuseflsh.nss \ psionics\psi_pow_gamorpha.nss \ psionics\psi_pow_genesis.nss \ psionics\psi_pow_gprecog.nss \ psionics\psi_pow_gprecoga.nss \ psionics\psi_pow_grease.nss \ psionics\psi_pow_greasea.nss \ psionics\psi_pow_greaseb.nss \ psionics\psi_pow_greasec.nss \ psionics\psi_pow_gripiron.nss \ psionics\psi_pow_gtele.nss \ psionics\psi_pow_hailcrys.nss \ psionics\psi_pow_hammer.nss \ psionics\psi_pow_hustle.nss \ psionics\psi_pow_hypercog.nss \ psionics\psi_pow_identify.nss \ psionics\psi_pow_idinsin.nss \ psionics\psi_pow_immove.nss \ psionics\psi_pow_inertarm.nss \ psionics\psi_pow_inertbar.nss \ psionics\psi_pow_inpain.nss \ psionics\psi_pow_insane.nss \ psionics\psi_pow_intfort.nss \ psionics\psi_pow_ironbody.nss \ psionics\psi_pow_keenedge.nss \ psionics\psi_pow_knock.nss \ psionics\psi_pow_lock.nss \ psionics\psi_pow_mentbar.nss \ psionics\psi_pow_metaclaw.nss \ psionics\psi_pow_metaweap.nss \ psionics\psi_pow_microcos.nss \ psionics\psi_pow_mindtrap.nss \ psionics\psi_pow_mindwipe.nss \ psionics\psi_pow_mmntpre.nss \ psionics\psi_pow_mndblnkp.nss \ psionics\psi_pow_mndthrst.nss \ psionics\psi_pow_mntdsrp.nss \ psionics\psi_pow_mttrag.nss \ psionics\psi_pow_mylight.nss \ psionics\psi_pow_neginvis.nss \ psionics\psi_pow_npf.nss \ psionics\psi_pow_npfent.nss \ psionics\psi_pow_npfext.nss \ psionics\psi_pow_oakbody.nss \ psionics\psi_pow_offpre.nss \ psionics\psi_pow_offpresc.nss \ psionics\psi_pow_painstrk.nss \ psionics\psi_pow_powres.nss \ psionics\psi_pow_precog.nss \ psionics\psi_pow_precoga.nss \ psionics\psi_pow_prevnm.nss \ psionics\psi_pow_prevnmwp.nss \ psionics\psi_pow_psiblast.nss \ psionics\psi_pow_psimndbk.nss \ psionics\psi_pow_psirev.nss \ psionics\psi_pow_psychir.nss \ psionics\psi_pow_psycrush.nss \ psionics\psi_pow_psyfeed.nss \ psionics\psi_pow_psyref.nss \ psionics\psi_pow_psyvamp.nss \ psionics\psi_pow_pwrleech.nss \ psionics\psi_pow_rclagony.nss \ psionics\psi_pow_rcldeath.nss \ psionics\psi_pow_reddopsi.nss \ psionics\psi_pow_repdam.nss \ psionics\psi_pow_restore.nss \ psionics\psi_pow_retrieve.nss \ psionics\psi_pow_rmtview.nss \ psionics\psi_pow_rmtvwtrp.nss \ psionics\psi_pow_sequestr.nss \ psionics\psi_pow_shadbody.nss \ psionics\psi_pow_shrpain.nss \ psionics\psi_pow_shrpainf.nss \ psionics\psi_pow_shrpnaux.nss \ psionics\psi_pow_shttrmb.nss \ psionics\psi_pow_skate.nss \ psionics\psi_pow_stdfstpr.nss \ psionics\psi_pow_stomp.nss \ psionics\psi_pow_strnmy.nss \ psionics\psi_pow_synsth.nss \ psionics\psi_pow_tchsght.nss \ psionics\psi_pow_telecirc.nss \ psionics\psi_pow_telemp.nss \ psionics\psi_pow_teleport.nss \ psionics\psi_pow_tempacc.nss \ psionics\psi_pow_tghtshld.nss \ psionics\psi_pow_thickskn.nss \ psionics\psi_pow_timebody.nss \ psionics\psi_pow_timehop.nss \ psionics\psi_pow_timehopm.nss \ psionics\psi_pow_tkmove.nss \ psionics\psi_pow_trnblst.nss \ psionics\psi_pow_truemeta.nss \ psionics\psi_pow_truesee.nss \ psionics\psi_pow_truvnm.nss \ psionics\psi_pow_truvnmwp.nss \ psionics\psi_pow_twrwll.nss \ psionics\psi_pow_ubiqvis.nss \ psionics\psi_pow_ultrabst.nss \ psionics\psi_pow_vampwep.nss \ psionics\psi_pow_vigor.nss \ psionics\psi_pow_wepnrg.nss \ psionics\psi_powconv.nss \ psionics\psi_power_pen.nss \ psionics\psi_power_spec.nss \ psionics\psi_psi_generic.nss \ psionics\psi_psionic_endw.nss \ psionics\psi_psionic_fist.nss \ psionics\psi_psionic_foc.nss \ psionics\psi_psionic_hole.nss \ psionics\psi_psionic_shot.nss \ psionics\psi_psionic_weap.nss \ psionics\psi_psy_generic.nss \ psionics\psi_psychofeed.nss \ psionics\psi_psyrog_blind.nss \ psionics\psi_psyrog_dngr.nss \ psionics\psi_psyrog_sjump.nss \ psionics\psi_psyrogue.nss \ psionics\psi_pyro.nss \ psionics\psi_pyro_bolt.nss \ psionics\psi_pyro_conf.nss \ psionics\psi_pyro_death.nss \ psionics\psi_pyro_lash.nss \ psionics\psi_pyro_nimbus.nss \ psionics\psi_pyro_touch.nss \ psionics\psi_pyro_walk.nss \ psionics\psi_rog_generic.nss \ psionics\psi_sancmind.nss \ psionics\psi_shadow_cdmnm.nss \ psionics\psi_shadow_cldmn.nss \ psionics\psi_shadow_dtrct.nss \ psionics\psi_shadow_mind.nss \ psionics\psi_shadowmind.nss \ psionics\psi_sk_bladewind.nss \ psionics\psi_sk_chhand.nss \ psionics\psi_sk_clseval.nss \ psionics\psi_sk_conv_calc.nss \ psionics\psi_sk_conv_calt.nss \ psionics\psi_sk_conv_clea.nss \ psionics\psi_sk_conv_co_a.nss \ psionics\psi_sk_conv_co_s.nss \ psionics\psi_sk_conv_de_a.nss \ psionics\psi_sk_conv_de_s.nss \ psionics\psi_sk_conv_di_a.nss \ psionics\psi_sk_conv_di_s.nss \ psionics\psi_sk_conv_ke_a.nss \ psionics\psi_sk_conv_ke_s.nss \ psionics\psi_sk_conv_lu_a.nss \ psionics\psi_sk_conv_lu_s.nss \ psionics\psi_sk_conv_mc_a.nss \ psionics\psi_sk_conv_mc_s.nss \ psionics\psi_sk_conv_mi_a.nss \ psionics\psi_sk_conv_mi_s.nss \ psionics\psi_sk_conv_pb_a.nss \ psionics\psi_sk_conv_pb_s.nss \ psionics\psi_sk_conv_ps_a.nss \ psionics\psi_sk_conv_ps_s.nss \ psionics\psi_sk_conv_s0_a.nss \ psionics\psi_sk_conv_s0_s.nss \ psionics\psi_sk_conv_s1_a.nss \ psionics\psi_sk_conv_s1_s.nss \ psionics\psi_sk_conv_s2_a.nss \ psionics\psi_sk_conv_s2_s.nss \ psionics\psi_sk_conv_s3_a.nss \ psionics\psi_sk_conv_s3_s.nss \ psionics\psi_sk_conv_s4_a.nss \ psionics\psi_sk_conv_s4_s.nss \ psionics\psi_sk_conv_s5_a.nss \ psionics\psi_sk_conv_s5_s.nss \ psionics\psi_sk_conv_s6_a.nss \ psionics\psi_sk_conv_s6_s.nss \ psionics\psi_sk_conv_s7_a.nss \ psionics\psi_sk_conv_s7_s.nss \ psionics\psi_sk_conv_s8_a.nss \ psionics\psi_sk_conv_s8_s.nss \ psionics\psi_sk_conv_s9_a.nss \ psionics\psi_sk_conv_s9_s.nss \ psionics\psi_sk_conv_save.nss \ psionics\psi_sk_conv_so_a.nss \ psionics\psi_sk_conv_so_s.nss \ psionics\psi_sk_conv_su_a.nss \ psionics\psi_sk_conv_su_s.nss \ psionics\psi_sk_conv_ts_d.nss \ psionics\psi_sk_conv_vi_a.nss \ psionics\psi_sk_conv_vi_s.nss \ psionics\psi_sk_conv_wo_a.nss \ psionics\psi_sk_conv_wo_s.nss \ psionics\psi_sk_event.nss \ psionics\psi_sk_free_draw.nss \ psionics\psi_sk_ktts_die.nss \ psionics\psi_sk_ktts_main.nss \ psionics\psi_sk_lucky.nss \ psionics\psi_sk_manifmbld.nss \ psionics\psi_sk_manifshld.nss \ psionics\psi_sk_mbldenhan.nss \ psionics\psi_sk_onhit.nss \ psionics\psi_sk_psychsrtk.nss \ psionics\psi_sk_shmbld.nss \ psionics\psi_sk_spiritfrc.nss \ psionics\psi_sk_throwmbld.nss \ psionics\psi_smnd_clnstrk.nss \ psionics\psi_smnd_disblow.nss \ psionics\psi_smnd_prtmnd.nss \ psionics\psi_spd_thought.nss \ psionics\psi_spdfthgt_oeq.nss \ psionics\psi_spdfthgt_ueq.nss \ psionics\psi_talented.nss \ psionics\psi_thrall_charm.nss \ psionics\psi_thrall_dom.nss \ psionics\psi_thrall_tfc.nss \ psionics\psi_thrall_tff.nss \ psionics\psi_thrall_tfr.nss \ psionics\psi_thrall_tfw.nss \ psionics\psi_thrall_thc.nss \ psionics\psi_thrall_thf.nss \ psionics\psi_thrall_thr.nss \ psionics\psi_thrall_thw.nss \ psionics\psi_thrallherd.nss \ psionics\psi_toff_focab.nss \ psionics\psi_unavoid_strk.nss \ psionics\psi_war_generic.nss \ psionics\psi_warmind.nss \ psionics\psi_wil_generic.nss \ psionics\psi_wmnd_defpost.nss \ psionics\psi_wmnd_oforce.nss \ psionics\psi_wmnd_persup.nss \ psionics\psi_wound_atk_m.nss \ psionics\psi_wound_atk_r.nss \ psionics\psi_zuoken.nss PSIONICSOBJS= \ psionicsobjs\essence.ncs \ psionicsobjs\ey_dpcon_med.ncs \ psionicsobjs\innercore_rest.ncs \ psionicsobjs\prc_comp_con.ncs \ psionicsobjs\prc_comp_ent.ncs \ psionicsobjs\prc_comp_exit.ncs \ psionicsobjs\prc_enforce_psi.ncs \ psionicsobjs\prc_immobile.ncs \ psionicsobjs\prc_pits_enter.ncs \ psionicsobjs\prc_psi_ppoints.ncs \ psionicsobjs\prc_temp_con.ncs \ psionicsobjs\prc_temp_ent.ncs \ psionicsobjs\prc_temp_exit.ncs \ psionicsobjs\prc_wild_surge.ncs \ psionicsobjs\prc_wld_srg_off.ncs \ psionicsobjs\psi_ac_conv_a1.ncs \ psionicsobjs\psi_ac_conv_a10a.ncs \ psionicsobjs\psi_ac_conv_a10c.ncs \ psionicsobjs\psi_ac_conv_a10e.ncs \ psionicsobjs\psi_ac_conv_a10f.ncs \ psionicsobjs\psi_ac_conv_a10s.ncs \ psionicsobjs\psi_ac_conv_a11.ncs \ psionicsobjs\psi_ac_conv_a12.ncs \ psionicsobjs\psi_ac_conv_a13.ncs \ psionicsobjs\psi_ac_conv_a14.ncs \ psionicsobjs\psi_ac_conv_a15.ncs \ psionicsobjs\psi_ac_conv_a16.ncs \ psionicsobjs\psi_ac_conv_a17.ncs \ psionicsobjs\psi_ac_conv_a18.ncs \ psionicsobjs\psi_ac_conv_a19.ncs \ psionicsobjs\psi_ac_conv_a2.ncs \ psionicsobjs\psi_ac_conv_a20.ncs \ psionicsobjs\psi_ac_conv_a21.ncs \ psionicsobjs\psi_ac_conv_a22a.ncs \ psionicsobjs\psi_ac_conv_a22c.ncs \ psionicsobjs\psi_ac_conv_a22e.ncs \ psionicsobjs\psi_ac_conv_a22f.ncs \ psionicsobjs\psi_ac_conv_a22s.ncs \ psionicsobjs\psi_ac_conv_a23.ncs \ psionicsobjs\psi_ac_conv_a24.ncs \ psionicsobjs\psi_ac_conv_a25.ncs \ psionicsobjs\psi_ac_conv_a26.ncs \ psionicsobjs\psi_ac_conv_a27.ncs \ psionicsobjs\psi_ac_conv_a28.ncs \ psionicsobjs\psi_ac_conv_a29.ncs \ psionicsobjs\psi_ac_conv_a3.ncs \ psionicsobjs\psi_ac_conv_a30.ncs \ psionicsobjs\psi_ac_conv_a4.ncs \ psionicsobjs\psi_ac_conv_a5.ncs \ psionicsobjs\psi_ac_conv_a6.ncs \ psionicsobjs\psi_ac_conv_a7.ncs \ psionicsobjs\psi_ac_conv_a8a.ncs \ psionicsobjs\psi_ac_conv_a8c.ncs \ psionicsobjs\psi_ac_conv_a8e.ncs \ psionicsobjs\psi_ac_conv_a8f.ncs \ psionicsobjs\psi_ac_conv_a8s.ncs \ psionicsobjs\psi_ac_conv_a9.ncs \ psionicsobjs\psi_ac_conv_cln.ncs \ psionicsobjs\psi_ac_conv_cml1.ncs \ psionicsobjs\psi_ac_conv_cml2.ncs \ psionicsobjs\psi_ac_conv_cml3.ncs \ psionicsobjs\psi_ac_conv_cml4.ncs \ psionicsobjs\psi_ac_conv_cml5.ncs \ psionicsobjs\psi_ac_conv_cml6.ncs \ psionicsobjs\psi_ac_conv_cml7.ncs \ psionicsobjs\psi_ac_conv_cml8.ncs \ psionicsobjs\psi_ac_conv_cml9.ncs \ psionicsobjs\psi_ac_conv_cnsv.ncs \ psionicsobjs\psi_ac_conv_h1.ncs \ psionicsobjs\psi_ac_conv_h10.ncs \ psionicsobjs\psi_ac_conv_h10a.ncs \ psionicsobjs\psi_ac_conv_h10c.ncs \ psionicsobjs\psi_ac_conv_h10e.ncs \ psionicsobjs\psi_ac_conv_h10f.ncs \ psionicsobjs\psi_ac_conv_h10s.ncs \ psionicsobjs\psi_ac_conv_h11.ncs \ psionicsobjs\psi_ac_conv_h12.ncs \ psionicsobjs\psi_ac_conv_h13.ncs \ psionicsobjs\psi_ac_conv_h14.ncs \ psionicsobjs\psi_ac_conv_h15.ncs \ psionicsobjs\psi_ac_conv_h16.ncs \ psionicsobjs\psi_ac_conv_h17.ncs \ psionicsobjs\psi_ac_conv_h18.ncs \ psionicsobjs\psi_ac_conv_h19.ncs \ psionicsobjs\psi_ac_conv_h2.ncs \ psionicsobjs\psi_ac_conv_h20.ncs \ psionicsobjs\psi_ac_conv_h21.ncs \ psionicsobjs\psi_ac_conv_h22.ncs \ psionicsobjs\psi_ac_conv_h22a.ncs \ psionicsobjs\psi_ac_conv_h22c.ncs \ psionicsobjs\psi_ac_conv_h22e.ncs \ psionicsobjs\psi_ac_conv_h22f.ncs \ psionicsobjs\psi_ac_conv_h22s.ncs \ psionicsobjs\psi_ac_conv_h23.ncs \ psionicsobjs\psi_ac_conv_h24.ncs \ psionicsobjs\psi_ac_conv_h25.ncs \ psionicsobjs\psi_ac_conv_h26.ncs \ psionicsobjs\psi_ac_conv_h27.ncs \ psionicsobjs\psi_ac_conv_h28.ncs \ psionicsobjs\psi_ac_conv_h29.ncs \ psionicsobjs\psi_ac_conv_h3.ncs \ psionicsobjs\psi_ac_conv_h30.ncs \ psionicsobjs\psi_ac_conv_h4.ncs \ psionicsobjs\psi_ac_conv_h5.ncs \ psionicsobjs\psi_ac_conv_h6.ncs \ psionicsobjs\psi_ac_conv_h7.ncs \ psionicsobjs\psi_ac_conv_h8.ncs \ psionicsobjs\psi_ac_conv_h8a.ncs \ psionicsobjs\psi_ac_conv_h8c.ncs \ psionicsobjs\psi_ac_conv_h8e.ncs \ psionicsobjs\psi_ac_conv_h8f.ncs \ psionicsobjs\psi_ac_conv_h8s.ncs \ psionicsobjs\psi_ac_conv_h9.ncs \ psionicsobjs\psi_ac_conv_init.ncs \ psionicsobjs\psi_ac_conv_loa1.ncs \ psionicsobjs\psi_ac_conv_loa2.ncs \ psionicsobjs\psi_ac_conv_loa3.ncs \ psionicsobjs\psi_ac_conv_loa4.ncs \ psionicsobjs\psi_ac_conv_loa5.ncs \ psionicsobjs\psi_ac_conv_n10a.ncs \ psionicsobjs\psi_ac_conv_n10c.ncs \ psionicsobjs\psi_ac_conv_n10e.ncs \ psionicsobjs\psi_ac_conv_n10f.ncs \ psionicsobjs\psi_ac_conv_n10s.ncs \ psionicsobjs\psi_ac_conv_n11.ncs \ psionicsobjs\psi_ac_conv_n12.ncs \ psionicsobjs\psi_ac_conv_n13.ncs \ psionicsobjs\psi_ac_conv_n15.ncs \ psionicsobjs\psi_ac_conv_n16.ncs \ psionicsobjs\psi_ac_conv_n17.ncs \ psionicsobjs\psi_ac_conv_n18.ncs \ psionicsobjs\psi_ac_conv_n19.ncs \ psionicsobjs\psi_ac_conv_n2.ncs \ psionicsobjs\psi_ac_conv_n20.ncs \ psionicsobjs\psi_ac_conv_n21.ncs \ psionicsobjs\psi_ac_conv_n22.ncs \ psionicsobjs\psi_ac_conv_n24.ncs \ psionicsobjs\psi_ac_conv_n25.ncs \ psionicsobjs\psi_ac_conv_n26.ncs \ psionicsobjs\psi_ac_conv_n27.ncs \ psionicsobjs\psi_ac_conv_n28.ncs \ psionicsobjs\psi_ac_conv_n29.ncs \ psionicsobjs\psi_ac_conv_n3.ncs \ psionicsobjs\psi_ac_conv_n30.ncs \ psionicsobjs\psi_ac_conv_n4.ncs \ psionicsobjs\psi_ac_conv_n5.ncs \ psionicsobjs\psi_ac_conv_n6.ncs \ psionicsobjs\psi_ac_conv_n7.ncs \ psionicsobjs\psi_ac_conv_n8a.ncs \ psionicsobjs\psi_ac_conv_n8c.ncs \ psionicsobjs\psi_ac_conv_n8e.ncs \ psionicsobjs\psi_ac_conv_n8f.ncs \ psionicsobjs\psi_ac_conv_n8s.ncs \ psionicsobjs\psi_ac_conv_n9.ncs \ psionicsobjs\psi_ac_conv_nbuf.ncs \ psionicsobjs\psi_ac_conv_nosh.ncs \ psionicsobjs\psi_ac_conv_r1.ncs \ psionicsobjs\psi_ac_conv_r10a.ncs \ psionicsobjs\psi_ac_conv_r10c.ncs \ psionicsobjs\psi_ac_conv_r10e.ncs \ psionicsobjs\psi_ac_conv_r10f.ncs \ psionicsobjs\psi_ac_conv_r10s.ncs \ psionicsobjs\psi_ac_conv_r11.ncs \ psionicsobjs\psi_ac_conv_r12.ncs \ psionicsobjs\psi_ac_conv_r13.ncs \ psionicsobjs\psi_ac_conv_r14.ncs \ psionicsobjs\psi_ac_conv_r15.ncs \ psionicsobjs\psi_ac_conv_r16.ncs \ psionicsobjs\psi_ac_conv_r17.ncs \ psionicsobjs\psi_ac_conv_r18.ncs \ psionicsobjs\psi_ac_conv_r19.ncs \ psionicsobjs\psi_ac_conv_r2.ncs \ psionicsobjs\psi_ac_conv_r20.ncs \ psionicsobjs\psi_ac_conv_r21.ncs \ psionicsobjs\psi_ac_conv_r22.ncs \ psionicsobjs\psi_ac_conv_r23.ncs \ psionicsobjs\psi_ac_conv_r24.ncs \ psionicsobjs\psi_ac_conv_r25.ncs \ psionicsobjs\psi_ac_conv_r26.ncs \ psionicsobjs\psi_ac_conv_r27.ncs \ psionicsobjs\psi_ac_conv_r28.ncs \ psionicsobjs\psi_ac_conv_r29.ncs \ psionicsobjs\psi_ac_conv_r3.ncs \ psionicsobjs\psi_ac_conv_r30.ncs \ psionicsobjs\psi_ac_conv_r4.ncs \ psionicsobjs\psi_ac_conv_r5.ncs \ psionicsobjs\psi_ac_conv_r6.ncs \ psionicsobjs\psi_ac_conv_r7.ncs \ psionicsobjs\psi_ac_conv_r8a.ncs \ psionicsobjs\psi_ac_conv_r8c.ncs \ psionicsobjs\psi_ac_conv_r8e.ncs \ psionicsobjs\psi_ac_conv_r8f.ncs \ psionicsobjs\psi_ac_conv_r8s.ncs \ psionicsobjs\psi_ac_conv_r9.ncs \ psionicsobjs\psi_ac_conv_sav1.ncs \ psionicsobjs\psi_ac_conv_sav2.ncs \ psionicsobjs\psi_ac_conv_sav3.ncs \ psionicsobjs\psi_ac_conv_sav4.ncs \ psionicsobjs\psi_ac_conv_sav5.ncs \ psionicsobjs\psi_ac_conv_slv1.ncs \ psionicsobjs\psi_ac_conv_slv2.ncs \ psionicsobjs\psi_ac_conv_slv3.ncs \ psionicsobjs\psi_ac_conv_slv4.ncs \ psionicsobjs\psi_ac_conv_slv5.ncs \ psionicsobjs\psi_ac_conv_slv6.ncs \ psionicsobjs\psi_ac_conv_slv7.ncs \ psionicsobjs\psi_ac_conv_slv8.ncs \ psionicsobjs\psi_ac_conv_slv9.ncs \ psionicsobjs\psi_ac_conv_sm_a.ncs \ psionicsobjs\psi_ac_conv_sm_b.ncs \ psionicsobjs\psi_ac_conv_sm_c.ncs \ psionicsobjs\psi_ac_conv_tokn.ncs \ psionicsobjs\psi_ac_conv_wipe.ncs \ psionicsobjs\psi_animalaffin.ncs \ psionicsobjs\psi_ast_con_conv.ncs \ psionicsobjs\psi_ast_con_hrtb.ncs \ psionicsobjs\psi_ast_con_man.ncs \ psionicsobjs\psi_ast_con_ptch.ncs \ psionicsobjs\psi_ast_con_spwn.ncs \ psionicsobjs\psi_astseed_resp.ncs \ psionicsobjs\psi_aug_off.ncs \ psionicsobjs\psi_aug_qslot.ncs \ psionicsobjs\psi_aug_select_d.ncs \ psionicsobjs\psi_aug_select_t.ncs \ psionicsobjs\psi_aug_strtconv.ncs \ psionicsobjs\psi_aug_togg_max.ncs \ psionicsobjs\psi_augment_conv.ncs \ psionicsobjs\psi_callweapon.ncs \ psionicsobjs\psi_dalqur_stun.ncs \ psionicsobjs\psi_deep_impact.ncs \ psionicsobjs\psi_diadra.ncs \ psionicsobjs\psi_diadra_afear.ncs \ psionicsobjs\psi_diadra_aura.ncs \ psionicsobjs\psi_diadra_bth.ncs \ psionicsobjs\psi_diadra_claw.ncs \ psionicsobjs\psi_diadra_imm.ncs \ psionicsobjs\psi_diadra_ntrl.ncs \ psionicsobjs\psi_diadra_tail.ncs \ psionicsobjs\psi_diadra_wing.ncs \ psionicsobjs\psi_fell_shot.ncs \ psionicsobjs\psi_foz_generic.ncs \ psionicsobjs\psi_g_psi_fist.ncs \ psionicsobjs\psi_g_psi_shot.ncs \ psionicsobjs\psi_g_psi_weapon.ncs \ psionicsobjs\psi_g_stroftwo.ncs \ psionicsobjs\psi_gen_enter.ncs \ psionicsobjs\psi_gen_exit.ncs \ psionicsobjs\psi_imnd_armmnd.ncs \ psionicsobjs\psi_imnd_lndrslv.ncs \ psionicsobjs\psi_imnd_mindbod.ncs \ psionicsobjs\psi_invest_armor.ncs \ psionicsobjs\psi_ironmind.ncs \ psionicsobjs\psi_mental_leap.ncs \ psionicsobjs\psi_meta_chain.ncs \ psionicsobjs\psi_meta_emp.ncs \ psionicsobjs\psi_meta_extend.ncs \ psionicsobjs\psi_meta_max.ncs \ psionicsobjs\psi_meta_quicken.ncs \ psionicsobjs\psi_meta_split.ncs \ psionicsobjs\psi_meta_twin.ncs \ psionicsobjs\psi_meta_widen.ncs \ psionicsobjs\psi_overchnl_1.ncs \ psionicsobjs\psi_overchnl_2.ncs \ psionicsobjs\psi_overchnl_3.ncs \ psionicsobjs\psi_overchnl_off.ncs \ psionicsobjs\psi_pow_2ndchnc.ncs \ psionicsobjs\psi_pow_amorpha.ncs \ psionicsobjs\psi_pow_animafin.ncs \ psionicsobjs\psi_pow_assim.ncs \ psionicsobjs\psi_pow_astseed.ncs \ psionicsobjs\psi_pow_aversion.ncs \ psionicsobjs\psi_pow_baletel.ncs \ psionicsobjs\psi_pow_banish.ncs \ psionicsobjs\psi_pow_bdyadjst.ncs \ psionicsobjs\psi_pow_bdyequib.ncs \ psionicsobjs\psi_pow_bdypure.ncs \ psionicsobjs\psi_pow_biofeed.ncs \ psionicsobjs\psi_pow_bitewolf.ncs \ psionicsobjs\psi_pow_blckdrgn.ncs \ psionicsobjs\psi_pow_bolt.ncs \ psionicsobjs\psi_pow_brnlock.ncs \ psionicsobjs\psi_pow_bstpwr.ncs \ psionicsobjs\psi_pow_burst.ncs \ psionicsobjs\psi_pow_callweap.ncs \ psionicsobjs\psi_pow_catapsi.ncs \ psionicsobjs\psi_pow_catapsia.ncs \ psionicsobjs\psi_pow_catapsib.ncs \ psionicsobjs\psi_pow_catapsic.ncs \ psionicsobjs\psi_pow_cham.ncs \ psionicsobjs\psi_pow_charge.ncs \ psionicsobjs\psi_pow_charmper.ncs \ psionicsobjs\psi_pow_cldmnd.ncs \ psionicsobjs\psi_pow_cldmndm.ncs \ psionicsobjs\psi_pow_clltomnd.ncs \ psionicsobjs\psi_pow_clrhand.ncs \ psionicsobjs\psi_pow_clrsns.ncs \ psionicsobjs\psi_pow_clwbeast.ncs \ psionicsobjs\psi_pow_clwnrg.ncs \ psionicsobjs\psi_pow_clwvamp.ncs \ psionicsobjs\psi_pow_cncltght.ncs \ psionicsobjs\psi_pow_compress.ncs \ psionicsobjs\psi_pow_concblst.ncs \ psionicsobjs\psi_pow_crsbrth.ncs \ psionicsobjs\psi_pow_crslife.ncs \ psionicsobjs\psi_pow_crtsnd.ncs \ psionicsobjs\psi_pow_crysshrd.ncs \ psionicsobjs\psi_pow_crysswrm.ncs \ psionicsobjs\psi_pow_crystlz.ncs \ psionicsobjs\psi_pow_ctrlair.ncs \ psionicsobjs\psi_pow_ctrlobj.ncs \ psionicsobjs\psi_pow_ctrlsnd.ncs \ psionicsobjs\psi_pow_darkvis.ncs \ psionicsobjs\psi_pow_daze.ncs \ psionicsobjs\psi_pow_dctrmvw.ncs \ psionicsobjs\psi_pow_ddoor.ncs \ psionicsobjs\psi_pow_decel.ncs \ psionicsobjs\psi_pow_decerebr.ncs \ psionicsobjs\psi_pow_defpre.ncs \ psionicsobjs\psi_pow_demoral.ncs \ psionicsobjs\psi_pow_destdiss.ncs \ psionicsobjs\psi_pow_dimanch.ncs \ psionicsobjs\psi_pow_dimslide.ncs \ psionicsobjs\psi_pow_dimswap.ncs \ psionicsobjs\psi_pow_disable.ncs \ psionicsobjs\psi_pow_disin.ncs \ psionicsobjs\psi_pow_dismiss.ncs \ psionicsobjs\psi_pow_dispel.ncs \ psionicsobjs\psi_pow_displbuf.ncs \ psionicsobjs\psi_pow_disswpn.ncs \ psionicsobjs\psi_pow_distract.ncs \ psionicsobjs\psi_pow_dngrsns.ncs \ psionicsobjs\psi_pow_dominate.ncs \ psionicsobjs\psi_pow_dsslvtch.ncs \ psionicsobjs\psi_pow_dsspttch.ncs \ psionicsobjs\psi_pow_duoclaw.ncs \ psionicsobjs\psi_pow_ectococ.ncs \ psionicsobjs\psi_pow_ectococm.ncs \ psionicsobjs\psi_pow_ectoform.ncs \ psionicsobjs\psi_pow_egowhip.ncs \ psionicsobjs\psi_pow_elfsight.ncs \ psionicsobjs\psi_pow_empathy.ncs \ psionicsobjs\psi_pow_empfeed.ncs \ psionicsobjs\psi_pow_emptrn.ncs \ psionicsobjs\psi_pow_emptrnh.ncs \ psionicsobjs\psi_pow_emptymnd.ncs \ psionicsobjs\psi_pow_enadapt.ncs \ psionicsobjs\psi_pow_enadpts.ncs \ psionicsobjs\psi_pow_enball.ncs \ psionicsobjs\psi_pow_enbolt.ncs \ psionicsobjs\psi_pow_enbrst.ncs \ psionicsobjs\psi_pow_encone.ncs \ psionicsobjs\psi_pow_encurr.ncs \ psionicsobjs\psi_pow_enmiss.ncs \ psionicsobjs\psi_pow_enpush.ncs \ psionicsobjs\psi_pow_enray.ncs \ psionicsobjs\psi_pow_enrtrt.ncs \ psionicsobjs\psi_pow_enstun.ncs \ psionicsobjs\psi_pow_entangle.ncs \ psionicsobjs\psi_pow_enwall.ncs \ psionicsobjs\psi_pow_enwall1.ncs \ psionicsobjs\psi_pow_enwall2.ncs \ psionicsobjs\psi_pow_enwave.ncs \ psionicsobjs\psi_pow_escdtct.ncs \ psionicsobjs\psi_pow_esham.ncs \ psionicsobjs\psi_pow_eshama.ncs \ psionicsobjs\psi_pow_eshamb.ncs \ psionicsobjs\psi_pow_eshamc.ncs \ psionicsobjs\psi_pow_ethereal.ncs \ psionicsobjs\psi_pow_ethjaunt.ncs \ psionicsobjs\psi_pow_evadebst.ncs \ psionicsobjs\psi_pow_exhalebd.ncs \ psionicsobjs\psi_pow_expand.ncs \ psionicsobjs\psi_pow_farhand.ncs \ psionicsobjs\psi_pow_fatelink.ncs \ psionicsobjs\psi_pow_formdoom.ncs \ psionicsobjs\psi_pow_frcscrn.ncs \ psionicsobjs\psi_pow_freedom.ncs \ psionicsobjs\psi_pow_frmdment.ncs \ psionicsobjs\psi_pow_fuseflsh.ncs \ psionicsobjs\psi_pow_gamorpha.ncs \ psionicsobjs\psi_pow_genesis.ncs \ psionicsobjs\psi_pow_gprecog.ncs \ psionicsobjs\psi_pow_gprecoga.ncs \ psionicsobjs\psi_pow_grease.ncs \ psionicsobjs\psi_pow_greasea.ncs \ psionicsobjs\psi_pow_greaseb.ncs \ psionicsobjs\psi_pow_greasec.ncs \ psionicsobjs\psi_pow_gripiron.ncs \ psionicsobjs\psi_pow_gtele.ncs \ psionicsobjs\psi_pow_hailcrys.ncs \ psionicsobjs\psi_pow_hammer.ncs \ psionicsobjs\psi_pow_hustle.ncs \ psionicsobjs\psi_pow_hypercog.ncs \ psionicsobjs\psi_pow_identify.ncs \ psionicsobjs\psi_pow_idinsin.ncs \ psionicsobjs\psi_pow_immove.ncs \ psionicsobjs\psi_pow_inertarm.ncs \ psionicsobjs\psi_pow_inertbar.ncs \ psionicsobjs\psi_pow_inpain.ncs \ psionicsobjs\psi_pow_insane.ncs \ psionicsobjs\psi_pow_intfort.ncs \ psionicsobjs\psi_pow_ironbody.ncs \ psionicsobjs\psi_pow_keenedge.ncs \ psionicsobjs\psi_pow_knock.ncs \ psionicsobjs\psi_pow_lock.ncs \ psionicsobjs\psi_pow_mentbar.ncs \ psionicsobjs\psi_pow_metaclaw.ncs \ psionicsobjs\psi_pow_metaweap.ncs \ psionicsobjs\psi_pow_microcos.ncs \ psionicsobjs\psi_pow_mindtrap.ncs \ psionicsobjs\psi_pow_mindwipe.ncs \ psionicsobjs\psi_pow_mmntpre.ncs \ psionicsobjs\psi_pow_mndblnkp.ncs \ psionicsobjs\psi_pow_mndthrst.ncs \ psionicsobjs\psi_pow_mntdsrp.ncs \ psionicsobjs\psi_pow_mttrag.ncs \ psionicsobjs\psi_pow_mylight.ncs \ psionicsobjs\psi_pow_neginvis.ncs \ psionicsobjs\psi_pow_npf.ncs \ psionicsobjs\psi_pow_npfent.ncs \ psionicsobjs\psi_pow_npfext.ncs \ psionicsobjs\psi_pow_oakbody.ncs \ psionicsobjs\psi_pow_offpre.ncs \ psionicsobjs\psi_pow_offpresc.ncs \ psionicsobjs\psi_pow_painstrk.ncs \ psionicsobjs\psi_pow_powres.ncs \ psionicsobjs\psi_pow_precog.ncs \ psionicsobjs\psi_pow_precoga.ncs \ psionicsobjs\psi_pow_prevnm.ncs \ psionicsobjs\psi_pow_prevnmwp.ncs \ psionicsobjs\psi_pow_psiblast.ncs \ psionicsobjs\psi_pow_psimndbk.ncs \ psionicsobjs\psi_pow_psirev.ncs \ psionicsobjs\psi_pow_psychir.ncs \ psionicsobjs\psi_pow_psycrush.ncs \ psionicsobjs\psi_pow_psyfeed.ncs \ psionicsobjs\psi_pow_psyref.ncs \ psionicsobjs\psi_pow_psyvamp.ncs \ psionicsobjs\psi_pow_pwrleech.ncs \ psionicsobjs\psi_pow_rclagony.ncs \ psionicsobjs\psi_pow_rcldeath.ncs \ psionicsobjs\psi_pow_reddopsi.ncs \ psionicsobjs\psi_pow_repdam.ncs \ psionicsobjs\psi_pow_restore.ncs \ psionicsobjs\psi_pow_retrieve.ncs \ psionicsobjs\psi_pow_rmtview.ncs \ psionicsobjs\psi_pow_rmtvwtrp.ncs \ psionicsobjs\psi_pow_sequestr.ncs \ psionicsobjs\psi_pow_shadbody.ncs \ psionicsobjs\psi_pow_shrpain.ncs \ psionicsobjs\psi_pow_shrpainf.ncs \ psionicsobjs\psi_pow_shrpnaux.ncs \ psionicsobjs\psi_pow_shttrmb.ncs \ psionicsobjs\psi_pow_skate.ncs \ psionicsobjs\psi_pow_stdfstpr.ncs \ psionicsobjs\psi_pow_stomp.ncs \ psionicsobjs\psi_pow_strnmy.ncs \ psionicsobjs\psi_pow_synsth.ncs \ psionicsobjs\psi_pow_tchsght.ncs \ psionicsobjs\psi_pow_telecirc.ncs \ psionicsobjs\psi_pow_telemp.ncs \ psionicsobjs\psi_pow_teleport.ncs \ psionicsobjs\psi_pow_tempacc.ncs \ psionicsobjs\psi_pow_tghtshld.ncs \ psionicsobjs\psi_pow_thickskn.ncs \ psionicsobjs\psi_pow_timebody.ncs \ psionicsobjs\psi_pow_timehop.ncs \ psionicsobjs\psi_pow_timehopm.ncs \ psionicsobjs\psi_pow_tkmove.ncs \ psionicsobjs\psi_pow_trnblst.ncs \ psionicsobjs\psi_pow_truemeta.ncs \ psionicsobjs\psi_pow_truesee.ncs \ psionicsobjs\psi_pow_truvnm.ncs \ psionicsobjs\psi_pow_truvnmwp.ncs \ psionicsobjs\psi_pow_twrwll.ncs \ psionicsobjs\psi_pow_ubiqvis.ncs \ psionicsobjs\psi_pow_ultrabst.ncs \ psionicsobjs\psi_pow_vampwep.ncs \ psionicsobjs\psi_pow_vigor.ncs \ psionicsobjs\psi_pow_wepnrg.ncs \ psionicsobjs\psi_powconv.ncs \ psionicsobjs\psi_power_pen.ncs \ psionicsobjs\psi_power_spec.ncs \ psionicsobjs\psi_psi_generic.ncs \ psionicsobjs\psi_psionic_endw.ncs \ psionicsobjs\psi_psionic_fist.ncs \ psionicsobjs\psi_psionic_foc.ncs \ psionicsobjs\psi_psionic_hole.ncs \ psionicsobjs\psi_psionic_shot.ncs \ psionicsobjs\psi_psionic_weap.ncs \ psionicsobjs\psi_psy_generic.ncs \ psionicsobjs\psi_psychofeed.ncs \ psionicsobjs\psi_psyrog_blind.ncs \ psionicsobjs\psi_psyrog_dngr.ncs \ psionicsobjs\psi_psyrog_sjump.ncs \ psionicsobjs\psi_psyrogue.ncs \ psionicsobjs\psi_pyro.ncs \ psionicsobjs\psi_pyro_bolt.ncs \ psionicsobjs\psi_pyro_conf.ncs \ psionicsobjs\psi_pyro_death.ncs \ psionicsobjs\psi_pyro_lash.ncs \ psionicsobjs\psi_pyro_nimbus.ncs \ psionicsobjs\psi_pyro_touch.ncs \ psionicsobjs\psi_pyro_walk.ncs \ psionicsobjs\psi_rog_generic.ncs \ psionicsobjs\psi_sancmind.ncs \ psionicsobjs\psi_shadow_cdmnm.ncs \ psionicsobjs\psi_shadow_cldmn.ncs \ psionicsobjs\psi_shadow_dtrct.ncs \ psionicsobjs\psi_shadow_mind.ncs \ psionicsobjs\psi_shadowmind.ncs \ psionicsobjs\psi_sk_bladewind.ncs \ psionicsobjs\psi_sk_chhand.ncs \ psionicsobjs\psi_sk_clseval.ncs \ psionicsobjs\psi_sk_conv_calc.ncs \ psionicsobjs\psi_sk_conv_calt.ncs \ psionicsobjs\psi_sk_conv_clea.ncs \ psionicsobjs\psi_sk_conv_co_a.ncs \ psionicsobjs\psi_sk_conv_co_s.ncs \ psionicsobjs\psi_sk_conv_de_a.ncs \ psionicsobjs\psi_sk_conv_de_s.ncs \ psionicsobjs\psi_sk_conv_di_a.ncs \ psionicsobjs\psi_sk_conv_di_s.ncs \ psionicsobjs\psi_sk_conv_ke_a.ncs \ psionicsobjs\psi_sk_conv_ke_s.ncs \ psionicsobjs\psi_sk_conv_lu_a.ncs \ psionicsobjs\psi_sk_conv_lu_s.ncs \ psionicsobjs\psi_sk_conv_mc_a.ncs \ psionicsobjs\psi_sk_conv_mc_s.ncs \ psionicsobjs\psi_sk_conv_mi_a.ncs \ psionicsobjs\psi_sk_conv_mi_s.ncs \ psionicsobjs\psi_sk_conv_pb_a.ncs \ psionicsobjs\psi_sk_conv_pb_s.ncs \ psionicsobjs\psi_sk_conv_ps_a.ncs \ psionicsobjs\psi_sk_conv_ps_s.ncs \ psionicsobjs\psi_sk_conv_s0_a.ncs \ psionicsobjs\psi_sk_conv_s0_s.ncs \ psionicsobjs\psi_sk_conv_s1_a.ncs \ psionicsobjs\psi_sk_conv_s1_s.ncs \ psionicsobjs\psi_sk_conv_s2_a.ncs \ psionicsobjs\psi_sk_conv_s2_s.ncs \ psionicsobjs\psi_sk_conv_s3_a.ncs \ psionicsobjs\psi_sk_conv_s3_s.ncs \ psionicsobjs\psi_sk_conv_s4_a.ncs \ psionicsobjs\psi_sk_conv_s4_s.ncs \ psionicsobjs\psi_sk_conv_s5_a.ncs \ psionicsobjs\psi_sk_conv_s5_s.ncs \ psionicsobjs\psi_sk_conv_s6_a.ncs \ psionicsobjs\psi_sk_conv_s6_s.ncs \ psionicsobjs\psi_sk_conv_s7_a.ncs \ psionicsobjs\psi_sk_conv_s7_s.ncs \ psionicsobjs\psi_sk_conv_s8_a.ncs \ psionicsobjs\psi_sk_conv_s8_s.ncs \ psionicsobjs\psi_sk_conv_s9_a.ncs \ psionicsobjs\psi_sk_conv_s9_s.ncs \ psionicsobjs\psi_sk_conv_save.ncs \ psionicsobjs\psi_sk_conv_so_a.ncs \ psionicsobjs\psi_sk_conv_so_s.ncs \ psionicsobjs\psi_sk_conv_su_a.ncs \ psionicsobjs\psi_sk_conv_su_s.ncs \ psionicsobjs\psi_sk_conv_ts_d.ncs \ psionicsobjs\psi_sk_conv_vi_a.ncs \ psionicsobjs\psi_sk_conv_vi_s.ncs \ psionicsobjs\psi_sk_conv_wo_a.ncs \ psionicsobjs\psi_sk_conv_wo_s.ncs \ psionicsobjs\psi_sk_event.ncs \ psionicsobjs\psi_sk_free_draw.ncs \ psionicsobjs\psi_sk_ktts_die.ncs \ psionicsobjs\psi_sk_ktts_main.ncs \ psionicsobjs\psi_sk_lucky.ncs \ psionicsobjs\psi_sk_manifmbld.ncs \ psionicsobjs\psi_sk_manifshld.ncs \ psionicsobjs\psi_sk_mbldenhan.ncs \ psionicsobjs\psi_sk_onhit.ncs \ psionicsobjs\psi_sk_psychsrtk.ncs \ psionicsobjs\psi_sk_shmbld.ncs \ psionicsobjs\psi_sk_spiritfrc.ncs \ psionicsobjs\psi_sk_throwmbld.ncs \ psionicsobjs\psi_smnd_clnstrk.ncs \ psionicsobjs\psi_smnd_disblow.ncs \ psionicsobjs\psi_smnd_prtmnd.ncs \ psionicsobjs\psi_spd_thought.ncs \ psionicsobjs\psi_spdfthgt_oeq.ncs \ psionicsobjs\psi_spdfthgt_ueq.ncs \ psionicsobjs\psi_talented.ncs \ psionicsobjs\psi_thrall_charm.ncs \ psionicsobjs\psi_thrall_dom.ncs \ psionicsobjs\psi_thrall_tfc.ncs \ psionicsobjs\psi_thrall_tff.ncs \ psionicsobjs\psi_thrall_tfr.ncs \ psionicsobjs\psi_thrall_tfw.ncs \ psionicsobjs\psi_thrall_thc.ncs \ psionicsobjs\psi_thrall_thf.ncs \ psionicsobjs\psi_thrall_thr.ncs \ psionicsobjs\psi_thrall_thw.ncs \ psionicsobjs\psi_thrallherd.ncs \ psionicsobjs\psi_toff_focab.ncs \ psionicsobjs\psi_unavoid_strk.ncs \ psionicsobjs\psi_war_generic.ncs \ psionicsobjs\psi_warmind.ncs \ psionicsobjs\psi_wil_generic.ncs \ psionicsobjs\psi_wmnd_defpost.ncs \ psionicsobjs\psi_wmnd_oforce.ncs \ psionicsobjs\psi_wmnd_persup.ncs \ psionicsobjs\psi_wound_atk_m.ncs \ psionicsobjs\psi_wound_atk_r.ncs \ psionicsobjs\psi_zuoken.ncs NEWSPELLBOOKSCRIPTS= \ newspellbook\bnd_anim_cast.nss \ newspellbook\bnd_anim_meta.nss \ newspellbook\bnd_anim_metacnv.nss \ newspellbook\bnd_anim_vcast.nss \ newspellbook\bnd_bind_pact.nss \ newspellbook\bnd_binder.nss \ newspellbook\bnd_bindingcnv.nss \ newspellbook\bnd_bndvestige.nss \ newspellbook\bnd_dnt_glare.nss \ newspellbook\bnd_dnt_ovrwhelm.nss \ newspellbook\bnd_dnt_scholar.nss \ newspellbook\bnd_events.nss \ newspellbook\bnd_expelcnv.nss \ newspellbook\bnd_exploitcnv.nss \ newspellbook\bnd_ft_expel.nss \ newspellbook\bnd_kss.nss \ newspellbook\bnd_kss_pow.nss \ newspellbook\bnd_kss_prot.nss \ newspellbook\bnd_kss_surge.nss \ newspellbook\bnd_tenebrous.nss \ newspellbook\bnd_tnb_charm.nss \ newspellbook\bnd_tnb_desempud.nss \ newspellbook\bnd_tnb_rebuke.nss \ newspellbook\bnd_tnb_umbral.nss \ newspellbook\bnd_tnb_visage.nss \ newspellbook\bnd_tnb_void.nss \ newspellbook\bnd_vest_abysm.nss \ newspellbook\bnd_vest_aceptch.nss \ newspellbook\bnd_vest_acerak.nss \ newspellbook\bnd_vest_acespll.nss \ newspellbook\bnd_vest_agacomp.nss \ newspellbook\bnd_vest_agadel.nss \ newspellbook\bnd_vest_agares.nss \ newspellbook\bnd_vest_agastep.nss \ newspellbook\bnd_vest_amon.nss \ newspellbook\bnd_vest_amonbrt.nss \ newspellbook\bnd_vest_anddsrd.nss \ newspellbook\bnd_vest_andmnt.nss \ newspellbook\bnd_vest_andras.nss \ newspellbook\bnd_vest_andro.nss \ newspellbook\bnd_vest_androin.nss \ newspellbook\bnd_vest_androla.nss \ newspellbook\bnd_vest_androlo.nss \ newspellbook\bnd_vest_andsmt.nss \ newspellbook\bnd_vest_arete.nss \ newspellbook\bnd_vest_areters.nss \ newspellbook\bnd_vest_ashard.nss \ newspellbook\bnd_vest_ashardf.nss \ newspellbook\bnd_vest_ashardl.nss \ newspellbook\bnd_vest_astbrth.nss \ newspellbook\bnd_vest_astroth.nss \ newspellbook\bnd_vest_astword.nss \ newspellbook\bnd_vest_aym.nss \ newspellbook\bnd_vest_aymfire.nss \ newspellbook\bnd_vest_balam.nss \ newspellbook\bnd_vest_balamc.nss \ newspellbook\bnd_vest_balamg.nss \ newspellbook\bnd_vest_buer.nss \ newspellbook\bnd_vest_buerent.nss \ newspellbook\bnd_vest_buerext.nss \ newspellbook\bnd_vest_buerhl.nss \ newspellbook\bnd_vest_chupare.nss \ newspellbook\bnd_vest_chuparx.nss \ newspellbook\bnd_vest_chupaur.nss \ newspellbook\bnd_vest_chupeth.nss \ newspellbook\bnd_vest_chupo.nss \ newspellbook\bnd_vest_dahlmn.nss \ newspellbook\bnd_vest_dahlsh.nss \ newspellbook\bnd_vest_dahlver.nss \ newspellbook\bnd_vest_dantaln.nss \ newspellbook\bnd_vest_dantawe.nss \ newspellbook\bnd_vest_dantrd.nss \ newspellbook\bnd_vest_danttvl.nss \ newspellbook\bnd_vest_desh.nss \ newspellbook\bnd_vest_deshanm.nss \ newspellbook\bnd_vest_deshsmt.nss \ newspellbook\bnd_vest_deshtel.nss \ newspellbook\bnd_vest_eligor.nss \ newspellbook\bnd_vest_eligora.nss \ newspellbook\bnd_vest_eligorc.nss \ newspellbook\bnd_vest_eligore.nss \ newspellbook\bnd_vest_eligorf.nss \ newspellbook\bnd_vest_eurychm.nss \ newspellbook\bnd_vest_eurychr.nss \ newspellbook\bnd_vest_eurynom.nss \ newspellbook\bnd_vest_focalor.nss \ newspellbook\bnd_vest_focaura.nss \ newspellbook\bnd_vest_focaure.nss \ newspellbook\bnd_vest_focaurx.nss \ newspellbook\bnd_vest_focbolt.nss \ newspellbook\bnd_vest_focbrth.nss \ newspellbook\bnd_vest_geryon.nss \ newspellbook\bnd_vest_geryona.nss \ newspellbook\bnd_vest_geryonf.nss \ newspellbook\bnd_vest_hagenti.nss \ newspellbook\bnd_vest_hagtch.nss \ newspellbook\bnd_vest_halpbar.nss \ newspellbook\bnd_vest_halphax.nss \ newspellbook\bnd_vest_halpimp.nss \ newspellbook\bnd_vest_halpmmm.nss \ newspellbook\bnd_vest_haures.nss \ newspellbook\bnd_vest_haurmi.nss \ newspellbook\bnd_vest_haurpk.nss \ newspellbook\bnd_vest_ipos.nss \ newspellbook\bnd_vest_iposins.nss \ newspellbook\bnd_vest_karsus.nss \ newspellbook\bnd_vest_karsusp.nss \ newspellbook\bnd_vest_leraje.nss \ newspellbook\bnd_vest_lerajer.nss \ newspellbook\bnd_vest_maleye.nss \ newspellbook\bnd_vest_malinv.nss \ newspellbook\bnd_vest_malphas.nss \ newspellbook\bnd_vest_march.nss \ newspellbook\bnd_vest_marchsm.nss \ newspellbook\bnd_vest_nabers.nss \ newspellbook\bnd_vest_nabersp.nss \ newspellbook\bnd_vest_orthbrt.nss \ newspellbook\bnd_vest_orthos.nss \ newspellbook\bnd_vest_otiax.nss \ newspellbook\bnd_vest_otiaxab.nss \ newspellbook\bnd_vest_otiaxop.nss \ newspellbook\bnd_vest_otiaxun.nss \ newspellbook\bnd_vest_paidnc.nss \ newspellbook\bnd_vest_paimon.nss \ newspellbook\bnd_vest_ronove.nss \ newspellbook\bnd_vest_ronvsla.nss \ newspellbook\bnd_vest_savnok.nss \ newspellbook\bnd_vest_savnokc.nss \ newspellbook\bnd_vest_savnokm.nss \ newspellbook\bnd_vest_shax.nss \ newspellbook\bnd_vest_shaxfm.nss \ newspellbook\bnd_vest_shaxstm.nss \ newspellbook\bnd_vest_tenebrs.nss \ newspellbook\bnd_vest_tenedrk.nss \ newspellbook\bnd_vest_teneflk.nss \ newspellbook\bnd_vest_tenevd.nss \ newspellbook\bnd_vest_triad.nss \ newspellbook\bnd_vest_triadsm.nss \ newspellbook\bnd_vest_vanus.nss \ newspellbook\bnd_vest_vanusen.nss \ newspellbook\bnd_vest_vanusfm.nss \ newspellbook\bnd_vest_zagan.nss \ newspellbook\bnd_vest_zaganav.nss \ newspellbook\bnd_vest_zcery.nss \ newspellbook\bnd_vest_zcerybt.nss \ newspellbook\bnd_vest_zcerysm.nss \ newspellbook\bnd_vest_zceryts.nss \ newspellbook\inv_adeptbreath.nss \ newspellbook\inv_allseeeye.nss \ newspellbook\inv_balefulutter.nss \ newspellbook\inv_blastessence.nss \ newspellbook\inv_callofbeast.nss \ newspellbook\inv_castlament.nss \ newspellbook\inv_causticmire.nss \ newspellbook\inv_causticmirea.nss \ newspellbook\inv_causticmireb.nss \ newspellbook\inv_causticmirec.nss \ newspellbook\inv_chillingtent.nss \ newspellbook\inv_chilltenta.nss \ newspellbook\inv_chilltentb.nss \ newspellbook\inv_chilltentc.nss \ newspellbook\inv_cocoonrefuse.nss \ newspellbook\inv_coldcmfrta.nss \ newspellbook\inv_coldcmfrtb.nss \ newspellbook\inv_coldcomfort.nss \ newspellbook\inv_curseofdesp.nss \ newspellbook\inv_darkdiscorp.nss \ newspellbook\inv_darkoneluck.nss \ newspellbook\inv_devilssight.nss \ newspellbook\inv_dfa_generic.nss \ newspellbook\inv_discorpnoatk.nss \ newspellbook\inv_dra_auraflm.nss \ newspellbook\inv_dra_beglinf.nss \ newspellbook\inv_dra_brthngt.nss \ newspellbook\inv_dra_charm.nss \ newspellbook\inv_dra_chilfoga.nss \ newspellbook\inv_dra_chilfogb.nss \ newspellbook\inv_dra_chilfogc.nss \ newspellbook\inv_dra_chillfog.nss \ newspellbook\inv_dra_darkness.nss \ newspellbook\inv_dra_devrmag.nss \ newspellbook\inv_dra_dfnroar.nss \ newspellbook\inv_dra_dracknow.nss \ newspellbook\inv_dra_dractgh.nss \ newspellbook\inv_dra_eimmune.nss \ newspellbook\inv_dra_endrexp.nss \ newspellbook\inv_dra_enrgyres.nss \ newspellbook\inv_dra_evuln.nss \ newspellbook\inv_dra_frtpres.nss \ newspellbook\inv_dra_maginst.nss \ newspellbook\inv_dra_scldgust.nss \ newspellbook\inv_dra_seeunsn.nss \ newspellbook\inv_dra_terrroar.nss \ newspellbook\inv_dra_voidsnse.nss \ newspellbook\inv_dra_vordspl.nss \ newspellbook\inv_dra_walkunsn.nss \ newspellbook\inv_dragonward.nss \ newspellbook\inv_dreadseizure.nss \ newspellbook\inv_drg_generic.nss \ newspellbook\inv_drgnfireadpt.nss \ newspellbook\inv_drkforesight.nss \ newspellbook\inv_earthengrasp.nss \ newspellbook\inv_earthgraspa.nss \ newspellbook\inv_earthgraspc.nss \ newspellbook\inv_ed_gift.nss \ newspellbook\inv_eldrtch_glv.nss \ newspellbook\inv_eldtch_blast.nss \ newspellbook\inv_eldtch_chain.nss \ newspellbook\inv_eldtch_shape.nss \ newspellbook\inv_eldtchglv_ht.nss \ newspellbook\inv_enervshdw.nss \ newspellbook\inv_enervshdwa.nss \ newspellbook\inv_enervshdwb.nss \ newspellbook\inv_enervshdwc.nss \ newspellbook\inv_entrpward.nss \ newspellbook\inv_et_grblst.nss \ newspellbook\inv_et_spellblst.nss \ newspellbook\inv_fiend_resil.nss \ newspellbook\inv_fleethescene.nss \ newspellbook\inv_fts_decoy.nss \ newspellbook\inv_heal_blast.nss \ newspellbook\inv_hellf_blast.nss \ newspellbook\inv_hf_infusion.nss \ newspellbook\inv_hf_shield.nss \ newspellbook\inv_hideous_blow.nss \ newspellbook\inv_hlspwngrace.nss \ newspellbook\inv_hmndshp_lern.nss \ newspellbook\inv_hmndshp_opts.nss \ newspellbook\inv_hmndshp_quik.nss \ newspellbook\inv_hmndshp_true.nss \ newspellbook\inv_hungrydarkns.nss \ newspellbook\inv_ignorepyre.nss \ newspellbook\inv_imbue_item.nss \ newspellbook\inv_imbueitemcon.nss \ newspellbook\inv_invokeconv.nss \ newspellbook\inv_leapbound.nss \ newspellbook\inv_maskofflesh.nss \ newspellbook\inv_masofelemdom.nss \ newspellbook\inv_masofelemsum.nss \ newspellbook\inv_miasmicclda.nss \ newspellbook\inv_miasmiccldc.nss \ newspellbook\inv_miasmiccloud.nss \ newspellbook\inv_mrphsvntword.nss \ newspellbook\inv_nightmarea.nss \ newspellbook\inv_nightmareb.nss \ newspellbook\inv_nightmarec.nss \ newspellbook\inv_othrwrldwspr.nss \ newspellbook\inv_painslumber.nss \ newspellbook\inv_pathofshadow.nss \ newspellbook\inv_realnghtmre.nss \ newspellbook\inv_relentdispel.nss \ newspellbook\inv_retribinvis.nss \ newspellbook\inv_serptongue.nss \ newspellbook\inv_shdwmstrcncl.nss \ newspellbook\inv_shdwmstrshds.nss \ newspellbook\inv_soulreaveaur.nss \ newspellbook\inv_spidershape.nss \ newspellbook\inv_splweave.nss \ newspellbook\inv_splweave_act.nss \ newspellbook\inv_stealsummon.nss \ newspellbook\inv_summonswarm.nss \ newspellbook\inv_swarmdmgc.nss \ newspellbook\inv_swimthestyx.nss \ newspellbook\inv_tenacplague.nss \ newspellbook\inv_thedeadwalk.nss \ newspellbook\inv_verminlrdcrp.nss \ newspellbook\inv_verminlrddom.nss \ newspellbook\inv_wallglooma.nss \ newspellbook\inv_wallgloomb.nss \ newspellbook\inv_wallofgloom.nss \ newspellbook\inv_wallperlflm.nss \ newspellbook\inv_wallperlflma.nss \ newspellbook\inv_wallperlflmc.nss \ newspellbook\inv_war_generic.nss \ newspellbook\inv_warlock.nss \ newspellbook\inv_witchwood.nss \ newspellbook\inv_wordchange.nss \ newspellbook\moi_bindingcnv.nss \ newspellbook\moi_essentiacnv.nss \ newspellbook\moi_events.nss \ newspellbook\moi_ft_aztalent.nss \ newspellbook\moi_ft_divsoul.nss \ newspellbook\moi_ft_healsoul.nss \ newspellbook\moi_ft_mdnghtaug.nss \ newspellbook\moi_ft_opensoul.nss \ newspellbook\moi_ft_psyblade.nss \ newspellbook\moi_ft_psyinfuse.nss \ newspellbook\moi_ft_rebind.nss \ newspellbook\moi_iblade.nss \ newspellbook\moi_iblade_bind.nss \ newspellbook\moi_iblade_mld.nss \ newspellbook\moi_iblade_rebnd.nss \ newspellbook\moi_iblade_sht.nss \ newspellbook\moi_inc_detect.nss \ newspellbook\moi_inc_perfect.nss \ newspellbook\moi_inc_radiance.nss \ newspellbook\moi_inc_rapid.nss \ newspellbook\moi_inc_rpdcnv.nss \ newspellbook\moi_incan_heal.nss \ newspellbook\moi_incan_incorp.nss \ newspellbook\moi_incan_overld.nss \ newspellbook\moi_incan_ray.nss \ newspellbook\moi_incan_strike.nss \ newspellbook\moi_incan_unbear.nss \ newspellbook\moi_incarnate.nss \ newspellbook\moi_invessentia.nss \ newspellbook\moi_irfg_armor.nss \ newspellbook\moi_irfg_shield.nss \ newspellbook\moi_irfg_weapon.nss \ newspellbook\moi_ironsoul.nss \ newspellbook\moi_meldshapecnv.nss \ newspellbook\moi_midnightcnv.nss \ newspellbook\moi_mld_acrobts.nss \ newspellbook\moi_mld_admpal.nss \ newspellbook\moi_mld_ankheg.nss \ newspellbook\moi_mld_ankhegft.nss \ newspellbook\moi_mld_aprib.nss \ newspellbook\moi_mld_apribft.nss \ newspellbook\moi_mld_arcfocus.nss \ newspellbook\moi_mld_armdis.nss \ newspellbook\moi_mld_armdisft.nss \ newspellbook\moi_mld_astral.nss \ newspellbook\moi_mld_basmsk.nss \ newspellbook\moi_mld_basmskft.nss \ newspellbook\moi_mld_behir.nss \ newspellbook\moi_mld_behirft.nss \ newspellbook\moi_mld_bldtln.nss \ newspellbook\moi_mld_bldwr.nss \ newspellbook\moi_mld_bldwrft.nss \ newspellbook\moi_mld_blksht.nss \ newspellbook\moi_mld_blkshtdd.nss \ newspellbook\moi_mld_blkshtht.nss \ newspellbook\moi_mld_blustlbr.nss \ newspellbook\moi_mld_brssmn.nss \ newspellbook\moi_mld_brssmnft.nss \ newspellbook\moi_mld_bsttmr.nss \ newspellbook\moi_mld_bsttmrcn.nss \ newspellbook\moi_mld_bsttmrtm.nss \ newspellbook\moi_mld_charmvl.nss \ newspellbook\moi_mld_chasuble.nss \ newspellbook\moi_mld_chsblft.nss \ newspellbook\moi_mld_clawwyrm.nss \ newspellbook\moi_mld_cryshlm.nss \ newspellbook\moi_mld_diadem.nss \ newspellbook\moi_mld_dismsk.nss \ newspellbook\moi_mld_dismskdt.nss \ newspellbook\moi_mld_dismskft.nss \ newspellbook\moi_mld_drdcrp.nss \ newspellbook\moi_mld_drdcrpft.nss \ newspellbook\moi_mld_drgnfr.nss \ newspellbook\moi_mld_drgnfrth.nss \ newspellbook\moi_mld_drgnfrtm.nss \ newspellbook\moi_mld_drgnmntl.nss \ newspellbook\moi_mld_drgntl.nss \ newspellbook\moi_mld_drgntlft.nss \ newspellbook\moi_mld_dsplcr.nss \ newspellbook\moi_mld_dsplcrft.nss \ newspellbook\moi_mld_dsspit.nss \ newspellbook\moi_mld_dsspitft.nss \ newspellbook\moi_mld_duskling.nss \ newspellbook\moi_mld_eldrsprt.nss \ newspellbook\moi_mld_engmahlm.nss \ newspellbook\moi_mld_fllmst.nss \ newspellbook\moi_mld_flmcnc.nss \ newspellbook\moi_mld_flmcncft.nss \ newspellbook\moi_mld_frsmsk.nss \ newspellbook\moi_mld_frsthl.nss \ newspellbook\moi_mld_frsthlcr.nss \ newspellbook\moi_mld_frsthltm.nss \ newspellbook\moi_mld_garms.nss \ newspellbook\moi_mld_gloves.nss \ newspellbook\moi_mld_glovesft.nss \ newspellbook\moi_mld_gorgon.nss \ newspellbook\moi_mld_gorgonth.nss \ newspellbook\moi_mld_gorgontm.nss \ newspellbook\moi_mld_heartfr.nss \ newspellbook\moi_mld_hunter.nss \ newspellbook\moi_mld_illveil.nss \ newspellbook\moi_mld_impboots.nss \ newspellbook\moi_mld_inavatar.nss \ newspellbook\moi_mld_incwpnft.nss \ newspellbook\moi_mld_inweapon.nss \ newspellbook\moi_mld_keeneye.nss \ newspellbook\moi_mld_krnshr.nss \ newspellbook\moi_mld_krnshrft.nss \ newspellbook\moi_mld_krthk.nss \ newspellbook\moi_mld_lamiablt.nss \ newspellbook\moi_mld_lckydc.nss \ newspellbook\moi_mld_lckydcft.nss \ newspellbook\moi_mld_lfbnd.nss \ newspellbook\moi_mld_lfbndft.nss \ newspellbook\moi_mld_lghtgn.nss \ newspellbook\moi_mld_lghtgnhn.nss \ newspellbook\moi_mld_lghtgnzp.nss \ newspellbook\moi_mld_lmsmnt.nss \ newspellbook\moi_mld_lmsmntft.nss \ newspellbook\moi_mld_lndshrk.nss \ newspellbook\moi_mld_lndshrkf.nss \ newspellbook\moi_mld_lndshrkt.nss \ newspellbook\moi_mld_maulgntl.nss \ newspellbook\moi_mld_maxess.nss \ newspellbook\moi_mld_mgspct.nss \ newspellbook\moi_mld_mgspctft.nss \ newspellbook\moi_mld_mntcrb.nss \ newspellbook\moi_mld_mntcrbft.nss \ newspellbook\moi_mld_mntlefl.nss \ newspellbook\moi_mld_mntlflft.nss \ newspellbook\moi_mld_ncrtchft.nss \ newspellbook\moi_mld_ncrvst.nss \ newspellbook\moi_mld_neccrcft.nss \ newspellbook\moi_mld_necrocrc.nss \ newspellbook\moi_mld_necromnt.nss \ newspellbook\moi_mld_necroshd.nss \ newspellbook\moi_mld_necrotch.nss \ newspellbook\moi_mld_necrowpn.nss \ newspellbook\moi_mld_necshdft.nss \ newspellbook\moi_mld_paulhlth.nss \ newspellbook\moi_mld_phase.nss \ newspellbook\moi_mld_phoenix.nss \ newspellbook\moi_mld_phonixft.nss \ newspellbook\moi_mld_plward.nss \ newspellbook\moi_mld_psieyebr.nss \ newspellbook\moi_mld_psikmsk.nss \ newspellbook\moi_mld_psimskdt.nss \ newspellbook\moi_mld_psimskft.nss \ newspellbook\moi_mld_psioneye.nss \ newspellbook\moi_mld_psyfocus.nss \ newspellbook\moi_mld_rageclaw.nss \ newspellbook\moi_mld_raptor.nss \ newspellbook\moi_mld_riding.nss \ newspellbook\moi_mld_sandal.nss \ newspellbook\moi_mld_sandalft.nss \ newspellbook\moi_mld_shdcrw.nss \ newspellbook\moi_mld_shdcrwft.nss \ newspellbook\moi_mld_shdmnt.nss \ newspellbook\moi_mld_shdmntft.nss \ newspellbook\moi_mld_sightglv.nss \ newspellbook\moi_mld_slspk.nss \ newspellbook\moi_mld_slspkai.nss \ newspellbook\moi_mld_slspkatk.nss \ newspellbook\moi_mld_slspkess.nss \ newspellbook\moi_mld_slvrtnft.nss \ newspellbook\moi_mld_slvrtng.nss \ newspellbook\moi_mld_sphnxclw.nss \ newspellbook\moi_mld_spllward.nss \ newspellbook\moi_mld_strnghrt.nss \ newspellbook\moi_mld_thftglvs.nss \ newspellbook\moi_mld_thrptc.nss \ newspellbook\moi_mld_thunder.nss \ newspellbook\moi_mld_totem.nss \ newspellbook\moi_mld_trthskr.nss \ newspellbook\moi_mld_unicorn.nss \ newspellbook\moi_mld_unicrnft.nss \ newspellbook\moi_mld_urskan.nss \ newspellbook\moi_mld_vitality.nss \ newspellbook\moi_mld_windclk.nss \ newspellbook\moi_mld_winter.nss \ newspellbook\moi_mld_wintertc.nss \ newspellbook\moi_mld_winterth.nss \ newspellbook\moi_mld_worgpelt.nss \ newspellbook\moi_mld_wormtail.nss \ newspellbook\moi_mld_wormtlft.nss \ newspellbook\moi_mld_yrthak.nss \ newspellbook\moi_mld_yrthakft.nss \ newspellbook\moi_ncr_clean.nss \ newspellbook\moi_ncr_harvest.nss \ newspellbook\moi_ncr_soulshld.nss \ newspellbook\moi_saph_smite.nss \ newspellbook\moi_sapphire.nss \ newspellbook\moi_scst_distil.nss \ newspellbook\moi_slbn_share.nss \ newspellbook\moi_slbn_smite.nss \ newspellbook\moi_soulborn.nss \ newspellbook\moi_spinemeld.nss \ newspellbook\moi_spn_enhance.nss \ newspellbook\moi_totemist.nss \ newspellbook\moi_totemrager.nss \ newspellbook\moi_ttm_embody.nss \ newspellbook\moi_ttm_rshpttm.nss \ newspellbook\moi_ttmbindcnv.nss \ newspellbook\moi_umbral.nss \ newspellbook\moi_umbral_kiss.nss \ newspellbook\moi_umbral_soul.nss \ newspellbook\moi_umbrl_shadow.nss \ newspellbook\moi_umbrl_sight.nss \ newspellbook\moi_umbrl_step.nss \ newspellbook\moi_wchb_abrogat.nss \ newspellbook\moi_wchb_dispel.nss \ newspellbook\moi_wchb_flay.nss \ newspellbook\moi_wchb_integ.nss \ newspellbook\moi_wchb_mldshld.nss \ newspellbook\moi_wchb_royal.nss \ newspellbook\moi_wchb_shackle.nss \ newspellbook\prc_amagsys_gain.nss \ newspellbook\prc_antip_em_gen.nss \ newspellbook\prc_antip_ex_gen.nss \ newspellbook\prc_antip_ma_gen.nss \ newspellbook\prc_antip_si_gen.nss \ newspellbook\prc_antip_sp_gen.nss \ newspellbook\prc_antip_st_gen.nss \ newspellbook\prc_archv_em_gen.nss \ newspellbook\prc_archv_ex_gen.nss \ newspellbook\prc_archv_ma_gen.nss \ newspellbook\prc_archv_qu_gen.nss \ newspellbook\prc_archv_si_gen.nss \ newspellbook\prc_archv_sp_gen.nss \ newspellbook\prc_archv_st_gen.nss \ newspellbook\prc_asasi_sp_gen.nss \ newspellbook\prc_bard_sp_gen.nss \ newspellbook\prc_begui_sp_gen.nss \ newspellbook\prc_bligh_em_gen.nss \ newspellbook\prc_bligh_ex_gen.nss \ newspellbook\prc_bligh_ma_gen.nss \ newspellbook\prc_bligh_si_gen.nss \ newspellbook\prc_bligh_sp_gen.nss \ newspellbook\prc_bligh_st_gen.nss \ newspellbook\prc_blkgr_em_gen.nss \ newspellbook\prc_blkgr_ex_gen.nss \ newspellbook\prc_blkgr_ma_gen.nss \ newspellbook\prc_blkgr_si_gen.nss \ newspellbook\prc_blkgr_sp_gen.nss \ newspellbook\prc_blkgr_st_gen.nss \ newspellbook\prc_cults_ex_gen.nss \ newspellbook\prc_cults_si_gen.nss \ newspellbook\prc_cults_sp_gen.nss \ newspellbook\prc_cults_st_gen.nss \ newspellbook\prc_dnecr_sp_gen.nss \ newspellbook\prc_duskb_sp_gen.nss \ newspellbook\prc_favso_sp_gen.nss \ newspellbook\prc_harpe_sp_gen.nss \ newspellbook\prc_heale_em_gen.nss \ newspellbook\prc_heale_ex_gen.nss \ newspellbook\prc_heale_ma_gen.nss \ newspellbook\prc_heale_qu_gen.nss \ newspellbook\prc_heale_si_gen.nss \ newspellbook\prc_heale_sp_gen.nss \ newspellbook\prc_heale_st_gen.nss \ newspellbook\prc_hexbl_sp_gen.nss \ newspellbook\prc_hunte_em_gen.nss \ newspellbook\prc_hunte_ex_gen.nss \ newspellbook\prc_hunte_ma_gen.nss \ newspellbook\prc_hunte_si_gen.nss \ newspellbook\prc_hunte_sp_gen.nss \ newspellbook\prc_hunte_st_gen.nss \ newspellbook\prc_justw_sp_gen.nss \ newspellbook\prc_kchal_em_gen.nss \ newspellbook\prc_kchal_ex_gen.nss \ newspellbook\prc_kchal_ma_gen.nss \ newspellbook\prc_kchal_si_gen.nss \ newspellbook\prc_kchal_sp_gen.nss \ newspellbook\prc_kchal_st_gen.nss \ newspellbook\prc_kngtw_sp_gen.nss \ newspellbook\prc_kotmc_em_gen.nss \ newspellbook\prc_kotmc_ex_gen.nss \ newspellbook\prc_kotmc_ma_gen.nss \ newspellbook\prc_kotmc_si_gen.nss \ newspellbook\prc_kotmc_sp_gen.nss \ newspellbook\prc_kotmc_st_gen.nss \ newspellbook\prc_myst_sp_gen.nss \ newspellbook\prc_ocu_em_gen.nss \ newspellbook\prc_ocu_ex_gen.nss \ newspellbook\prc_ocu_ma_gen.nss \ newspellbook\prc_ocu_qu_gen.nss \ newspellbook\prc_ocu_si_gen.nss \ newspellbook\prc_ocu_sp_gen.nss \ newspellbook\prc_ocu_st_gen.nss \ newspellbook\prc_schor_sp_gen.nss \ newspellbook\prc_shama_em_gen.nss \ newspellbook\prc_shama_ex_gen.nss \ newspellbook\prc_shama_ma_gen.nss \ newspellbook\prc_shama_qu_gen.nss \ newspellbook\prc_shama_si_gen.nss \ newspellbook\prc_shama_sp_gen.nss \ newspellbook\prc_shama_st_gen.nss \ newspellbook\prc_shars_sp_gen.nss \ newspellbook\prc_sod_em_gen.nss \ newspellbook\prc_sod_ex_gen.nss \ newspellbook\prc_sod_ma_gen.nss \ newspellbook\prc_sod_si_gen.nss \ newspellbook\prc_sod_sp_gen.nss \ newspellbook\prc_sod_st_gen.nss \ newspellbook\prc_sohei_em_gen.nss \ newspellbook\prc_sohei_ex_gen.nss \ newspellbook\prc_sohei_ma_gen.nss \ newspellbook\prc_sohei_si_gen.nss \ newspellbook\prc_sohei_sp_gen.nss \ newspellbook\prc_sohei_st_gen.nss \ newspellbook\prc_sol_em_gen.nss \ newspellbook\prc_sol_ex_gen.nss \ newspellbook\prc_sol_ma_gen.nss \ newspellbook\prc_sol_si_gen.nss \ newspellbook\prc_sol_sp_gen.nss \ newspellbook\prc_sol_st_gen.nss \ newspellbook\prc_sorc_sp_gen.nss \ newspellbook\prc_suel_sp_gen.nss \ newspellbook\prc_templ_sp_gen.nss \ newspellbook\prc_tfsha_em_gen.nss \ newspellbook\prc_tfsha_ex_gen.nss \ newspellbook\prc_tfsha_ma_gen.nss \ newspellbook\prc_tfsha_qu_gen.nss \ newspellbook\prc_tfsha_si_gen.nss \ newspellbook\prc_tfsha_sp_gen.nss \ newspellbook\prc_tfsha_st_gen.nss \ newspellbook\prc_vassa_em_gen.nss \ newspellbook\prc_vassa_ex_gen.nss \ newspellbook\prc_vassa_ma_gen.nss \ newspellbook\prc_vassa_si_gen.nss \ newspellbook\prc_vassa_sp_gen.nss \ newspellbook\prc_vassa_st_gen.nss \ newspellbook\prc_vigil_em_gen.nss \ newspellbook\prc_vigil_ex_gen.nss \ newspellbook\prc_vigil_ma_gen.nss \ newspellbook\prc_vigil_si_gen.nss \ newspellbook\prc_vigil_sp_gen.nss \ newspellbook\prc_vigil_st_gen.nss \ newspellbook\prc_witch_sp_gen.nss \ newspellbook\prc_wrmag_sp_gen.nss \ newspellbook\shd_child_blur.nss \ newspellbook\shd_child_dance.nss \ newspellbook\shd_child_night.nss \ newspellbook\shd_childnight.nss \ newspellbook\shd_fund_arrow.nss \ newspellbook\shd_fund_blckcnd.nss \ newspellbook\shd_fund_caulshd.nss \ newspellbook\shd_fund_mystic.nss \ newspellbook\shd_fund_sghtobs.nss \ newspellbook\shd_fund_shdhood.nss \ newspellbook\shd_fund_umbhand.nss \ newspellbook\shd_fund_wideeye.nss \ newspellbook\shd_master_bid.nss \ newspellbook\shd_mastershadow.nss \ newspellbook\shd_meta_emp.nss \ newspellbook\shd_meta_ext.nss \ newspellbook\shd_meta_max.nss \ newspellbook\shd_meta_quick.nss \ newspellbook\shd_meta_still.nss \ newspellbook\shd_myst_afrddrk.nss \ newspellbook\shd_myst_armyshd.nss \ newspellbook\shd_myst_aurashd.nss \ newspellbook\shd_myst_blckfr.nss \ newspellbook\shd_myst_blckfra.nss \ newspellbook\shd_myst_blckfrc.nss \ newspellbook\shd_myst_bndprs.nss \ newspellbook\shd_myst_bolster.nss \ newspellbook\shd_myst_clngdka.nss \ newspellbook\shd_myst_clngdkc.nss \ newspellbook\shd_myst_clngdrk.nss \ newspellbook\shd_myst_cngsmsg.nss \ newspellbook\shd_myst_cngsshd.nss \ newspellbook\shd_myst_cnsmess.nss \ newspellbook\shd_myst_crpshd.nss \ newspellbook\shd_myst_crpshda.nss \ newspellbook\shd_myst_crpshdb.nss \ newspellbook\shd_myst_crtshd.nss \ newspellbook\shd_myst_crtshda.nss \ newspellbook\shd_myst_crtshdc.nss \ newspellbook\shd_myst_darkair.nss \ newspellbook\shd_myst_ddlyshd.nss \ newspellbook\shd_myst_dncgshd.nss \ newspellbook\shd_myst_drkslft.nss \ newspellbook\shd_myst_drksoul.nss \ newspellbook\shd_myst_dskdwn.nss \ newspellbook\shd_myst_dskdwna.nss \ newspellbook\shd_myst_dskdwnb.nss \ newspellbook\shd_myst_dskdwnc.nss \ newspellbook\shd_myst_echospl.nss \ newspellbook\shd_myst_ei_evnt.nss \ newspellbook\shd_myst_ephemrl.nss \ newspellbook\shd_myst_ephstrm.nss \ newspellbook\shd_myst_evoconv.nss \ newspellbook\shd_myst_farsght.nss \ newspellbook\shd_myst_feignlf.nss \ newspellbook\shd_myst_flckrft.nss \ newspellbook\shd_myst_fldshd.nss \ newspellbook\shd_myst_fldshda.nss \ newspellbook\shd_myst_fldshdb.nss \ newspellbook\shd_myst_flicker.nss \ newspellbook\shd_myst_flshfls.nss \ newspellbook\shd_myst_frflglm.nss \ newspellbook\shd_myst_grflesh.nss \ newspellbook\shd_myst_grlffds.nss \ newspellbook\shd_myst_grpshda.nss \ newspellbook\shd_myst_grpshdb.nss \ newspellbook\shd_myst_grpshdc.nss \ newspellbook\shd_myst_grspshd.nss \ newspellbook\shd_myst_kllgshd.nss \ newspellbook\shd_myst_languor.nss \ newspellbook\shd_myst_lbyrnth.nss \ newspellbook\shd_myst_lifefds.nss \ newspellbook\shd_myst_menag.nss \ newspellbook\shd_myst_msmrshd.nss \ newspellbook\shd_myst_passshd.nss \ newspellbook\shd_myst_plgshd.nss \ newspellbook\shd_myst_plgshda.nss \ newspellbook\shd_myst_plgshdc.nss \ newspellbook\shd_myst_prcsght.nss \ newspellbook\shd_myst_prsnngt.nss \ newspellbook\shd_myst_qckeye.nss \ newspellbook\shd_myst_reflect.nss \ newspellbook\shd_myst_sghtecl.nss \ newspellbook\shd_myst_shdevo.nss \ newspellbook\shd_myst_shdfd.nss \ newspellbook\shd_myst_shdinvt.nss \ newspellbook\shd_myst_shdsrg.nss \ newspellbook\shd_myst_shdstrm.nss \ newspellbook\shd_myst_shdtime.nss \ newspellbook\shd_myst_shdvsn.nss \ newspellbook\shd_myst_shdwskn.nss \ newspellbook\shd_myst_shrpshd.nss \ newspellbook\shd_myst_sickshd.nss \ newspellbook\shd_myst_slpppt.nss \ newspellbook\shd_myst_stlshd.nss \ newspellbook\shd_myst_stpshd.nss \ newspellbook\shd_myst_tghtshd.nss \ newspellbook\shd_myst_tombngt.nss \ newspellbook\shd_myst_trlhz.nss \ newspellbook\shd_myst_trthrvl.nss \ newspellbook\shd_myst_umblfst.nss \ newspellbook\shd_myst_umbrlby.nss \ newspellbook\shd_myst_umbrlft.nss \ newspellbook\shd_myst_umbrlst.nss \ newspellbook\shd_myst_umbrlth.nss \ newspellbook\shd_myst_unveil.nss \ newspellbook\shd_myst_unvrldw.nss \ newspellbook\shd_myst_vcshd.nss \ newspellbook\shd_myst_warpspl.nss \ newspellbook\shd_mystconv.nss \ newspellbook\shd_noct_counter.nss \ newspellbook\shd_noct_disrupt.nss \ newspellbook\shd_noct_vortex.nss \ newspellbook\shd_pathconv.nss \ newspellbook\shd_shadowcaster.nss \ newspellbook\shd_shd_generic.nss \ newspellbook\shd_smith_armor.nss \ newspellbook\shd_smith_craft.nss \ newspellbook\shd_smith_sdcrft.nss \ newspellbook\shd_smith_shroud.nss \ newspellbook\shd_smith_touch.nss \ newspellbook\shd_smith_widen.nss \ newspellbook\shd_smt_generic.nss \ newspellbook\tob_aptitudeconv.nss \ newspellbook\tob_bldclw_pnce.nss \ newspellbook\tob_bldclw_shift.nss \ newspellbook\tob_bloodclaw.nss \ newspellbook\tob_cru_generic.nss \ newspellbook\tob_cru_ready.nss \ newspellbook\tob_cru_smite.nss \ newspellbook\tob_cru_zealsrg.nss \ newspellbook\tob_crusader.nss \ newspellbook\tob_deepstone.nss \ newspellbook\tob_disc_move.nss \ newspellbook\tob_dmnd_acttght.nss \ newspellbook\tob_dmnd_avlbld.nss \ newspellbook\tob_dmnd_bndaslt.nss \ newspellbook\tob_dmnd_dmddef.nss \ newspellbook\tob_dmnd_dmndbld.nss \ newspellbook\tob_dmnd_drptb.nss \ newspellbook\tob_dmnd_emrazor.nss \ newspellbook\tob_dmnd_ginsts.nss \ newspellbook\tob_dmnd_heara.nss \ newspellbook\tob_dmnd_insght.nss \ newspellbook\tob_dmnd_mndbdy.nss \ newspellbook\tob_dmnd_mndstrk.nss \ newspellbook\tob_dmnd_momal.nss \ newspellbook\tob_dmnd_prfmnd.nss \ newspellbook\tob_dmnd_prlbdt.nss \ newspellbook\tob_dmnd_qcksil.nss \ newspellbook\tob_dmnd_rapidc.nss \ newspellbook\tob_dmnd_rubybld.nss \ newspellbook\tob_dmnd_snhtbld.nss \ newspellbook\tob_dmnd_stncal.nss \ newspellbook\tob_dmnd_stnclr.nss \ newspellbook\tob_dmnd_stnclra.nss \ newspellbook\tob_dmnd_timess.nss \ newspellbook\tob_dpst_awstdrg.nss \ newspellbook\tob_dpst_crhmntj.nss \ newspellbook\tob_dpst_drgtth.nss \ newspellbook\tob_dpst_mntfrt.nss \ newspellbook\tob_dpst_mntfrta.nss \ newspellbook\tob_dvsp_chaos.nss \ newspellbook\tob_dvsp_crustrk.nss \ newspellbook\tob_dvsp_ctgstrk.nss \ newspellbook\tob_dvsp_defrbk.nss \ newspellbook\tob_dvsp_defrbka.nss \ newspellbook\tob_dvsp_dmchrg.nss \ newspellbook\tob_dvsp_dntstrk.nss \ newspellbook\tob_dvsp_dvnsrg.nss \ newspellbook\tob_dvsp_dvnsrg1.nss \ newspellbook\tob_dvsp_dvnsrg2.nss \ newspellbook\tob_dvsp_dvnsrgg.nss \ newspellbook\tob_dvsp_foehmmr.nss \ newspellbook\tob_dvsp_igglr.nss \ newspellbook\tob_dvsp_igglra.nss \ newspellbook\tob_dvsp_igglrb.nss \ newspellbook\tob_dvsp_imfort.nss \ newspellbook\tob_dvsp_imfrtoh.nss \ newspellbook\tob_dvsp_lwbrr.nss \ newspellbook\tob_dvsp_mrtsprt.nss \ newspellbook\tob_dvsp_ntgnle.nss \ newspellbook\tob_dvsp_ntngle.nss \ newspellbook\tob_dvsp_prford.nss \ newspellbook\tob_dvsp_rdtchrg.nss \ newspellbook\tob_dvsp_revstrk.nss \ newspellbook\tob_dvsp_rghtvt.nss \ newspellbook\tob_dvsp_rlystrk.nss \ newspellbook\tob_dvsp_shldblk.nss \ newspellbook\tob_dvsp_shldcnt.nss \ newspellbook\tob_dvsp_tdchs.nss \ newspellbook\tob_dvsp_thckbld.nss \ newspellbook\tob_dvsp_thkblda.nss \ newspellbook\tob_dvsp_triumph.nss \ newspellbook\tob_dvsp_tyranny.nss \ newspellbook\tob_dvsp_tyrnnya.nss \ newspellbook\tob_dvsp_vngstrk.nss \ newspellbook\tob_dw_blstflrsh.nss \ newspellbook\tob_dw_brnbld.nss \ newspellbook\tob_dw_brnbrnd.nss \ newspellbook\tob_dw_distembr.nss \ newspellbook\tob_dw_drgnflm.nss \ newspellbook\tob_dw_dsttmpt.nss \ newspellbook\tob_dw_dsttmpta.nss \ newspellbook\tob_dw_dthmrk.nss \ newspellbook\tob_dw_flmblssng.nss \ newspellbook\tob_dw_flshsun.nss \ newspellbook\tob_dw_fnflms.nss \ newspellbook\tob_dw_frrpst.nss \ newspellbook\tob_dw_frsnk.nss \ newspellbook\tob_dw_fryaslt.nss \ newspellbook\tob_dw_holoclk.nss \ newspellbook\tob_dw_htchflm.nss \ newspellbook\tob_dw_infrnbld.nss \ newspellbook\tob_dw_infrnblst.nss \ newspellbook\tob_dw_lngrinf.nss \ newspellbook\tob_dw_lpngflm.nss \ newspellbook\tob_dw_onhit.nss \ newspellbook\tob_dw_ringfire.nss \ newspellbook\tob_dw_rsngphnx.nss \ newspellbook\tob_dw_rsngphnxa.nss \ newspellbook\tob_dw_salchrga.nss \ newspellbook\tob_dw_salchrgb.nss \ newspellbook\tob_dw_searbld.nss \ newspellbook\tob_dw_searchrg.nss \ newspellbook\tob_dw_slmdrchrg.nss \ newspellbook\tob_dw_wndstrd.nss \ newspellbook\tob_dw_wyrmflmt.nss \ newspellbook\tob_dw_zphdnc.nss \ newspellbook\tob_etbl_bldg.nss \ newspellbook\tob_etbl_conv.nss \ newspellbook\tob_etbl_defins.nss \ newspellbook\tob_etbl_etrmove.nss \ newspellbook\tob_etbl_etrrace.nss \ newspellbook\tob_etbl_guidest.nss \ newspellbook\tob_etbl_island.nss \ newspellbook\tob_etbl_maneuvr.nss \ newspellbook\tob_etbl_tacins.nss \ newspellbook\tob_eternalblade.nss \ newspellbook\tob_event_girwfr.nss \ newspellbook\tob_evnt_avgstr.nss \ newspellbook\tob_evnt_recover.nss \ newspellbook\tob_feats.nss \ newspellbook\tob_ft_avngstrk.nss \ newspellbook\tob_ft_divspirit.nss \ newspellbook\tob_ft_istntclty.nss \ newspellbook\tob_ft_rcrcnv.nss \ newspellbook\tob_ft_renewal.nss \ newspellbook\tob_ft_renewcnv.nss \ newspellbook\tob_ft_sdnrcrcnv.nss \ newspellbook\tob_ft_snapkick.nss \ newspellbook\tob_ft_sngwhtrvn.nss \ newspellbook\tob_ft_stnpwr.nss \ newspellbook\tob_ft_sudrecovr.nss \ newspellbook\tob_gen_recover.nss \ newspellbook\tob_irnh_abstl.nss \ newspellbook\tob_irnh_adamhr.nss \ newspellbook\tob_irnh_dazstr.nss \ newspellbook\tob_irnh_dncbldf.nss \ newspellbook\tob_irnh_dsrmstk.nss \ newspellbook\tob_irnh_exostl.nss \ newspellbook\tob_irnh_finshm.nss \ newspellbook\tob_irnh_ihendr.nss \ newspellbook\tob_irnh_ihfoc.nss \ newspellbook\tob_irnh_ihsrg.nss \ newspellbook\tob_irnh_lgtngrc.nss \ newspellbook\tob_irnh_lgtthr.nss \ newspellbook\tob_irnh_mntpry.nss \ newspellbook\tob_irnh_mthtrn.nss \ newspellbook\tob_irnh_pnshstn.nss \ newspellbook\tob_irnh_scythbl.nss \ newspellbook\tob_irnh_stlwnd.nss \ newspellbook\tob_irnh_stlystk.nss \ newspellbook\tob_irnh_strpclr.nss \ newspellbook\tob_irnh_supbldp.nss \ newspellbook\tob_irnh_wllblds.nss \ newspellbook\tob_jadephoenix.nss \ newspellbook\tob_jpm_awrath.nss \ newspellbook\tob_jpm_emimmo.nss \ newspellbook\tob_jpm_empstr.nss \ newspellbook\tob_jpm_fireb.nss \ newspellbook\tob_jpm_mystp.nss \ newspellbook\tob_jpm_qukstr.nss \ newspellbook\tob_jpm_ritew.nss \ newspellbook\tob_jpm_spell.nss \ newspellbook\tob_jpm_spellcon.nss \ newspellbook\tob_masterofnine.nss \ newspellbook\tob_mon_dualstnc.nss \ newspellbook\tob_moveconv.nss \ newspellbook\tob_moverdy.nss \ newspellbook\tob_rby_divfury.nss \ newspellbook\tob_rby_divimp.nss \ newspellbook\tob_rby_divrcvr.nss \ newspellbook\tob_reth_vilefir.nss \ newspellbook\tob_rth_generic.nss \ newspellbook\tob_rubyknight.nss \ newspellbook\tob_sdhd_assassn.nss \ newspellbook\tob_sdhd_balance.nss \ newspellbook\tob_sdhd_bldlts.nss \ newspellbook\tob_sdhd_chldsdw.nss \ newspellbook\tob_sdhd_clkdcp.nss \ newspellbook\tob_sdhd_clngshd.nss \ newspellbook\tob_sdhd_dncspdr.nss \ newspellbook\tob_sdhd_drnvita.nss \ newspellbook\tob_sdhd_dthdrk.nss \ newspellbook\tob_sdhd_enshds.nss \ newspellbook\tob_sdhd_fscies.nss \ newspellbook\tob_sdhd_ghstbd.nss \ newspellbook\tob_sdhd_hnddth.nss \ newspellbook\tob_sdhd_islebld.nss \ newspellbook\tob_sdhd_moth.nss \ newspellbook\tob_sdhd_obscvl.nss \ newspellbook\tob_sdhd_onesdw.nss \ newspellbook\tob_sdhd_sdbldtc.nss \ newspellbook\tob_sdhd_sdhjnt.nss \ newspellbook\tob_sdhd_shblnk.nss \ newspellbook\tob_sdhd_shdgrrt.nss \ newspellbook\tob_sdhd_shdnse.nss \ newspellbook\tob_sdhd_shstrd.nss \ newspellbook\tob_sdhd_stalker.nss \ newspellbook\tob_sdhd_strdrn.nss \ newspellbook\tob_shadowsun.nss \ newspellbook\tob_ssn_balance.nss \ newspellbook\tob_ssn_childsl.nss \ newspellbook\tob_ssn_darkwl.nss \ newspellbook\tob_ssn_flamess.nss \ newspellbook\tob_ssn_lightwd.nss \ newspellbook\tob_ssn_touchss.nss \ newspellbook\tob_ssn_voidss.nss \ newspellbook\tob_stdr_adbones.nss \ newspellbook\tob_stdr_anmhmr.nss \ newspellbook\tob_stdr_bldrrll.nss \ newspellbook\tob_stdr_bncrsh.nss \ newspellbook\tob_stdr_bnsplt.nss \ newspellbook\tob_stdr_colostk.nss \ newspellbook\tob_stdr_crgmtr.nss \ newspellbook\tob_stdr_crshvis.nss \ newspellbook\tob_stdr_crshwgt.nss \ newspellbook\tob_stdr_emntstr.nss \ newspellbook\tob_stdr_erthstq.nss \ newspellbook\tob_stdr_giants.nss \ newspellbook\tob_stdr_irmtstr.nss \ newspellbook\tob_stdr_irnbns.nss \ newspellbook\tob_stdr_mnthmmr.nss \ newspellbook\tob_stdr_mtavaln.nss \ newspellbook\tob_stdr_mtavla.nss \ newspellbook\tob_stdr_mttmbst.nss \ newspellbook\tob_stdr_ovrmnt.nss \ newspellbook\tob_stdr_rtmntn.nss \ newspellbook\tob_stdr_rtmntna.nss \ newspellbook\tob_stdr_rtmntnb.nss \ newspellbook\tob_stdr_stnbns.nss \ newspellbook\tob_stdr_stndrgf.nss \ newspellbook\tob_stdr_stnftst.nss \ newspellbook\tob_stdr_stnvise.nss \ newspellbook\tob_stdr_strston.nss \ newspellbook\tob_stsn_bfldfsn.nss \ newspellbook\tob_stsn_blstthr.nss \ newspellbook\tob_stsn_brkshld.nss \ newspellbook\tob_stsn_cmtthr.nss \ newspellbook\tob_stsn_cntrcrg.nss \ newspellbook\tob_stsn_devthr.nss \ newspellbook\tob_stsn_fgnopn.nss \ newspellbook\tob_stsn_folstrk.nss \ newspellbook\tob_stsn_gntkll.nss \ newspellbook\tob_stsn_hdrstrk.nss \ newspellbook\tob_stsn_mgtythr.nss \ newspellbook\tob_stsn_mrrprs.nss \ newspellbook\tob_stsn_scrpry.nss \ newspellbook\tob_stsn_sftdef.nss \ newspellbook\tob_stsn_srnthr.nss \ newspellbook\tob_stsn_stlkshd.nss \ newspellbook\tob_stsn_stpwnd.nss \ newspellbook\tob_stsn_trnthr.nss \ newspellbook\tob_stsn_vlcpstn.nss \ newspellbook\tob_swd_generic.nss \ newspellbook\tob_swd_rcrcnv.nss \ newspellbook\tob_swd_ready.nss \ newspellbook\tob_swd_recover.nss \ newspellbook\tob_swdsg_dboost.nss \ newspellbook\tob_swdsg_snsmgc.nss \ newspellbook\tob_swordsage.nss \ newspellbook\tob_tgcw_bldwtr.nss \ newspellbook\tob_tgcw_clwmn.nss \ newspellbook\tob_tgcw_dfa.nss \ newspellbook\tob_tgcw_dncmon.nss \ newspellbook\tob_tgcw_ferdbl.nss \ newspellbook\tob_tgcw_flshrip.nss \ newspellbook\tob_tgcw_ftnbld.nss \ newspellbook\tob_tgcw_girwfr.nss \ newspellbook\tob_tgcw_hamstr.nss \ newspellbook\tob_tgcw_hntsns.nss \ newspellbook\tob_tgcw_lpdrgn.nss \ newspellbook\tob_tgcw_pnchrg.nss \ newspellbook\tob_tgcw_preywk.nss \ newspellbook\tob_tgcw_ragmon.nss \ newspellbook\tob_tgcw_rbdber.nss \ newspellbook\tob_tgcw_rbdwlf.nss \ newspellbook\tob_tgcw_sddnlp.nss \ newspellbook\tob_tgcw_srrtpr.nss \ newspellbook\tob_tgcw_swpdrg.nss \ newspellbook\tob_tgcw_wlffng.nss \ newspellbook\tob_tgcw_wlfpck.nss \ newspellbook\tob_tgcw_wlvrnst.nss \ newspellbook\tob_tgcw_wolfcm.nss \ newspellbook\tob_war_generic.nss \ newspellbook\tob_war_ready.nss \ newspellbook\tob_war_recover.nss \ newspellbook\tob_warblade.nss \ newspellbook\tob_wtrn_blsrvc.nss \ newspellbook\tob_wtrn_blsrvca.nss \ newspellbook\tob_wtrn_blsrvcb.nss \ newspellbook\tob_wtrn_btlldrc.nss \ newspellbook\tob_wtrn_clrncll.nss \ newspellbook\tob_wtrn_cvrstrk.nss \ newspellbook\tob_wtrn_dsflms.nss \ newspellbook\tob_wtrn_flnkmvr.nss \ newspellbook\tob_wtrn_ldchrg.nss \ newspellbook\tob_wtrn_ldchrga.nss \ newspellbook\tob_wtrn_ldchrgb.nss \ newspellbook\tob_wtrn_ldngatk.nss \ newspellbook\tob_wtrn_lionror.nss \ newspellbook\tob_wtrn_ordchs.nss \ newspellbook\tob_wtrn_prsadvn.nss \ newspellbook\tob_wtrn_swarmt.nss \ newspellbook\tob_wtrn_swarmta.nss \ newspellbook\tob_wtrn_swarmtb.nss \ newspellbook\tob_wtrn_swrmalt.nss \ newspellbook\tob_wtrn_tacstrk.nss \ newspellbook\tob_wtrn_tctwlf.nss \ newspellbook\tob_wtrn_tctwlfb.nss \ newspellbook\tob_wtrn_warldrc.nss \ newspellbook\tob_wtrn_warmtrc.nss \ newspellbook\tob_wtrn_whtrvns.nss \ newspellbook\tob_wtrn_whtrvnt.nss \ newspellbook\tob_wtrn_wtrvnhr.nss \ newspellbook\true_bft_afflict.nss \ newspellbook\true_bft_detach.nss \ newspellbook\true_bft_dissol.nss \ newspellbook\true_bft_enervat.nss \ newspellbook\true_bft_exile.nss \ newspellbook\true_brim_heaven.nss \ newspellbook\true_brim_tongue.nss \ newspellbook\true_ct_target.nss \ newspellbook\true_ct_targetc.nss \ newspellbook\true_ct_targtchc.nss \ newspellbook\true_ego_bull.nss \ newspellbook\true_ego_drake.nss \ newspellbook\true_ego_fool.nss \ newspellbook\true_ego_fort.nss \ newspellbook\true_ego_fright.nss \ newspellbook\true_ego_heart.nss \ newspellbook\true_ego_iron.nss \ newspellbook\true_ego_step.nss \ newspellbook\true_ego_swallow.nss \ newspellbook\true_ego_tiger.nss \ newspellbook\true_ego_voice.nss \ newspellbook\true_ego_wound.nss \ newspellbook\true_gate_conv.nss \ newspellbook\true_ignore_sr.nss \ newspellbook\true_meta_empowr.nss \ newspellbook\true_meta_extend.nss \ newspellbook\true_meta_quickn.nss \ newspellbook\true_rec_fort.nss \ newspellbook\true_rec_meditat.nss \ newspellbook\true_rec_mindful.nss \ newspellbook\true_rec_sanguin.nss \ newspellbook\true_rec_vital.nss \ newspellbook\true_saynam_conv.nss \ newspellbook\true_speak_mass.nss \ newspellbook\true_tru_sayname.nss \ newspellbook\true_tru_seename.nss \ newspellbook\true_tru_silver.nss \ newspellbook\true_truenamer.nss \ newspellbook\true_utr_accatk.nss \ newspellbook\true_utr_agititm.nss \ newspellbook\true_utr_analitm.nss \ newspellbook\true_utr_archeye.nss \ newspellbook\true_utr_brthcln.nss \ newspellbook\true_utr_brthrvy.nss \ newspellbook\true_utr_castlns.nss \ newspellbook\true_utr_confres.nss \ newspellbook\true_utr_congate.nss \ newspellbook\true_utr_defedge.nss \ newspellbook\true_utr_dnypas.nss \ newspellbook\true_utr_dnypasa.nss \ newspellbook\true_utr_dnypasb.nss \ newspellbook\true_utr_eldarct.nss \ newspellbook\true_utr_ennegt.nss \ newspellbook\true_utr_ennegtg.nss \ newspellbook\true_utr_envrtx.nss \ newspellbook\true_utr_envrtxa.nss \ newspellbook\true_utr_envrtxb.nss \ newspellbook\true_utr_esslife.nss \ newspellbook\true_utr_ethref.nss \ newspellbook\true_utr_fogvoda.nss \ newspellbook\true_utr_fogvodb.nss \ newspellbook\true_utr_fogvodc.nss \ newspellbook\true_utr_fogvoid.nss \ newspellbook\true_utr_fortify.nss \ newspellbook\true_utr_generic.nss \ newspellbook\true_utr_hdntrth.nss \ newspellbook\true_utr_inrtsrg.nss \ newspellbook\true_utr_keen.nss \ newspellbook\true_utr_knghtgr.nss \ newspellbook\true_utr_knghtps.nss \ newspellbook\true_utr_lorwrld.nss \ newspellbook\true_utr_magcont.nss \ newspellbook\true_utr_metacat.nss \ newspellbook\true_utr_mrlbst.nss \ newspellbook\true_utr_mstwnds.nss \ newspellbook\true_utr_mysrmp.nss \ newspellbook\true_utr_perunsn.nss \ newspellbook\true_utr_preclar.nss \ newspellbook\true_utr_rckmud.nss \ newspellbook\true_utr_rckmuda.nss \ newspellbook\true_utr_rckmudb.nss \ newspellbook\true_utr_rmvitm.nss \ newspellbook\true_utr_sezitem.nss \ newspellbook\true_utr_shckwv.nss \ newspellbook\true_utr_shldlnd.nss \ newspellbook\true_utr_sicastr.nss \ newspellbook\true_utr_sldlnda.nss \ newspellbook\true_utr_sldlndb.nss \ newspellbook\true_utr_slperth.nss \ newspellbook\true_utr_sngmnd.nss \ newspellbook\true_utr_snsfoc.nss \ newspellbook\true_utr_splrbth.nss \ newspellbook\true_utr_strkmi.nss \ newspellbook\true_utr_supitem.nss \ newspellbook\true_utr_supweap.nss \ newspellbook\true_utr_tmpsprl.nss \ newspellbook\true_utr_tmptwst.nss \ newspellbook\true_utr_tranwep.nss \ newspellbook\true_utr_trnlnd.nss \ newspellbook\true_utr_trnlnda.nss \ newspellbook\true_utr_trnlndb.nss \ newspellbook\true_utr_twrttrv.nss \ newspellbook\true_utr_uniapt.nss \ newspellbook\true_utr_visshrp.nss \ newspellbook\true_utr_wrdblst.nss \ newspellbook\true_utr_wrdntcr.nss \ newspellbook\true_utr_wrdntgr.nss \ newspellbook\true_utr_wrdntlr.nss \ newspellbook\true_utr_wrdntmd.nss \ newspellbook\true_utr_wrdntmi.nss \ newspellbook\true_utr_wrdntpo.nss \ newspellbook\true_utr_wrdpc.nss \ newspellbook\true_utr_zephyr.nss \ newspellbook\true_utr_zephyrg.nss \ newspellbook\true_utterconv.nss NEWSPELLBOOKOBJS= \ newspellbookobjs\bnd_anim_cast.ncs \ newspellbookobjs\bnd_anim_meta.ncs \ newspellbookobjs\bnd_anim_metacnv.ncs \ newspellbookobjs\bnd_anim_vcast.ncs \ newspellbookobjs\bnd_bind_pact.ncs \ newspellbookobjs\bnd_binder.ncs \ newspellbookobjs\bnd_bindingcnv.ncs \ newspellbookobjs\bnd_bndvestige.ncs \ newspellbookobjs\bnd_dnt_glare.ncs \ newspellbookobjs\bnd_dnt_ovrwhelm.ncs \ newspellbookobjs\bnd_dnt_scholar.ncs \ newspellbookobjs\bnd_events.ncs \ newspellbookobjs\bnd_expelcnv.ncs \ newspellbookobjs\bnd_exploitcnv.ncs \ newspellbookobjs\bnd_ft_expel.ncs \ newspellbookobjs\bnd_kss.ncs \ newspellbookobjs\bnd_kss_pow.ncs \ newspellbookobjs\bnd_kss_prot.ncs \ newspellbookobjs\bnd_kss_surge.ncs \ newspellbookobjs\bnd_tenebrous.ncs \ newspellbookobjs\bnd_tnb_charm.ncs \ newspellbookobjs\bnd_tnb_desempud.ncs \ newspellbookobjs\bnd_tnb_rebuke.ncs \ newspellbookobjs\bnd_tnb_umbral.ncs \ newspellbookobjs\bnd_tnb_visage.ncs \ newspellbookobjs\bnd_tnb_void.ncs \ newspellbookobjs\bnd_vest_abysm.ncs \ newspellbookobjs\bnd_vest_aceptch.ncs \ newspellbookobjs\bnd_vest_acerak.ncs \ newspellbookobjs\bnd_vest_acespll.ncs \ newspellbookobjs\bnd_vest_agacomp.ncs \ newspellbookobjs\bnd_vest_agadel.ncs \ newspellbookobjs\bnd_vest_agares.ncs \ newspellbookobjs\bnd_vest_agastep.ncs \ newspellbookobjs\bnd_vest_amon.ncs \ newspellbookobjs\bnd_vest_amonbrt.ncs \ newspellbookobjs\bnd_vest_anddsrd.ncs \ newspellbookobjs\bnd_vest_andmnt.ncs \ newspellbookobjs\bnd_vest_andras.ncs \ newspellbookobjs\bnd_vest_andro.ncs \ newspellbookobjs\bnd_vest_androin.ncs \ newspellbookobjs\bnd_vest_androla.ncs \ newspellbookobjs\bnd_vest_androlo.ncs \ newspellbookobjs\bnd_vest_andsmt.ncs \ newspellbookobjs\bnd_vest_arete.ncs \ newspellbookobjs\bnd_vest_areters.ncs \ newspellbookobjs\bnd_vest_ashard.ncs \ newspellbookobjs\bnd_vest_ashardf.ncs \ newspellbookobjs\bnd_vest_ashardl.ncs \ newspellbookobjs\bnd_vest_astbrth.ncs \ newspellbookobjs\bnd_vest_astroth.ncs \ newspellbookobjs\bnd_vest_astword.ncs \ newspellbookobjs\bnd_vest_aym.ncs \ newspellbookobjs\bnd_vest_aymfire.ncs \ newspellbookobjs\bnd_vest_balam.ncs \ newspellbookobjs\bnd_vest_balamc.ncs \ newspellbookobjs\bnd_vest_balamg.ncs \ newspellbookobjs\bnd_vest_buer.ncs \ newspellbookobjs\bnd_vest_buerent.ncs \ newspellbookobjs\bnd_vest_buerext.ncs \ newspellbookobjs\bnd_vest_buerhl.ncs \ newspellbookobjs\bnd_vest_chupare.ncs \ newspellbookobjs\bnd_vest_chuparx.ncs \ newspellbookobjs\bnd_vest_chupaur.ncs \ newspellbookobjs\bnd_vest_chupeth.ncs \ newspellbookobjs\bnd_vest_chupo.ncs \ newspellbookobjs\bnd_vest_dahlmn.ncs \ newspellbookobjs\bnd_vest_dahlsh.ncs \ newspellbookobjs\bnd_vest_dahlver.ncs \ newspellbookobjs\bnd_vest_dantaln.ncs \ newspellbookobjs\bnd_vest_dantawe.ncs \ newspellbookobjs\bnd_vest_dantrd.ncs \ newspellbookobjs\bnd_vest_danttvl.ncs \ newspellbookobjs\bnd_vest_desh.ncs \ newspellbookobjs\bnd_vest_deshanm.ncs \ newspellbookobjs\bnd_vest_deshsmt.ncs \ newspellbookobjs\bnd_vest_deshtel.ncs \ newspellbookobjs\bnd_vest_eligor.ncs \ newspellbookobjs\bnd_vest_eligora.ncs \ newspellbookobjs\bnd_vest_eligorc.ncs \ newspellbookobjs\bnd_vest_eligore.ncs \ newspellbookobjs\bnd_vest_eligorf.ncs \ newspellbookobjs\bnd_vest_eurychm.ncs \ newspellbookobjs\bnd_vest_eurychr.ncs \ newspellbookobjs\bnd_vest_eurynom.ncs \ newspellbookobjs\bnd_vest_focalor.ncs \ newspellbookobjs\bnd_vest_focaura.ncs \ newspellbookobjs\bnd_vest_focaure.ncs \ newspellbookobjs\bnd_vest_focaurx.ncs \ newspellbookobjs\bnd_vest_focbolt.ncs \ newspellbookobjs\bnd_vest_focbrth.ncs \ newspellbookobjs\bnd_vest_geryon.ncs \ newspellbookobjs\bnd_vest_geryona.ncs \ newspellbookobjs\bnd_vest_geryonf.ncs \ newspellbookobjs\bnd_vest_hagenti.ncs \ newspellbookobjs\bnd_vest_hagtch.ncs \ newspellbookobjs\bnd_vest_halpbar.ncs \ newspellbookobjs\bnd_vest_halphax.ncs \ newspellbookobjs\bnd_vest_halpimp.ncs \ newspellbookobjs\bnd_vest_halpmmm.ncs \ newspellbookobjs\bnd_vest_haures.ncs \ newspellbookobjs\bnd_vest_haurmi.ncs \ newspellbookobjs\bnd_vest_haurpk.ncs \ newspellbookobjs\bnd_vest_ipos.ncs \ newspellbookobjs\bnd_vest_iposins.ncs \ newspellbookobjs\bnd_vest_karsus.ncs \ newspellbookobjs\bnd_vest_karsusp.ncs \ newspellbookobjs\bnd_vest_leraje.ncs \ newspellbookobjs\bnd_vest_lerajer.ncs \ newspellbookobjs\bnd_vest_maleye.ncs \ newspellbookobjs\bnd_vest_malinv.ncs \ newspellbookobjs\bnd_vest_malphas.ncs \ newspellbookobjs\bnd_vest_march.ncs \ newspellbookobjs\bnd_vest_marchsm.ncs \ newspellbookobjs\bnd_vest_nabers.ncs \ newspellbookobjs\bnd_vest_nabersp.ncs \ newspellbookobjs\bnd_vest_orthbrt.ncs \ newspellbookobjs\bnd_vest_orthos.ncs \ newspellbookobjs\bnd_vest_otiax.ncs \ newspellbookobjs\bnd_vest_otiaxab.ncs \ newspellbookobjs\bnd_vest_otiaxop.ncs \ newspellbookobjs\bnd_vest_otiaxun.ncs \ newspellbookobjs\bnd_vest_paidnc.ncs \ newspellbookobjs\bnd_vest_paimon.ncs \ newspellbookobjs\bnd_vest_ronove.ncs \ newspellbookobjs\bnd_vest_ronvsla.ncs \ newspellbookobjs\bnd_vest_savnok.ncs \ newspellbookobjs\bnd_vest_savnokc.ncs \ newspellbookobjs\bnd_vest_savnokm.ncs \ newspellbookobjs\bnd_vest_shax.ncs \ newspellbookobjs\bnd_vest_shaxfm.ncs \ newspellbookobjs\bnd_vest_shaxstm.ncs \ newspellbookobjs\bnd_vest_tenebrs.ncs \ newspellbookobjs\bnd_vest_tenedrk.ncs \ newspellbookobjs\bnd_vest_teneflk.ncs \ newspellbookobjs\bnd_vest_tenevd.ncs \ newspellbookobjs\bnd_vest_triad.ncs \ newspellbookobjs\bnd_vest_triadsm.ncs \ newspellbookobjs\bnd_vest_vanus.ncs \ newspellbookobjs\bnd_vest_vanusen.ncs \ newspellbookobjs\bnd_vest_vanusfm.ncs \ newspellbookobjs\bnd_vest_zagan.ncs \ newspellbookobjs\bnd_vest_zaganav.ncs \ newspellbookobjs\bnd_vest_zcery.ncs \ newspellbookobjs\bnd_vest_zcerybt.ncs \ newspellbookobjs\bnd_vest_zcerysm.ncs \ newspellbookobjs\bnd_vest_zceryts.ncs \ newspellbookobjs\inv_adeptbreath.ncs \ newspellbookobjs\inv_allseeeye.ncs \ newspellbookobjs\inv_balefulutter.ncs \ newspellbookobjs\inv_blastessence.ncs \ newspellbookobjs\inv_callofbeast.ncs \ newspellbookobjs\inv_castlament.ncs \ newspellbookobjs\inv_causticmire.ncs \ newspellbookobjs\inv_causticmirea.ncs \ newspellbookobjs\inv_causticmireb.ncs \ newspellbookobjs\inv_causticmirec.ncs \ newspellbookobjs\inv_chillingtent.ncs \ newspellbookobjs\inv_chilltenta.ncs \ newspellbookobjs\inv_chilltentb.ncs \ newspellbookobjs\inv_chilltentc.ncs \ newspellbookobjs\inv_cocoonrefuse.ncs \ newspellbookobjs\inv_coldcmfrta.ncs \ newspellbookobjs\inv_coldcmfrtb.ncs \ newspellbookobjs\inv_coldcomfort.ncs \ newspellbookobjs\inv_curseofdesp.ncs \ newspellbookobjs\inv_darkdiscorp.ncs \ newspellbookobjs\inv_darkoneluck.ncs \ newspellbookobjs\inv_devilssight.ncs \ newspellbookobjs\inv_dfa_generic.ncs \ newspellbookobjs\inv_discorpnoatk.ncs \ newspellbookobjs\inv_dra_auraflm.ncs \ newspellbookobjs\inv_dra_beglinf.ncs \ newspellbookobjs\inv_dra_brthngt.ncs \ newspellbookobjs\inv_dra_charm.ncs \ newspellbookobjs\inv_dra_chilfoga.ncs \ newspellbookobjs\inv_dra_chilfogb.ncs \ newspellbookobjs\inv_dra_chilfogc.ncs \ newspellbookobjs\inv_dra_chillfog.ncs \ newspellbookobjs\inv_dra_darkness.ncs \ newspellbookobjs\inv_dra_devrmag.ncs \ newspellbookobjs\inv_dra_dfnroar.ncs \ newspellbookobjs\inv_dra_dracknow.ncs \ newspellbookobjs\inv_dra_dractgh.ncs \ newspellbookobjs\inv_dra_eimmune.ncs \ newspellbookobjs\inv_dra_endrexp.ncs \ newspellbookobjs\inv_dra_enrgyres.ncs \ newspellbookobjs\inv_dra_evuln.ncs \ newspellbookobjs\inv_dra_frtpres.ncs \ newspellbookobjs\inv_dra_maginst.ncs \ newspellbookobjs\inv_dra_scldgust.ncs \ newspellbookobjs\inv_dra_seeunsn.ncs \ newspellbookobjs\inv_dra_terrroar.ncs \ newspellbookobjs\inv_dra_voidsnse.ncs \ newspellbookobjs\inv_dra_vordspl.ncs \ newspellbookobjs\inv_dra_walkunsn.ncs \ newspellbookobjs\inv_dragonward.ncs \ newspellbookobjs\inv_dreadseizure.ncs \ newspellbookobjs\inv_drg_generic.ncs \ newspellbookobjs\inv_drgnfireadpt.ncs \ newspellbookobjs\inv_drkforesight.ncs \ newspellbookobjs\inv_earthengrasp.ncs \ newspellbookobjs\inv_earthgraspa.ncs \ newspellbookobjs\inv_earthgraspc.ncs \ newspellbookobjs\inv_ed_gift.ncs \ newspellbookobjs\inv_eldrtch_glv.ncs \ newspellbookobjs\inv_eldtch_blast.ncs \ newspellbookobjs\inv_eldtch_chain.ncs \ newspellbookobjs\inv_eldtch_shape.ncs \ newspellbookobjs\inv_eldtchglv_ht.ncs \ newspellbookobjs\inv_enervshdw.ncs \ newspellbookobjs\inv_enervshdwa.ncs \ newspellbookobjs\inv_enervshdwb.ncs \ newspellbookobjs\inv_enervshdwc.ncs \ newspellbookobjs\inv_entrpward.ncs \ newspellbookobjs\inv_et_grblst.ncs \ newspellbookobjs\inv_et_spellblst.ncs \ newspellbookobjs\inv_fiend_resil.ncs \ newspellbookobjs\inv_fleethescene.ncs \ newspellbookobjs\inv_fts_decoy.ncs \ newspellbookobjs\inv_heal_blast.ncs \ newspellbookobjs\inv_hellf_blast.ncs \ newspellbookobjs\inv_hf_infusion.ncs \ newspellbookobjs\inv_hf_shield.ncs \ newspellbookobjs\inv_hideous_blow.ncs \ newspellbookobjs\inv_hlspwngrace.ncs \ newspellbookobjs\inv_hmndshp_lern.ncs \ newspellbookobjs\inv_hmndshp_opts.ncs \ newspellbookobjs\inv_hmndshp_quik.ncs \ newspellbookobjs\inv_hmndshp_true.ncs \ newspellbookobjs\inv_hungrydarkns.ncs \ newspellbookobjs\inv_ignorepyre.ncs \ newspellbookobjs\inv_imbue_item.ncs \ newspellbookobjs\inv_imbueitemcon.ncs \ newspellbookobjs\inv_invokeconv.ncs \ newspellbookobjs\inv_leapbound.ncs \ newspellbookobjs\inv_maskofflesh.ncs \ newspellbookobjs\inv_masofelemdom.ncs \ newspellbookobjs\inv_masofelemsum.ncs \ newspellbookobjs\inv_miasmicclda.ncs \ newspellbookobjs\inv_miasmiccldc.ncs \ newspellbookobjs\inv_miasmiccloud.ncs \ newspellbookobjs\inv_mrphsvntword.ncs \ newspellbookobjs\inv_nightmarea.ncs \ newspellbookobjs\inv_nightmareb.ncs \ newspellbookobjs\inv_nightmarec.ncs \ newspellbookobjs\inv_othrwrldwspr.ncs \ newspellbookobjs\inv_painslumber.ncs \ newspellbookobjs\inv_pathofshadow.ncs \ newspellbookobjs\inv_realnghtmre.ncs \ newspellbookobjs\inv_relentdispel.ncs \ newspellbookobjs\inv_retribinvis.ncs \ newspellbookobjs\inv_serptongue.ncs \ newspellbookobjs\inv_shdwmstrcncl.ncs \ newspellbookobjs\inv_shdwmstrshds.ncs \ newspellbookobjs\inv_soulreaveaur.ncs \ newspellbookobjs\inv_spidershape.ncs \ newspellbookobjs\inv_splweave.ncs \ newspellbookobjs\inv_splweave_act.ncs \ newspellbookobjs\inv_stealsummon.ncs \ newspellbookobjs\inv_summonswarm.ncs \ newspellbookobjs\inv_swarmdmgc.ncs \ newspellbookobjs\inv_swimthestyx.ncs \ newspellbookobjs\inv_tenacplague.ncs \ newspellbookobjs\inv_thedeadwalk.ncs \ newspellbookobjs\inv_verminlrdcrp.ncs \ newspellbookobjs\inv_verminlrddom.ncs \ newspellbookobjs\inv_wallglooma.ncs \ newspellbookobjs\inv_wallgloomb.ncs \ newspellbookobjs\inv_wallofgloom.ncs \ newspellbookobjs\inv_wallperlflm.ncs \ newspellbookobjs\inv_wallperlflma.ncs \ newspellbookobjs\inv_wallperlflmc.ncs \ newspellbookobjs\inv_war_generic.ncs \ newspellbookobjs\inv_warlock.ncs \ newspellbookobjs\inv_witchwood.ncs \ newspellbookobjs\inv_wordchange.ncs \ newspellbookobjs\moi_bindingcnv.ncs \ newspellbookobjs\moi_essentiacnv.ncs \ newspellbookobjs\moi_events.ncs \ newspellbookobjs\moi_ft_aztalent.ncs \ newspellbookobjs\moi_ft_divsoul.ncs \ newspellbookobjs\moi_ft_healsoul.ncs \ newspellbookobjs\moi_ft_mdnghtaug.ncs \ newspellbookobjs\moi_ft_opensoul.ncs \ newspellbookobjs\moi_ft_psyblade.ncs \ newspellbookobjs\moi_ft_psyinfuse.ncs \ newspellbookobjs\moi_ft_rebind.ncs \ newspellbookobjs\moi_iblade.ncs \ newspellbookobjs\moi_iblade_bind.ncs \ newspellbookobjs\moi_iblade_mld.ncs \ newspellbookobjs\moi_iblade_rebnd.ncs \ newspellbookobjs\moi_iblade_sht.ncs \ newspellbookobjs\moi_inc_detect.ncs \ newspellbookobjs\moi_inc_perfect.ncs \ newspellbookobjs\moi_inc_radiance.ncs \ newspellbookobjs\moi_inc_rapid.ncs \ newspellbookobjs\moi_inc_rpdcnv.ncs \ newspellbookobjs\moi_incan_heal.ncs \ newspellbookobjs\moi_incan_incorp.ncs \ newspellbookobjs\moi_incan_overld.ncs \ newspellbookobjs\moi_incan_ray.ncs \ newspellbookobjs\moi_incan_strike.ncs \ newspellbookobjs\moi_incan_unbear.ncs \ newspellbookobjs\moi_incarnate.ncs \ newspellbookobjs\moi_invessentia.ncs \ newspellbookobjs\moi_irfg_armor.ncs \ newspellbookobjs\moi_irfg_shield.ncs \ newspellbookobjs\moi_irfg_weapon.ncs \ newspellbookobjs\moi_ironsoul.ncs \ newspellbookobjs\moi_meldshapecnv.ncs \ newspellbookobjs\moi_midnightcnv.ncs \ newspellbookobjs\moi_mld_acrobts.ncs \ newspellbookobjs\moi_mld_admpal.ncs \ newspellbookobjs\moi_mld_ankheg.ncs \ newspellbookobjs\moi_mld_ankhegft.ncs \ newspellbookobjs\moi_mld_aprib.ncs \ newspellbookobjs\moi_mld_apribft.ncs \ newspellbookobjs\moi_mld_arcfocus.ncs \ newspellbookobjs\moi_mld_armdis.ncs \ newspellbookobjs\moi_mld_armdisft.ncs \ newspellbookobjs\moi_mld_astral.ncs \ newspellbookobjs\moi_mld_basmsk.ncs \ newspellbookobjs\moi_mld_basmskft.ncs \ newspellbookobjs\moi_mld_behir.ncs \ newspellbookobjs\moi_mld_behirft.ncs \ newspellbookobjs\moi_mld_bldtln.ncs \ newspellbookobjs\moi_mld_bldwr.ncs \ newspellbookobjs\moi_mld_bldwrft.ncs \ newspellbookobjs\moi_mld_blksht.ncs \ newspellbookobjs\moi_mld_blkshtdd.ncs \ newspellbookobjs\moi_mld_blkshtht.ncs \ newspellbookobjs\moi_mld_blustlbr.ncs \ newspellbookobjs\moi_mld_brssmn.ncs \ newspellbookobjs\moi_mld_brssmnft.ncs \ newspellbookobjs\moi_mld_bsttmr.ncs \ newspellbookobjs\moi_mld_bsttmrcn.ncs \ newspellbookobjs\moi_mld_bsttmrtm.ncs \ newspellbookobjs\moi_mld_charmvl.ncs \ newspellbookobjs\moi_mld_chasuble.ncs \ newspellbookobjs\moi_mld_chsblft.ncs \ newspellbookobjs\moi_mld_clawwyrm.ncs \ newspellbookobjs\moi_mld_cryshlm.ncs \ newspellbookobjs\moi_mld_diadem.ncs \ newspellbookobjs\moi_mld_dismsk.ncs \ newspellbookobjs\moi_mld_dismskdt.ncs \ newspellbookobjs\moi_mld_dismskft.ncs \ newspellbookobjs\moi_mld_drdcrp.ncs \ newspellbookobjs\moi_mld_drdcrpft.ncs \ newspellbookobjs\moi_mld_drgnfr.ncs \ newspellbookobjs\moi_mld_drgnfrth.ncs \ newspellbookobjs\moi_mld_drgnfrtm.ncs \ newspellbookobjs\moi_mld_drgnmntl.ncs \ newspellbookobjs\moi_mld_drgntl.ncs \ newspellbookobjs\moi_mld_drgntlft.ncs \ newspellbookobjs\moi_mld_dsplcr.ncs \ newspellbookobjs\moi_mld_dsplcrft.ncs \ newspellbookobjs\moi_mld_dsspit.ncs \ newspellbookobjs\moi_mld_dsspitft.ncs \ newspellbookobjs\moi_mld_duskling.ncs \ newspellbookobjs\moi_mld_eldrsprt.ncs \ newspellbookobjs\moi_mld_engmahlm.ncs \ newspellbookobjs\moi_mld_fllmst.ncs \ newspellbookobjs\moi_mld_flmcnc.ncs \ newspellbookobjs\moi_mld_flmcncft.ncs \ newspellbookobjs\moi_mld_frsmsk.ncs \ newspellbookobjs\moi_mld_frsthl.ncs \ newspellbookobjs\moi_mld_frsthlcr.ncs \ newspellbookobjs\moi_mld_frsthltm.ncs \ newspellbookobjs\moi_mld_garms.ncs \ newspellbookobjs\moi_mld_gloves.ncs \ newspellbookobjs\moi_mld_glovesft.ncs \ newspellbookobjs\moi_mld_gorgon.ncs \ newspellbookobjs\moi_mld_gorgonth.ncs \ newspellbookobjs\moi_mld_gorgontm.ncs \ newspellbookobjs\moi_mld_heartfr.ncs \ newspellbookobjs\moi_mld_hunter.ncs \ newspellbookobjs\moi_mld_illveil.ncs \ newspellbookobjs\moi_mld_impboots.ncs \ newspellbookobjs\moi_mld_inavatar.ncs \ newspellbookobjs\moi_mld_incwpnft.ncs \ newspellbookobjs\moi_mld_inweapon.ncs \ newspellbookobjs\moi_mld_keeneye.ncs \ newspellbookobjs\moi_mld_krnshr.ncs \ newspellbookobjs\moi_mld_krnshrft.ncs \ newspellbookobjs\moi_mld_krthk.ncs \ newspellbookobjs\moi_mld_lamiablt.ncs \ newspellbookobjs\moi_mld_lckydc.ncs \ newspellbookobjs\moi_mld_lckydcft.ncs \ newspellbookobjs\moi_mld_lfbnd.ncs \ newspellbookobjs\moi_mld_lfbndft.ncs \ newspellbookobjs\moi_mld_lghtgn.ncs \ newspellbookobjs\moi_mld_lghtgnhn.ncs \ newspellbookobjs\moi_mld_lghtgnzp.ncs \ newspellbookobjs\moi_mld_lmsmnt.ncs \ newspellbookobjs\moi_mld_lmsmntft.ncs \ newspellbookobjs\moi_mld_lndshrk.ncs \ newspellbookobjs\moi_mld_lndshrkf.ncs \ newspellbookobjs\moi_mld_lndshrkt.ncs \ newspellbookobjs\moi_mld_maulgntl.ncs \ newspellbookobjs\moi_mld_maxess.ncs \ newspellbookobjs\moi_mld_mgspct.ncs \ newspellbookobjs\moi_mld_mgspctft.ncs \ newspellbookobjs\moi_mld_mntcrb.ncs \ newspellbookobjs\moi_mld_mntcrbft.ncs \ newspellbookobjs\moi_mld_mntlefl.ncs \ newspellbookobjs\moi_mld_mntlflft.ncs \ newspellbookobjs\moi_mld_ncrtchft.ncs \ newspellbookobjs\moi_mld_ncrvst.ncs \ newspellbookobjs\moi_mld_neccrcft.ncs \ newspellbookobjs\moi_mld_necrocrc.ncs \ newspellbookobjs\moi_mld_necromnt.ncs \ newspellbookobjs\moi_mld_necroshd.ncs \ newspellbookobjs\moi_mld_necrotch.ncs \ newspellbookobjs\moi_mld_necrowpn.ncs \ newspellbookobjs\moi_mld_necshdft.ncs \ newspellbookobjs\moi_mld_paulhlth.ncs \ newspellbookobjs\moi_mld_phase.ncs \ newspellbookobjs\moi_mld_phoenix.ncs \ newspellbookobjs\moi_mld_phonixft.ncs \ newspellbookobjs\moi_mld_plward.ncs \ newspellbookobjs\moi_mld_psieyebr.ncs \ newspellbookobjs\moi_mld_psikmsk.ncs \ newspellbookobjs\moi_mld_psimskdt.ncs \ newspellbookobjs\moi_mld_psimskft.ncs \ newspellbookobjs\moi_mld_psioneye.ncs \ newspellbookobjs\moi_mld_psyfocus.ncs \ newspellbookobjs\moi_mld_rageclaw.ncs \ newspellbookobjs\moi_mld_raptor.ncs \ newspellbookobjs\moi_mld_riding.ncs \ newspellbookobjs\moi_mld_sandal.ncs \ newspellbookobjs\moi_mld_sandalft.ncs \ newspellbookobjs\moi_mld_shdcrw.ncs \ newspellbookobjs\moi_mld_shdcrwft.ncs \ newspellbookobjs\moi_mld_shdmnt.ncs \ newspellbookobjs\moi_mld_shdmntft.ncs \ newspellbookobjs\moi_mld_sightglv.ncs \ newspellbookobjs\moi_mld_slspk.ncs \ newspellbookobjs\moi_mld_slspkai.ncs \ newspellbookobjs\moi_mld_slspkatk.ncs \ newspellbookobjs\moi_mld_slspkess.ncs \ newspellbookobjs\moi_mld_slvrtnft.ncs \ newspellbookobjs\moi_mld_slvrtng.ncs \ newspellbookobjs\moi_mld_sphnxclw.ncs \ newspellbookobjs\moi_mld_spllward.ncs \ newspellbookobjs\moi_mld_strnghrt.ncs \ newspellbookobjs\moi_mld_thftglvs.ncs \ newspellbookobjs\moi_mld_thrptc.ncs \ newspellbookobjs\moi_mld_thunder.ncs \ newspellbookobjs\moi_mld_totem.ncs \ newspellbookobjs\moi_mld_trthskr.ncs \ newspellbookobjs\moi_mld_unicorn.ncs \ newspellbookobjs\moi_mld_unicrnft.ncs \ newspellbookobjs\moi_mld_urskan.ncs \ newspellbookobjs\moi_mld_vitality.ncs \ newspellbookobjs\moi_mld_windclk.ncs \ newspellbookobjs\moi_mld_winter.ncs \ newspellbookobjs\moi_mld_wintertc.ncs \ newspellbookobjs\moi_mld_winterth.ncs \ newspellbookobjs\moi_mld_worgpelt.ncs \ newspellbookobjs\moi_mld_wormtail.ncs \ newspellbookobjs\moi_mld_wormtlft.ncs \ newspellbookobjs\moi_mld_yrthak.ncs \ newspellbookobjs\moi_mld_yrthakft.ncs \ newspellbookobjs\moi_ncr_clean.ncs \ newspellbookobjs\moi_ncr_harvest.ncs \ newspellbookobjs\moi_ncr_soulshld.ncs \ newspellbookobjs\moi_saph_smite.ncs \ newspellbookobjs\moi_sapphire.ncs \ newspellbookobjs\moi_scst_distil.ncs \ newspellbookobjs\moi_slbn_share.ncs \ newspellbookobjs\moi_slbn_smite.ncs \ newspellbookobjs\moi_soulborn.ncs \ newspellbookobjs\moi_spinemeld.ncs \ newspellbookobjs\moi_spn_enhance.ncs \ newspellbookobjs\moi_totemist.ncs \ newspellbookobjs\moi_totemrager.ncs \ newspellbookobjs\moi_ttm_embody.ncs \ newspellbookobjs\moi_ttm_rshpttm.ncs \ newspellbookobjs\moi_ttmbindcnv.ncs \ newspellbookobjs\moi_umbral.ncs \ newspellbookobjs\moi_umbral_kiss.ncs \ newspellbookobjs\moi_umbral_soul.ncs \ newspellbookobjs\moi_umbrl_shadow.ncs \ newspellbookobjs\moi_umbrl_sight.ncs \ newspellbookobjs\moi_umbrl_step.ncs \ newspellbookobjs\moi_wchb_abrogat.ncs \ newspellbookobjs\moi_wchb_dispel.ncs \ newspellbookobjs\moi_wchb_flay.ncs \ newspellbookobjs\moi_wchb_integ.ncs \ newspellbookobjs\moi_wchb_mldshld.ncs \ newspellbookobjs\moi_wchb_royal.ncs \ newspellbookobjs\moi_wchb_shackle.ncs \ newspellbookobjs\prc_amagsys_gain.ncs \ newspellbookobjs\prc_antip_em_gen.ncs \ newspellbookobjs\prc_antip_ex_gen.ncs \ newspellbookobjs\prc_antip_ma_gen.ncs \ newspellbookobjs\prc_antip_si_gen.ncs \ newspellbookobjs\prc_antip_sp_gen.ncs \ newspellbookobjs\prc_antip_st_gen.ncs \ newspellbookobjs\prc_archv_em_gen.ncs \ newspellbookobjs\prc_archv_ex_gen.ncs \ newspellbookobjs\prc_archv_ma_gen.ncs \ newspellbookobjs\prc_archv_qu_gen.ncs \ newspellbookobjs\prc_archv_si_gen.ncs \ newspellbookobjs\prc_archv_sp_gen.ncs \ newspellbookobjs\prc_archv_st_gen.ncs \ newspellbookobjs\prc_asasi_sp_gen.ncs \ newspellbookobjs\prc_bard_sp_gen.ncs \ newspellbookobjs\prc_begui_sp_gen.ncs \ newspellbookobjs\prc_bligh_em_gen.ncs \ newspellbookobjs\prc_bligh_ex_gen.ncs \ newspellbookobjs\prc_bligh_ma_gen.ncs \ newspellbookobjs\prc_bligh_si_gen.ncs \ newspellbookobjs\prc_bligh_sp_gen.ncs \ newspellbookobjs\prc_bligh_st_gen.ncs \ newspellbookobjs\prc_blkgr_em_gen.ncs \ newspellbookobjs\prc_blkgr_ex_gen.ncs \ newspellbookobjs\prc_blkgr_ma_gen.ncs \ newspellbookobjs\prc_blkgr_si_gen.ncs \ newspellbookobjs\prc_blkgr_sp_gen.ncs \ newspellbookobjs\prc_blkgr_st_gen.ncs \ newspellbookobjs\prc_cults_ex_gen.ncs \ newspellbookobjs\prc_cults_si_gen.ncs \ newspellbookobjs\prc_cults_sp_gen.ncs \ newspellbookobjs\prc_cults_st_gen.ncs \ newspellbookobjs\prc_dnecr_sp_gen.ncs \ newspellbookobjs\prc_duskb_sp_gen.ncs \ newspellbookobjs\prc_favso_sp_gen.ncs \ newspellbookobjs\prc_harpe_sp_gen.ncs \ newspellbookobjs\prc_heale_em_gen.ncs \ newspellbookobjs\prc_heale_ex_gen.ncs \ newspellbookobjs\prc_heale_ma_gen.ncs \ newspellbookobjs\prc_heale_qu_gen.ncs \ newspellbookobjs\prc_heale_si_gen.ncs \ newspellbookobjs\prc_heale_sp_gen.ncs \ newspellbookobjs\prc_heale_st_gen.ncs \ newspellbookobjs\prc_hexbl_sp_gen.ncs \ newspellbookobjs\prc_hunte_em_gen.ncs \ newspellbookobjs\prc_hunte_ex_gen.ncs \ newspellbookobjs\prc_hunte_ma_gen.ncs \ newspellbookobjs\prc_hunte_si_gen.ncs \ newspellbookobjs\prc_hunte_sp_gen.ncs \ newspellbookobjs\prc_hunte_st_gen.ncs \ newspellbookobjs\prc_justw_sp_gen.ncs \ newspellbookobjs\prc_kchal_em_gen.ncs \ newspellbookobjs\prc_kchal_ex_gen.ncs \ newspellbookobjs\prc_kchal_ma_gen.ncs \ newspellbookobjs\prc_kchal_si_gen.ncs \ newspellbookobjs\prc_kchal_sp_gen.ncs \ newspellbookobjs\prc_kchal_st_gen.ncs \ newspellbookobjs\prc_kngtw_sp_gen.ncs \ newspellbookobjs\prc_kotmc_em_gen.ncs \ newspellbookobjs\prc_kotmc_ex_gen.ncs \ newspellbookobjs\prc_kotmc_ma_gen.ncs \ newspellbookobjs\prc_kotmc_si_gen.ncs \ newspellbookobjs\prc_kotmc_sp_gen.ncs \ newspellbookobjs\prc_kotmc_st_gen.ncs \ newspellbookobjs\prc_myst_sp_gen.ncs \ newspellbookobjs\prc_ocu_em_gen.ncs \ newspellbookobjs\prc_ocu_ex_gen.ncs \ newspellbookobjs\prc_ocu_ma_gen.ncs \ newspellbookobjs\prc_ocu_qu_gen.ncs \ newspellbookobjs\prc_ocu_si_gen.ncs \ newspellbookobjs\prc_ocu_sp_gen.ncs \ newspellbookobjs\prc_ocu_st_gen.ncs \ newspellbookobjs\prc_schor_sp_gen.ncs \ newspellbookobjs\prc_shama_em_gen.ncs \ newspellbookobjs\prc_shama_ex_gen.ncs \ newspellbookobjs\prc_shama_ma_gen.ncs \ newspellbookobjs\prc_shama_qu_gen.ncs \ newspellbookobjs\prc_shama_si_gen.ncs \ newspellbookobjs\prc_shama_sp_gen.ncs \ newspellbookobjs\prc_shama_st_gen.ncs \ newspellbookobjs\prc_shars_sp_gen.ncs \ newspellbookobjs\prc_sod_em_gen.ncs \ newspellbookobjs\prc_sod_ex_gen.ncs \ newspellbookobjs\prc_sod_ma_gen.ncs \ newspellbookobjs\prc_sod_si_gen.ncs \ newspellbookobjs\prc_sod_sp_gen.ncs \ newspellbookobjs\prc_sod_st_gen.ncs \ newspellbookobjs\prc_sohei_em_gen.ncs \ newspellbookobjs\prc_sohei_ex_gen.ncs \ newspellbookobjs\prc_sohei_ma_gen.ncs \ newspellbookobjs\prc_sohei_si_gen.ncs \ newspellbookobjs\prc_sohei_sp_gen.ncs \ newspellbookobjs\prc_sohei_st_gen.ncs \ newspellbookobjs\prc_sol_em_gen.ncs \ newspellbookobjs\prc_sol_ex_gen.ncs \ newspellbookobjs\prc_sol_ma_gen.ncs \ newspellbookobjs\prc_sol_si_gen.ncs \ newspellbookobjs\prc_sol_sp_gen.ncs \ newspellbookobjs\prc_sol_st_gen.ncs \ newspellbookobjs\prc_sorc_sp_gen.ncs \ newspellbookobjs\prc_suel_sp_gen.ncs \ newspellbookobjs\prc_templ_sp_gen.ncs \ newspellbookobjs\prc_tfsha_em_gen.ncs \ newspellbookobjs\prc_tfsha_ex_gen.ncs \ newspellbookobjs\prc_tfsha_ma_gen.ncs \ newspellbookobjs\prc_tfsha_qu_gen.ncs \ newspellbookobjs\prc_tfsha_si_gen.ncs \ newspellbookobjs\prc_tfsha_sp_gen.ncs \ newspellbookobjs\prc_tfsha_st_gen.ncs \ newspellbookobjs\prc_vassa_em_gen.ncs \ newspellbookobjs\prc_vassa_ex_gen.ncs \ newspellbookobjs\prc_vassa_ma_gen.ncs \ newspellbookobjs\prc_vassa_si_gen.ncs \ newspellbookobjs\prc_vassa_sp_gen.ncs \ newspellbookobjs\prc_vassa_st_gen.ncs \ newspellbookobjs\prc_vigil_em_gen.ncs \ newspellbookobjs\prc_vigil_ex_gen.ncs \ newspellbookobjs\prc_vigil_ma_gen.ncs \ newspellbookobjs\prc_vigil_si_gen.ncs \ newspellbookobjs\prc_vigil_sp_gen.ncs \ newspellbookobjs\prc_vigil_st_gen.ncs \ newspellbookobjs\prc_witch_sp_gen.ncs \ newspellbookobjs\prc_wrmag_sp_gen.ncs \ newspellbookobjs\shd_child_blur.ncs \ newspellbookobjs\shd_child_dance.ncs \ newspellbookobjs\shd_child_night.ncs \ newspellbookobjs\shd_childnight.ncs \ newspellbookobjs\shd_fund_arrow.ncs \ newspellbookobjs\shd_fund_blckcnd.ncs \ newspellbookobjs\shd_fund_caulshd.ncs \ newspellbookobjs\shd_fund_mystic.ncs \ newspellbookobjs\shd_fund_sghtobs.ncs \ newspellbookobjs\shd_fund_shdhood.ncs \ newspellbookobjs\shd_fund_umbhand.ncs \ newspellbookobjs\shd_fund_wideeye.ncs \ newspellbookobjs\shd_master_bid.ncs \ newspellbookobjs\shd_mastershadow.ncs \ newspellbookobjs\shd_meta_emp.ncs \ newspellbookobjs\shd_meta_ext.ncs \ newspellbookobjs\shd_meta_max.ncs \ newspellbookobjs\shd_meta_quick.ncs \ newspellbookobjs\shd_meta_still.ncs \ newspellbookobjs\shd_myst_afrddrk.ncs \ newspellbookobjs\shd_myst_armyshd.ncs \ newspellbookobjs\shd_myst_aurashd.ncs \ newspellbookobjs\shd_myst_blckfr.ncs \ newspellbookobjs\shd_myst_blckfra.ncs \ newspellbookobjs\shd_myst_blckfrc.ncs \ newspellbookobjs\shd_myst_bndprs.ncs \ newspellbookobjs\shd_myst_bolster.ncs \ newspellbookobjs\shd_myst_clngdka.ncs \ newspellbookobjs\shd_myst_clngdkc.ncs \ newspellbookobjs\shd_myst_clngdrk.ncs \ newspellbookobjs\shd_myst_cngsmsg.ncs \ newspellbookobjs\shd_myst_cngsshd.ncs \ newspellbookobjs\shd_myst_cnsmess.ncs \ newspellbookobjs\shd_myst_crpshd.ncs \ newspellbookobjs\shd_myst_crpshda.ncs \ newspellbookobjs\shd_myst_crpshdb.ncs \ newspellbookobjs\shd_myst_crtshd.ncs \ newspellbookobjs\shd_myst_crtshda.ncs \ newspellbookobjs\shd_myst_crtshdc.ncs \ newspellbookobjs\shd_myst_darkair.ncs \ newspellbookobjs\shd_myst_ddlyshd.ncs \ newspellbookobjs\shd_myst_dncgshd.ncs \ newspellbookobjs\shd_myst_drkslft.ncs \ newspellbookobjs\shd_myst_drksoul.ncs \ newspellbookobjs\shd_myst_dskdwn.ncs \ newspellbookobjs\shd_myst_dskdwna.ncs \ newspellbookobjs\shd_myst_dskdwnb.ncs \ newspellbookobjs\shd_myst_dskdwnc.ncs \ newspellbookobjs\shd_myst_echospl.ncs \ newspellbookobjs\shd_myst_ei_evnt.ncs \ newspellbookobjs\shd_myst_ephemrl.ncs \ newspellbookobjs\shd_myst_ephstrm.ncs \ newspellbookobjs\shd_myst_evoconv.ncs \ newspellbookobjs\shd_myst_farsght.ncs \ newspellbookobjs\shd_myst_feignlf.ncs \ newspellbookobjs\shd_myst_flckrft.ncs \ newspellbookobjs\shd_myst_fldshd.ncs \ newspellbookobjs\shd_myst_fldshda.ncs \ newspellbookobjs\shd_myst_fldshdb.ncs \ newspellbookobjs\shd_myst_flicker.ncs \ newspellbookobjs\shd_myst_flshfls.ncs \ newspellbookobjs\shd_myst_frflglm.ncs \ newspellbookobjs\shd_myst_grflesh.ncs \ newspellbookobjs\shd_myst_grlffds.ncs \ newspellbookobjs\shd_myst_grpshda.ncs \ newspellbookobjs\shd_myst_grpshdb.ncs \ newspellbookobjs\shd_myst_grpshdc.ncs \ newspellbookobjs\shd_myst_grspshd.ncs \ newspellbookobjs\shd_myst_kllgshd.ncs \ newspellbookobjs\shd_myst_languor.ncs \ newspellbookobjs\shd_myst_lbyrnth.ncs \ newspellbookobjs\shd_myst_lifefds.ncs \ newspellbookobjs\shd_myst_menag.ncs \ newspellbookobjs\shd_myst_msmrshd.ncs \ newspellbookobjs\shd_myst_passshd.ncs \ newspellbookobjs\shd_myst_plgshd.ncs \ newspellbookobjs\shd_myst_plgshda.ncs \ newspellbookobjs\shd_myst_plgshdc.ncs \ newspellbookobjs\shd_myst_prcsght.ncs \ newspellbookobjs\shd_myst_prsnngt.ncs \ newspellbookobjs\shd_myst_qckeye.ncs \ newspellbookobjs\shd_myst_reflect.ncs \ newspellbookobjs\shd_myst_sghtecl.ncs \ newspellbookobjs\shd_myst_shdevo.ncs \ newspellbookobjs\shd_myst_shdfd.ncs \ newspellbookobjs\shd_myst_shdinvt.ncs \ newspellbookobjs\shd_myst_shdsrg.ncs \ newspellbookobjs\shd_myst_shdstrm.ncs \ newspellbookobjs\shd_myst_shdtime.ncs \ newspellbookobjs\shd_myst_shdvsn.ncs \ newspellbookobjs\shd_myst_shdwskn.ncs \ newspellbookobjs\shd_myst_shrpshd.ncs \ newspellbookobjs\shd_myst_sickshd.ncs \ newspellbookobjs\shd_myst_slpppt.ncs \ newspellbookobjs\shd_myst_stlshd.ncs \ newspellbookobjs\shd_myst_stpshd.ncs \ newspellbookobjs\shd_myst_tghtshd.ncs \ newspellbookobjs\shd_myst_tombngt.ncs \ newspellbookobjs\shd_myst_trlhz.ncs \ newspellbookobjs\shd_myst_trthrvl.ncs \ newspellbookobjs\shd_myst_umblfst.ncs \ newspellbookobjs\shd_myst_umbrlby.ncs \ newspellbookobjs\shd_myst_umbrlft.ncs \ newspellbookobjs\shd_myst_umbrlst.ncs \ newspellbookobjs\shd_myst_umbrlth.ncs \ newspellbookobjs\shd_myst_unveil.ncs \ newspellbookobjs\shd_myst_unvrldw.ncs \ newspellbookobjs\shd_myst_vcshd.ncs \ newspellbookobjs\shd_myst_warpspl.ncs \ newspellbookobjs\shd_mystconv.ncs \ newspellbookobjs\shd_noct_counter.ncs \ newspellbookobjs\shd_noct_disrupt.ncs \ newspellbookobjs\shd_noct_vortex.ncs \ newspellbookobjs\shd_pathconv.ncs \ newspellbookobjs\shd_shadowcaster.ncs \ newspellbookobjs\shd_shd_generic.ncs \ newspellbookobjs\shd_smith_armor.ncs \ newspellbookobjs\shd_smith_craft.ncs \ newspellbookobjs\shd_smith_sdcrft.ncs \ newspellbookobjs\shd_smith_shroud.ncs \ newspellbookobjs\shd_smith_touch.ncs \ newspellbookobjs\shd_smith_widen.ncs \ newspellbookobjs\shd_smt_generic.ncs \ newspellbookobjs\tob_aptitudeconv.ncs \ newspellbookobjs\tob_bldclw_pnce.ncs \ newspellbookobjs\tob_bldclw_shift.ncs \ newspellbookobjs\tob_bloodclaw.ncs \ newspellbookobjs\tob_cru_generic.ncs \ newspellbookobjs\tob_cru_ready.ncs \ newspellbookobjs\tob_cru_smite.ncs \ newspellbookobjs\tob_cru_zealsrg.ncs \ newspellbookobjs\tob_crusader.ncs \ newspellbookobjs\tob_deepstone.ncs \ newspellbookobjs\tob_disc_move.ncs \ newspellbookobjs\tob_dmnd_acttght.ncs \ newspellbookobjs\tob_dmnd_avlbld.ncs \ newspellbookobjs\tob_dmnd_bndaslt.ncs \ newspellbookobjs\tob_dmnd_dmddef.ncs \ newspellbookobjs\tob_dmnd_dmndbld.ncs \ newspellbookobjs\tob_dmnd_drptb.ncs \ newspellbookobjs\tob_dmnd_emrazor.ncs \ newspellbookobjs\tob_dmnd_ginsts.ncs \ newspellbookobjs\tob_dmnd_heara.ncs \ newspellbookobjs\tob_dmnd_insght.ncs \ newspellbookobjs\tob_dmnd_mndbdy.ncs \ newspellbookobjs\tob_dmnd_mndstrk.ncs \ newspellbookobjs\tob_dmnd_momal.ncs \ newspellbookobjs\tob_dmnd_prfmnd.ncs \ newspellbookobjs\tob_dmnd_prlbdt.ncs \ newspellbookobjs\tob_dmnd_qcksil.ncs \ newspellbookobjs\tob_dmnd_rapidc.ncs \ newspellbookobjs\tob_dmnd_rubybld.ncs \ newspellbookobjs\tob_dmnd_snhtbld.ncs \ newspellbookobjs\tob_dmnd_stncal.ncs \ newspellbookobjs\tob_dmnd_stnclr.ncs \ newspellbookobjs\tob_dmnd_stnclra.ncs \ newspellbookobjs\tob_dmnd_timess.ncs \ newspellbookobjs\tob_dpst_awstdrg.ncs \ newspellbookobjs\tob_dpst_crhmntj.ncs \ newspellbookobjs\tob_dpst_drgtth.ncs \ newspellbookobjs\tob_dpst_mntfrt.ncs \ newspellbookobjs\tob_dpst_mntfrta.ncs \ newspellbookobjs\tob_dvsp_chaos.ncs \ newspellbookobjs\tob_dvsp_crustrk.ncs \ newspellbookobjs\tob_dvsp_ctgstrk.ncs \ newspellbookobjs\tob_dvsp_defrbk.ncs \ newspellbookobjs\tob_dvsp_defrbka.ncs \ newspellbookobjs\tob_dvsp_dmchrg.ncs \ newspellbookobjs\tob_dvsp_dntstrk.ncs \ newspellbookobjs\tob_dvsp_dvnsrg.ncs \ newspellbookobjs\tob_dvsp_dvnsrg1.ncs \ newspellbookobjs\tob_dvsp_dvnsrg2.ncs \ newspellbookobjs\tob_dvsp_dvnsrgg.ncs \ newspellbookobjs\tob_dvsp_foehmmr.ncs \ newspellbookobjs\tob_dvsp_igglr.ncs \ newspellbookobjs\tob_dvsp_igglra.ncs \ newspellbookobjs\tob_dvsp_igglrb.ncs \ newspellbookobjs\tob_dvsp_imfort.ncs \ newspellbookobjs\tob_dvsp_imfrtoh.ncs \ newspellbookobjs\tob_dvsp_lwbrr.ncs \ newspellbookobjs\tob_dvsp_mrtsprt.ncs \ newspellbookobjs\tob_dvsp_ntgnle.ncs \ newspellbookobjs\tob_dvsp_ntngle.ncs \ newspellbookobjs\tob_dvsp_prford.ncs \ newspellbookobjs\tob_dvsp_rdtchrg.ncs \ newspellbookobjs\tob_dvsp_revstrk.ncs \ newspellbookobjs\tob_dvsp_rghtvt.ncs \ newspellbookobjs\tob_dvsp_rlystrk.ncs \ newspellbookobjs\tob_dvsp_shldblk.ncs \ newspellbookobjs\tob_dvsp_shldcnt.ncs \ newspellbookobjs\tob_dvsp_tdchs.ncs \ newspellbookobjs\tob_dvsp_thckbld.ncs \ newspellbookobjs\tob_dvsp_thkblda.ncs \ newspellbookobjs\tob_dvsp_triumph.ncs \ newspellbookobjs\tob_dvsp_tyranny.ncs \ newspellbookobjs\tob_dvsp_tyrnnya.ncs \ newspellbookobjs\tob_dvsp_vngstrk.ncs \ newspellbookobjs\tob_dw_blstflrsh.ncs \ newspellbookobjs\tob_dw_brnbld.ncs \ newspellbookobjs\tob_dw_brnbrnd.ncs \ newspellbookobjs\tob_dw_distembr.ncs \ newspellbookobjs\tob_dw_drgnflm.ncs \ newspellbookobjs\tob_dw_dsttmpt.ncs \ newspellbookobjs\tob_dw_dsttmpta.ncs \ newspellbookobjs\tob_dw_dthmrk.ncs \ newspellbookobjs\tob_dw_flmblssng.ncs \ newspellbookobjs\tob_dw_flshsun.ncs \ newspellbookobjs\tob_dw_fnflms.ncs \ newspellbookobjs\tob_dw_frrpst.ncs \ newspellbookobjs\tob_dw_frsnk.ncs \ newspellbookobjs\tob_dw_fryaslt.ncs \ newspellbookobjs\tob_dw_holoclk.ncs \ newspellbookobjs\tob_dw_htchflm.ncs \ newspellbookobjs\tob_dw_infrnbld.ncs \ newspellbookobjs\tob_dw_infrnblst.ncs \ newspellbookobjs\tob_dw_lngrinf.ncs \ newspellbookobjs\tob_dw_lpngflm.ncs \ newspellbookobjs\tob_dw_onhit.ncs \ newspellbookobjs\tob_dw_ringfire.ncs \ newspellbookobjs\tob_dw_rsngphnx.ncs \ newspellbookobjs\tob_dw_rsngphnxa.ncs \ newspellbookobjs\tob_dw_salchrga.ncs \ newspellbookobjs\tob_dw_salchrgb.ncs \ newspellbookobjs\tob_dw_searbld.ncs \ newspellbookobjs\tob_dw_searchrg.ncs \ newspellbookobjs\tob_dw_slmdrchrg.ncs \ newspellbookobjs\tob_dw_wndstrd.ncs \ newspellbookobjs\tob_dw_wyrmflmt.ncs \ newspellbookobjs\tob_dw_zphdnc.ncs \ newspellbookobjs\tob_etbl_bldg.ncs \ newspellbookobjs\tob_etbl_conv.ncs \ newspellbookobjs\tob_etbl_defins.ncs \ newspellbookobjs\tob_etbl_etrmove.ncs \ newspellbookobjs\tob_etbl_etrrace.ncs \ newspellbookobjs\tob_etbl_guidest.ncs \ newspellbookobjs\tob_etbl_island.ncs \ newspellbookobjs\tob_etbl_maneuvr.ncs \ newspellbookobjs\tob_etbl_tacins.ncs \ newspellbookobjs\tob_eternalblade.ncs \ newspellbookobjs\tob_event_girwfr.ncs \ newspellbookobjs\tob_evnt_avgstr.ncs \ newspellbookobjs\tob_evnt_recover.ncs \ newspellbookobjs\tob_feats.ncs \ newspellbookobjs\tob_ft_avngstrk.ncs \ newspellbookobjs\tob_ft_divspirit.ncs \ newspellbookobjs\tob_ft_istntclty.ncs \ newspellbookobjs\tob_ft_rcrcnv.ncs \ newspellbookobjs\tob_ft_renewal.ncs \ newspellbookobjs\tob_ft_renewcnv.ncs \ newspellbookobjs\tob_ft_sdnrcrcnv.ncs \ newspellbookobjs\tob_ft_snapkick.ncs \ newspellbookobjs\tob_ft_sngwhtrvn.ncs \ newspellbookobjs\tob_ft_stnpwr.ncs \ newspellbookobjs\tob_ft_sudrecovr.ncs \ newspellbookobjs\tob_gen_recover.ncs \ newspellbookobjs\tob_irnh_abstl.ncs \ newspellbookobjs\tob_irnh_adamhr.ncs \ newspellbookobjs\tob_irnh_dazstr.ncs \ newspellbookobjs\tob_irnh_dncbldf.ncs \ newspellbookobjs\tob_irnh_dsrmstk.ncs \ newspellbookobjs\tob_irnh_exostl.ncs \ newspellbookobjs\tob_irnh_finshm.ncs \ newspellbookobjs\tob_irnh_ihendr.ncs \ newspellbookobjs\tob_irnh_ihfoc.ncs \ newspellbookobjs\tob_irnh_ihsrg.ncs \ newspellbookobjs\tob_irnh_lgtngrc.ncs \ newspellbookobjs\tob_irnh_lgtthr.ncs \ newspellbookobjs\tob_irnh_mntpry.ncs \ newspellbookobjs\tob_irnh_mthtrn.ncs \ newspellbookobjs\tob_irnh_pnshstn.ncs \ newspellbookobjs\tob_irnh_scythbl.ncs \ newspellbookobjs\tob_irnh_stlwnd.ncs \ newspellbookobjs\tob_irnh_stlystk.ncs \ newspellbookobjs\tob_irnh_strpclr.ncs \ newspellbookobjs\tob_irnh_supbldp.ncs \ newspellbookobjs\tob_irnh_wllblds.ncs \ newspellbookobjs\tob_jadephoenix.ncs \ newspellbookobjs\tob_jpm_awrath.ncs \ newspellbookobjs\tob_jpm_emimmo.ncs \ newspellbookobjs\tob_jpm_empstr.ncs \ newspellbookobjs\tob_jpm_fireb.ncs \ newspellbookobjs\tob_jpm_mystp.ncs \ newspellbookobjs\tob_jpm_qukstr.ncs \ newspellbookobjs\tob_jpm_ritew.ncs \ newspellbookobjs\tob_jpm_spell.ncs \ newspellbookobjs\tob_jpm_spellcon.ncs \ newspellbookobjs\tob_masterofnine.ncs \ newspellbookobjs\tob_mon_dualstnc.ncs \ newspellbookobjs\tob_moveconv.ncs \ newspellbookobjs\tob_moverdy.ncs \ newspellbookobjs\tob_rby_divfury.ncs \ newspellbookobjs\tob_rby_divimp.ncs \ newspellbookobjs\tob_rby_divrcvr.ncs \ newspellbookobjs\tob_reth_vilefir.ncs \ newspellbookobjs\tob_rth_generic.ncs \ newspellbookobjs\tob_rubyknight.ncs \ newspellbookobjs\tob_sdhd_assassn.ncs \ newspellbookobjs\tob_sdhd_balance.ncs \ newspellbookobjs\tob_sdhd_bldlts.ncs \ newspellbookobjs\tob_sdhd_chldsdw.ncs \ newspellbookobjs\tob_sdhd_clkdcp.ncs \ newspellbookobjs\tob_sdhd_clngshd.ncs \ newspellbookobjs\tob_sdhd_dncspdr.ncs \ newspellbookobjs\tob_sdhd_drnvita.ncs \ newspellbookobjs\tob_sdhd_dthdrk.ncs \ newspellbookobjs\tob_sdhd_enshds.ncs \ newspellbookobjs\tob_sdhd_fscies.ncs \ newspellbookobjs\tob_sdhd_ghstbd.ncs \ newspellbookobjs\tob_sdhd_hnddth.ncs \ newspellbookobjs\tob_sdhd_islebld.ncs \ newspellbookobjs\tob_sdhd_moth.ncs \ newspellbookobjs\tob_sdhd_obscvl.ncs \ newspellbookobjs\tob_sdhd_onesdw.ncs \ newspellbookobjs\tob_sdhd_sdbldtc.ncs \ newspellbookobjs\tob_sdhd_sdhjnt.ncs \ newspellbookobjs\tob_sdhd_shblnk.ncs \ newspellbookobjs\tob_sdhd_shdgrrt.ncs \ newspellbookobjs\tob_sdhd_shdnse.ncs \ newspellbookobjs\tob_sdhd_shstrd.ncs \ newspellbookobjs\tob_sdhd_stalker.ncs \ newspellbookobjs\tob_sdhd_strdrn.ncs \ newspellbookobjs\tob_shadowsun.ncs \ newspellbookobjs\tob_ssn_balance.ncs \ newspellbookobjs\tob_ssn_childsl.ncs \ newspellbookobjs\tob_ssn_darkwl.ncs \ newspellbookobjs\tob_ssn_flamess.ncs \ newspellbookobjs\tob_ssn_lightwd.ncs \ newspellbookobjs\tob_ssn_touchss.ncs \ newspellbookobjs\tob_ssn_voidss.ncs \ newspellbookobjs\tob_stdr_adbones.ncs \ newspellbookobjs\tob_stdr_anmhmr.ncs \ newspellbookobjs\tob_stdr_bldrrll.ncs \ newspellbookobjs\tob_stdr_bncrsh.ncs \ newspellbookobjs\tob_stdr_bnsplt.ncs \ newspellbookobjs\tob_stdr_colostk.ncs \ newspellbookobjs\tob_stdr_crgmtr.ncs \ newspellbookobjs\tob_stdr_crshvis.ncs \ newspellbookobjs\tob_stdr_crshwgt.ncs \ newspellbookobjs\tob_stdr_emntstr.ncs \ newspellbookobjs\tob_stdr_erthstq.ncs \ newspellbookobjs\tob_stdr_giants.ncs \ newspellbookobjs\tob_stdr_irmtstr.ncs \ newspellbookobjs\tob_stdr_irnbns.ncs \ newspellbookobjs\tob_stdr_mnthmmr.ncs \ newspellbookobjs\tob_stdr_mtavaln.ncs \ newspellbookobjs\tob_stdr_mtavla.ncs \ newspellbookobjs\tob_stdr_mttmbst.ncs \ newspellbookobjs\tob_stdr_ovrmnt.ncs \ newspellbookobjs\tob_stdr_rtmntn.ncs \ newspellbookobjs\tob_stdr_rtmntna.ncs \ newspellbookobjs\tob_stdr_rtmntnb.ncs \ newspellbookobjs\tob_stdr_stnbns.ncs \ newspellbookobjs\tob_stdr_stndrgf.ncs \ newspellbookobjs\tob_stdr_stnftst.ncs \ newspellbookobjs\tob_stdr_stnvise.ncs \ newspellbookobjs\tob_stdr_strston.ncs \ newspellbookobjs\tob_stsn_bfldfsn.ncs \ newspellbookobjs\tob_stsn_blstthr.ncs \ newspellbookobjs\tob_stsn_brkshld.ncs \ newspellbookobjs\tob_stsn_cmtthr.ncs \ newspellbookobjs\tob_stsn_cntrcrg.ncs \ newspellbookobjs\tob_stsn_devthr.ncs \ newspellbookobjs\tob_stsn_fgnopn.ncs \ newspellbookobjs\tob_stsn_folstrk.ncs \ newspellbookobjs\tob_stsn_gntkll.ncs \ newspellbookobjs\tob_stsn_hdrstrk.ncs \ newspellbookobjs\tob_stsn_mgtythr.ncs \ newspellbookobjs\tob_stsn_mrrprs.ncs \ newspellbookobjs\tob_stsn_scrpry.ncs \ newspellbookobjs\tob_stsn_sftdef.ncs \ newspellbookobjs\tob_stsn_srnthr.ncs \ newspellbookobjs\tob_stsn_stlkshd.ncs \ newspellbookobjs\tob_stsn_stpwnd.ncs \ newspellbookobjs\tob_stsn_trnthr.ncs \ newspellbookobjs\tob_stsn_vlcpstn.ncs \ newspellbookobjs\tob_swd_generic.ncs \ newspellbookobjs\tob_swd_rcrcnv.ncs \ newspellbookobjs\tob_swd_ready.ncs \ newspellbookobjs\tob_swd_recover.ncs \ newspellbookobjs\tob_swdsg_dboost.ncs \ newspellbookobjs\tob_swdsg_snsmgc.ncs \ newspellbookobjs\tob_swordsage.ncs \ newspellbookobjs\tob_tgcw_bldwtr.ncs \ newspellbookobjs\tob_tgcw_clwmn.ncs \ newspellbookobjs\tob_tgcw_dfa.ncs \ newspellbookobjs\tob_tgcw_dncmon.ncs \ newspellbookobjs\tob_tgcw_ferdbl.ncs \ newspellbookobjs\tob_tgcw_flshrip.ncs \ newspellbookobjs\tob_tgcw_ftnbld.ncs \ newspellbookobjs\tob_tgcw_girwfr.ncs \ newspellbookobjs\tob_tgcw_hamstr.ncs \ newspellbookobjs\tob_tgcw_hntsns.ncs \ newspellbookobjs\tob_tgcw_lpdrgn.ncs \ newspellbookobjs\tob_tgcw_pnchrg.ncs \ newspellbookobjs\tob_tgcw_preywk.ncs \ newspellbookobjs\tob_tgcw_ragmon.ncs \ newspellbookobjs\tob_tgcw_rbdber.ncs \ newspellbookobjs\tob_tgcw_rbdwlf.ncs \ newspellbookobjs\tob_tgcw_sddnlp.ncs \ newspellbookobjs\tob_tgcw_srrtpr.ncs \ newspellbookobjs\tob_tgcw_swpdrg.ncs \ newspellbookobjs\tob_tgcw_wlffng.ncs \ newspellbookobjs\tob_tgcw_wlfpck.ncs \ newspellbookobjs\tob_tgcw_wlvrnst.ncs \ newspellbookobjs\tob_tgcw_wolfcm.ncs \ newspellbookobjs\tob_war_generic.ncs \ newspellbookobjs\tob_war_ready.ncs \ newspellbookobjs\tob_war_recover.ncs \ newspellbookobjs\tob_warblade.ncs \ newspellbookobjs\tob_wtrn_blsrvc.ncs \ newspellbookobjs\tob_wtrn_blsrvca.ncs \ newspellbookobjs\tob_wtrn_blsrvcb.ncs \ newspellbookobjs\tob_wtrn_btlldrc.ncs \ newspellbookobjs\tob_wtrn_clrncll.ncs \ newspellbookobjs\tob_wtrn_cvrstrk.ncs \ newspellbookobjs\tob_wtrn_dsflms.ncs \ newspellbookobjs\tob_wtrn_flnkmvr.ncs \ newspellbookobjs\tob_wtrn_ldchrg.ncs \ newspellbookobjs\tob_wtrn_ldchrga.ncs \ newspellbookobjs\tob_wtrn_ldchrgb.ncs \ newspellbookobjs\tob_wtrn_ldngatk.ncs \ newspellbookobjs\tob_wtrn_lionror.ncs \ newspellbookobjs\tob_wtrn_ordchs.ncs \ newspellbookobjs\tob_wtrn_prsadvn.ncs \ newspellbookobjs\tob_wtrn_swarmt.ncs \ newspellbookobjs\tob_wtrn_swarmta.ncs \ newspellbookobjs\tob_wtrn_swarmtb.ncs \ newspellbookobjs\tob_wtrn_swrmalt.ncs \ newspellbookobjs\tob_wtrn_tacstrk.ncs \ newspellbookobjs\tob_wtrn_tctwlf.ncs \ newspellbookobjs\tob_wtrn_tctwlfb.ncs \ newspellbookobjs\tob_wtrn_warldrc.ncs \ newspellbookobjs\tob_wtrn_warmtrc.ncs \ newspellbookobjs\tob_wtrn_whtrvns.ncs \ newspellbookobjs\tob_wtrn_whtrvnt.ncs \ newspellbookobjs\tob_wtrn_wtrvnhr.ncs \ newspellbookobjs\true_bft_afflict.ncs \ newspellbookobjs\true_bft_detach.ncs \ newspellbookobjs\true_bft_dissol.ncs \ newspellbookobjs\true_bft_enervat.ncs \ newspellbookobjs\true_bft_exile.ncs \ newspellbookobjs\true_brim_heaven.ncs \ newspellbookobjs\true_brim_tongue.ncs \ newspellbookobjs\true_ct_target.ncs \ newspellbookobjs\true_ct_targetc.ncs \ newspellbookobjs\true_ct_targtchc.ncs \ newspellbookobjs\true_ego_bull.ncs \ newspellbookobjs\true_ego_drake.ncs \ newspellbookobjs\true_ego_fool.ncs \ newspellbookobjs\true_ego_fort.ncs \ newspellbookobjs\true_ego_fright.ncs \ newspellbookobjs\true_ego_heart.ncs \ newspellbookobjs\true_ego_iron.ncs \ newspellbookobjs\true_ego_step.ncs \ newspellbookobjs\true_ego_swallow.ncs \ newspellbookobjs\true_ego_tiger.ncs \ newspellbookobjs\true_ego_voice.ncs \ newspellbookobjs\true_ego_wound.ncs \ newspellbookobjs\true_gate_conv.ncs \ newspellbookobjs\true_ignore_sr.ncs \ newspellbookobjs\true_meta_empowr.ncs \ newspellbookobjs\true_meta_extend.ncs \ newspellbookobjs\true_meta_quickn.ncs \ newspellbookobjs\true_rec_fort.ncs \ newspellbookobjs\true_rec_meditat.ncs \ newspellbookobjs\true_rec_mindful.ncs \ newspellbookobjs\true_rec_sanguin.ncs \ newspellbookobjs\true_rec_vital.ncs \ newspellbookobjs\true_saynam_conv.ncs \ newspellbookobjs\true_speak_mass.ncs \ newspellbookobjs\true_tru_sayname.ncs \ newspellbookobjs\true_tru_seename.ncs \ newspellbookobjs\true_tru_silver.ncs \ newspellbookobjs\true_truenamer.ncs \ newspellbookobjs\true_utr_accatk.ncs \ newspellbookobjs\true_utr_agititm.ncs \ newspellbookobjs\true_utr_analitm.ncs \ newspellbookobjs\true_utr_archeye.ncs \ newspellbookobjs\true_utr_brthcln.ncs \ newspellbookobjs\true_utr_brthrvy.ncs \ newspellbookobjs\true_utr_castlns.ncs \ newspellbookobjs\true_utr_confres.ncs \ newspellbookobjs\true_utr_congate.ncs \ newspellbookobjs\true_utr_defedge.ncs \ newspellbookobjs\true_utr_dnypas.ncs \ newspellbookobjs\true_utr_dnypasa.ncs \ newspellbookobjs\true_utr_dnypasb.ncs \ newspellbookobjs\true_utr_eldarct.ncs \ newspellbookobjs\true_utr_ennegt.ncs \ newspellbookobjs\true_utr_ennegtg.ncs \ newspellbookobjs\true_utr_envrtx.ncs \ newspellbookobjs\true_utr_envrtxa.ncs \ newspellbookobjs\true_utr_envrtxb.ncs \ newspellbookobjs\true_utr_esslife.ncs \ newspellbookobjs\true_utr_ethref.ncs \ newspellbookobjs\true_utr_fogvoda.ncs \ newspellbookobjs\true_utr_fogvodb.ncs \ newspellbookobjs\true_utr_fogvodc.ncs \ newspellbookobjs\true_utr_fogvoid.ncs \ newspellbookobjs\true_utr_fortify.ncs \ newspellbookobjs\true_utr_generic.ncs \ newspellbookobjs\true_utr_hdntrth.ncs \ newspellbookobjs\true_utr_inrtsrg.ncs \ newspellbookobjs\true_utr_keen.ncs \ newspellbookobjs\true_utr_knghtgr.ncs \ newspellbookobjs\true_utr_knghtps.ncs \ newspellbookobjs\true_utr_lorwrld.ncs \ newspellbookobjs\true_utr_magcont.ncs \ newspellbookobjs\true_utr_metacat.ncs \ newspellbookobjs\true_utr_mrlbst.ncs \ newspellbookobjs\true_utr_mstwnds.ncs \ newspellbookobjs\true_utr_mysrmp.ncs \ newspellbookobjs\true_utr_perunsn.ncs \ newspellbookobjs\true_utr_preclar.ncs \ newspellbookobjs\true_utr_rckmud.ncs \ newspellbookobjs\true_utr_rckmuda.ncs \ newspellbookobjs\true_utr_rckmudb.ncs \ newspellbookobjs\true_utr_rmvitm.ncs \ newspellbookobjs\true_utr_sezitem.ncs \ newspellbookobjs\true_utr_shckwv.ncs \ newspellbookobjs\true_utr_shldlnd.ncs \ newspellbookobjs\true_utr_sicastr.ncs \ newspellbookobjs\true_utr_sldlnda.ncs \ newspellbookobjs\true_utr_sldlndb.ncs \ newspellbookobjs\true_utr_slperth.ncs \ newspellbookobjs\true_utr_sngmnd.ncs \ newspellbookobjs\true_utr_snsfoc.ncs \ newspellbookobjs\true_utr_splrbth.ncs \ newspellbookobjs\true_utr_strkmi.ncs \ newspellbookobjs\true_utr_supitem.ncs \ newspellbookobjs\true_utr_supweap.ncs \ newspellbookobjs\true_utr_tmpsprl.ncs \ newspellbookobjs\true_utr_tmptwst.ncs \ newspellbookobjs\true_utr_tranwep.ncs \ newspellbookobjs\true_utr_trnlnd.ncs \ newspellbookobjs\true_utr_trnlnda.ncs \ newspellbookobjs\true_utr_trnlndb.ncs \ newspellbookobjs\true_utr_twrttrv.ncs \ newspellbookobjs\true_utr_uniapt.ncs \ newspellbookobjs\true_utr_visshrp.ncs \ newspellbookobjs\true_utr_wrdblst.ncs \ newspellbookobjs\true_utr_wrdntcr.ncs \ newspellbookobjs\true_utr_wrdntgr.ncs \ newspellbookobjs\true_utr_wrdntlr.ncs \ newspellbookobjs\true_utr_wrdntmd.ncs \ newspellbookobjs\true_utr_wrdntmi.ncs \ newspellbookobjs\true_utr_wrdntpo.ncs \ newspellbookobjs\true_utr_wrdpc.ncs \ newspellbookobjs\true_utr_zephyr.ncs \ newspellbookobjs\true_utr_zephyrg.ncs \ newspellbookobjs\true_utterconv.ncs OCFIXFILES= \ ocfixerf\m0q0_archery_2.nss \ ocfixerf\m0q0_chest_05_7.nss \ ocfixerf\M0Q0_INJURED_B.nss \ ocfixerf\m0q0_statue_06_9.nss \ ocfixerf\m0q01a04friesgk3.nss \ ocfixerf\m0q01a04guarsgk2.nss \ ocfixerf\M0Q01A04GUARSGK3.nss \ ocfixerf\m0q01a04guarsgk4.nss \ ocfixerf\m0q01a04guarsgk5.nss \ ocfixerf\m0q01a05herbsck3.nss \ ocfixerf\m0q01a05herbsck5.nss \ ocfixerf\m0q01a05herbsck6.nss \ ocfixerf\m0q01a06chansgk3.nss \ ocfixerf\m0q01a06jaroelc2.nss \ ocfixerf\m0q01a06jarosck3.nss \ ocfixerf\m0q01a06jarosck6.nss \ ocfixerf\M0Q01A07ANSESGK3.nss \ ocfixerf\M0Q01A07ELYNEGBa.nss \ ocfixerf\m0q01a07elynelc2.nss \ ocfixerf\M0Q01A07ELYNSCK3.nss \ ocfixerf\M0Q01A07ELYNSCK6.nss \ ocfixerf\M0Q01A07INJUEGB1.nss \ ocfixerf\m0q01a08kettsck3.nss \ ocfixerf\m0q01a08kettsck6.nss \ ocfixerf\m0q01a08kettsck8.nss \ ocfixerf\m0q01a08kettsgk1.nss \ ocfixerf\m0q01herbfight.nss \ ocfixerf\m1q0bdendclg01.nss \ ocfixerf\m1q0bdendy_5.nss \ ocfixerf\m1q0bolgred_item.nss \ ocfixerf\m1q0bteach_item.nss \ ocfixerf\m1q0dchest1.nss \ ocfixerf\m1q0dchest2.nss \ ocfixerf\m1q0dmage7.nss \ ocfixerf\m1q0dtoughgob7.nss \ ocfixerf\M1Q0EDest_D.nss \ ocfixerf\m1q1a03eltrclg01.nss \ ocfixerf\M1S3CMakeClay.nss \ ocfixerf\M1S3CMakeFog.nss \ ocfixerf\M1S3CMakeH2O.nss \ ocfixerf\M1S3CMakeWood.nss \ ocfixerf\nw_c2_bossdie.nss \ ocfixerf\nw_d2_arcane.nss \ ocfixerf\nw_o2_bookshelf.nss \ ocfixerf\nw_o2_boss.nss \ ocfixerf\nw_o2_classhig.nss \ ocfixerf\nw_o2_classlow.nss \ ocfixerf\nw_o2_classmed.nss \ ocfixerf\nw_o2_classweap.nss \ ocfixerf\nw_o2_feat.nss \ ocfixerf\nw_o2_generalhig.nss \ ocfixerf\nw_o2_generallow.nss \ ocfixerf\nw_o2_generalmed.nss \ ocfixerf\nw_o2_generalmid.nss \ ocfixerf\q2a_enter_rooms.nss \ ocfixerf\q4_kaboom.nss \ ocfixerf\q4_s0_acidfoga.nss \ ocfixerf\q4_s0_acidfogc.nss \ ocfixerf\q4_s0_bladebara.nss \ ocfixerf\q4_s0_bladebarc.nss \ ocfixerf\q4_s0_firewalla.nss \ ocfixerf\q4_s0_firewallc.nss \ ocfixerf\q4_s0_poisfoga.nss \ ocfixerf\q4_s0_poisfogb.nss \ ocfixerf\q4_s0_poisfogc.nss \ ocfixerf\q4a_statue_cut.nss \ ocfixerf\q5_s0_greasea.nss \ ocfixerf\q5_s0_greasec.nss \ ocfixerf\q6_shard.nss \ ocfixerf\q6f_s0_bladebara.nss \ ocfixerf\q6f_s0_bladebarc.nss \ ocfixerf\x2_acquired.nss OCFIXOBJS= \ ocfixerfobjs\m0q0_archery_2.ncs \ ocfixerfobjs\m0q0_chest_05_7.ncs \ ocfixerfobjs\M0Q0_INJURED_B.ncs \ ocfixerfobjs\m0q0_statue_06_9.ncs \ ocfixerfobjs\m0q01a04friesgk3.ncs \ ocfixerfobjs\m0q01a04guarsgk2.ncs \ ocfixerfobjs\M0Q01A04GUARSGK3.ncs \ ocfixerfobjs\m0q01a04guarsgk4.ncs \ ocfixerfobjs\m0q01a04guarsgk5.ncs \ ocfixerfobjs\m0q01a05herbsck3.ncs \ ocfixerfobjs\m0q01a05herbsck5.ncs \ ocfixerfobjs\m0q01a05herbsck6.ncs \ ocfixerfobjs\m0q01a06chansgk3.ncs \ ocfixerfobjs\m0q01a06jaroelc2.ncs \ ocfixerfobjs\m0q01a06jarosck3.ncs \ ocfixerfobjs\m0q01a06jarosck6.ncs \ ocfixerfobjs\M0Q01A07ANSESGK3.ncs \ ocfixerfobjs\M0Q01A07ELYNEGBa.ncs \ ocfixerfobjs\m0q01a07elynelc2.ncs \ ocfixerfobjs\M0Q01A07ELYNSCK3.ncs \ ocfixerfobjs\M0Q01A07ELYNSCK6.ncs \ ocfixerfobjs\M0Q01A07INJUEGB1.ncs \ ocfixerfobjs\m0q01a08kettsck3.ncs \ ocfixerfobjs\m0q01a08kettsck6.ncs \ ocfixerfobjs\m0q01a08kettsck8.ncs \ ocfixerfobjs\m0q01a08kettsgk1.ncs \ ocfixerfobjs\m0q01herbfight.ncs \ ocfixerfobjs\m1q0bdendclg01.ncs \ ocfixerfobjs\m1q0bdendy_5.ncs \ ocfixerfobjs\m1q0bolgred_item.ncs \ ocfixerfobjs\m1q0bteach_item.ncs \ ocfixerfobjs\m1q0dchest1.ncs \ ocfixerfobjs\m1q0dchest2.ncs \ ocfixerfobjs\m1q0dmage7.ncs \ ocfixerfobjs\m1q0dtoughgob7.ncs \ ocfixerfobjs\M1Q0EDest_D.ncs \ ocfixerfobjs\m1q1a03eltrclg01.ncs \ ocfixerfobjs\M1S3CMakeClay.ncs \ ocfixerfobjs\M1S3CMakeFog.ncs \ ocfixerfobjs\M1S3CMakeH2O.ncs \ ocfixerfobjs\M1S3CMakeWood.ncs \ ocfixerfobjs\nw_c2_bossdie.ncs \ ocfixerfobjs\nw_d2_arcane.ncs \ ocfixerfobjs\nw_o2_bookshelf.ncs \ ocfixerfobjs\nw_o2_boss.ncs \ ocfixerfobjs\nw_o2_classhig.ncs \ ocfixerfobjs\nw_o2_classlow.ncs \ ocfixerfobjs\nw_o2_classmed.ncs \ ocfixerfobjs\nw_o2_classweap.ncs \ ocfixerfobjs\nw_o2_feat.ncs \ ocfixerfobjs\nw_o2_generalhig.ncs \ ocfixerfobjs\nw_o2_generallow.ncs \ ocfixerfobjs\nw_o2_generalmed.ncs \ ocfixerfobjs\nw_o2_generalmid.ncs \ ocfixerfobjs\q2a_enter_rooms.ncs \ ocfixerfobjs\q4_kaboom.ncs \ ocfixerfobjs\q4_s0_acidfoga.ncs \ ocfixerfobjs\q4_s0_acidfogc.ncs \ ocfixerfobjs\q4_s0_bladebara.ncs \ ocfixerfobjs\q4_s0_bladebarc.ncs \ ocfixerfobjs\q4_s0_firewalla.ncs \ ocfixerfobjs\q4_s0_firewallc.ncs \ ocfixerfobjs\q4_s0_poisfoga.ncs \ ocfixerfobjs\q4_s0_poisfogb.ncs \ ocfixerfobjs\q4_s0_poisfogc.ncs \ ocfixerfobjs\q4a_statue_cut.ncs \ ocfixerfobjs\q5_s0_greasea.ncs \ ocfixerfobjs\q5_s0_greasec.ncs \ ocfixerfobjs\q6_shard.ncs \ ocfixerfobjs\q6f_s0_bladebara.ncs \ ocfixerfobjs\q6f_s0_bladebarc.ncs \ ocfixerfobjs\x2_acquired.ncs # # Top level virtual rules that just associate pretty text names with various # targets # # The top rule is the one run by default, we want to build the hak and install. all: hak # Rule to build the rar file. rar: hak $(RAR) #rar: hak database $(RAR) # Rule to build the 'hak' content and install it. hak110: $(ERF110) $(HAK) install # Rule to build the 2.0 haks hak: $(TLK) $(SCRIPTSHAK) $(2DASHAK) $(TEXTURESHAK) $(ERF) $(OCFIX_ERF) \ $(SPELLSHAK) $(EPICSPELLSCRIPTSHAK) $(RACEHAK) $(PSIONICSHAK) $(NEWSPELLBOOKHAK) \ $(MISCHAK) $(CRAFT2DASHAK) $(INCLUDEHAK) $(HIF) install # Rule to build the NSIS installer. nsis: @echo PRC$(PRC_VERSION).exe @$(NSISCOMPILER) /DPRCVERSION=$(PRC_VERSION) \ /DPRCINSTALLVERSION=$(PRC_INSTALLVERSION) /V1 $(INSTALLSCRIPT) ################################################################################# # Rules to install content in NWN begin here # Rule to install the hak content #install: installcontent installoverrides install: installcontent # Rule that does the real work to install the content (except overrides) # to the NWN install directory. installcontent: @echo Installing PRC files -@copy /y "$(HAK)" "$(NWN_HAK)" >nul -@copy /y "$(ERF)" "$(NWN_ERF)" >nul -@copy /y "$(INCLUDEHAK)" "$(NWN_HAK)" >nul -@copy /y "$(TLK)" "$(NWN_TLK)" >nul -@copy /y "$(SCRIPTSHAK)" "$(NWN_HAK)" >nul -@copy /y "$(SPELLSHAK)" "$(NWN_HAK)" >nul -@copy /y "$(2DASHAK)" "$(NWN_HAK)" >nul -@copy /y "$(MISCHAK)" "$(NWN_HAK)" >nul -@copy /y "$(TEXTURESHAK)" "$(NWN_HAK)" >nul -@copy /y "$(CRAFT2DASHAK)" "$(NWN_HAK)" >nul -@copy /y "$(EPICSPELLSCRIPTSHAK)" "$(NWN_HAK)" >nul -@copy /y "$(RACEHAK)" "$(NWN_HAK)" >nul -@copy /y "$(PSIONICSHAK)" "$(NWN_HAK)" >nul -@copy /y "$(NEWSPELLBOOKHAK)" "$(NWN_HAK)" >nul -@copy /y "$(OCFIX_ERF)" "$(NWN_ERF)" > nul -@copy /y $(HIF) "$(NWN_HAK)" >nul -@copy /y $(OCFIX_HIF) "$(NWN_HAK)" >nul # Rule to install all the override files. This one is a bit tricky, the '!' # operator tells nmake to run the rule once for each target, and $** will # expand to each target once, so this in effect copies every file in the # OVERRIDEFILES variable to NWN_OVERRIDE. installoverrides: $(OVERRIDEFILES) !@copy /y "$**" "$(NWN_OVERRIDE)" >nul # Rules to install content in NWN end here ################################################################################# # # Rules to build the final targets # # This rule builds the 2.0 RAR, commented out for now $(RAR): $(SCRIPTSHAK) $(MISCHAK) $(TEXTURESHAK) $(2DASHAK) $(ERF) $(OCFIX_ERF) \ $(OVERRIDEFILES) $(TLK) $(MISCRESOURCES) $(CRAFT2DASHAK) \ $(EPICSPELLSCRIPTSHAK) $(SPELLSHAK) $(RACEHAK) $(INCLUDEHAK) \ $(HIF) $(OCFIX_HIF) $(PSIONICSHAK) $(NEWSPELLBOOKHAK) \ $(MISCRESOURCES2) @echo $(@F) -@del "$@" 2>nul @"$(RARCOMPILER)" a -ep -inul $@ $** #$(DATABASEFILES) # Rule to build the ship RAR. #$(RAR): $(HAK) $(ERF110) $(OVERRIDEFILES) $(TLK) $(README) \ # $(MISCRESOURCES) # @echo $(@F) # -@del "$@" 2>nul # @"$(RARCOMPILER)" a -ep -inul $@ $** # Rule to build the ERF file. Currently script source and object files are # going here. #$(ERF110): $(OBJS) $(SCRIPTS) # @echo $(@F) # -@del "$@" 2>nul # @"$(ERFCOMPILER)" -c $@ $** database: # Delete the old files -@del "$(NWN_DATABASE)\PRC_DATA.CDX" 2>nul -@del "$(NWN_DATABASE)\PRC_DATA.DBF" 2>nul -@del "$(NWN_DATABASE)\PRC_DATA.FPT" 2>nul -@del precacherows.2da 2>nul # Create the precacheable 2das listing @$(PRCJAR) prec2dagen 2das # Copy it to nwn override @copy /Y precacherows.2da "$(NWN_OVERRIDE)" # Copy the precacher module to nwn modules directory @copy /Y tools\Precacher.mod "$(NWN_MODULES)" # Tell the user to run NWN and pause until they tell they have done so @echo Start up NWN, using the Precacher module. When in character selection @echo screen, leave NWN running in foreground. @echo It is recommended that you run NWN in windowed mode, as there will be @echo a message printed in this window when it is safe to terminate the NWN @echo process. @pause # Monitor the log @echo Monitoring NWN... @set NWN_DIR=$(NWN_DIR) @precachemonitorloop.bat # Monitor has finished, so we know that the DB has been written. Wait until user acknowledges @echo NWN has finished caching, so you can close it pause # Copy the DB files to CompiledResources @copy /Y "$(NWN_DATABASE)\PRC_DATA.CDX" $(OUTPATH) @copy /Y "$(NWN_DATABASE)\PRC_DATA.DBF" $(OUTPATH) @copy /Y "$(NWN_DATABASE)\PRC_DATA.FPT" $(OUTPATH) # Rule to update the scroll and scroll merchant files $(MISCPATH)\prc_scrolls.utm: $(2DAPATH)\des_crft_scroll.2da $(2DAPATH)\iprp_spells.2da $(2DAPATH)\spells.2da @echo Generating scrolls, scrollmerchant and updating des_crft_scroll.2da and des_crft_spells.2da -@mkdir scrolltemp 2>nul @$(PRCJAR) buildscrhack $(2DAPATH) $(TLKPATH) scrolltemp @REM Convert the scroll xml files to uti @java -cp .\tools\modpacker\lib\log4j.jar;.\tools\modpacker\lib\meta-jb-util.jar;.\tools\modpacker\lib\meta-jb-xml.jar;.\tools\modpacker\nwn-tools.jar org.progeeks.nwn.XmlToGff scrolltemp scrolltemp\*.uti.xml @REM Convert the merchant xml to utm @java -cp .\tools\modpacker\lib\log4j.jar;.\tools\modpacker\lib\meta-jb-util.jar;.\tools\modpacker\lib\meta-jb-xml.jar;.\tools\modpacker\nwn-tools.jar org.progeeks.nwn.XmlToGff . prc_scrolls.utm.xml @REM Move the files @move /y scrolltemp\prc_scr*.uti $(MISCPATH) 2>nul >nul @move /y prc_scrolls.utm $(MISCPATH) @REM Cleanup -@rmdir /s /q scrolltemp 2>nul -@del prc_scrolls.utm.xml 2>nul -@del System.out 2>nul # Rule to build the HAK file. $(HAK): $(2DAS) $(GFX) $(OTHERS) $(CRAFT2DAS) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $** # Rule to build the 2.0 ERF file. Only areas should be in here, they are # the only things that do not work in hak files. $(ERF): $(ERFFILES) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $** # Rule for the TLK $(TLK): $(TLKXML) @echo $(@F) -@del "$@" 2>nul @"$(XML2TLK)" $(TLKXML) $(TLK) # Rule to build the include ERF, containing the nss files in the include directory $(INCLUDEHAK): $(INCLUDE) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $** # Rule to build the 2.0 scripts HAK file. $(SCRIPTSHAK): $(OBJS) $(SCRIPTS) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $(SRCPATH)\*.nss @"$(ERFCOMPILER)" -u $@ $(OBJPATH)\*.ncs >nul # The old version. This one seems to have hit the command line too long problem. # @"$(ERFCOMPILER)" -c $@ $(SCRIPTS) # @"$(ERFCOMPILER)" -u $@ $(OBJS) >nul # # At some point we may need to use the below method to generate the hak # it will add the files to the hak one at a time to prevent command line # too long errors, but it runs orders of magnitude slower. # @"$(ERFCOMPILER)" -c $@ howto.txt >nul # !@"$(ERFCOMPILER)" -u $@ $** >nul $(SPELLSHAK): $(SPELLOBJS) $(SPELLS) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $(SPELLS) >nul @"$(ERFCOMPILER)" -u $@ $(SPELLOBJS) >nul # At some point we may need to use the below method to generate the hak # it will add the files to the hak one at a time to prevent command line # too long errors, but it runs orders of magnitude slower. # @"$(ERFCOMPILER)" -c $@ howto.txt >nul # !@"$(ERFCOMPILER)" -u $@ $** >nul # Rule to build the 2.0 scripts HAK file. $(EPICSPELLSCRIPTSHAK): $(EPICSPELLOBJS) $(EPICSPELLSCRIPTS) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $(EPICSPELLSCRIPTS) @"$(ERFCOMPILER)" -u $@ $(EPICSPELLOBJS) >nul # At some point we may need to use the below method to generate the hak # it will add the files to the hak one at a time to prevent command line # too long errors, but it runs orders of magnitude slower. # @"$(ERFCOMPILER)" -c $@ howto.txt >nul # !@"$(ERFCOMPILER)" -u $@ $** >nul # Rule to build the 2.0 scripts HAK file. $(RACEHAK): $(RACE2DAS) $(RACEOBJS) $(RACESCRIPTS) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $(RACE2DAS) @"$(ERFCOMPILER)" -u $@ $(RACESCRIPTS) >nul @"$(ERFCOMPILER)" -u $@ $(RACEOBJS) >nul # At some point we may need to use the below method to generate the hak # it will add the files to the hak one at a time to prevent command line # too long errors, but it runs orders of magnitude slower. # @"$(ERFCOMPILER)" -c $@ howto.txt >nul # !@"$(ERFCOMPILER)" -u $@ $** >nul # Rule to build the 2.0 scripts HAK file. $(PSIONICSHAK): $(PSIONICSSCRIPTS) $(PSIONICSOBJS) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $(PSIONICSSCRIPTS) @"$(ERFCOMPILER)" -u $@ $(PSIONICSOBJS) >nul # At some point we may need to use the below method to generate the hak # it will add the files to the hak one at a time to prevent command line # too long errors, but it runs orders of magnitude slower. # @"$(ERFCOMPILER)" -c $@ howto.txt >nul # !@"$(ERFCOMPILER)" -u $@ $** >nul # Rule to build the 2.0 scripts HAK file. $(NEWSPELLBOOKHAK): $(NEWSPELLBOOKSCRIPTS) $(NEWSPELLBOOKOBJS) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $(NEWSPELLBOOKSCRIPTS) @"$(ERFCOMPILER)" -u $@ $(NEWSPELLBOOKOBJS) >nul # At some point we may need to use the below method to generate the hak # it will add the files to the hak one at a time to prevent command line # too long errors, but it runs orders of magnitude slower. # @"$(ERFCOMPILER)" -c $@ howto.txt >nul # !@"$(ERFCOMPILER)" -u $@ $** >nul $(OCFIX_ERF): $(OCFIXOBJS) $(OCFIXFILES) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $(OCFIXERFPATH)\*.* @"$(ERFCOMPILER)" -u $@ $(OCFIXOBJS) >nul # Rule to build the 2.0 2das HAK file. $(2DASHAK): $(2DAS) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $** # Rule to build the 2.0 textures HAK file. $(TEXTURESHAK): $(GFX) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $(GFXPATH)\*.* # "$(ERFCOMPILER)" -c $@ $** # Rule to build the 2.0 misc HAK file. # Removed because it keeps breaking the compile $(MISCHAK): $(MISCPATH)\prc_scrolls.utm $(OTHERS) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $(MISCPATH)\*.* # Another hak that broke on too many parameters # @"$(ERFCOMPILER)" -c $@ $** # Rule to build the 2.0 craft HAK file. $(CRAFT2DASHAK): $(CRAFT2DAS) @echo $(@F) -@del "$@" 2>nul @"$(ERFCOMPILER)" -c $@ $** # Rule to build the HIF file from it's template. $(HIF): PRCPackTemplate.hif config.make @echo $(@F) @-del $@ 2>nul @type PRCPackTemplate.hif | $(SED) -R "s/XXXversionXXX/$(PRC_INSTALLVERSION)/" >$@ # # Rule to add makefile dependencies. This will run makedep to build the include # file dependencies for all source scripts files that get built to object files # (i.e. it ignores include scripts files). # depends: @echo Updating dependencies @$(PRCJAR) makedep -a -n -s$(NSSINCLUDE),$(SRCPATH),$(SPELLSRCPATH),$(EPICSPELLSRCPATH),$(RACESRCPATH),$(PSIONICSSRCPATH),$(NEWSPELLBOOKSRCPATH),$(OCFIXERFPATH) -o$(MAKEFILE) objs.temp spellobjs.temp epicspellobjs.temp raceobjs.temp psionicsobjs.temp newspellbookobjs.temp ocfixobjs.temp # @echo Start: %TIME% >> time.txt # @$(PRCJAR) makedep -a -n -s$(NSSINCLUDE),$(SRCPATH),$(SPELLSRCPATH),$(EPICSPELLSRCPATH),$(RACESRCPATH),$(PSIONICSSRCPATH),$(NEWSPELLBOOKSRCPATH) -o$(MAKEFILE) objs.temp spellobjs.temp epicspellobjs.temp raceobjs.temp psionicsobjs.temp newspellbookobjs.temp # @echo End: %TIME% >> time.txt # # @tools\makedep -a -w -n -l -s$(SRCPATH) -i$(NSSINCLUDE) -o$(MAKEFILE) $(OBJS) # @tools\makedep -a -w -n -l -s$(SPELLSRCPATH) -i$(NSSINCLUDE) -o$(MAKEFILE) $(SPELLOBJS) # @tools\makedep -a -w -n -l -s$(EPICSPELLSRCPATH) -i$(NSSINCLUDE) -o$(MAKEFILE) $(EPICSPELLOBJS) # @tools\makedep -a -w -n -l -s$(RACESRCPATH) -i$(NSSINCLUDE) -o$(MAKEFILE) $(RACEOBJS) # @tools\makedep -a -w -n -l -s$(PSIONICSSRCPATH) -i$(NSSINCLUDE) -o$(MAKEFILE) $(PSIONICSOBJS) # @tools\makedep -a -w -n -l -s$(NEWSPELLBOOKSRCPATH) -i$(NSSINCLUDE) -o$(MAKEFILE) $(NEWSPELLBOOKOBJS) # The code below will compile scripts by copying them to the TEMPPATH and doing the # compile there. This can be used along with an include directory to get all scripts # to use the shared include files. These lines need to replace the 2 compile lines # (the lines after the echo) in each of the inference rules below. # @copy /y "$(MAKEDIR)\$<" "$(MAKEDIR)\$(TEMPPATH)" # @"$(NSSCOMPILER)" "$(MAKEDIR)\$(TEMPPATH)\$(nul # -@del "$(MAKEDIR)\$(TEMPPATH)\$(nul # -@del "$(MAKEDIR)\$(@R).ndb" 2>nul # Inference rule to compile scripts. {$(SRCPATH)\}.nss{$(OBJPATH)\}.ncs: @echo $(