diff --git a/README.md b/README.md index 331774f2..68aaf895 100644 --- a/README.md +++ b/README.md @@ -1,40 +1,104 @@ -Natural Selection LINUX Build -============================================ +# Natural Selection v3.2.1a +This is a complete rebuild of the game [Natural Selection] for Windows and Linux. After the SteamPipe update the game remained in an pretty bad state for years, therefore I decided to recompile its sources which are provided by [Unknownworlds Entertainment]. With this update this might be the first half-life mod which achieves multi-platform support. Speaking of this you are encouraged to compile for Mac OS X. The ultimate goal is to provide a better expierence of the Natural Selection gameplay on all major platforms and a possible distribution in the future through [Steam]. -Just hacked up, you will notice a lot of odd behavior. +### Downloads +Here you find the new compiled `.dlls` or `.so` files for client and server. If you just want to play or to host a server you can download them here: +- [ns_patch_v321a.7z] -In order to compile: `cd main/source/linux` and type `make hl_cdll &> out.log` with g++-multilib and the following additional libraries: -- zlib1g-dev:i386 -- libpng12-dev:i386 -- libc6-dev:i386 +Remember to extract them to your Half-Life/ns directory. -installed. +The offical download url for the complete version ns v3.2 is not working with firefox. Either use: +```sh +$ wget http://www.unknownworlds.com/files/ns/ns_install_v32.exe +``` +or +```sh +$ curl -LO http://www.unknownworlds.com/files/ns/ns_install_v32.exe +``` +or follow this link http://sllegacy.unknownworlds.com/files/ns/ns_install_v32.exe +### Changes +In order to make this game work for linux the old half-life engine files were replaced with the newer ones. In addtion some changes are accounted for the use of an acient glibc library. Some changes to the game itself have been made and these include: +- The ChatPanel has been replaced in favor of the old hl chat. +- The observatory has now a spherical detection like the sensory chamber +- Removed special NS gamma since it is windows only -- The particle engine (David McAllister) +The plan is to bring the chat and the gamma back when a cross-platfrom solution can be achieved. -If you get the this error when running the app: Fatal Error - could not load library (client.so), -With a high chance it is because of some UNDEFINED SYMBOLS in the shared library. -But you can check this with `ldd -r -d client.so`. +### Bugs +With great changes come great bugs. +- Chat input is not visible while spectating +- [sg reload bug] +- [FPS_Effects] FPS dependant fire rates and player physics +- gorge's view rotates when he drops a structure from the popup menu? +- The background of text in the menu or in popups does not look nice possible realted to the `special ns gamma`. +- Flashing available alien upgrade icons (defense, movement and sensory) tend to disappear when a player dies and respawns. The icons won't appear until the alien chooses an upgrade. +- func_train and func_tracktrain entities don't reset to their original positions when a round has ended +- windows server works only with the hlds tool + +If you find more please report them! +### Compile + +First you will need to get the files: +```sh +$ git clone https://github.com/fmoraw/NS.git +``` + +Then goto `NS/main/source/linux` and use `make hl_cll` for the client and `make ns` for the server. + +Make sure you have `g++-multilib` set up for x64 operating systems. For windows compilation should be working if you have VS2010 installed. + +If you get the this error when running the app: `Fatal Error - could not load library (client.so)`, With a high chance it is because of some `UNDEFINED SYMBOLS` in the shared library. But you can check this with this command: +``` sh +$ ldd -r -d client.so +``` If you want to debug: -- `LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH" gdb ./hl_linux` -- `r -game ns -dev -steam` +```sh +$ LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH" gdb ./hl_linux r -game ns -dev -steam +``` +Due to the new engine and the nature of Linux I had to make a lot of changes! You can find them with grep -Ril `@Linux`. + +### Hosting a server +Since servers are really rare at this point in time here is a tutorial how to set up an [Natural Selection] server with [hlds]. + +1. Follow these steps: https://developer.valvesoftware.com/wiki/SteamCMD +2. Copy the [Natural Selection] directory to steamcmd/servers/ +3. Run the game : +```sh +$ ./hlds_run -game ns -autoupdate +map ns_eclipse + sv_secure 1 + port 27015 + ip 127.0.0.1 +hostname "Natural Selection" +maxplayers 32 +``` + +If you are behind a NAT(Router) make sure to open at least those ports: +- 27015 UDP (game transmission, pings) +- 26900 UDP (VAC service) -- automatically increments if used in case of additional server processes + +`Under no circumstances expose your host to the internet!!!` For more information follow [this link](https://developer.valvesoftware.com/wiki/Half-Life_Dedicated_Server). + +In order to check if you server is connected to the steam servers copy the following url in your browser and replace `` with your external ip: +`http://api.steampowered.com/ISteamApps/GetServersAtAddress/v0001?addr=&format=json` + +There is an updated version of metamod called [metamodp](http://metamod-p.sourceforge.net/). Since players are also pretty rare you might want to install [rcbot] and therefore you have to download those files: + - [rcbot without dlls](http://filebase.bots-united.com/index.php?act=download&id=210) + - [rcbot linux dlls](http://filebase.bots-united.com/index.php?act=download&id=428) + +### Usefull links +* [Usefull collection of ns files server addons, maps and erverything ](http://www.brywright.co.uk/downloads/files/index.php?dir=natural-selection/) +* [Great collection of ns guides/tutorials](http://www.naturalns.clanservers.com/forums/index.php?topic=5.0) +* [rcbot downloads](http://filebase.bots-united.com/index.php?act=category&id=19) +* [dillinger.io markdown editor](http://dillinger.io/) + + [Natural Selection]: + [Unknownworlds Entertainment]: + [ns_patch_v321a.7z]: + [FPS_Effects]: + [Steam]: + [sg reload bug]: + [hlds]: + [rcbot]: -Due to the new engine and the nature of Linux I had to make a lot of changes! You can find them with `grep -Ril "@Linux"`. +Many thanks to GiGaBiTe. -List of (new) Bugs - -1. FMOD doesn't load -2. play random song needs to be reimplemented for linux -3. Commander Overview: Camera needs to be fixed -4. Hud: Odd behavior of the displayed models -5. Mouse rotation is locked to a specific angle -6. NS had some special Gamma functions(many WIN func calls), so I removed them :-) --> Always standard gamma (BUG?) -7. Fonts: ns/gfx/vgui/fonts High resolution fonts missing - - -The server still needs some work (Segmentation fault)! But it can be compiled: `make ns` Half Life 1 SDK LICENSE ======================= diff --git a/main/Balance.txt b/main/Balance.txt deleted file mode 100644 index ac60bbdb..00000000 --- a/main/Balance.txt +++ /dev/null @@ -1,471 +0,0 @@ -// Automatically generated file. Last created 02/07/05, 23:08:45. - -// Integer data -#define kAcidRocketDamage 25 -#define kAcidRocketRadius 165 -#define kActiveNodesMessageUpdateTime 0 -#define kAdvArmoryHealth 4000 -#define kAlienCelerityBonus 25 -#define kAlienChamberMaxPlayers 3 -#define kAlienFlashlightRange 200 -#define kAlienResourceTowerBuildTime 20 -#define kAlienResourceTowerCost 15 -#define kAlienResourceTowerHealth 2500 -#define kAlienResourceTowerSoundDelayTime 60 -#define kAlienRespawnPlayerModifier 6 -#define kAlienRespawnTime 7 -#define kAmmoCost 1 -#define kArmorDropRange 300 -#define kArmorOneResearchCost 20 -#define kArmorOneResearchTime 60 -#define kArmorThreeResearchCost 40 -#define kArmorThreeResearchTime 120 -#define kArmorTwoResearchCost 30 -#define kArmorTwoResearchTime 90 -#define kArmoryBuildDistance 300 -#define kArmoryBuildTime 15 -#define kArmoryCost 10 -#define kArmoryHealth 2400 -#define kArmoryUpgradeCost 30 -#define kArmoryUpgradeTime 160 -#define kArmsLabBuildTime 19 -#define kArmsLabCost 20 -#define kArmsLabHealth 2200 -#define kBalanceAverageTeamSize 6 -#define kBalanceFuncResourceTime 15 -#define kBalanceHiveDistance 2500 -#define kBalanceNodeDistance 1200 -#define kBalanceNumGorges 1 -#define kBasePlayerSpeed 150 -#define kBileBombDamage 200 -#define kBileBombRadius 200 -#define kBite2Damage 60 -#define kBiteDamage 75 -#define kBiteRange 60 -#define kBuildingVisibilityRadius 1000 -#define kCatalystCost 3 -#define kCatalystDuration 8 -#define kCatalystResearchCost 20 -#define kCatalystResearchTime 40 -#define kChargeDamage 320 -#define kClawsDamage 90 -#define kCombatBaseExperience 100 -#define kCombatBaseRespawnTime 5 -#define kCombatExperienceBaseAward 60 -#define kCombatExperienceCrowdAward 10 -#define kCombatExperienceLevelAward 10 -#define kCombatFriendlyNearbyRange 500 -#define kCombatLevelHealthIncrease 0 -#define kCombatLevelSpeedIncrease 10 -#define kCombatLevelupArmorIncreasePercent 0 -#define kCombatLevelupHealthIncreasePercent 0 -#define kCombatMaxPlayersPerWave 5 -#define kCombatObjectiveExperienceScalar 600 -#define kCombatRespawnScalar 9 -#define kCombatSpawnClips 2 -#define kCombatThresholdRespawnTime 3 -#define kCombatThresholdTeamSize 8 -#define kCombatTimeLimit 300 -#define kCombatWeaponStayTime 0 -#define kCommandStationBuildDistance 400 -#define kCommandStationBuildTime 15 -#define kCommandStationCost 20 -#define kCommandStationHealth 10000 -#define kCommandStationReuseTime 5 -#define kCommanderPlayerSpeed 4000 -#define kCustomIconColorLength 3 -#define kCustomIconNameLength 5 -#define kDebugAnimations 0 -#define kDebugServerCaching 1 -#define kDebugShowEntityLog 1 -#define kDefenseChamberBuildTime 20 -#define kDefenseChamberCost 10 -#define kDefenseChamberHealth 1200 -#define kDefenseChamberThinkInterval 2 -#define kDefensiveChamberHealRange 400 -#define kDefensiveChamberRegenAmount 10 -#define kDefensiveChamberRegenPercent 1 -#define kDevourDamage 3 -#define kDevourRange 100 -#define kDistressBeaconCost 15 -#define kDistressBeaconRange 600 -#define kDistressBeaconTime 3 -#define kDivineWindDamage 200 -#define kDivineWindRadius 500 -#define kElectricalDamage 20 -#define kElectricalMaxTargets 2 -#define kElectricalRange 200 -#define kElectricalUpgradeResearchCost 30 -#define kElectricalUpgradeResearchTime 30 -#define kEnsnareTime 2 -#define kEvolutionCost 0 -#define kEvolutionGestateTime 3 -#define kFadeArmorUpgrade 100 -#define kFadeBaseArmor 150 -#define kFadeBaseSpeed 240 -#define kFadeCost 50 -#define kFadeGestateTime 25 -#define kFadeHealth 300 -#define kFootstepFadeScalar 1300 -#define kFootstepGorgeScalar 500 -#define kFootstepHeavyScalar 1020 -#define kFootstepLerkScalar 1000 -#define kFootstepMarineScalar 800 -#define kFootstepOnosScalar 1200 -#define kFootstepSkulkScalar 800 -#define kFuncResourceInjectionAmount 1 -#define kFuncResourceInjectionTime 4 -#define kGGMaxAmmo 30 -#define kGGMaxClip 4 -#define kGameDownloadSize 150 -#define kGameHDSpaceNeeded 300 -#define kGameVersionMajor 3 -#define kGameVersionMinor 2 -#define kGameVersionRevision 0 -#define kGestateBaseArmor 150 -#define kGestateHealth 200 -#define kGorgeArmorUpgrade 50 -#define kGorgeBaseArmor 70 -#define kGorgeBaseSpeed 170 -#define kGorgeCost 10 -#define kGorgeGestateTime 10 -#define kGorgeHealth 150 -#define kGrenDetonateTime 2 -#define kGrenadeDamage 125 -#define kGrenadeForce 800 -#define kGrenadeLauncherCost 15 -#define kGrenadeRadius 350 -#define kGrenadesResearchCost 10 -#define kGrenadesResearchTime 45 -#define kHandGrenDetonateTime 0.75 -#define kHGDamage 20 -#define kHGMaxAmmo 30 -#define kHGMaxClip 10 -#define kHMGCost 15 -#define kHMGDamage 20 -#define kHMGMaxAmmo 250 -#define kHMGMaxClip 125 -#define kHandGrenadeDamage 80 -#define kHandGrenadeMaxAmmo 2 -#define kHealingSprayBuildableScalar 5 -#define kHealingSprayDamage 13 -#define kHealingSprayPlayerPercent 4 -#define kHealthCost 2 -#define kHealthResearchCost 15 -#define kHealthResearchTime 20 -#define kHeavyArmorAbsorbPercent 95 -#define kHeavyArmorCost 15 -#define kHeavyArmorResearchCost 40 -#define kHeavyArmorResearchTime 110 -#define kHiveBuildTime 180 -#define kHiveCost 40 -#define kHiveHealRadius 500 -#define kHiveHealth 7000 -#define kHiveRegenerationAmount 2 -#define kHiveSightRange 3000 -#define kInfantryPortalBuildTime 10 -#define kInfantryPortalCost 20 -#define kInfantryPortalHealth 2500 -#define kJetpackCost 10 -#define kJetpacksResearchCost 45 -#define kJetpacksResearchTime 75 -#define kKNDamage 30 -#define kKillRewardMax 3 -#define kKillRewardMin 1 -#define kLeapDamage 80 -#define kLerkArmorUpgrade 30 -#define kLerkBaseArmor 30 -#define kLerkBaseSpeed 175 -#define kLerkCost 30 -#define kLerkGestateTime 15 -#define kLerkHealth 125 -#define kMGDamage 10 -#define kMGMaxAmmo 250 -#define kMGMaxClip 50 -#define kMarineArmorUpgrade 60 -#define kMarineBaseArmor 30 -#define kMarineBaseHeavyArmor 200 -#define kMarineHealth 100 -#define kMarineHeavyArmorUpgrade 90 -#define kMarineRespawnTime 10 -#define kMarineSpawnClips 2 -#define kMaxEnsnareTime 5 -#define kMaxMarineEntitiesAllowedInRadius 50 -#define kMaxTeamStrands 30 -#define kMetabolizeHealAmount 20 -#define kMetabolizeResourceCost 0 -#define kMineCost 10 -#define kMineDamage 125 -#define kMineHealth 20 -#define kMineMaxAmmo 4 -#define kMineMaxAmmoCombat 1 -#define kMineRadius 300 -#define kMotionTrackingResearchCost 35 -#define kMotionTrackingResearchTime 100 -#define kMovementChamberBuildTime 12 -#define kMovementChamberCost 10 -#define kMovementChamberEnergyRange 500 -#define kMovementChamberHealth 1000 -#define kMovementChamberThinkInterval 2 -#define kNumInitialAlienPoints 25 -#define kNumInitialMarinePoints 100 -#define kNumSameAlienStructuresAllowedInRadius 8 -#define kNumWebsAllowedInRadius 8 -#define kObservatoryBuildTime 15 -#define kObservatoryCost 15 -#define kObservatoryHealth 1700 -#define kObservatoryXYDetectionRadius 900 -#define kOffenseChamberBuildTime 11 -#define kOffenseChamberCost 10 -#define kOffenseChamberDamage 20 -#define kOffenseChamberHealth 1000 -#define kOnosArmorUpgrade 350 -#define kOnosBaseArmor 600 -#define kOnosBaseSpeed 240 -#define kOnosCost 75 -#define kOnosGestateTime 35 -#define kOnosHealth 700 -#define kOrganicStructureHealRate 5 -#define kParasiteDamage 10 -#define kPhaseGateBuildTime 12 -#define kPhaseGateCost 15 -#define kPhaseGateHealth 3000 -#define kPhaseTechResearchCost 15 -#define kPhaseTechResearchTime 45 -#define kPheromonesBaseDistance 500 -#define kPheromonesLevelDistance 200 -#define kPointsPerHealth 50 -#define kPointsPerArmouryHealth 10 -#define kPrimalScreamRange 500 -#define kPrototypeLabBuildTime 20 -#define kPrototypeLabCost 40 -#define kPrototypeLabHealth 4000 -#define kRecycleTime 20 -#define kResourceTowerActivateTime 2 -#define kResourceTowerBuildDistanceTolerance 250 -#define kResourceTowerBuildTime 15 -#define kResourceTowerCost 15 -#define kResourceTowerHealth 6000 -#define kSGBulletsPerShot 10 -#define kSGDamage 17 -#define kSGMaxAmmo 40 -#define kSGMaxClip 8 -#define kScanDuration 10 -#define kScanEnergyCost 20 -#define kScanRadius 800 -#define kScentOfFearRadiusPerLevel 600 -#define kScoringAlienUpgradeChamberValue 2 -#define kScoringCCValue 5 -#define kScoringHiveValue 8 -#define kScoringKillPlayer 1 -#define kScoringKillPlayerFade 4 -#define kScoringKillPlayerGorge 2 -#define kScoringKillPlayerHA 4 -#define kScoringKillPlayerJetpack 3 -#define kScoringKillPlayerLerk 3 -#define kScoringKillPlayerOnos 5 -#define kScoringMarineBuildableValue 2 -#define kScoringResourceTowerValue 3 -#define kScoringSiegeValue 3 -#define kScoringTurretValue 2 -#define kSensoryChamberBuildTime 14 -#define kSensoryChamberCost 10 -#define kSensoryChamberHealth 800 -#define kSensoryChamberRange 750 -#define kSentryBuildTime 7 -#define kSentryCost 10 -#define kSentryDamage 10 -#define kSentryHealth 1300 -#define kShotgunCost 10 -#define kSiegeBuildTime 10 -#define kSiegeCost 15 -#define kSiegeDamage 400 -#define kSiegeHealth 2000 -#define kSiegeROF 4 -#define kSiegeTurretRange 1100 -#define kSkulkArmorUpgrade 20 -#define kSkulkBaseArmor 10 -#define kSkulkBaseSpeed 290 -#define kSkulkCost 0 -#define kSkulkGestateTime 3 -#define kSkulkHealth 70 -#define kSpikeDamage 16 -#define kSpitGDamage 30 -#define kSporeCloudRadius 225 -#define kSporeCloudTime 6 -#define kSporeDamage 7 -#define kStompRadius 250 -#define kSwipeDamage 80 -#define kTurretFactoryBuildDistance 400 -#define kTurretFactoryBuildTime 13 -#define kTurretFactoryCost 10 -#define kTurretFactoryHealth 3000 -#define kTurretFactoryUpgradeCost 15 -#define kTurretFactoryUpgradeTime 15 -#define kTurretRange 800 -#define kUmbraCloudDuration 3 -#define kUmbraCloudRadius 225 -#define kUmbraEffectiveness 1 -#define kUnencumberedPlayerSpeed 220 -#define kWeaponStayTime 30 -#define kWeaponsOneResearchCost 20 -#define kWeaponsOneResearchTime 60 -#define kWeaponsThreeResearchCost 40 -#define kWeaponsThreeResearchTime 120 -#define kWeaponsTwoResearchCost 30 -#define kWeaponsTwoResearchTime 90 -#define kWelderCost 5 -#define kWelderDamage 4 -#define kWelderRange 90 -#define kWelderRepairRate 60 - -// Float data (up to three decimal places) -#define kAcidRocketEnergyCost 0.10 -#define kAcidRocketForceScalar 0.05 -#define kAcidRocketROF 1.00 -#define kAdrenalineEnergyPercentPerLevel 0.33 -#define kAirspeedMultiplier 3.00 -#define kAlertExpireTime 20.00 -#define kAlienArmorLevelOne 0.20 -#define kAlienArmorLevelThree 0.60 -#define kAlienArmorLevelTwo 0.40 -#define kAlienEnergyRate 0.08 -#define kAlienInnateRegenerationPercentage 0.02 -#define kAlienRegenerationPercentage 0.03 -#define kAlienRegenerationTime 2.00 -#define kAlienRespawnTimeModifier 0.30 -#define kArmorAbsorptionBase 0.30 -#define kArmorAbsorptionPerExtraHive 0.10 -#define kArmorValueBase 0.50 -#define kArmorValueNonAlien 2.00 -#define kArmorValuePerHive 0.50 -#define kAudioAlertInterval 6.00 -#define kBileBombEnergyCost 0.22 -#define kBileBombROF 1.50 -#define kBite2EnergyCost 0.05 -#define kBite2ROF 0.64 -#define kBiteEnergyCost 0.05 -#define kBiteROF 0.80 -#define kBlinkEnergyCost 0.04 -#define kBlinkROF 0.05 -#define kCarapaceSlowFactor 0.00 -#define kCatalystDamagePercent 0.25 -#define kCatalystROFFactor 0.25 -#define kCatalystSpeedIncrease 0.25 -#define kChargeEnergyCost 0.15 -#define kChargeMaxPushbackSpeedFactor 2.50 -#define kChargeMaxPushbackForce 100.0 -#define kChargePushbackRadius 100.0 -#define kChargeSpeed 1.00 -#define kChargeThresholdTime 0.75 -#define kChargingEnergyScalar 2.80 -#define kClawsEnergyCost 0.07 -#define kClawsROF 0.90 -#define kCloakTime 6.00 -#define kCombatAdditiveRespawnTime 2.00 -#define kCombatDistressBeaconDeadPercentage 0.70 -#define kCombatExperienceAlienGrowthRate 0.00 -#define kCombatHealExperienceScalar 0.33 -#define kCombatIronManExperienceScalar 3.00 -#define kCombatLevelExperienceModifier 0.50 -#define kCombatModeGestationTimeScalar 0.40 -#define kCombatModeTimeScalar 0.20 -#define kCombatResupplyAmmoPercentage 0.40 -#define kCombatResupplyHealthPercentage 1.00 -#define kCombatSpawnPercentage 0.25 -#define kCombatThinkInterval 3.00 -#define kDebugPVSCoherencyTime 1.00 -#define kDevourEnergyCost 0.20 -#define kDevourROF 2.00 -#define kDigestingSpeedFactor 0.90 -#define kDivineWindEnergyCost 0.70 -#define kDivineWindROF 2.00 -#define kDrawAmount 1.00 -#define kDrawMaxInterval 5.00 -#define kDrawMinInterval 2.00 -#define kElectricalEnergyLoss 0.33 -#define kEnsnareMaximumSpeedFactor 0.60 -#define kEnsnareMinimumSpeedFactor 0.10 -#define kExplodeMaxVerticalSpeed 200 -#define kExplodeMaxHorisontalSpeed 400 -#define kFocusDamageUpgradePercentPerLevel 0.33 -#define kFocusROFPercentSlowdownPerLevel 0.50 -#define kGGROF 1.20 -#define kGrenadeLauncherBaseReloadTime 1.10 -#define kGrenadeLauncherEndReloadTime 1.10 -#define kGrenadeLauncherGrenadeReloadTime 1.10 -#define kHGROF 0.20 -#define kHMGROF 0.10 -#define kHandGrenadePrimeTime 0.00 -#define kHealingSprayEnergyCost 0.15 -#define kHealingSprayROF 1.60 -#define kHeavySpeedMultiplier 0.95 -#define kHiveRegenerationPercentage 0.15 -#define kJetpackSpeedMultiplier 0.95 -#define kJoinTeamCooldown 3.00 -#define kKNROF 0.65 -#define kLeapEnergyCost 0.25 -#define kLerkBaseSpeedMax 650.0 -#define kLeapROF 0.50 -#define kMGROF 0.10 -#define kMarineArmorLevelOne 0.20 -#define kMarineArmorLevelThree 0.60 -#define kMarineArmorLevelTwo 0.40 -#define kMetabolizeDamageEnergyFactor 0.50 -#define kMetabolizeEnergyAmount 0.35 -#define kMetabolizeEnergyCost 0.25 -#define kMetabolizeROF 2.90 -#define kMetabolizeSpeedFactor 1.00 -#define kMinMarineBuildDistance 60.00 -#define kMinMarinePlayerBuildDistance 16.50 -#define kMovementChamberEnergyAmount 0.25 -#define kOrderIconDrawSize 30.00 -#define kParasiteEnergyCost 0.30 -#define kParasiteROF 0.50 -#define kPhaseGateDelay 2.00 -#define kPhaseGateDepartureInterval 0.50 -#define kPrimalScreamDamageModifier 0.30 -#define kPrimalScreamDuration 4.00 -#define kPrimalScreamEnergyCost 0.45 -#define kPrimalScreamEnergyFactor 0.60 -#define kPrimalScreamROF 5.00 -#define kPrimalScreamROFFactor 0.30 -#define kRecycleResourcePercentage 0.50 -#define kRecloakTime 3.0f -#define kRedemptionChance 0.45 -#define kRedemptionThreshold 0.40 -#define kReinforcementMinimumWaitLevelScalar 0.20 -#define kReinforcementMinimumWaitScalar 0.50 -#define kResupplyTime 0.90 -#define kSGROF 1.30 -#define kShotgunDamageRange 500.00 -#define kSilenceLevel1Volume 0.50 -#define kSilenceLevel2Volume 0.15 -#define kSilenceLevel3Volume 0.00 -#define kSpikeEnergyCost 0.03 -#define kSpikeROF 0.40 -#define kSpitEnergyCost 0.12 -#define kSpitROF 0.80 -#define kSporeCloudThinkInterval 0.50 -#define kSporeROF 2.00 -#define kSporesEnergyCost 0.35 -#define kStompEnergyCost 0.30 -#define kStompROF 1.50 -#define kStompTime 1.00 -#define kSwipeEnergyCost 0.06 -#define kSwipeROF 0.95 -#define kTouchDamageInterval 0.05 -#define kTurretBaseRateOfFire 0.70 -#define kTurretTrackingRate 1.60 -#define kUmbraEnergyCost 0.30 -#define kUmbraROF 1.00 -#define kUncloakTime 0.50 -#define kWeaponDamageLevelOne 0.10 -#define kWeaponDamageLevelThree 0.30 -#define kWeaponDamageLevelTwo 0.20 -#define kWebEnergyCost 0.18 -#define kWebWarmupTime 1.5 -#define kWebSpinnerROF 0.50 -#define kWelderBuildingModifier 1.00 -#define kWelderPlayerModifier 0.50 -#define kWelderROF 0.40 diff --git a/main/backupserversrc.bat b/main/backupserversrc.bat deleted file mode 100644 index f2b5d900..00000000 --- a/main/backupserversrc.bat +++ /dev/null @@ -1,3 +0,0 @@ -@echo off (subdirs, prompt for password <-s>, date) -c:\"program files"\Winzip\wzzip.exe -P -s -r -ex NS-server-src.zip @assets-shared-source.txt @assets-server-source.txt -x@assets-ignore-source.txt - diff --git a/main/backupsrc.bat b/main/backupsrc.bat deleted file mode 100644 index e5fb760f..00000000 --- a/main/backupsrc.bat +++ /dev/null @@ -1,4 +0,0 @@ -@echo off (subdirs, prompt for password <-s>, date) -REM c:\"program files"\Winzip\wzzip.exe -p -r -s -ex NS-src.zip @SourceAssets.txt -c:\"program files"\Winzip\wzzip.exe -P -r -s -ex NS-full-src.zip @assets-client-source.txt @assets-shared-source.txt @assets-server-source.txt -x@assets-ignore-source.txt - diff --git a/main/builddiff.bat b/main/builddiff.bat deleted file mode 100644 index 7db23162..00000000 --- a/main/builddiff.bat +++ /dev/null @@ -1,2 +0,0 @@ -@echo off (subdirs, prompt for password <-s>, date) -c:\"Program Files"\Winzip\wzzip.exe -P -r -ex -t100105 NS-diff.zip @assets-common.txt @assets-maps.txt diff --git a/main/buildfull.bat b/main/buildfull.bat deleted file mode 100644 index 1966a0a9..00000000 --- a/main/buildfull.bat +++ /dev/null @@ -1,2 +0,0 @@ -@echo off (subdirs, prompt for password <-s>, date) -c:\"program files"\Winzip\wzzip.exe -P -r -ex NS-full.zip @assets-common.txt @assets-maps.txt \ No newline at end of file diff --git a/main/buildfullserver.bat b/main/buildfullserver.bat deleted file mode 100644 index e9bfb4e5..00000000 --- a/main/buildfullserver.bat +++ /dev/null @@ -1,3 +0,0 @@ -@echo off (subdirs, prompt for password <-s>, date) -c:\"program files"\Winzip\wzzip.exe -P -r -ex NS-full-server.zip @assets-server.txt @assets-ns_agora.txt @assets-ns_ayumi.txt @assets-ns_caged.txt @assets-ns_eclipse.txt @assets-ns_hera.txt @assets-ns_lost.txt @assets-ns_metal.txt @assets-ns_mineshaft.txt @assets-ns_nancy.txt @assets-ns_nothing.txt @assets-ns_origin.txt @assets-ns_tanith.txt @assets-ns_veil.txt @assets-combat.txt -move NS-full-server.zip c:\download diff --git a/main/desktop.ini b/main/desktop.ini new file mode 100644 index 00000000..bb9f3d69 --- /dev/null +++ b/main/desktop.ini @@ -0,0 +1,4 @@ +[ViewState] +Mode= +Vid= +FolderType=Generic diff --git a/main/liblist.gam b/main/liblist.gam index a8bc66ce..c4ccd189 100644 --- a/main/liblist.gam +++ b/main/liblist.gam @@ -8,7 +8,7 @@ url_dl "http://www.natural-selection.org/" version "v3.0" size "165000000" svonly "0" -secure "0" +secure "1" cldll "cl_dlls\client.dll" hlversion "1110" // How to allow training but disable "New game"? diff --git a/main/source/HPB_bot/dlls/current_linux_makefile b/main/source/HPB_bot/dlls/make similarity index 92% rename from main/source/HPB_bot/dlls/current_linux_makefile rename to main/source/HPB_bot/dlls/make index 3be8a029..436504db 100644 --- a/main/source/HPB_bot/dlls/current_linux_makefile +++ b/main/source/HPB_bot/dlls/make @@ -5,7 +5,7 @@ # # the following specifies the path to your MOD... -MOD_DIR = /usr/local/games/Half-life/hlds_l/ns +MOD_DIR = ../ CPP = egcs diff --git a/main/source/Makefile b/main/source/Makefile deleted file mode 100644 index f1ff64b6..00000000 --- a/main/source/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Builds all the projects in the solution... -.PHONY: all_projects -all_projects: cl_dll.dll ns.dll - -# Builds project 'cl_dll.dll'... -.PHONY: cl_dll.dll -cl_dll.dll: - make --directory="cl_dll/" --file=cl_dll.dll.makefile - -# Builds project 'ns.dll'... -.PHONY: ns.dll -ns.dll: - make --directory="dlls/" --file=ns.dll.makefile - -# Cleans all projects... -.PHONY: clean -clean: - make --directory="cl_dll/" --file=cl_dll.dll.makefile clean - make --directory="dlls/" --file=ns.dll.makefile clean - diff --git a/main/source/cl_dll/Playtest/cl_dll.dll.lastbuildstate b/main/source/cl_dll/Playtest/cl_dll.dll.lastbuildstate deleted file mode 100644 index e2362f57..00000000 --- a/main/source/cl_dll/Playtest/cl_dll.dll.lastbuildstate +++ /dev/null @@ -1,2 +0,0 @@ -#v4.0:v100 -Playtest|Win32|C:\Users\fabian\Documents\projects\NS\main\source\| diff --git a/main/source/cl_dll/Playtest/cl_dll.exp b/main/source/cl_dll/Playtest/cl_dll.exp deleted file mode 100644 index ec48560a..00000000 Binary files a/main/source/cl_dll/Playtest/cl_dll.exp and /dev/null differ diff --git a/main/source/cl_dll/Playtest/cl_dll.lib b/main/source/cl_dll/Playtest/cl_dll.lib deleted file mode 100644 index f62f39ff..00000000 Binary files a/main/source/cl_dll/Playtest/cl_dll.lib and /dev/null differ diff --git a/main/source/cl_dll/Playtest/client.dll.intermediate.manifest b/main/source/cl_dll/Playtest/client.dll.intermediate.manifest deleted file mode 100644 index ecea6f7f..00000000 --- a/main/source/cl_dll/Playtest/client.dll.intermediate.manifest +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/main/source/cl_dll/exports.h b/main/source/cl_dll/exports.h deleted file mode 100644 index 8d4d96fd..00000000 --- a/main/source/cl_dll/exports.h +++ /dev/null @@ -1,163 +0,0 @@ - -#if defined( FINAL_VAC_BUILD ) -#define CL_DLLEXPORT -#else -#define CL_DLLEXPORT __declspec( dllexport ) -#endif // FINAL_VAC_BUILD - - -extern "C" -{ - // From hl_weapons - void CL_DLLEXPORT HUD_PostRunCmd( struct local_state_s *from, struct local_state_s *to, struct usercmd_s *cmd, int runfuncs, double time, unsigned int random_seed ); - - // From cdll_int - int CL_DLLEXPORT Initialize( cl_enginefunc_t *pEnginefuncs, int iVersion ); - int CL_DLLEXPORT HUD_VidInit( void ); - void CL_DLLEXPORT HUD_Init( void ); - int CL_DLLEXPORT HUD_Redraw( float flTime, int intermission ); - int CL_DLLEXPORT HUD_UpdateClientData( client_data_t *cdata, float flTime ); - void CL_DLLEXPORT HUD_Reset ( void ); - void CL_DLLEXPORT HUD_PlayerMove( struct playermove_s *ppmove, int server ); - void CL_DLLEXPORT HUD_PlayerMoveInit( struct playermove_s *ppmove ); - char CL_DLLEXPORT HUD_PlayerMoveTexture( char *name ); - int CL_DLLEXPORT HUD_ConnectionlessPacket( const struct netadr_s *net_from, const char *args, char *response_buffer, int *response_buffer_size ); - int CL_DLLEXPORT HUD_GetHullBounds( int hullnumber, float *mins, float *maxs ); - void CL_DLLEXPORT HUD_Frame( double time ); - void CL_DLLEXPORT HUD_VoiceStatus(int entindex, qboolean bTalking); - void CL_DLLEXPORT HUD_DirectorMessage( int iSize, void *pbuf ); - - // From demo - void CL_DLLEXPORT Demo_ReadBuffer( int size, unsigned char *buffer ); - - // From entity - int CL_DLLEXPORT HUD_AddEntity( int type, struct cl_entity_s *ent, const char *modelname ); - void CL_DLLEXPORT HUD_CreateEntities( void ); - void CL_DLLEXPORT HUD_StudioEvent( const struct mstudioevent_s *event, const struct cl_entity_s *entity ); - void CL_DLLEXPORT HUD_TxferLocalOverrides( struct entity_state_s *state, const struct clientdata_s *client ); - void CL_DLLEXPORT HUD_ProcessPlayerState( struct entity_state_s *dst, const struct entity_state_s *src ); - void CL_DLLEXPORT HUD_TxferPredictionData ( struct entity_state_s *ps, const struct entity_state_s *pps, struct clientdata_s *pcd, const struct clientdata_s *ppcd, struct weapon_data_s *wd, const struct weapon_data_s *pwd ); - void CL_DLLEXPORT HUD_TempEntUpdate( double frametime, double client_time, double cl_gravity, struct tempent_s **ppTempEntFree, struct tempent_s **ppTempEntActive, int ( *Callback_AddVisibleEntity )( struct cl_entity_s *pEntity ), void ( *Callback_TempEntPlaySound )( struct tempent_s *pTemp, float damp ) ); - struct cl_entity_s CL_DLLEXPORT *HUD_GetUserEntity( int index ); - - // From in_camera - void CL_DLLEXPORT CAM_Think( void ); - int CL_DLLEXPORT CL_IsThirdPerson( void ); - void CL_DLLEXPORT CL_CameraOffset( float *ofs ); - - // From input - struct kbutton_s CL_DLLEXPORT *KB_Find( const char *name ); - void CL_DLLEXPORT CL_CreateMove ( float frametime, struct usercmd_s *cmd, int active ); - void CL_DLLEXPORT HUD_Shutdown( void ); - int CL_DLLEXPORT HUD_Key_Event( int eventcode, int keynum, const char *pszCurrentBinding ); - - // From inputw32 - void CL_DLLEXPORT IN_ActivateMouse( void ); - void CL_DLLEXPORT IN_DeactivateMouse( void ); - void CL_DLLEXPORT IN_MouseEvent (int mstate); - void CL_DLLEXPORT IN_Accumulate (void); - void CL_DLLEXPORT IN_ClearStates (void); - - // From tri - void CL_DLLEXPORT HUD_DrawNormalTriangles( void ); - void CL_DLLEXPORT HUD_DrawTransparentTriangles( void ); - - // From view - void CL_DLLEXPORT V_CalcRefdef( struct ref_params_s *pparams ); - - // From GameStudioModelRenderer - int CL_DLLEXPORT HUD_GetStudioModelInterface( int version, struct r_studio_interface_s **ppinterface, struct engine_studio_api_s *pstudio ); -} - - - -#if defined( FINAL_VAC_BUILD ) - -extern cldll_func_dst_t *g_pcldstAddrs; - -// Macros for the client receiving calls from the engine -#define RecClInitialize(a, b) (g_pcldstAddrs->pInitFunc(&a, &b)) -#define RecClHudInit() (g_pcldstAddrs->pHudInitFunc()) -#define RecClHudVidInit() (g_pcldstAddrs->pHudVidInitFunc()) -#define RecClHudRedraw(a, b) (g_pcldstAddrs->pHudRedrawFunc(&a, &b)) -#define RecClHudUpdateClientData(a, b) (g_pcldstAddrs->pHudUpdateClientDataFunc(&a, &b)) -#define RecClHudReset() (g_pcldstAddrs->pHudResetFunc()) -#define RecClClientMove(a, b) (g_pcldstAddrs->pClientMove(&a, &b)) -#define RecClClientMoveInit(a) (g_pcldstAddrs->pClientMoveInit(&a)) -#define RecClClientTextureType(a) (g_pcldstAddrs->pClientTextureType(&a)) -#define RecClIN_ActivateMouse() (g_pcldstAddrs->pIN_ActivateMouse()) -#define RecClIN_DeactivateMouse() (g_pcldstAddrs->pIN_DeactivateMouse()) -#define RecClIN_MouseEvent(a) (g_pcldstAddrs->pIN_MouseEvent(&a)) -#define RecClIN_ClearStates() (g_pcldstAddrs->pIN_ClearStates()) -#define RecClIN_Accumulate() (g_pcldstAddrs->pIN_Accumulate()) -#define RecClCL_CreateMove(a, b, c) (g_pcldstAddrs->pCL_CreateMove(&a, &b, &c)) -#define RecClCL_IsThirdPerson() (g_pcldstAddrs->pCL_IsThirdPerson()) -#define RecClCL_GetCameraOffsets(a) (g_pcldstAddrs->pCL_GetCameraOffsets(&a)) -#define RecClFindKey(a) (g_pcldstAddrs->pFindKey(&a)) -#define RecClCamThink() (g_pcldstAddrs->pCamThink()) -#define RecClCalcRefdef(a) (g_pcldstAddrs->pCalcRefdef(&a)) -#define RecClAddEntity(a, b, c) (g_pcldstAddrs->pAddEntity(&a, &b, &c)) -#define RecClCreateEntities() (g_pcldstAddrs->pCreateEntities()) -#define RecClDrawNormalTriangles() (g_pcldstAddrs->pDrawNormalTriangles()) -#define RecClDrawTransparentTriangles() (g_pcldstAddrs->pDrawTransparentTriangles()) -#define RecClStudioEvent(a, b) (g_pcldstAddrs->pStudioEvent(&a, &b)) -#define RecClPostRunCmd(a, b, c, d, e, f) (g_pcldstAddrs->pPostRunCmd(&a, &b, &c, &d, &e, &f)) -#define RecClShutdown() (g_pcldstAddrs->pShutdown()) -#define RecClTxferLocalOverrides(a, b) (g_pcldstAddrs->pTxferLocalOverrides(&a, &b)) -#define RecClProcessPlayerState(a, b) (g_pcldstAddrs->pProcessPlayerState(&a, &b)) -#define RecClTxferPredictionData(a, b, c, d, e, f) (g_pcldstAddrs->pTxferPredictionData(&a, &b, &c, &d, &e, &f)) -#define RecClReadDemoBuffer(a, b) (g_pcldstAddrs->pReadDemoBuffer(&a, &b)) -#define RecClConnectionlessPacket(a, b, c, d) (g_pcldstAddrs->pConnectionlessPacket(&a, &b, &c, &d)) -#define RecClGetHullBounds(a, b, c) (g_pcldstAddrs->pGetHullBounds(&a, &b, &c)) -#define RecClHudFrame(a) (g_pcldstAddrs->pHudFrame(&a)) -#define RecClKeyEvent(a, b, c) (g_pcldstAddrs->pKeyEvent(&a, &b, &c)) -#define RecClTempEntUpdate(a, b, c, d, e, f, g) (g_pcldstAddrs->pTempEntUpdate(&a, &b, &c, &d, &e, &f, &g)) -#define RecClGetUserEntity(a) (g_pcldstAddrs->pGetUserEntity(&a)) -#define RecClVoiceStatus(a, b) (g_pcldstAddrs->pVoiceStatus(&a, &b)) -#define RecClDirectorMessage(a, b) (g_pcldstAddrs->pDirectorMessage(&a, &b)) -#define RecClStudioInterface(a, b, c) (g_pcldstAddrs->pStudioInterface(&a, &b, &c)) - -#else - -#define RecClInitialize(a, b) -#define RecClHudInit() -#define RecClHudVidInit() -#define RecClHudRedraw(a, b) -#define RecClHudUpdateClientData(a, b) -#define RecClHudReset() -#define RecClClientMove(a, b) -#define RecClClientMoveInit(a) -#define RecClClientTextureType(a) -#define RecClIN_ActivateMouse() -#define RecClIN_DeactivateMouse() -#define RecClIN_MouseEvent(a) -#define RecClIN_ClearStates() -#define RecClIN_Accumulate() -#define RecClCL_CreateMove(a, b, c) -#define RecClCL_IsThirdPerson() -#define RecClCL_GetCameraOffsets(a) -#define RecClFindKey(a) -#define RecClCamThink() -#define RecClCalcRefdef(a) -#define RecClAddEntity(a, b, c) -#define RecClCreateEntities() -#define RecClDrawNormalTriangles() -#define RecClDrawTransparentTriangles() -#define RecClStudioEvent(a, b) -#define RecClPostRunCmd(a, b, c, d, e, f) -#define RecClShutdown() -#define RecClTxferLocalOverrides(a, b) -#define RecClProcessPlayerState(a, b) -#define RecClTxferPredictionData(a, b, c, d, e, f) -#define RecClReadDemoBuffer(a, b) -#define RecClConnectionlessPacket(a, b, c, d) -#define RecClGetHullBounds(a, b, c) -#define RecClHudFrame(a) -#define RecClKeyEvent(a, b, c) -#define RecClTempEntUpdate(a, b, c, d, e, f, g) -#define RecClGetUserEntity(a) -#define RecClVoiceStatus(a, b) -#define RecClDirectorMessage(a, b) -#define RecClStudioInterface(a, b, c) - -#endif // FINAL_VAC_BUILD diff --git a/main/source/cl_dll/hl/hl_baseentity.cpp b/main/source/cl_dll/hl/hl_baseentity.cpp index 8fadeea0..ab07154a 100644 --- a/main/source/cl_dll/hl/hl_baseentity.cpp +++ b/main/source/cl_dll/hl/hl_baseentity.cpp @@ -98,6 +98,7 @@ void CGrenade::Spawn( void ) { } CGrenade * CGrenade:: ShootTimed( entvars_t *pevOwner, Vector vecStart, Vector vecVelocity, float time ){ return 0; } CGrenade *CGrenade::ShootContact( entvars_t *pevOwner, Vector vecStart, Vector vecVelocity ){ return 0; } void CGrenade::DetonateUse( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value ){ } +void CGrenade::SetDamageType(int inDamageType) {} //@linux otherwise it says undefined symbol void UTIL_Remove( CBaseEntity *pEntity ){ } struct skilldata_t gSkillData; diff --git a/main/source/cl_dll/input.cpp b/main/source/cl_dll/input.cpp index 31f8a496..9a49979f 100644 --- a/main/source/cl_dll/input.cpp +++ b/main/source/cl_dll/input.cpp @@ -377,6 +377,39 @@ void KeyDown (kbutton_t *b) else k = -1; // typed manually at the console for continuous down + int theBlockScripts = (int)gHUD.GetServerVariableFloat(kvBlockScripts); + + char *pCmd = gEngfuncs.Cmd_Argv(0); + + if(theBlockScripts && pCmd) + { + bool bFound = false; + + //Check thier last few commands (this prevents false positives if a player is hits several keys real fast) + for (int i = 0; i < g_PrevCmds.size(); i++) + { + //Check both the key pressed and the command it executed. + if(k == g_PrevCmds[i].first && !strcmp(pCmd, g_PrevCmds[i].second.c_str())) + { + bFound = true; + break; + } + } + + + if(!bFound + && strcmp(pCmd, "+mlook") + && strcmp(pCmd, "+jlook") + && strcmp(pCmd, "+showscores") + && strcmp(pCmd, "+use")) + { + gEngfuncs.pfnCenterPrint("Scripting is not allowed on this server."); + b->down[0] = b->down[1] = 0; + b->state = 4; // impulse up + return; + } + } + if (k == b->down[0] || k == b->down[1]) return; // repeating key @@ -928,8 +961,7 @@ if active == 1 then we are 1) not playing back demos ( where our commands are ig void CL_DLLEXPORT CL_CreateMove ( float frametime, struct usercmd_s *cmd, int active ) { //RecClCL_CreateMove(frametime, cmd, active); - //@2014 Commander overview needs to be fixed! - + //@linux Commander overview needs to be fixed! float spd; vec3_t viewangles; static vec3_t oldangles; @@ -939,14 +971,17 @@ void CL_DLLEXPORT CL_CreateMove ( float frametime, struct usercmd_s *cmd, int ac int theButtonState = CL_ButtonBits(1); //memset( viewangles, 0, sizeof( vec3_t ) ); //viewangles[ 0 ] = viewangles[ 1 ] = viewangles[ 2 ] = 0.0; - gEngfuncs.GetViewAngles( (float *)viewangles ); + //gEngfuncs.GetViewAngles( (float *)viewangles ); - CL_AdjustAngles ( frametime, viewangles ); + //CL_AdjustAngles ( frametime, viewangles ); memset (cmd, 0, sizeof(*cmd)); - - gEngfuncs.SetViewAngles( (float *)viewangles ); - /* + //@ linux void IN_Move ( float frametime, usercmd_t *cmd) + float theRotationDeltas[3] = {0,0,0}; //{90,0,90} --> top down --> viewangles[YAW] + float theTranslationDeltas[3] = {0,0,0}; //--> cmd->sidemove + + IN_Move ( frametime, cmd ); + if(gResetViewAngles) { VectorCopy(gViewAngles,viewangles); @@ -955,11 +990,11 @@ void CL_DLLEXPORT CL_CreateMove ( float frametime, struct usercmd_s *cmd, int ac else { gEngfuncs.GetViewAngles( (float *)viewangles ); - }*/ - //VectorAdd(viewangles,rotation,viewangles); - //CL_AdjustAngles ( frametime, viewangles ); + } + VectorAdd(viewangles,theRotationDeltas,viewangles); + CL_AdjustAngles ( frametime, viewangles ); - //gEngfuncs.SetViewAngles( (float *)viewangles ); + gEngfuncs.SetViewAngles( (float *)viewangles ); VectorCopy (viewangles,gWorldViewAngles); // If we're in topdown mode diff --git a/main/source/cl_dll/inputw32.cpp b/main/source/cl_dll/inputw32.cpp index bf1900ec..ebbfaa5e 100644 --- a/main/source/cl_dll/inputw32.cpp +++ b/main/source/cl_dll/inputw32.cpp @@ -1,4 +1,4 @@ -//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============ +//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============ // // Purpose: // @@ -26,12 +26,18 @@ #include #include +#ifdef _WIN32 +#include +#endif + #define MOUSE_BUTTON_COUNT 5 -// Set this to 1 to show mouse cursor. Experimental + +// use IN_SetVisibleMouse to set: int g_iVisibleMouse = 0; extern cl_enginefunc_t gEngfuncs; + extern int iMouseInUse; extern kbutton_t in_strafe; @@ -54,10 +60,13 @@ extern cvar_t *cl_forwardspeed; extern cvar_t *cl_pitchspeed; extern cvar_t *cl_movespeedkey; - +#ifdef _WIN32 static double s_flRawInputUpdateTime = 0.0f; static bool m_bRawInput = false; static bool m_bMouseThread = false; +bool isMouseRelative = false; +#endif + extern globalvars_t *gpGlobals; // mouse variables @@ -75,8 +84,10 @@ static cvar_t *m_customaccel_max; //Mouse move is raised to this power before being scaled by scale factor static cvar_t *m_customaccel_exponent; +#ifdef _WIN32 // if threaded mouse is enabled then the time to sleep between polls -static cvar_t *m_mousethread_sleep; +static volatile cvar_t *m_mousethread_sleep; +#endif int mouse_buttons; int mouse_oldbuttonstate; @@ -113,7 +124,6 @@ enum _ControlList }; - DWORD dwAxisMap[ JOY_MAX_AXES ]; DWORD dwControlMap[ JOY_MAX_AXES ]; int pdwRawValue[ JOY_MAX_AXES ]; @@ -152,10 +162,10 @@ cvar_t *joy_wwhack2; int joy_avail, joy_advancedinit, joy_haspov; #ifdef _WIN32 -DWORD s_hMouseThreadId = 0; +unsigned int s_hMouseThreadId = 0; HANDLE s_hMouseThread = 0; HANDLE s_hMouseQuitEvent = 0; -HANDLE s_hMouseDoneQuitEvent = 0; +HANDLE s_hMouseThreadActiveLock = 0; #endif /* @@ -176,49 +186,139 @@ void Force_CenterView_f (void) } #ifdef _WIN32 -long s_mouseDeltaX = 0; -long s_mouseDeltaY = 0; -POINT old_mouse_pos; -long ThreadInterlockedExchange( long *pDest, long value ) +long mouseThreadActive = 0; +long mouseThreadCenterX = 0; +long mouseThreadCenterY = 0; +long mouseThreadDeltaX = 0; +long mouseThreadDeltaY = 0; + +bool MouseThread_ActiveLock_Enter( void ) { - return InterlockedExchange( pDest, value ); + if(!m_bMouseThread) + return true; + + return WAIT_OBJECT_0 == WaitForSingleObject( s_hMouseThreadActiveLock, INFINITE); } - -DWORD WINAPI MousePos_ThreadFunction( LPVOID p ) +void MouseThread_ActiveLock_Exit( void ) { - s_hMouseDoneQuitEvent = CreateEvent( NULL, FALSE, FALSE, NULL ); + if(!m_bMouseThread) + return; - while ( 1 ) + SetEvent( s_hMouseThreadActiveLock ); +} + +unsigned __stdcall MouseThread_Function( void * pArg ) +{ + while ( true ) { - if ( WaitForSingleObject( s_hMouseQuitEvent, (int)m_mousethread_sleep->value ) == WAIT_OBJECT_0 ) + int sleepVal = (int)m_mousethread_sleep->value; + if(0 > sleepVal) sleepVal = 0; + else if(1000 < sleepVal) sleepVal = 1000; + if(WAIT_OBJECT_0 == WaitForSingleObject( s_hMouseQuitEvent, sleepVal)) { - return 0; + break; } - if ( mouseactive ) + if( MouseThread_ActiveLock_Enter() ) { - POINT mouse_pos; - GetCursorPos(&mouse_pos); + if ( InterlockedExchangeAdd(&mouseThreadActive, 0) ) + { + POINT mouse_pos; + POINT center_pos; + + center_pos.x = InterlockedExchangeAdd(&mouseThreadCenterX, 0); + center_pos.y = InterlockedExchangeAdd(&mouseThreadCenterY, 0); + GetCursorPos(&mouse_pos); - volatile int mx = mouse_pos.x - old_mouse_pos.x + s_mouseDeltaX; - volatile int my = mouse_pos.y - old_mouse_pos.y + s_mouseDeltaY; - - ThreadInterlockedExchange( &old_mouse_pos.x, mouse_pos.x ); - ThreadInterlockedExchange( &old_mouse_pos.y, mouse_pos.y ); + mouse_pos.x -= center_pos.x; + mouse_pos.y -= center_pos.y; - ThreadInterlockedExchange( &s_mouseDeltaX, mx ); - ThreadInterlockedExchange( &s_mouseDeltaY, my ); + if(mouse_pos.x || mouse_pos.y) SetCursorPos( center_pos.x, center_pos.y ); + + InterlockedExchangeAdd(&mouseThreadDeltaX, mouse_pos.x); + InterlockedExchangeAdd(&mouseThreadDeltaY, mouse_pos.y); + } + + MouseThread_ActiveLock_Exit(); } } - SetEvent( s_hMouseDoneQuitEvent ); - return 0; } + +/// Updates mouseThreadActive using the global variables mouseactive, g_iVisibleMouse and m_bRawInput. Should be called after any of these is changed. +/// Has to be interlocked manually by programmer! Use MouseThread_ActiveLock_Enter and MouseThread_ActiveLock_Exit. +void UpdateMouseThreadActive(void) +{ + InterlockedExchange(&mouseThreadActive, mouseactive && !g_iVisibleMouse && !m_bRawInput); +} + #endif +void IN_SetMouseMode(bool enable) +{ + static bool currentMouseMode = false; + + if(enable == currentMouseMode) + return; + + if(enable) + { +#ifdef _WIN32 + if (mouseparmsvalid) + restore_spi = SystemParametersInfo (SPI_SETMOUSE, 0, newmouseparms, 0); + + m_bRawInput = CVAR_GET_FLOAT( "m_rawinput" ) != 0; + if(m_bRawInput) + { + SDL_SetRelativeMouseMode(SDL_TRUE); + isMouseRelative = true; + } +#else + SDL_SetRelativeMouseMode(SDL_TRUE); +#endif + + currentMouseMode = true; + } + else + { +#ifdef _WIN32 + if(isMouseRelative) + { + SDL_SetRelativeMouseMode(SDL_FALSE); + isMouseRelative = false; + } + + if (restore_spi) + SystemParametersInfo (SPI_SETMOUSE, 0, originalmouseparms, 0); +#else + SDL_SetRelativeMouseMode(SDL_FALSE); +#endif + + currentMouseMode = false; + } +} + +void IN_SetVisibleMouse(bool visible) +{ +#ifdef _WIN32 + bool lockEntered = MouseThread_ActiveLock_Enter(); +#endif + + g_iVisibleMouse = visible; + + IN_SetMouseMode(!visible); + +#ifdef _WIN32 + UpdateMouseThreadActive(); + if(lockEntered) MouseThread_ActiveLock_Exit(); +#endif +} + +void IN_ResetMouse( void ); + /* =========== IN_ActivateMouse @@ -229,11 +329,20 @@ void CL_DLLEXPORT IN_ActivateMouse (void) if (mouseinitialized) { #ifdef _WIN32 - if (mouseparmsvalid) - restore_spi = SystemParametersInfo (SPI_SETMOUSE, 0, newmouseparms, 0); - + bool lockEntered = MouseThread_ActiveLock_Enter(); #endif + + IN_SetMouseMode(true); + mouseactive = 1; + +#ifdef _WIN32 + UpdateMouseThreadActive(); + if(lockEntered) MouseThread_ActiveLock_Exit(); +#endif + + // now is a good time to reset mouse positon: + IN_ResetMouse(); } } @@ -248,12 +357,17 @@ void CL_DLLEXPORT IN_DeactivateMouse (void) if (mouseinitialized) { #ifdef _WIN32 - if (restore_spi) - SystemParametersInfo (SPI_SETMOUSE, 0, originalmouseparms, 0); - + bool lockEntered = MouseThread_ActiveLock_Enter(); #endif + IN_SetMouseMode(false); + mouseactive = 0; + +#ifdef _WIN32 + UpdateMouseThreadActive(); + if(lockEntered) MouseThread_ActiveLock_Exit(); +#endif } } @@ -307,12 +421,14 @@ void IN_Shutdown (void) if ( s_hMouseQuitEvent ) { SetEvent( s_hMouseQuitEvent ); - WaitForSingleObject( s_hMouseDoneQuitEvent, 100 ); } if ( s_hMouseThread ) { - TerminateThread( s_hMouseThread, 0 ); + if(WAIT_OBJECT_0 != WaitForSingleObject( s_hMouseThread, 5000 )) + { + TerminateThread( s_hMouseThread, 0 ); + } CloseHandle( s_hMouseThread ); s_hMouseThread = (HANDLE)0; } @@ -322,12 +438,11 @@ void IN_Shutdown (void) CloseHandle( s_hMouseQuitEvent ); s_hMouseQuitEvent = (HANDLE)0; } - - - if ( s_hMouseDoneQuitEvent ) + + if( s_hMouseThreadActiveLock ) { - CloseHandle( s_hMouseDoneQuitEvent ); - s_hMouseDoneQuitEvent = (HANDLE)0; + CloseHandle( s_hMouseThreadActiveLock ); + s_hMouseThreadActiveLock = (HANDLE)0; } #endif } @@ -355,18 +470,24 @@ void IN_ResetMouse( void ) { // no work to do in SDL #ifdef _WIN32 - if ( !m_bRawInput && mouseactive && gEngfuncs.GetWindowCenterX && gEngfuncs.GetWindowCenterY ) + // reset only if mouse is active and not in visible mode: + if(mouseactive && !g_iVisibleMouse) { + if ( !m_bRawInput && gEngfuncs.GetWindowCenterX && gEngfuncs.GetWindowCenterY ) + { + bool lockEntered = MouseThread_ActiveLock_Enter(); - SetCursorPos ( gEngfuncs.GetWindowCenterX(), gEngfuncs.GetWindowCenterY() ); - ThreadInterlockedExchange( &old_mouse_pos.x, gEngfuncs.GetWindowCenterX() ); - ThreadInterlockedExchange( &old_mouse_pos.y, gEngfuncs.GetWindowCenterY() ); - } + int centerX = gEngfuncs.GetWindowCenterX(); + int centerY = gEngfuncs.GetWindowCenterY(); - if ( gpGlobals && gpGlobals->time - s_flRawInputUpdateTime > 1.0f ) - { - s_flRawInputUpdateTime = gpGlobals->time; - m_bRawInput = CVAR_GET_FLOAT( "m_rawinput" ) != 0; + SetCursorPos ( centerX, centerY ); + InterlockedExchange( &mouseThreadCenterX, centerX ); + InterlockedExchange( &mouseThreadCenterY, centerY ); + InterlockedExchange( &mouseThreadDeltaX, 0 ); + InterlockedExchange( &mouseThreadDeltaY, 0 ); + + if(lockEntered) MouseThread_ActiveLock_Exit(); + } } #endif } @@ -451,26 +572,12 @@ void IN_ScaleMouse( float *x, float *y ) } } -/* -=========== -IN_MouseMove -=========== -*/ -void IN_MouseMove ( float frametime, usercmd_t *cmd) +void IN_GetMouseDelta( int *pOutX, int *pOutY) { - int mx, my; - vec3_t viewangles; + bool active = mouseactive && !g_iVisibleMouse; + int mx, my; - gEngfuncs.GetViewAngles( (float *)viewangles ); - - if ( in_mlook.state & 1) - { - V_StopPitchDrift (); - } - - //jjb - this disbles normal mouse control if the user is trying to - // move the camera, or if the mouse cursor is visible or if we're in intermission - if ( !iMouseInUse && !gHUD.m_iIntermission && !g_iVisibleMouse ) + if(active) { int deltaX, deltaY; #ifdef _WIN32 @@ -478,10 +585,12 @@ void IN_MouseMove ( float frametime, usercmd_t *cmd) { if ( m_bMouseThread ) { - ThreadInterlockedExchange( ¤t_pos.x, s_mouseDeltaX ); - ThreadInterlockedExchange( ¤t_pos.y, s_mouseDeltaY ); - ThreadInterlockedExchange( &s_mouseDeltaX, 0 ); - ThreadInterlockedExchange( &s_mouseDeltaY, 0 ); + bool lockEntered = MouseThread_ActiveLock_Enter(); + + current_pos.x = InterlockedExchange( &mouseThreadDeltaX, 0 ); + current_pos.y = InterlockedExchange( &mouseThreadDeltaY, 0 ); + + if(lockEntered) MouseThread_ActiveLock_Exit(); } else { @@ -520,6 +629,73 @@ void IN_MouseMove ( float frametime, usercmd_t *cmd) mx_accum = 0; my_accum = 0; + // reset mouse position if required, so there is room to move: +#ifdef _WIN32 + // do not reset if mousethread would do it: + if ( m_bRawInput || !m_bMouseThread ) +#else + if(true) +#endif + IN_ResetMouse(); + +#ifdef _WIN32 + // update m_bRawInput occasionally: + if ( gpGlobals && gpGlobals->time - s_flRawInputUpdateTime > 1.0f ) + { + s_flRawInputUpdateTime = gpGlobals->time; + + bool lockEntered = MouseThread_ActiveLock_Enter(); + + m_bRawInput = CVAR_GET_FLOAT( "m_rawinput" ) != 0; + + if(m_bRawInput && !isMouseRelative) + { + SDL_SetRelativeMouseMode(SDL_TRUE); + isMouseRelative = true; + } + else if(!m_bRawInput && isMouseRelative) + { + SDL_SetRelativeMouseMode(SDL_FALSE); + isMouseRelative = false; + } + + UpdateMouseThreadActive(); + if(lockEntered) MouseThread_ActiveLock_Exit(); + } +#endif + } + else + { + mx = my = 0; + } + + if(pOutX) *pOutX = mx; + if(pOutY) *pOutY = my; +} + +/* +=========== +IN_MouseMove +=========== +*/ +void IN_MouseMove ( float frametime, usercmd_t *cmd) +{ + int mx, my; + vec3_t viewangles; + + gEngfuncs.GetViewAngles( (float *)viewangles ); + + if ( in_mlook.state & 1) + { + V_StopPitchDrift (); + } + + //jjb - this disbles normal mouse control if the user is trying to + // move the camera, or if the mouse cursor is visible or if we're in intermission + if ( !iMouseInUse && !gHUD.m_iIntermission && !g_iVisibleMouse ) + { + IN_GetMouseDelta( &mx, &my ); + if (m_filter && m_filter->value) { mouse_x = (mx + old_mouse_x) * 0.5; @@ -562,12 +738,6 @@ void IN_MouseMove ( float frametime, usercmd_t *cmd) cmd->forwardmove -= m_forward->value * mouse_y; } } - - // if the mouse has moved, force it to the center, so there's room to move - if ( mx || my ) - { - IN_ResetMouse(); - } } gEngfuncs.SetViewAngles( (float *)viewangles ); @@ -616,8 +786,15 @@ void CL_DLLEXPORT IN_Accumulate (void) mx_accum += deltaX; my_accum += deltaY; } + // force the mouse to the center, so there's room to move - IN_ResetMouse(); +#ifdef _WIN32 + // do not reset if mousethread would do it: + if ( m_bRawInput || !m_bMouseThread ) +#else + if(true) +#endif + IN_ResetMouse(); } } @@ -649,10 +826,10 @@ void IN_StartupJoystick (void) // abort startup if user requests no joystick if ( gEngfuncs.CheckParm ("-nojoy", NULL ) ) return; - - // assume no joystick + + // assume no joystick joy_avail = 0; - + int nJoysticks = SDL_NumJoysticks(); if ( nJoysticks > 0 ) { @@ -677,7 +854,6 @@ void IN_StartupJoystick (void) joy_advancedinit = 0; break; } - } } } @@ -685,23 +861,21 @@ void IN_StartupJoystick (void) { gEngfuncs.Con_DPrintf ("joystick not found -- driver not present\n\n"); } - } - int RawValuePointer (int axis) { switch (axis) { - default: - case JOY_AXIS_X: - return SDL_GameControllerGetAxis( s_pJoystick, SDL_CONTROLLER_AXIS_LEFTX ); - case JOY_AXIS_Y: - return SDL_GameControllerGetAxis( s_pJoystick, SDL_CONTROLLER_AXIS_LEFTY ); - case JOY_AXIS_Z: - return SDL_GameControllerGetAxis( s_pJoystick, SDL_CONTROLLER_AXIS_RIGHTX ); - case JOY_AXIS_R: - return SDL_GameControllerGetAxis( s_pJoystick, SDL_CONTROLLER_AXIS_RIGHTY ); + default: + case JOY_AXIS_X: + return SDL_GameControllerGetAxis( s_pJoystick, SDL_CONTROLLER_AXIS_LEFTX ); + case JOY_AXIS_Y: + return SDL_GameControllerGetAxis( s_pJoystick, SDL_CONTROLLER_AXIS_LEFTY ); + case JOY_AXIS_Z: + return SDL_GameControllerGetAxis( s_pJoystick, SDL_CONTROLLER_AXIS_RIGHTX ); + case JOY_AXIS_R: + return SDL_GameControllerGetAxis( s_pJoystick, SDL_CONTROLLER_AXIS_RIGHTY ); } } @@ -908,7 +1082,7 @@ void IN_JoyMove ( float frametime, usercmd_t *cmd ) // y=ax^b; where a = 300 and b = 1.3 // also x values are in increments of 800 (so this is factored out) // then bounds check result to level out excessively high spin rates - fTemp = 300.0 * pow(fabs(fAxisValue) / 800.0, 1.3); + fTemp = 300.0 * pow(fabs(fAxisValue) / 800.0, 1.3); //fabs for float values if (fTemp > 14000.0) fTemp = 14000.0; // restore direction information @@ -956,7 +1130,7 @@ void IN_JoyMove ( float frametime, usercmd_t *cmd ) // user wants forward control to be forward control if (fabs(fAxisValue) > joy_forwardthreshold->value) { - cmd->forwardmove += (fAxisValue * joy_forwardsensitivity->value) * speed * kForwardSpeed; + cmd->forwardmove += (fAxisValue * joy_forwardsensitivity->value) * speed * cl_forwardspeed->value; } } break; @@ -964,7 +1138,7 @@ void IN_JoyMove ( float frametime, usercmd_t *cmd ) case AxisSide: if (fabs(fAxisValue) > joy_sidethreshold->value) { - cmd->sidemove += (fAxisValue * joy_sidesensitivity->value) * speed * kSideSpeed; + cmd->sidemove += (fAxisValue * joy_sidesensitivity->value) * speed * cl_sidespeed->value; } break; @@ -974,7 +1148,7 @@ void IN_JoyMove ( float frametime, usercmd_t *cmd ) // user wants turn control to become side control if (fabs(fAxisValue) > joy_sidethreshold->value) { - cmd->sidemove -= (fAxisValue * joy_sidesensitivity->value) * speed * kSideSpeed; + cmd->sidemove -= (fAxisValue * joy_sidesensitivity->value) * speed * cl_sidespeed->value; } } else @@ -1090,19 +1264,25 @@ void IN_Init (void) m_customaccel_exponent = gEngfuncs.pfnRegisterVariable ( "m_customaccel_exponent", "1", FCVAR_ARCHIVE ); #ifdef _WIN32 - m_bRawInput = CVAR_GET_FLOAT( "m_rawinput" ) > 0; + m_bRawInput = CVAR_GET_FLOAT( "m_rawinput" ) != 0; m_bMouseThread = gEngfuncs.CheckParm ("-mousethread", NULL ) != NULL; - m_mousethread_sleep = gEngfuncs.pfnRegisterVariable ( "m_mousethread_sleep", "10", FCVAR_ARCHIVE ); + m_mousethread_sleep = gEngfuncs.pfnRegisterVariable ( "m_mousethread_sleep", "1", FCVAR_ARCHIVE ); // default to less than 1000 Hz - if ( !m_bRawInput && m_bMouseThread && m_mousethread_sleep ) + m_bMouseThread = m_bMouseThread && NULL != m_mousethread_sleep; + + if (m_bMouseThread) { - s_mouseDeltaX = s_mouseDeltaY = 0; - s_hMouseQuitEvent = CreateEvent( NULL, FALSE, FALSE, NULL ); - if ( s_hMouseQuitEvent ) + s_hMouseThreadActiveLock = CreateEvent( NULL, FALSE, TRUE, NULL ); + if ( s_hMouseQuitEvent && s_hMouseThreadActiveLock) { - s_hMouseThread = CreateThread( NULL, 0, MousePos_ThreadFunction, NULL, 0, &s_hMouseThreadId ); + s_hMouseThread = (HANDLE)_beginthreadex( NULL, 0, MouseThread_Function, NULL, 0, &s_hMouseThreadId ); } + + m_bMouseThread = NULL != s_hMouseThread; + + // at this early stage this won't print anything: + // gEngfuncs.Con_DPrintf ("Mouse thread %s.\n", m_bMouseThread ? "initalized" : "failed to initalize"); } #endif diff --git a/main/source/cl_dll/release/client.bsc b/main/source/cl_dll/release/client.bsc deleted file mode 100644 index 1961ca6d..00000000 Binary files a/main/source/cl_dll/release/client.bsc and /dev/null differ diff --git a/main/source/cl_dll/saytext.cpp b/main/source/cl_dll/saytext.cpp index 97f36d3d..db8abb30 100644 --- a/main/source/cl_dll/saytext.cpp +++ b/main/source/cl_dll/saytext.cpp @@ -266,7 +266,7 @@ void CHudSayText :: SayTextPrint( const char *pszBuf, int iBufSize, int clientIn gHUD.PlayHUDSound("misc/talk.wav", 1); Y_START = ScreenHeight()*.7f; - + /* @linux no chat panel ChatPanel* theChatPanel = gViewPort->GetChatPanel(); if (theChatPanel != NULL) @@ -284,7 +284,7 @@ void CHudSayText :: SayTextPrint( const char *pszBuf, int iBufSize, int clientIn //KGP: then move the viewport Y_START = theY + theHeight + 5; } - + */ } void CHudSayText :: EnsureTextFitsInOneLineAndWrapIfHaveTo( int line ) diff --git a/main/source/cl_dll/studio_util.cpp b/main/source/cl_dll/studio_util.cpp index 9a77d077..64d6cd27 100644 --- a/main/source/cl_dll/studio_util.cpp +++ b/main/source/cl_dll/studio_util.cpp @@ -1,10 +1,3 @@ -//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============ -// -// Purpose: -// -// $NoKeywords: $ -//============================================================================= - #include #include "hud.h" #include "cl_util.h" @@ -17,6 +10,7 @@ AngleMatrix ==================== +*/ void AngleMatrix (const float *angles, float (*matrix)[4] ) { @@ -47,7 +41,7 @@ void AngleMatrix (const float *angles, float (*matrix)[4] ) matrix[1][3] = 0.0; matrix[2][3] = 0.0; } -*/ + /* ==================== VectorCompare diff --git a/main/source/cl_dll/studio_util.h b/main/source/cl_dll/studio_util.h index a14db5b4..7e303d5e 100644 --- a/main/source/cl_dll/studio_util.h +++ b/main/source/cl_dll/studio_util.h @@ -1,9 +1,3 @@ -//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============ -// -// Purpose: -// -// $NoKeywords: $ -//============================================================================= #if !defined( STUDIO_UTIL_H ) #define STUDIO_UTIL_H #if defined( WIN32 ) diff --git a/main/source/cl_dll/vgui_ScorePanel.cpp b/main/source/cl_dll/vgui_ScorePanel.cpp index ddb4f0b1..e8beb785 100644 --- a/main/source/cl_dll/vgui_ScorePanel.cpp +++ b/main/source/cl_dll/vgui_ScorePanel.cpp @@ -401,6 +401,10 @@ bool HACK_GetPlayerUniqueID( int iPlayer, char playerID[16] ) //----------------------------------------------------------------------------- // Purpose: Recalculate the internal scoreboard data //----------------------------------------------------------------------------- +//@linux make snprintf work for win32 +#ifdef _WIN32 +#define snprintf _snprintf +#endif void ScorePanel::Update() { @@ -412,7 +416,8 @@ void ScorePanel::Update() { memset(theServerName, 0, MAX_SERVERNAME_LENGTH+1); int iServerNameLength = max((int)strlen(gViewPort->m_szServerName),MAX_SERVERNAME_LENGTH); - strncat(theServerName, gViewPort->m_szServerName, iServerNameLength); + //strncat(theServerName, gViewPort->m_szServerName, iServerNameLength); Buffer Overflow? + snprintf(theServerName, MAX_SERVERNAME_LENGTH, "%s%s",theServerName ,gViewPort->m_szServerName); } theServerName[MAX_SERVERNAME_LENGTH]=0; char theMapName[MAX_MAPNAME_LENGTH+1]; diff --git a/main/source/cl_dll/vgui_TeamFortressViewport.cpp b/main/source/cl_dll/vgui_TeamFortressViewport.cpp index 93eb6da4..5f905a54 100644 --- a/main/source/cl_dll/vgui_TeamFortressViewport.cpp +++ b/main/source/cl_dll/vgui_TeamFortressViewport.cpp @@ -2384,7 +2384,7 @@ bool TeamFortressViewport::SlotInput( int iSlot ) // Direct Key Input int TeamFortressViewport::KeyInput( int down, int keynum, const char *pszCurrentBinding ) { - + /*@linux remove chat if (m_chatPanel->isVisible()) { // Don't let the game handle the input while the user is typing in the @@ -2405,7 +2405,7 @@ int TeamFortressViewport::KeyInput( int down, int keynum, const char *pszCurrent m_chatPanel->requestFocus(); m_chatPanel->SetChatMode(ChatPanel::chatModeTeam); return 0; - } + }*/ // Open Text Window? if (m_pCurrentMenu && gEngfuncs.Con_IsVisible() == false) diff --git a/main/source/cl_dll/view.cpp b/main/source/cl_dll/view.cpp index a91ff3c7..802a8472 100644 --- a/main/source/cl_dll/view.cpp +++ b/main/source/cl_dll/view.cpp @@ -45,11 +45,11 @@ void CL_DLLEXPORT V_CalcRefdef( struct ref_params_s *pparams ); void PM_ParticleLine( float *start, float *end, int pcolor, float life, float vert); int PM_GetVisEntInfo( int ent ); int PM_GetPhysEntInfo( int ent ); -//@2014 +//@linux void InterpolateAngles( float * start, float * end, float * output, float frac ); void NormalizeAngles( float * angles ); //extern "C" float Distance(const float * v1, const float * v2); -float AngleBetweenVectors(const float * v1, const float * v2 ); +//float AngleBetweenVectors(const float * v1, const float * v2 ); void V_DropPunchAngle ( float frametime, float *ev_punchangle ); void VectorAngles( const float *forward, float *angles ); @@ -119,8 +119,8 @@ cvar_t v_ipitch_level = {"v_ipitch_level", "0.3", 0, 0.3}; float v_idlescale; // used by TFC for concussion grenade effect -//@2014 hack linker error??? only win?? -#ifdef _WIN32 +//@linux + void NormalizeAngles( float *angles ) { int i; @@ -176,7 +176,6 @@ void InterpolateAngles( float *start, float *end, float *output, float frac ) NormalizeAngles( output ); } - /* =================== @@ -184,7 +183,7 @@ AngleBetweenVectors =================== */ -float AngleBetweenVectors( const vec3_t v1, const vec3_t v2 ) +float AngleBetweenVectors( float* v1, float* v2 ) { float angle; float l1 = Length( v1 ); @@ -198,7 +197,7 @@ float AngleBetweenVectors( const vec3_t v1, const vec3_t v2 ) return angle; } -#endif + //============================================================================= /* void V_NormalizeAngles( float *angles ) @@ -2222,7 +2221,14 @@ void CL_DLLEXPORT V_CalcRefdef( struct ref_params_s *pparams ) } else if ( !pparams->paused ) { - V_CalcNormalRefdef ( pparams ); + if(gHUD.GetInTopDownMode()) + { + V_CalcTopDownRefdef ( pparams ); + } + else + { + V_CalcNormalRefdef ( pparams ); + } } /* diff --git a/main/source/dlls/Playtest/ns.dll.intermediate.manifest b/main/source/dlls/Playtest/ns.dll.intermediate.manifest deleted file mode 100644 index ecea6f7f..00000000 --- a/main/source/dlls/Playtest/ns.dll.intermediate.manifest +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/main/source/dlls/Playtest/ns.dll.lastbuildstate b/main/source/dlls/Playtest/ns.dll.lastbuildstate deleted file mode 100644 index e2362f57..00000000 --- a/main/source/dlls/Playtest/ns.dll.lastbuildstate +++ /dev/null @@ -1,2 +0,0 @@ -#v4.0:v100 -Playtest|Win32|C:\Users\fabian\Documents\projects\NS\main\source\| diff --git a/main/source/dlls/Playtest/vc100.idb b/main/source/dlls/Playtest/vc100.idb deleted file mode 100644 index 0cd170d9..00000000 Binary files a/main/source/dlls/Playtest/vc100.idb and /dev/null differ diff --git a/main/source/dlls/cbase.cpp b/main/source/dlls/cbase.cpp index 9179b2d1..c9ddbaf9 100644 --- a/main/source/dlls/cbase.cpp +++ b/main/source/dlls/cbase.cpp @@ -1,6 +1,6 @@ /*** * -* Copyright (c) 1996-2001, Valve LLC. All rights reserved. +* Copyright (c) 1996-2001, Valve LLC. All rights reserved. * * This product contains software technology licensed from Id * Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc. @@ -545,7 +545,7 @@ int CBaseEntity :: TakeDamage( entvars_t* pevInflictor, entvars_t* pevAttacker, // save damage based on the target's armor level // figure momentum add (don't let hurt brushes or other triggers move player) - if ((!FNullEnt(pevInflictor)) && (pev->movetype == MOVETYPE_WALK || pev->movetype == MOVETYPE_STEP) && (pevAttacker->solid != SOLID_TRIGGER) ) + if ((!FNullEnt(pevInflictor)) && (pev->movetype == MOVETYPE_WALK || pev->movetype == MOVETYPE_STEP) && (pevAttacker->solid != SOLID_TRIGGER) && !this->IsPlayer()) { Vector vecDir = pev->origin - (pevInflictor->absmin + pevInflictor->absmax) * 0.5; vecDir = vecDir.Normalize(); @@ -764,7 +764,7 @@ int CBaseEntity :: DamageDecal( int bitsDamageType ) // NOTE: szName must be a pointer to constant memory, e.g. "monster_class" because the entity // will keep a pointer to it after this call. -CBaseEntity * CBaseEntity::Create( const char *szName, const Vector &vecOrigin, const Vector &vecAngles, edict_t *pentOwner ) +CBaseEntity * CBaseEntity::Create( const char *szName, const Vector &vecOrigin, const Vector &vecAngles, edict_t *pentOwner ) { edict_t *pent; CBaseEntity *pEntity; diff --git a/main/source/dlls/enginecallback.h b/main/source/dlls/enginecallback.h index 904b4008..e9fb08a7 100644 --- a/main/source/dlls/enginecallback.h +++ b/main/source/dlls/enginecallback.h @@ -56,7 +56,6 @@ extern enginefuncs_t g_engfuncs; #define TRACE_HULL (*g_engfuncs.pfnTraceHull) #define GET_AIM_VECTOR (*g_engfuncs.pfnGetAimVector) #define SERVER_COMMAND (*g_engfuncs.pfnServerCommand) - #ifdef SERVER_EXECUTE #undef SERVER_EXECUTE #endif diff --git a/main/source/dlls/ggrenade.cpp b/main/source/dlls/ggrenade.cpp index 8985340c..cf8cce70 100644 --- a/main/source/dlls/ggrenade.cpp +++ b/main/source/dlls/ggrenade.cpp @@ -31,7 +31,7 @@ #include "../mod/AvHMarineWeaponConstants.h" #include "../mod/AvHGamerules.h" #include "../mod/AvHServerVariables.h" -#include "../util/MathUtil.h" + #include "../util/MathUtil.h" #include "../common/vec_op.h" @@ -46,18 +46,16 @@ LINK_ENTITY_TO_CLASS( grenade, CGrenade ); // // Grenade Explode // -//@2014 --> leads to undefined symbol -/* void CGrenade::SetDamageType(int inDamageType) { this->m_damageType=inDamageType; -}*/ +} void CGrenade::Explode( Vector vecSrc, Vector vecAim) { TraceResult tr; UTIL_TraceLine ( pev->origin, pev->origin + Vector ( 0, 0, -32 ), ignore_monsters, ENT(pev), & tr); - Explode( &tr, this->m_damageType); + Explode( &tr,this->m_damageType); } // UNDONE: temporary scorching for PreAlpha - find a less sleazy permenant solution. @@ -495,9 +493,7 @@ CGrenade *CGrenade::ShootContact( entvars_t *pevOwner, Vector vecStart, Vector v CGrenade* CGrenade::ShootExplosiveTimed( entvars_t *pevOwner, Vector vecStart, Vector vecVelocity, float time, int inDamageType) { CGrenade *pGrenade = CGrenade::ShootTimed(pevOwner, vecStart, vecVelocity, time); -//@2014 -//pGrenade->SetDamageType(inDamageType); - pGrenade->m_damageType=inDamageType; + pGrenade->SetDamageType(inDamageType); pGrenade->SetTouch(&CGrenade::ExplosiveBounceTouch); return pGrenade; } diff --git a/main/source/dlls/ggrenade.cpp~ b/main/source/dlls/ggrenade.cpp~ index 83eddd82..d91bb5f3 100644 --- a/main/source/dlls/ggrenade.cpp~ +++ b/main/source/dlls/ggrenade.cpp~ @@ -31,8 +31,8 @@ #include "../mod/AvHMarineWeaponConstants.h" #include "../mod/AvHGamerules.h" #include "../mod/AvHServerVariables.h" -#include "../util/MathUtil.h" -#include "../util/MathUtil.h" + +#include "util/MathUtil.h" #include "../common/vec_op.h" //===================grenade @@ -46,11 +46,9 @@ LINK_ENTITY_TO_CLASS( grenade, CGrenade ); // // Grenade Explode // -//@2014 however never called --> leads to undefined symbol -/* void CGrenade::SetDamageType(int inDamageType) { this->m_damageType=inDamageType; -}*/ +} void CGrenade::Explode( Vector vecSrc, Vector vecAim) { diff --git a/main/source/dlls/ns.dll.makefile b/main/source/dlls/ns.dll.makefile deleted file mode 100644 index ddab7374..00000000 --- a/main/source/dlls/ns.dll.makefile +++ /dev/null @@ -1,3966 +0,0 @@ -# Compiler flags... -CPP_COMPILER = g++ -C_COMPILER = gcc - -# Include paths... -Developer-debug_Include_Path=-I"../" -I"U:/include/stlport" -I"U:/include/nexus" -I"U:/include/lua" -I"U:/include/particle" -I"U:/include" -Developer-release_Include_Path=-I"../" -I"U:/include/stlport" -I"U:/include/nexus" -I"U:/include/lua" -I"U:/include/particle" -I"U:/include" -Playtest-balancedisabled_Include_Path=-I"../" -I"U:/include/stlport" -I"U:/include/nexus" -I"U:/include/lua" -I"U:/include/particle" -Playtest_Include_Path=-I"../" -I"..//includes/lua/include" -I"..//particles/" -I"..//includes/vgui/include" -I"..//includes/libcurl-7.18-nossl/include/curl" - -# Library paths... -Developer-debug_Library_Path=-L"U:/gccdebug" -Developer-release_Library_Path=-L"U:/gccrelease" -Playtest-balancedisabled_Library_Path=-L"U:/gccrelease" -Playtest_Library_Path=-L"..//includes/lua/gcclib" -L"..//particles/gccRelease" -L"..//includes/gcclibcurl-7.18-nossl" -L"..//includes/vgui/lib/gccwin32_vc6" - -# Additional libraries... -Developer-debug_Libraries=-Wl,--start-group -lwinmm -lws2_32 -lparticles -lliblua -lliblualib -lnexus_server -lssleay32 -llibeay32 -llibcurl -Wl,--end-group -Developer-release_Libraries=-Wl,--start-group -lwinmm -lws2_32 -lparticles -lliblua -lliblualib -lssleay32 -llibeay32 -llibcurl -Wl,--end-group -Playtest-balancedisabled_Libraries=-Wl,--start-group -lwinmm -lws2_32 -lparticles -lliblua -lliblualib -lssleay32 -llibeay32 -Wl,--end-group -Playtest_Libraries=-Wl,--start-group -lwinmm -lws2_32 -lparticles -llua5.1 -llibcurl -Wl,--end-group - -# Preprocessor definitions... -Developer-debug_Preprocessor_Definitions=-D _DEBUG -D DEBUG -D GCC_BUILD -D _WINDOWS -D QUIVER -D VOXEL -D QUAKE2 -D VALVE_DLL -D AVH_SERVER -D AVH_SECURE_PRERELEASE_BUILD -D USE_OLDAUTH -D $(NOINHERIT) -Developer-release_Preprocessor_Definitions=-D NDEBUG -D GCC_BUILD -D _WINDOWS -D QUIVER -D VOXEL -D QUAKE2 -D VALVE_DLL -D AVH_SERVER -D AVH_SECURE_PRERELEASE_BUILD -D USE_OLDAUTH -D $(NOINHERIT) -Playtest-balancedisabled_Preprocessor_Definitions=-D NDEBUG -D GCC_BUILD -D _WINDOWS -D QUIVER -D VOXEL -D QUAKE2 -D VALVE_DLL -D AVH_SERVER -D SERVER -D AVH_PLAYTEST_BUILD -D $(NOINHERIT) -Playtest_Preprocessor_Definitions=-D NDEBUG -D GCC_BUILD -D _WINDOWS -D QUIVER -D VOXEL -D QUAKE2 -D VALVE_DLL -D AVH_SERVER -D AVH_NO_NEXUS -D USE_OLDAUTH -D $(NOINHERIT) - -# Implictly linked object files... -Developer-debug_Implicitly_Linked_Objects= -Developer-release_Implicitly_Linked_Objects= -Playtest-balancedisabled_Implicitly_Linked_Objects= -Playtest_Implicitly_Linked_Objects= - -# Compiler flags... -Developer-debug_Compiler_Flags=-fPIC -Werror -O0 -g -Developer-release_Compiler_Flags=-fPIC -O3 -Playtest-balancedisabled_Compiler_Flags=-fPIC -O3 -Playtest_Compiler_Flags=-fPIC -O3 - -# Builds all configurations for this project... -.PHONY: build_all_configurations -build_all_configurations: Developer-debug Developer-release Playtest-balancedisabled Playtest - -# Builds the Developer-debug configuration... -.PHONY: Developer-debug -Developer-debug: create_folders V:/temp/ns.dll/gccDeveloper-debug/animating.o V:/temp/ns.dll/gccDeveloper-debug/animation.o V:/temp/ns.dll/gccDeveloper-debug/bmodels.o V:/temp/ns.dll/gccDeveloper-debug/buttons.o V:/temp/ns.dll/gccDeveloper-debug/cbase.o V:/temp/ns.dll/gccDeveloper-debug/client.o V:/temp/ns.dll/gccDeveloper-debug/combat.o V:/temp/ns.dll/gccDeveloper-debug/doors.o V:/temp/ns.dll/gccDeveloper-debug/effects.o V:/temp/ns.dll/gccDeveloper-debug/egon.o V:/temp/ns.dll/gccDeveloper-debug/explode.o V:/temp/ns.dll/gccDeveloper-debug/func_break.o V:/temp/ns.dll/gccDeveloper-debug/func_tank.o V:/temp/ns.dll/gccDeveloper-debug/game.o V:/temp/ns.dll/gccDeveloper-debug/gamerules.o V:/temp/ns.dll/gccDeveloper-debug/gauss.o V:/temp/ns.dll/gccDeveloper-debug/globals.o V:/temp/ns.dll/gccDeveloper-debug/h_ai.o V:/temp/ns.dll/gccDeveloper-debug/h_battery.o V:/temp/ns.dll/gccDeveloper-debug/h_cycler.o V:/temp/ns.dll/gccDeveloper-debug/h_export.o V:/temp/ns.dll/gccDeveloper-debug/items.o V:/temp/ns.dll/gccDeveloper-debug/lights.o V:/temp/ns.dll/gccDeveloper-debug/maprules.o V:/temp/ns.dll/gccDeveloper-debug/mpstubb.o V:/temp/ns.dll/gccDeveloper-debug/multiplay_gamerules.o V:/temp/ns.dll/gccDeveloper-debug/observer.o V:/temp/ns.dll/gccDeveloper-debug/pathcorner.o V:/temp/ns.dll/gccDeveloper-debug/plane.o V:/temp/ns.dll/gccDeveloper-debug/plats.o V:/temp/ns.dll/gccDeveloper-debug/player.o V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_debug.o V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_math.o V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_shared.o V:/temp/ns.dll/gccDeveloper-debug/satchel.o V:/temp/ns.dll/gccDeveloper-debug/shotgun.o V:/temp/ns.dll/gccDeveloper-debug/singleplay_gamerules.o V:/temp/ns.dll/gccDeveloper-debug/skill.o V:/temp/ns.dll/gccDeveloper-debug/sound.o V:/temp/ns.dll/gccDeveloper-debug/soundent.o V:/temp/ns.dll/gccDeveloper-debug/spectator.o V:/temp/ns.dll/gccDeveloper-debug/squeakgrenade.o V:/temp/ns.dll/gccDeveloper-debug/subs.o V:/temp/ns.dll/gccDeveloper-debug/teamplay_gamerules.o V:/temp/ns.dll/gccDeveloper-debug/triggers.o V:/temp/ns.dll/gccDeveloper-debug/turret.o V:/temp/ns.dll/gccDeveloper-debug/util.o V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_banmgr.o V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_gamemgr.o V:/temp/ns.dll/gccDeveloper-debug/weapons.o V:/temp/ns.dll/gccDeveloper-debug/world.o V:/temp/ns.dll/gccDeveloper-debug/xen.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AnimationUtil.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienEquipment.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienTurret.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienWeapon.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAssert.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseBuildable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseInfoLocation.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCloakable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCombat.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConsoleCommands.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConstants.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCurl.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntities.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntityHierarchy.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGamerules.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHive.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMapExtents.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineEquipment.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineTurret.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineWeapon.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMiniMap.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMovementUtil.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNetworkMessages.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusServer.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusTunnelToClient.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHOrder.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayer.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayerUpgrade.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPushableBuildable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHReinforceable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHResearchManager.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptManager.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptServer.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptShared.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSelectionHelper.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerPlayerData.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerUtil.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedMovementInfo.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedUtil.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSiegeTurret.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSoundListManager.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpawn.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpecials.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTeam.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechNode.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechSlotManager.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechTree.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTurret.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVisibleBlipList.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVoiceHelper.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWeldable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWorldUpdate.o V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker.o V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker_ServerOnly.o V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionUtil.o V:/temp/ns.dll/gccDeveloper-debug/../mod/NetworkMeter.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAcidRocketGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienAbilities.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBasePlayerWeapon.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBileBombGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite2.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBlink.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildingGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHClaws.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDevour.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDivineWind.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenade.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenadeGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHealingSpray.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHeavyMachineGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHItemInfo.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHKnife.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMachineGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMetabolize.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMine.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParasiteGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPistol.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPrimalScream.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSonicGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpikeGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpitGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpores.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHStomp.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSwipe.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHUmbraGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWebSpinner.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWelder.o V:/temp/ns.dll/gccDeveloper-debug/ggrenade.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystem.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemEntity.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemManager.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplate.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplateServer.o V:/temp/ns.dll/gccDeveloper-debug/../util/Balance.o V:/temp/ns.dll/gccDeveloper-debug/../util/Checksum.o V:/temp/ns.dll/gccDeveloper-debug/../util/GammaTable.o V:/temp/ns.dll/gccDeveloper-debug/../util/LinuxSupport.o V:/temp/ns.dll/gccDeveloper-debug/../util/Mat3.o V:/temp/ns.dll/gccDeveloper-debug/../util/MathUtil.o V:/temp/ns.dll/gccDeveloper-debug/../util/Quat.o V:/temp/ns.dll/gccDeveloper-debug/../util/Stacktrace.o V:/temp/ns.dll/gccDeveloper-debug/../util/STLUtil.o V:/temp/ns.dll/gccDeveloper-debug/../util/Tokenizer.o V:/temp/ns.dll/gccDeveloper-debug/../util/Zassert.o V:/temp/ns.dll/gccDeveloper-debug/../util/ZassertTemplate.o V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRDescription.o V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRFactory.o - g++ -fPIC -shared -Wl,-soname,libns.dll.so -o V:/temp/ns.dll/gccDeveloper-debug/libns.dll.so V:/temp/ns.dll/gccDeveloper-debug/animating.o V:/temp/ns.dll/gccDeveloper-debug/animation.o V:/temp/ns.dll/gccDeveloper-debug/bmodels.o V:/temp/ns.dll/gccDeveloper-debug/buttons.o V:/temp/ns.dll/gccDeveloper-debug/cbase.o V:/temp/ns.dll/gccDeveloper-debug/client.o V:/temp/ns.dll/gccDeveloper-debug/combat.o V:/temp/ns.dll/gccDeveloper-debug/doors.o V:/temp/ns.dll/gccDeveloper-debug/effects.o V:/temp/ns.dll/gccDeveloper-debug/egon.o V:/temp/ns.dll/gccDeveloper-debug/explode.o V:/temp/ns.dll/gccDeveloper-debug/func_break.o V:/temp/ns.dll/gccDeveloper-debug/func_tank.o V:/temp/ns.dll/gccDeveloper-debug/game.o V:/temp/ns.dll/gccDeveloper-debug/gamerules.o V:/temp/ns.dll/gccDeveloper-debug/gauss.o V:/temp/ns.dll/gccDeveloper-debug/globals.o V:/temp/ns.dll/gccDeveloper-debug/h_ai.o V:/temp/ns.dll/gccDeveloper-debug/h_battery.o V:/temp/ns.dll/gccDeveloper-debug/h_cycler.o V:/temp/ns.dll/gccDeveloper-debug/h_export.o V:/temp/ns.dll/gccDeveloper-debug/items.o V:/temp/ns.dll/gccDeveloper-debug/lights.o V:/temp/ns.dll/gccDeveloper-debug/maprules.o V:/temp/ns.dll/gccDeveloper-debug/mpstubb.o V:/temp/ns.dll/gccDeveloper-debug/multiplay_gamerules.o V:/temp/ns.dll/gccDeveloper-debug/observer.o V:/temp/ns.dll/gccDeveloper-debug/pathcorner.o V:/temp/ns.dll/gccDeveloper-debug/plane.o V:/temp/ns.dll/gccDeveloper-debug/plats.o V:/temp/ns.dll/gccDeveloper-debug/player.o V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_debug.o V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_math.o V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_shared.o V:/temp/ns.dll/gccDeveloper-debug/satchel.o V:/temp/ns.dll/gccDeveloper-debug/shotgun.o V:/temp/ns.dll/gccDeveloper-debug/singleplay_gamerules.o V:/temp/ns.dll/gccDeveloper-debug/skill.o V:/temp/ns.dll/gccDeveloper-debug/sound.o V:/temp/ns.dll/gccDeveloper-debug/soundent.o V:/temp/ns.dll/gccDeveloper-debug/spectator.o V:/temp/ns.dll/gccDeveloper-debug/squeakgrenade.o V:/temp/ns.dll/gccDeveloper-debug/subs.o V:/temp/ns.dll/gccDeveloper-debug/teamplay_gamerules.o V:/temp/ns.dll/gccDeveloper-debug/triggers.o V:/temp/ns.dll/gccDeveloper-debug/turret.o V:/temp/ns.dll/gccDeveloper-debug/util.o V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_banmgr.o V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_gamemgr.o V:/temp/ns.dll/gccDeveloper-debug/weapons.o V:/temp/ns.dll/gccDeveloper-debug/world.o V:/temp/ns.dll/gccDeveloper-debug/xen.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AnimationUtil.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienEquipment.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienTurret.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienWeapon.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAssert.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseBuildable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseInfoLocation.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCloakable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCombat.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConsoleCommands.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConstants.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCurl.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntities.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntityHierarchy.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGamerules.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHive.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMapExtents.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineEquipment.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineTurret.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineWeapon.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMiniMap.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMovementUtil.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNetworkMessages.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusServer.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusTunnelToClient.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHOrder.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayer.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayerUpgrade.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPushableBuildable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHReinforceable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHResearchManager.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptManager.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptServer.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptShared.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSelectionHelper.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerPlayerData.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerUtil.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedMovementInfo.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedUtil.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSiegeTurret.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSoundListManager.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpawn.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpecials.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTeam.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechNode.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechSlotManager.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechTree.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTurret.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVisibleBlipList.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVoiceHelper.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWeldable.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWorldUpdate.o V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker.o V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker_ServerOnly.o V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionUtil.o V:/temp/ns.dll/gccDeveloper-debug/../mod/NetworkMeter.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAcidRocketGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienAbilities.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBasePlayerWeapon.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBileBombGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite2.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBlink.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildingGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHClaws.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDevour.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDivineWind.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenade.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenadeGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHealingSpray.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHeavyMachineGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHItemInfo.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHKnife.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMachineGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMetabolize.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMine.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParasiteGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPistol.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPrimalScream.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSonicGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpikeGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpitGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpores.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHStomp.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSwipe.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHUmbraGun.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWebSpinner.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWelder.o V:/temp/ns.dll/gccDeveloper-debug/ggrenade.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystem.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemEntity.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemManager.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplate.o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplateServer.o V:/temp/ns.dll/gccDeveloper-debug/../util/Balance.o V:/temp/ns.dll/gccDeveloper-debug/../util/Checksum.o V:/temp/ns.dll/gccDeveloper-debug/../util/GammaTable.o V:/temp/ns.dll/gccDeveloper-debug/../util/LinuxSupport.o V:/temp/ns.dll/gccDeveloper-debug/../util/Mat3.o V:/temp/ns.dll/gccDeveloper-debug/../util/MathUtil.o V:/temp/ns.dll/gccDeveloper-debug/../util/Quat.o V:/temp/ns.dll/gccDeveloper-debug/../util/Stacktrace.o V:/temp/ns.dll/gccDeveloper-debug/../util/STLUtil.o V:/temp/ns.dll/gccDeveloper-debug/../util/Tokenizer.o V:/temp/ns.dll/gccDeveloper-debug/../util/Zassert.o V:/temp/ns.dll/gccDeveloper-debug/../util/ZassertTemplate.o V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRDescription.o V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRFactory.o $(Developer-debug_Implicitly_Linked_Objects) - -# Compiles file animating.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/animating.d -V:/temp/ns.dll/gccDeveloper-debug/animating.o: animating.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c animating.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/animating.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM animating.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/animating.d - -# Compiles file animation.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/animation.d -V:/temp/ns.dll/gccDeveloper-debug/animation.o: animation.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c animation.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/animation.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM animation.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/animation.d - -# Compiles file bmodels.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/bmodels.d -V:/temp/ns.dll/gccDeveloper-debug/bmodels.o: bmodels.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c bmodels.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/bmodels.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM bmodels.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/bmodels.d - -# Compiles file buttons.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/buttons.d -V:/temp/ns.dll/gccDeveloper-debug/buttons.o: buttons.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c buttons.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/buttons.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM buttons.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/buttons.d - -# Compiles file cbase.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/cbase.d -V:/temp/ns.dll/gccDeveloper-debug/cbase.o: cbase.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c cbase.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/cbase.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM cbase.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/cbase.d - -# Compiles file client.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/client.d -V:/temp/ns.dll/gccDeveloper-debug/client.o: client.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c client.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/client.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM client.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/client.d - -# Compiles file combat.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/combat.d -V:/temp/ns.dll/gccDeveloper-debug/combat.o: combat.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c combat.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/combat.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM combat.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/combat.d - -# Compiles file doors.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/doors.d -V:/temp/ns.dll/gccDeveloper-debug/doors.o: doors.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c doors.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/doors.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM doors.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/doors.d - -# Compiles file effects.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/effects.d -V:/temp/ns.dll/gccDeveloper-debug/effects.o: effects.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c effects.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/effects.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM effects.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/effects.d - -# Compiles file egon.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/egon.d -V:/temp/ns.dll/gccDeveloper-debug/egon.o: egon.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c egon.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/egon.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM egon.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/egon.d - -# Compiles file explode.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/explode.d -V:/temp/ns.dll/gccDeveloper-debug/explode.o: explode.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c explode.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/explode.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM explode.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/explode.d - -# Compiles file func_break.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/func_break.d -V:/temp/ns.dll/gccDeveloper-debug/func_break.o: func_break.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c func_break.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/func_break.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM func_break.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/func_break.d - -# Compiles file func_tank.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/func_tank.d -V:/temp/ns.dll/gccDeveloper-debug/func_tank.o: func_tank.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c func_tank.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/func_tank.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM func_tank.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/func_tank.d - -# Compiles file game.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/game.d -V:/temp/ns.dll/gccDeveloper-debug/game.o: game.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c game.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/game.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM game.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/game.d - -# Compiles file gamerules.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/gamerules.d -V:/temp/ns.dll/gccDeveloper-debug/gamerules.o: gamerules.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c gamerules.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/gamerules.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM gamerules.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/gamerules.d - -# Compiles file gauss.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/gauss.d -V:/temp/ns.dll/gccDeveloper-debug/gauss.o: gauss.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c gauss.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/gauss.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM gauss.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/gauss.d - -# Compiles file globals.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/globals.d -V:/temp/ns.dll/gccDeveloper-debug/globals.o: globals.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c globals.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/globals.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM globals.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/globals.d - -# Compiles file h_ai.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/h_ai.d -V:/temp/ns.dll/gccDeveloper-debug/h_ai.o: h_ai.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c h_ai.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/h_ai.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM h_ai.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/h_ai.d - -# Compiles file h_battery.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/h_battery.d -V:/temp/ns.dll/gccDeveloper-debug/h_battery.o: h_battery.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c h_battery.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/h_battery.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM h_battery.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/h_battery.d - -# Compiles file h_cycler.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/h_cycler.d -V:/temp/ns.dll/gccDeveloper-debug/h_cycler.o: h_cycler.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c h_cycler.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/h_cycler.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM h_cycler.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/h_cycler.d - -# Compiles file h_export.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/h_export.d -V:/temp/ns.dll/gccDeveloper-debug/h_export.o: h_export.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c h_export.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/h_export.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM h_export.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/h_export.d - -# Compiles file items.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/items.d -V:/temp/ns.dll/gccDeveloper-debug/items.o: items.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c items.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/items.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM items.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/items.d - -# Compiles file lights.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/lights.d -V:/temp/ns.dll/gccDeveloper-debug/lights.o: lights.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c lights.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/lights.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM lights.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/lights.d - -# Compiles file maprules.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/maprules.d -V:/temp/ns.dll/gccDeveloper-debug/maprules.o: maprules.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c maprules.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/maprules.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM maprules.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/maprules.d - -# Compiles file mpstubb.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/mpstubb.d -V:/temp/ns.dll/gccDeveloper-debug/mpstubb.o: mpstubb.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c mpstubb.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/mpstubb.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM mpstubb.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/mpstubb.d - -# Compiles file multiplay_gamerules.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/multiplay_gamerules.d -V:/temp/ns.dll/gccDeveloper-debug/multiplay_gamerules.o: multiplay_gamerules.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c multiplay_gamerules.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/multiplay_gamerules.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM multiplay_gamerules.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/multiplay_gamerules.d - -# Compiles file observer.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/observer.d -V:/temp/ns.dll/gccDeveloper-debug/observer.o: observer.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c observer.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/observer.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM observer.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/observer.d - -# Compiles file pathcorner.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/pathcorner.d -V:/temp/ns.dll/gccDeveloper-debug/pathcorner.o: pathcorner.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c pathcorner.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/pathcorner.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM pathcorner.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/pathcorner.d - -# Compiles file plane.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/plane.d -V:/temp/ns.dll/gccDeveloper-debug/plane.o: plane.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c plane.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/plane.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM plane.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/plane.d - -# Compiles file plats.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/plats.d -V:/temp/ns.dll/gccDeveloper-debug/plats.o: plats.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c plats.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/plats.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM plats.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/plats.d - -# Compiles file player.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/player.d -V:/temp/ns.dll/gccDeveloper-debug/player.o: player.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c player.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/player.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM player.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/player.d - -# Compiles file ../pm_shared/pm_debug.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_debug.d -V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_debug.o: ../pm_shared/pm_debug.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../pm_shared/pm_debug.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_debug.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../pm_shared/pm_debug.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_debug.d - -# Compiles file ../pm_shared/pm_math.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_math.d -V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_math.o: ../pm_shared/pm_math.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../pm_shared/pm_math.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_math.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../pm_shared/pm_math.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_math.d - -# Compiles file ../pm_shared/pm_shared.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_shared.d -V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_shared.o: ../pm_shared/pm_shared.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../pm_shared/pm_shared.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_shared.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../pm_shared/pm_shared.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../pm_shared/pm_shared.d - -# Compiles file satchel.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/satchel.d -V:/temp/ns.dll/gccDeveloper-debug/satchel.o: satchel.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c satchel.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/satchel.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM satchel.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/satchel.d - -# Compiles file shotgun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/shotgun.d -V:/temp/ns.dll/gccDeveloper-debug/shotgun.o: shotgun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c shotgun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/shotgun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM shotgun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/shotgun.d - -# Compiles file singleplay_gamerules.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/singleplay_gamerules.d -V:/temp/ns.dll/gccDeveloper-debug/singleplay_gamerules.o: singleplay_gamerules.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c singleplay_gamerules.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/singleplay_gamerules.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM singleplay_gamerules.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/singleplay_gamerules.d - -# Compiles file skill.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/skill.d -V:/temp/ns.dll/gccDeveloper-debug/skill.o: skill.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c skill.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/skill.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM skill.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/skill.d - -# Compiles file sound.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/sound.d -V:/temp/ns.dll/gccDeveloper-debug/sound.o: sound.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c sound.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/sound.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM sound.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/sound.d - -# Compiles file soundent.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/soundent.d -V:/temp/ns.dll/gccDeveloper-debug/soundent.o: soundent.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c soundent.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/soundent.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM soundent.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/soundent.d - -# Compiles file spectator.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/spectator.d -V:/temp/ns.dll/gccDeveloper-debug/spectator.o: spectator.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c spectator.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/spectator.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM spectator.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/spectator.d - -# Compiles file squeakgrenade.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/squeakgrenade.d -V:/temp/ns.dll/gccDeveloper-debug/squeakgrenade.o: squeakgrenade.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c squeakgrenade.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/squeakgrenade.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM squeakgrenade.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/squeakgrenade.d - -# Compiles file subs.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/subs.d -V:/temp/ns.dll/gccDeveloper-debug/subs.o: subs.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c subs.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/subs.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM subs.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/subs.d - -# Compiles file teamplay_gamerules.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/teamplay_gamerules.d -V:/temp/ns.dll/gccDeveloper-debug/teamplay_gamerules.o: teamplay_gamerules.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c teamplay_gamerules.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/teamplay_gamerules.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM teamplay_gamerules.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/teamplay_gamerules.d - -# Compiles file triggers.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/triggers.d -V:/temp/ns.dll/gccDeveloper-debug/triggers.o: triggers.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c triggers.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/triggers.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM triggers.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/triggers.d - -# Compiles file turret.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/turret.d -V:/temp/ns.dll/gccDeveloper-debug/turret.o: turret.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c turret.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/turret.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM turret.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/turret.d - -# Compiles file util.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/util.d -V:/temp/ns.dll/gccDeveloper-debug/util.o: util.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c util.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/util.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM util.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/util.d - -# Compiles file ../game_shared/voice_banmgr.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_banmgr.d -V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_banmgr.o: ../game_shared/voice_banmgr.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../game_shared/voice_banmgr.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_banmgr.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../game_shared/voice_banmgr.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_banmgr.d - -# Compiles file ../game_shared/voice_gamemgr.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_gamemgr.d -V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_gamemgr.o: ../game_shared/voice_gamemgr.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../game_shared/voice_gamemgr.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_gamemgr.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../game_shared/voice_gamemgr.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../game_shared/voice_gamemgr.d - -# Compiles file weapons.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/weapons.d -V:/temp/ns.dll/gccDeveloper-debug/weapons.o: weapons.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c weapons.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/weapons.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM weapons.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/weapons.d - -# Compiles file world.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/world.d -V:/temp/ns.dll/gccDeveloper-debug/world.o: world.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c world.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/world.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM world.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/world.d - -# Compiles file xen.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/xen.d -V:/temp/ns.dll/gccDeveloper-debug/xen.o: xen.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c xen.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/xen.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM xen.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/xen.d - -# Compiles file ../mod/AnimationUtil.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AnimationUtil.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AnimationUtil.o: ../mod/AnimationUtil.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AnimationUtil.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AnimationUtil.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AnimationUtil.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AnimationUtil.d - -# Compiles file ../mod/AvHAlienEquipment.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienEquipment.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienEquipment.o: ../mod/AvHAlienEquipment.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHAlienEquipment.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienEquipment.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHAlienEquipment.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienEquipment.d - -# Compiles file ../mod/AvHAlienTurret.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienTurret.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienTurret.o: ../mod/AvHAlienTurret.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHAlienTurret.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienTurret.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHAlienTurret.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienTurret.d - -# Compiles file ../mod/AvHAlienWeapon.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienWeapon.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienWeapon.o: ../mod/AvHAlienWeapon.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHAlienWeapon.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienWeapon.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHAlienWeapon.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienWeapon.d - -# Compiles file ../mod/AvHAssert.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAssert.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAssert.o: ../mod/AvHAssert.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHAssert.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAssert.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHAssert.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAssert.d - -# Compiles file ../mod/AvHBaseBuildable.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseBuildable.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseBuildable.o: ../mod/AvHBaseBuildable.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHBaseBuildable.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseBuildable.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHBaseBuildable.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseBuildable.d - -# Compiles file ../mod/AvHBaseInfoLocation.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseInfoLocation.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseInfoLocation.o: ../mod/AvHBaseInfoLocation.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHBaseInfoLocation.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseInfoLocation.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHBaseInfoLocation.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBaseInfoLocation.d - -# Compiles file ../mod/AvHBuildable.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildable.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildable.o: ../mod/AvHBuildable.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHBuildable.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildable.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHBuildable.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildable.d - -# Compiles file ../mod/AvHCloakable.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCloakable.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCloakable.o: ../mod/AvHCloakable.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHCloakable.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCloakable.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHCloakable.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCloakable.d - -# Compiles file ../mod/AvHCombat.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCombat.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCombat.o: ../mod/AvHCombat.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHCombat.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCombat.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHCombat.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCombat.d - -# Compiles file ../mod/AvHConsoleCommands.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConsoleCommands.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConsoleCommands.o: ../mod/AvHConsoleCommands.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHConsoleCommands.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConsoleCommands.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHConsoleCommands.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConsoleCommands.d - -# Compiles file ../mod/AvHConstants.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConstants.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConstants.o: ../mod/AvHConstants.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHConstants.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConstants.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHConstants.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHConstants.d - -# Compiles file ../mod/AvHCurl.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCurl.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCurl.o: ../mod/AvHCurl.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHCurl.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCurl.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHCurl.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHCurl.d - -# Compiles file ../mod/AvHEntities.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntities.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntities.o: ../mod/AvHEntities.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHEntities.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntities.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHEntities.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntities.d - -# Compiles file ../mod/AvHEntityHierarchy.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntityHierarchy.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntityHierarchy.o: ../mod/AvHEntityHierarchy.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHEntityHierarchy.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntityHierarchy.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHEntityHierarchy.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHEntityHierarchy.d - -# Compiles file ../mod/AvHGamerules.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGamerules.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGamerules.o: ../mod/AvHGamerules.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHGamerules.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGamerules.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHGamerules.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGamerules.d - -# Compiles file ../mod/AvHHive.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHive.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHive.o: ../mod/AvHHive.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHHive.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHive.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHHive.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHive.d - -# Compiles file ../mod/AvHMapExtents.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMapExtents.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMapExtents.o: ../mod/AvHMapExtents.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHMapExtents.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMapExtents.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHMapExtents.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMapExtents.d - -# Compiles file ../mod/AvHMarineEquipment.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineEquipment.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineEquipment.o: ../mod/AvHMarineEquipment.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHMarineEquipment.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineEquipment.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHMarineEquipment.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineEquipment.d - -# Compiles file ../mod/AvHMarineTurret.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineTurret.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineTurret.o: ../mod/AvHMarineTurret.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHMarineTurret.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineTurret.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHMarineTurret.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineTurret.d - -# Compiles file ../mod/AvHMarineWeapon.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineWeapon.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineWeapon.o: ../mod/AvHMarineWeapon.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHMarineWeapon.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineWeapon.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHMarineWeapon.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMarineWeapon.d - -# Compiles file ../mod/AvHMiniMap.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMiniMap.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMiniMap.o: ../mod/AvHMiniMap.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHMiniMap.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMiniMap.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHMiniMap.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMiniMap.d - -# Compiles file ../mod/AvHMovementUtil.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMovementUtil.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMovementUtil.o: ../mod/AvHMovementUtil.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHMovementUtil.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMovementUtil.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHMovementUtil.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMovementUtil.d - -# Compiles file ../mod/AvHNetworkMessages.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNetworkMessages.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNetworkMessages.o: ../mod/AvHNetworkMessages.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHNetworkMessages.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNetworkMessages.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHNetworkMessages.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNetworkMessages.d - -# Compiles file ../mod/AvHNexusServer.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusServer.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusServer.o: ../mod/AvHNexusServer.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHNexusServer.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusServer.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHNexusServer.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusServer.d - -# Compiles file ../mod/AvHNexusTunnelToClient.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusTunnelToClient.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusTunnelToClient.o: ../mod/AvHNexusTunnelToClient.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHNexusTunnelToClient.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusTunnelToClient.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHNexusTunnelToClient.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHNexusTunnelToClient.d - -# Compiles file ../mod/AvHOrder.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHOrder.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHOrder.o: ../mod/AvHOrder.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHOrder.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHOrder.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHOrder.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHOrder.d - -# Compiles file ../mod/AvHPlayer.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayer.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayer.o: ../mod/AvHPlayer.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHPlayer.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayer.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHPlayer.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayer.d - -# Compiles file ../mod/AvHPlayerUpgrade.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayerUpgrade.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayerUpgrade.o: ../mod/AvHPlayerUpgrade.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHPlayerUpgrade.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayerUpgrade.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHPlayerUpgrade.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPlayerUpgrade.d - -# Compiles file ../mod/AvHPushableBuildable.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPushableBuildable.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPushableBuildable.o: ../mod/AvHPushableBuildable.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHPushableBuildable.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPushableBuildable.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHPushableBuildable.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPushableBuildable.d - -# Compiles file ../mod/AvHReinforceable.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHReinforceable.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHReinforceable.o: ../mod/AvHReinforceable.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHReinforceable.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHReinforceable.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHReinforceable.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHReinforceable.d - -# Compiles file ../mod/AvHResearchManager.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHResearchManager.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHResearchManager.o: ../mod/AvHResearchManager.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHResearchManager.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHResearchManager.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHResearchManager.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHResearchManager.d - -# Compiles file ../mod/AvHScriptManager.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptManager.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptManager.o: ../mod/AvHScriptManager.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHScriptManager.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptManager.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHScriptManager.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptManager.d - -# Compiles file ../mod/AvHScriptServer.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptServer.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptServer.o: ../mod/AvHScriptServer.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHScriptServer.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptServer.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHScriptServer.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptServer.d - -# Compiles file ../mod/AvHScriptShared.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptShared.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptShared.o: ../mod/AvHScriptShared.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHScriptShared.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptShared.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHScriptShared.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHScriptShared.d - -# Compiles file ../mod/AvHSelectionHelper.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSelectionHelper.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSelectionHelper.o: ../mod/AvHSelectionHelper.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSelectionHelper.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSelectionHelper.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSelectionHelper.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSelectionHelper.d - -# Compiles file ../mod/AvHServerPlayerData.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerPlayerData.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerPlayerData.o: ../mod/AvHServerPlayerData.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHServerPlayerData.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerPlayerData.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHServerPlayerData.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerPlayerData.d - -# Compiles file ../mod/AvHServerUtil.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerUtil.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerUtil.o: ../mod/AvHServerUtil.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHServerUtil.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerUtil.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHServerUtil.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHServerUtil.d - -# Compiles file ../mod/AvHSharedMovementInfo.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedMovementInfo.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedMovementInfo.o: ../mod/AvHSharedMovementInfo.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSharedMovementInfo.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedMovementInfo.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSharedMovementInfo.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedMovementInfo.d - -# Compiles file ../mod/AvHSharedUtil.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedUtil.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedUtil.o: ../mod/AvHSharedUtil.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSharedUtil.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedUtil.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSharedUtil.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSharedUtil.d - -# Compiles file ../mod/AvHSiegeTurret.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSiegeTurret.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSiegeTurret.o: ../mod/AvHSiegeTurret.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSiegeTurret.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSiegeTurret.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSiegeTurret.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSiegeTurret.d - -# Compiles file ../mod/AvHSoundListManager.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSoundListManager.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSoundListManager.o: ../mod/AvHSoundListManager.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSoundListManager.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSoundListManager.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSoundListManager.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSoundListManager.d - -# Compiles file ../mod/AvHSpawn.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpawn.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpawn.o: ../mod/AvHSpawn.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSpawn.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpawn.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSpawn.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpawn.d - -# Compiles file ../mod/AvHSpecials.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpecials.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpecials.o: ../mod/AvHSpecials.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSpecials.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpecials.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSpecials.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpecials.d - -# Compiles file ../mod/AvHTeam.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTeam.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTeam.o: ../mod/AvHTeam.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHTeam.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTeam.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHTeam.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTeam.d - -# Compiles file ../mod/AvHTechNode.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechNode.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechNode.o: ../mod/AvHTechNode.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHTechNode.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechNode.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHTechNode.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechNode.d - -# Compiles file ../mod/AvHTechSlotManager.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechSlotManager.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechSlotManager.o: ../mod/AvHTechSlotManager.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHTechSlotManager.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechSlotManager.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHTechSlotManager.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechSlotManager.d - -# Compiles file ../mod/AvHTechTree.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechTree.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechTree.o: ../mod/AvHTechTree.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHTechTree.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechTree.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHTechTree.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTechTree.d - -# Compiles file ../mod/AvHTurret.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTurret.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTurret.o: ../mod/AvHTurret.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHTurret.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTurret.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHTurret.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHTurret.d - -# Compiles file ../mod/AvHVisibleBlipList.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVisibleBlipList.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVisibleBlipList.o: ../mod/AvHVisibleBlipList.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHVisibleBlipList.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVisibleBlipList.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHVisibleBlipList.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVisibleBlipList.d - -# Compiles file ../mod/AvHVoiceHelper.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVoiceHelper.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVoiceHelper.o: ../mod/AvHVoiceHelper.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHVoiceHelper.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVoiceHelper.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHVoiceHelper.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHVoiceHelper.d - -# Compiles file ../mod/AvHWeldable.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWeldable.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWeldable.o: ../mod/AvHWeldable.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHWeldable.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWeldable.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHWeldable.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWeldable.d - -# Compiles file ../mod/AvHWorldUpdate.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWorldUpdate.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWorldUpdate.o: ../mod/AvHWorldUpdate.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHWorldUpdate.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWorldUpdate.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHWorldUpdate.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWorldUpdate.d - -# Compiles file ../mod/CollisionChecker.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker.o: ../mod/CollisionChecker.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/CollisionChecker.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/CollisionChecker.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker.d - -# Compiles file ../mod/CollisionChecker_ServerOnly.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker_ServerOnly.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker_ServerOnly.o: ../mod/CollisionChecker_ServerOnly.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/CollisionChecker_ServerOnly.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker_ServerOnly.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/CollisionChecker_ServerOnly.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionChecker_ServerOnly.d - -# Compiles file ../mod/CollisionUtil.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionUtil.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionUtil.o: ../mod/CollisionUtil.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/CollisionUtil.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionUtil.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/CollisionUtil.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/CollisionUtil.d - -# Compiles file ../mod/NetworkMeter.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/NetworkMeter.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/NetworkMeter.o: ../mod/NetworkMeter.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/NetworkMeter.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/NetworkMeter.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/NetworkMeter.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/NetworkMeter.d - -# Compiles file ../mod/AvHAcidRocketGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAcidRocketGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAcidRocketGun.o: ../mod/AvHAcidRocketGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHAcidRocketGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAcidRocketGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHAcidRocketGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAcidRocketGun.d - -# Compiles file ../mod/AvHAlienAbilities.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienAbilities.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienAbilities.o: ../mod/AvHAlienAbilities.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHAlienAbilities.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienAbilities.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHAlienAbilities.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHAlienAbilities.d - -# Compiles file ../mod/AvHBasePlayerWeapon.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBasePlayerWeapon.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBasePlayerWeapon.o: ../mod/AvHBasePlayerWeapon.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHBasePlayerWeapon.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBasePlayerWeapon.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHBasePlayerWeapon.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBasePlayerWeapon.d - -# Compiles file ../mod/AvHBileBombGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBileBombGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBileBombGun.o: ../mod/AvHBileBombGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHBileBombGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBileBombGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHBileBombGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBileBombGun.d - -# Compiles file ../mod/AvHBite.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite.o: ../mod/AvHBite.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHBite.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHBite.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite.d - -# Compiles file ../mod/AvHBite2.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite2.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite2.o: ../mod/AvHBite2.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHBite2.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite2.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHBite2.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBite2.d - -# Compiles file ../mod/AvHBlink.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBlink.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBlink.o: ../mod/AvHBlink.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHBlink.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBlink.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHBlink.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBlink.d - -# Compiles file ../mod/AvHBuildingGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildingGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildingGun.o: ../mod/AvHBuildingGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHBuildingGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildingGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHBuildingGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHBuildingGun.d - -# Compiles file ../mod/AvHClaws.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHClaws.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHClaws.o: ../mod/AvHClaws.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHClaws.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHClaws.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHClaws.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHClaws.d - -# Compiles file ../mod/AvHDevour.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDevour.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDevour.o: ../mod/AvHDevour.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHDevour.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDevour.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHDevour.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDevour.d - -# Compiles file ../mod/AvHDivineWind.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDivineWind.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDivineWind.o: ../mod/AvHDivineWind.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHDivineWind.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDivineWind.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHDivineWind.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHDivineWind.d - -# Compiles file ../mod/AvHGrenade.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenade.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenade.o: ../mod/AvHGrenade.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHGrenade.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenade.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHGrenade.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenade.d - -# Compiles file ../mod/AvHGrenadeGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenadeGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenadeGun.o: ../mod/AvHGrenadeGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHGrenadeGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenadeGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHGrenadeGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHGrenadeGun.d - -# Compiles file ../mod/AvHHealingSpray.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHealingSpray.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHealingSpray.o: ../mod/AvHHealingSpray.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHHealingSpray.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHealingSpray.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHHealingSpray.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHealingSpray.d - -# Compiles file ../mod/AvHHeavyMachineGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHeavyMachineGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHeavyMachineGun.o: ../mod/AvHHeavyMachineGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHHeavyMachineGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHeavyMachineGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHHeavyMachineGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHHeavyMachineGun.d - -# Compiles file ../mod/AvHItemInfo.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHItemInfo.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHItemInfo.o: ../mod/AvHItemInfo.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHItemInfo.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHItemInfo.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHItemInfo.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHItemInfo.d - -# Compiles file ../mod/AvHKnife.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHKnife.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHKnife.o: ../mod/AvHKnife.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHKnife.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHKnife.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHKnife.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHKnife.d - -# Compiles file ../mod/AvHMachineGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMachineGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMachineGun.o: ../mod/AvHMachineGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHMachineGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMachineGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHMachineGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMachineGun.d - -# Compiles file ../mod/AvHMetabolize.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMetabolize.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMetabolize.o: ../mod/AvHMetabolize.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHMetabolize.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMetabolize.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHMetabolize.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMetabolize.d - -# Compiles file ../mod/AvHMine.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMine.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMine.o: ../mod/AvHMine.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHMine.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMine.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHMine.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHMine.d - -# Compiles file ../mod/AvHParasiteGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParasiteGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParasiteGun.o: ../mod/AvHParasiteGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHParasiteGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParasiteGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHParasiteGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParasiteGun.d - -# Compiles file ../mod/AvHPistol.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPistol.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPistol.o: ../mod/AvHPistol.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHPistol.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPistol.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHPistol.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPistol.d - -# Compiles file ../mod/AvHPrimalScream.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPrimalScream.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPrimalScream.o: ../mod/AvHPrimalScream.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHPrimalScream.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPrimalScream.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHPrimalScream.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHPrimalScream.d - -# Compiles file ../mod/AvHSonicGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSonicGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSonicGun.o: ../mod/AvHSonicGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSonicGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSonicGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSonicGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSonicGun.d - -# Compiles file ../mod/AvHSpikeGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpikeGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpikeGun.o: ../mod/AvHSpikeGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSpikeGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpikeGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSpikeGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpikeGun.d - -# Compiles file ../mod/AvHSpitGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpitGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpitGun.o: ../mod/AvHSpitGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSpitGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpitGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSpitGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpitGun.d - -# Compiles file ../mod/AvHSpores.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpores.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpores.o: ../mod/AvHSpores.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSpores.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpores.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSpores.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSpores.d - -# Compiles file ../mod/AvHStomp.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHStomp.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHStomp.o: ../mod/AvHStomp.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHStomp.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHStomp.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHStomp.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHStomp.d - -# Compiles file ../mod/AvHSwipe.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSwipe.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSwipe.o: ../mod/AvHSwipe.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHSwipe.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSwipe.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHSwipe.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHSwipe.d - -# Compiles file ../mod/AvHUmbraGun.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHUmbraGun.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHUmbraGun.o: ../mod/AvHUmbraGun.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHUmbraGun.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHUmbraGun.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHUmbraGun.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHUmbraGun.d - -# Compiles file ../mod/AvHWebSpinner.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWebSpinner.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWebSpinner.o: ../mod/AvHWebSpinner.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHWebSpinner.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWebSpinner.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHWebSpinner.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWebSpinner.d - -# Compiles file ../mod/AvHWelder.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWelder.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWelder.o: ../mod/AvHWelder.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHWelder.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWelder.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHWelder.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHWelder.d - -# Compiles file ggrenade.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/ggrenade.d -V:/temp/ns.dll/gccDeveloper-debug/ggrenade.o: ggrenade.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ggrenade.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/ggrenade.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ggrenade.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/ggrenade.d - -# Compiles file ../mod/AvHParticleSystem.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystem.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystem.o: ../mod/AvHParticleSystem.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHParticleSystem.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystem.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHParticleSystem.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystem.d - -# Compiles file ../mod/AvHParticleSystemEntity.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemEntity.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemEntity.o: ../mod/AvHParticleSystemEntity.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHParticleSystemEntity.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemEntity.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHParticleSystemEntity.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemEntity.d - -# Compiles file ../mod/AvHParticleSystemManager.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemManager.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemManager.o: ../mod/AvHParticleSystemManager.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHParticleSystemManager.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemManager.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHParticleSystemManager.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleSystemManager.d - -# Compiles file ../mod/AvHParticleTemplate.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplate.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplate.o: ../mod/AvHParticleTemplate.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHParticleTemplate.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplate.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHParticleTemplate.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplate.d - -# Compiles file ../mod/AvHParticleTemplateServer.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplateServer.d -V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplateServer.o: ../mod/AvHParticleTemplateServer.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../mod/AvHParticleTemplateServer.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplateServer.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../mod/AvHParticleTemplateServer.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../mod/AvHParticleTemplateServer.d - -# Compiles file ../util/Balance.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/Balance.d -V:/temp/ns.dll/gccDeveloper-debug/../util/Balance.o: ../util/Balance.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/Balance.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/Balance.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/Balance.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/Balance.d - -# Compiles file ../util/Checksum.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/Checksum.d -V:/temp/ns.dll/gccDeveloper-debug/../util/Checksum.o: ../util/Checksum.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/Checksum.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/Checksum.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/Checksum.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/Checksum.d - -# Compiles file ../util/GammaTable.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/GammaTable.d -V:/temp/ns.dll/gccDeveloper-debug/../util/GammaTable.o: ../util/GammaTable.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/GammaTable.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/GammaTable.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/GammaTable.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/GammaTable.d - -# Compiles file ../util/LinuxSupport.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/LinuxSupport.d -V:/temp/ns.dll/gccDeveloper-debug/../util/LinuxSupport.o: ../util/LinuxSupport.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/LinuxSupport.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/LinuxSupport.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/LinuxSupport.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/LinuxSupport.d - -# Compiles file ../util/Mat3.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/Mat3.d -V:/temp/ns.dll/gccDeveloper-debug/../util/Mat3.o: ../util/Mat3.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/Mat3.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/Mat3.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/Mat3.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/Mat3.d - -# Compiles file ../util/MathUtil.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/MathUtil.d -V:/temp/ns.dll/gccDeveloper-debug/../util/MathUtil.o: ../util/MathUtil.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/MathUtil.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/MathUtil.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/MathUtil.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/MathUtil.d - -# Compiles file ../util/Quat.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/Quat.d -V:/temp/ns.dll/gccDeveloper-debug/../util/Quat.o: ../util/Quat.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/Quat.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/Quat.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/Quat.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/Quat.d - -# Compiles file ../util/Stacktrace.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/Stacktrace.d -V:/temp/ns.dll/gccDeveloper-debug/../util/Stacktrace.o: ../util/Stacktrace.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/Stacktrace.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/Stacktrace.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/Stacktrace.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/Stacktrace.d - -# Compiles file ../util/STLUtil.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/STLUtil.d -V:/temp/ns.dll/gccDeveloper-debug/../util/STLUtil.o: ../util/STLUtil.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/STLUtil.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/STLUtil.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/STLUtil.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/STLUtil.d - -# Compiles file ../util/Tokenizer.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/Tokenizer.d -V:/temp/ns.dll/gccDeveloper-debug/../util/Tokenizer.o: ../util/Tokenizer.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/Tokenizer.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/Tokenizer.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/Tokenizer.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/Tokenizer.d - -# Compiles file ../util/Zassert.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/Zassert.d -V:/temp/ns.dll/gccDeveloper-debug/../util/Zassert.o: ../util/Zassert.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/Zassert.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/Zassert.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/Zassert.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/Zassert.d - -# Compiles file ../util/ZassertTemplate.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../util/ZassertTemplate.d -V:/temp/ns.dll/gccDeveloper-debug/../util/ZassertTemplate.o: ../util/ZassertTemplate.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../util/ZassertTemplate.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../util/ZassertTemplate.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../util/ZassertTemplate.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../util/ZassertTemplate.d - -# Compiles file ../textrep/TRDescription.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRDescription.d -V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRDescription.o: ../textrep/TRDescription.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../textrep/TRDescription.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRDescription.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../textrep/TRDescription.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRDescription.d - -# Compiles file ../textrep/TRFactory.cpp for the Developer-debug configuration... --include V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRFactory.d -V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRFactory.o: ../textrep/TRFactory.cpp - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -c ../textrep/TRFactory.cpp $(Developer-debug_Include_Path) -o V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRFactory.o - $(CPP_COMPILER) $(Developer-debug_Preprocessor_Definitions) $(Developer-debug_Compiler_Flags) -MM ../textrep/TRFactory.cpp $(Developer-debug_Include_Path) > V:/temp/ns.dll/gccDeveloper-debug/../textrep/TRFactory.d - -# Builds the Developer-release configuration... -.PHONY: Developer-release -Developer-release: create_folders V:/temp/ns.dll/gccDeveloper-release/animating.o V:/temp/ns.dll/gccDeveloper-release/animation.o V:/temp/ns.dll/gccDeveloper-release/bmodels.o V:/temp/ns.dll/gccDeveloper-release/buttons.o V:/temp/ns.dll/gccDeveloper-release/cbase.o V:/temp/ns.dll/gccDeveloper-release/client.o V:/temp/ns.dll/gccDeveloper-release/combat.o V:/temp/ns.dll/gccDeveloper-release/doors.o V:/temp/ns.dll/gccDeveloper-release/effects.o V:/temp/ns.dll/gccDeveloper-release/egon.o V:/temp/ns.dll/gccDeveloper-release/explode.o V:/temp/ns.dll/gccDeveloper-release/func_break.o V:/temp/ns.dll/gccDeveloper-release/func_tank.o V:/temp/ns.dll/gccDeveloper-release/game.o V:/temp/ns.dll/gccDeveloper-release/gamerules.o V:/temp/ns.dll/gccDeveloper-release/gauss.o V:/temp/ns.dll/gccDeveloper-release/globals.o V:/temp/ns.dll/gccDeveloper-release/h_ai.o V:/temp/ns.dll/gccDeveloper-release/h_battery.o V:/temp/ns.dll/gccDeveloper-release/h_cycler.o V:/temp/ns.dll/gccDeveloper-release/h_export.o V:/temp/ns.dll/gccDeveloper-release/items.o V:/temp/ns.dll/gccDeveloper-release/lights.o V:/temp/ns.dll/gccDeveloper-release/maprules.o V:/temp/ns.dll/gccDeveloper-release/mpstubb.o V:/temp/ns.dll/gccDeveloper-release/multiplay_gamerules.o V:/temp/ns.dll/gccDeveloper-release/observer.o V:/temp/ns.dll/gccDeveloper-release/pathcorner.o V:/temp/ns.dll/gccDeveloper-release/plane.o V:/temp/ns.dll/gccDeveloper-release/plats.o V:/temp/ns.dll/gccDeveloper-release/player.o V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_debug.o V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_math.o V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_shared.o V:/temp/ns.dll/gccDeveloper-release/satchel.o V:/temp/ns.dll/gccDeveloper-release/shotgun.o V:/temp/ns.dll/gccDeveloper-release/singleplay_gamerules.o V:/temp/ns.dll/gccDeveloper-release/skill.o V:/temp/ns.dll/gccDeveloper-release/sound.o V:/temp/ns.dll/gccDeveloper-release/soundent.o V:/temp/ns.dll/gccDeveloper-release/spectator.o V:/temp/ns.dll/gccDeveloper-release/squeakgrenade.o V:/temp/ns.dll/gccDeveloper-release/subs.o V:/temp/ns.dll/gccDeveloper-release/teamplay_gamerules.o V:/temp/ns.dll/gccDeveloper-release/triggers.o V:/temp/ns.dll/gccDeveloper-release/turret.o V:/temp/ns.dll/gccDeveloper-release/util.o V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_banmgr.o V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_gamemgr.o V:/temp/ns.dll/gccDeveloper-release/weapons.o V:/temp/ns.dll/gccDeveloper-release/world.o V:/temp/ns.dll/gccDeveloper-release/xen.o V:/temp/ns.dll/gccDeveloper-release/../mod/AnimationUtil.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienEquipment.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienTurret.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienWeapon.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAssert.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseBuildable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseInfoLocation.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCloakable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCombat.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConsoleCommands.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConstants.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCurl.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntities.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntityHierarchy.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGamerules.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHive.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMapExtents.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineEquipment.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineTurret.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineWeapon.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMiniMap.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMovementUtil.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNetworkMessages.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusServer.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusTunnelToClient.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHOrder.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayer.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayerUpgrade.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPushableBuildable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHReinforceable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHResearchManager.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptManager.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptServer.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptShared.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSelectionHelper.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerPlayerData.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerUtil.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedMovementInfo.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedUtil.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSiegeTurret.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSoundListManager.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpawn.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpecials.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTeam.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechNode.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechSlotManager.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechTree.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTurret.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVisibleBlipList.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVoiceHelper.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWeldable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWorldUpdate.o V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker.o V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker_ServerOnly.o V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionUtil.o V:/temp/ns.dll/gccDeveloper-release/../mod/NetworkMeter.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAcidRocketGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienAbilities.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBasePlayerWeapon.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBileBombGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite2.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBlink.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildingGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHClaws.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDevour.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDivineWind.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenade.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenadeGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHealingSpray.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHeavyMachineGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHItemInfo.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHKnife.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMachineGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMetabolize.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMine.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParasiteGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPistol.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPrimalScream.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSonicGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpikeGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpitGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpores.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHStomp.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSwipe.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHUmbraGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWebSpinner.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWelder.o V:/temp/ns.dll/gccDeveloper-release/ggrenade.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystem.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemEntity.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemManager.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplate.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplateServer.o V:/temp/ns.dll/gccDeveloper-release/../util/Balance.o V:/temp/ns.dll/gccDeveloper-release/../util/Checksum.o V:/temp/ns.dll/gccDeveloper-release/../util/GammaTable.o V:/temp/ns.dll/gccDeveloper-release/../util/LinuxSupport.o V:/temp/ns.dll/gccDeveloper-release/../util/Mat3.o V:/temp/ns.dll/gccDeveloper-release/../util/MathUtil.o V:/temp/ns.dll/gccDeveloper-release/../util/Quat.o V:/temp/ns.dll/gccDeveloper-release/../util/Stacktrace.o V:/temp/ns.dll/gccDeveloper-release/../util/STLUtil.o V:/temp/ns.dll/gccDeveloper-release/../util/Tokenizer.o V:/temp/ns.dll/gccDeveloper-release/../util/Zassert.o V:/temp/ns.dll/gccDeveloper-release/../util/ZassertTemplate.o V:/temp/ns.dll/gccDeveloper-release/../textrep/TRDescription.o V:/temp/ns.dll/gccDeveloper-release/../textrep/TRFactory.o - g++ -fPIC -shared -Wl,-soname,libns.dll.so -o V:/temp/ns.dll/gccDeveloper-release/libns.dll.so V:/temp/ns.dll/gccDeveloper-release/animating.o V:/temp/ns.dll/gccDeveloper-release/animation.o V:/temp/ns.dll/gccDeveloper-release/bmodels.o V:/temp/ns.dll/gccDeveloper-release/buttons.o V:/temp/ns.dll/gccDeveloper-release/cbase.o V:/temp/ns.dll/gccDeveloper-release/client.o V:/temp/ns.dll/gccDeveloper-release/combat.o V:/temp/ns.dll/gccDeveloper-release/doors.o V:/temp/ns.dll/gccDeveloper-release/effects.o V:/temp/ns.dll/gccDeveloper-release/egon.o V:/temp/ns.dll/gccDeveloper-release/explode.o V:/temp/ns.dll/gccDeveloper-release/func_break.o V:/temp/ns.dll/gccDeveloper-release/func_tank.o V:/temp/ns.dll/gccDeveloper-release/game.o V:/temp/ns.dll/gccDeveloper-release/gamerules.o V:/temp/ns.dll/gccDeveloper-release/gauss.o V:/temp/ns.dll/gccDeveloper-release/globals.o V:/temp/ns.dll/gccDeveloper-release/h_ai.o V:/temp/ns.dll/gccDeveloper-release/h_battery.o V:/temp/ns.dll/gccDeveloper-release/h_cycler.o V:/temp/ns.dll/gccDeveloper-release/h_export.o V:/temp/ns.dll/gccDeveloper-release/items.o V:/temp/ns.dll/gccDeveloper-release/lights.o V:/temp/ns.dll/gccDeveloper-release/maprules.o V:/temp/ns.dll/gccDeveloper-release/mpstubb.o V:/temp/ns.dll/gccDeveloper-release/multiplay_gamerules.o V:/temp/ns.dll/gccDeveloper-release/observer.o V:/temp/ns.dll/gccDeveloper-release/pathcorner.o V:/temp/ns.dll/gccDeveloper-release/plane.o V:/temp/ns.dll/gccDeveloper-release/plats.o V:/temp/ns.dll/gccDeveloper-release/player.o V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_debug.o V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_math.o V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_shared.o V:/temp/ns.dll/gccDeveloper-release/satchel.o V:/temp/ns.dll/gccDeveloper-release/shotgun.o V:/temp/ns.dll/gccDeveloper-release/singleplay_gamerules.o V:/temp/ns.dll/gccDeveloper-release/skill.o V:/temp/ns.dll/gccDeveloper-release/sound.o V:/temp/ns.dll/gccDeveloper-release/soundent.o V:/temp/ns.dll/gccDeveloper-release/spectator.o V:/temp/ns.dll/gccDeveloper-release/squeakgrenade.o V:/temp/ns.dll/gccDeveloper-release/subs.o V:/temp/ns.dll/gccDeveloper-release/teamplay_gamerules.o V:/temp/ns.dll/gccDeveloper-release/triggers.o V:/temp/ns.dll/gccDeveloper-release/turret.o V:/temp/ns.dll/gccDeveloper-release/util.o V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_banmgr.o V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_gamemgr.o V:/temp/ns.dll/gccDeveloper-release/weapons.o V:/temp/ns.dll/gccDeveloper-release/world.o V:/temp/ns.dll/gccDeveloper-release/xen.o V:/temp/ns.dll/gccDeveloper-release/../mod/AnimationUtil.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienEquipment.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienTurret.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienWeapon.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAssert.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseBuildable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseInfoLocation.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCloakable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCombat.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConsoleCommands.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConstants.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCurl.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntities.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntityHierarchy.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGamerules.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHive.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMapExtents.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineEquipment.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineTurret.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineWeapon.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMiniMap.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMovementUtil.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNetworkMessages.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusServer.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusTunnelToClient.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHOrder.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayer.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayerUpgrade.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPushableBuildable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHReinforceable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHResearchManager.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptManager.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptServer.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptShared.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSelectionHelper.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerPlayerData.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerUtil.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedMovementInfo.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedUtil.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSiegeTurret.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSoundListManager.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpawn.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpecials.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTeam.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechNode.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechSlotManager.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechTree.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTurret.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVisibleBlipList.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVoiceHelper.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWeldable.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWorldUpdate.o V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker.o V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker_ServerOnly.o V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionUtil.o V:/temp/ns.dll/gccDeveloper-release/../mod/NetworkMeter.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAcidRocketGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienAbilities.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBasePlayerWeapon.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBileBombGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite2.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBlink.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildingGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHClaws.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDevour.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDivineWind.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenade.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenadeGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHealingSpray.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHeavyMachineGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHItemInfo.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHKnife.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMachineGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMetabolize.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMine.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParasiteGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPistol.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPrimalScream.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSonicGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpikeGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpitGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpores.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHStomp.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSwipe.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHUmbraGun.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWebSpinner.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWelder.o V:/temp/ns.dll/gccDeveloper-release/ggrenade.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystem.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemEntity.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemManager.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplate.o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplateServer.o V:/temp/ns.dll/gccDeveloper-release/../util/Balance.o V:/temp/ns.dll/gccDeveloper-release/../util/Checksum.o V:/temp/ns.dll/gccDeveloper-release/../util/GammaTable.o V:/temp/ns.dll/gccDeveloper-release/../util/LinuxSupport.o V:/temp/ns.dll/gccDeveloper-release/../util/Mat3.o V:/temp/ns.dll/gccDeveloper-release/../util/MathUtil.o V:/temp/ns.dll/gccDeveloper-release/../util/Quat.o V:/temp/ns.dll/gccDeveloper-release/../util/Stacktrace.o V:/temp/ns.dll/gccDeveloper-release/../util/STLUtil.o V:/temp/ns.dll/gccDeveloper-release/../util/Tokenizer.o V:/temp/ns.dll/gccDeveloper-release/../util/Zassert.o V:/temp/ns.dll/gccDeveloper-release/../util/ZassertTemplate.o V:/temp/ns.dll/gccDeveloper-release/../textrep/TRDescription.o V:/temp/ns.dll/gccDeveloper-release/../textrep/TRFactory.o $(Developer-release_Implicitly_Linked_Objects) - -# Compiles file animating.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/animating.d -V:/temp/ns.dll/gccDeveloper-release/animating.o: animating.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c animating.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/animating.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM animating.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/animating.d - -# Compiles file animation.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/animation.d -V:/temp/ns.dll/gccDeveloper-release/animation.o: animation.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c animation.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/animation.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM animation.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/animation.d - -# Compiles file bmodels.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/bmodels.d -V:/temp/ns.dll/gccDeveloper-release/bmodels.o: bmodels.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c bmodels.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/bmodels.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM bmodels.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/bmodels.d - -# Compiles file buttons.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/buttons.d -V:/temp/ns.dll/gccDeveloper-release/buttons.o: buttons.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c buttons.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/buttons.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM buttons.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/buttons.d - -# Compiles file cbase.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/cbase.d -V:/temp/ns.dll/gccDeveloper-release/cbase.o: cbase.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c cbase.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/cbase.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM cbase.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/cbase.d - -# Compiles file client.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/client.d -V:/temp/ns.dll/gccDeveloper-release/client.o: client.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c client.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/client.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM client.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/client.d - -# Compiles file combat.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/combat.d -V:/temp/ns.dll/gccDeveloper-release/combat.o: combat.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c combat.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/combat.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM combat.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/combat.d - -# Compiles file doors.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/doors.d -V:/temp/ns.dll/gccDeveloper-release/doors.o: doors.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c doors.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/doors.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM doors.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/doors.d - -# Compiles file effects.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/effects.d -V:/temp/ns.dll/gccDeveloper-release/effects.o: effects.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c effects.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/effects.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM effects.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/effects.d - -# Compiles file egon.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/egon.d -V:/temp/ns.dll/gccDeveloper-release/egon.o: egon.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c egon.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/egon.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM egon.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/egon.d - -# Compiles file explode.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/explode.d -V:/temp/ns.dll/gccDeveloper-release/explode.o: explode.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c explode.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/explode.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM explode.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/explode.d - -# Compiles file func_break.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/func_break.d -V:/temp/ns.dll/gccDeveloper-release/func_break.o: func_break.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c func_break.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/func_break.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM func_break.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/func_break.d - -# Compiles file func_tank.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/func_tank.d -V:/temp/ns.dll/gccDeveloper-release/func_tank.o: func_tank.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c func_tank.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/func_tank.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM func_tank.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/func_tank.d - -# Compiles file game.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/game.d -V:/temp/ns.dll/gccDeveloper-release/game.o: game.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c game.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/game.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM game.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/game.d - -# Compiles file gamerules.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/gamerules.d -V:/temp/ns.dll/gccDeveloper-release/gamerules.o: gamerules.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c gamerules.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/gamerules.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM gamerules.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/gamerules.d - -# Compiles file gauss.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/gauss.d -V:/temp/ns.dll/gccDeveloper-release/gauss.o: gauss.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c gauss.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/gauss.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM gauss.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/gauss.d - -# Compiles file globals.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/globals.d -V:/temp/ns.dll/gccDeveloper-release/globals.o: globals.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c globals.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/globals.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM globals.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/globals.d - -# Compiles file h_ai.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/h_ai.d -V:/temp/ns.dll/gccDeveloper-release/h_ai.o: h_ai.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c h_ai.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/h_ai.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM h_ai.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/h_ai.d - -# Compiles file h_battery.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/h_battery.d -V:/temp/ns.dll/gccDeveloper-release/h_battery.o: h_battery.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c h_battery.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/h_battery.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM h_battery.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/h_battery.d - -# Compiles file h_cycler.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/h_cycler.d -V:/temp/ns.dll/gccDeveloper-release/h_cycler.o: h_cycler.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c h_cycler.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/h_cycler.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM h_cycler.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/h_cycler.d - -# Compiles file h_export.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/h_export.d -V:/temp/ns.dll/gccDeveloper-release/h_export.o: h_export.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c h_export.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/h_export.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM h_export.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/h_export.d - -# Compiles file items.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/items.d -V:/temp/ns.dll/gccDeveloper-release/items.o: items.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c items.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/items.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM items.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/items.d - -# Compiles file lights.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/lights.d -V:/temp/ns.dll/gccDeveloper-release/lights.o: lights.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c lights.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/lights.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM lights.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/lights.d - -# Compiles file maprules.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/maprules.d -V:/temp/ns.dll/gccDeveloper-release/maprules.o: maprules.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c maprules.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/maprules.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM maprules.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/maprules.d - -# Compiles file mpstubb.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/mpstubb.d -V:/temp/ns.dll/gccDeveloper-release/mpstubb.o: mpstubb.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c mpstubb.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/mpstubb.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM mpstubb.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/mpstubb.d - -# Compiles file multiplay_gamerules.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/multiplay_gamerules.d -V:/temp/ns.dll/gccDeveloper-release/multiplay_gamerules.o: multiplay_gamerules.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c multiplay_gamerules.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/multiplay_gamerules.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM multiplay_gamerules.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/multiplay_gamerules.d - -# Compiles file observer.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/observer.d -V:/temp/ns.dll/gccDeveloper-release/observer.o: observer.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c observer.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/observer.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM observer.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/observer.d - -# Compiles file pathcorner.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/pathcorner.d -V:/temp/ns.dll/gccDeveloper-release/pathcorner.o: pathcorner.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c pathcorner.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/pathcorner.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM pathcorner.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/pathcorner.d - -# Compiles file plane.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/plane.d -V:/temp/ns.dll/gccDeveloper-release/plane.o: plane.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c plane.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/plane.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM plane.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/plane.d - -# Compiles file plats.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/plats.d -V:/temp/ns.dll/gccDeveloper-release/plats.o: plats.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c plats.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/plats.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM plats.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/plats.d - -# Compiles file player.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/player.d -V:/temp/ns.dll/gccDeveloper-release/player.o: player.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c player.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/player.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM player.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/player.d - -# Compiles file ../pm_shared/pm_debug.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_debug.d -V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_debug.o: ../pm_shared/pm_debug.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../pm_shared/pm_debug.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_debug.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../pm_shared/pm_debug.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_debug.d - -# Compiles file ../pm_shared/pm_math.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_math.d -V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_math.o: ../pm_shared/pm_math.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../pm_shared/pm_math.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_math.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../pm_shared/pm_math.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_math.d - -# Compiles file ../pm_shared/pm_shared.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_shared.d -V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_shared.o: ../pm_shared/pm_shared.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../pm_shared/pm_shared.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_shared.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../pm_shared/pm_shared.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../pm_shared/pm_shared.d - -# Compiles file satchel.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/satchel.d -V:/temp/ns.dll/gccDeveloper-release/satchel.o: satchel.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c satchel.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/satchel.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM satchel.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/satchel.d - -# Compiles file shotgun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/shotgun.d -V:/temp/ns.dll/gccDeveloper-release/shotgun.o: shotgun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c shotgun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/shotgun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM shotgun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/shotgun.d - -# Compiles file singleplay_gamerules.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/singleplay_gamerules.d -V:/temp/ns.dll/gccDeveloper-release/singleplay_gamerules.o: singleplay_gamerules.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c singleplay_gamerules.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/singleplay_gamerules.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM singleplay_gamerules.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/singleplay_gamerules.d - -# Compiles file skill.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/skill.d -V:/temp/ns.dll/gccDeveloper-release/skill.o: skill.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c skill.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/skill.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM skill.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/skill.d - -# Compiles file sound.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/sound.d -V:/temp/ns.dll/gccDeveloper-release/sound.o: sound.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c sound.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/sound.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM sound.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/sound.d - -# Compiles file soundent.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/soundent.d -V:/temp/ns.dll/gccDeveloper-release/soundent.o: soundent.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c soundent.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/soundent.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM soundent.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/soundent.d - -# Compiles file spectator.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/spectator.d -V:/temp/ns.dll/gccDeveloper-release/spectator.o: spectator.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c spectator.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/spectator.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM spectator.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/spectator.d - -# Compiles file squeakgrenade.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/squeakgrenade.d -V:/temp/ns.dll/gccDeveloper-release/squeakgrenade.o: squeakgrenade.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c squeakgrenade.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/squeakgrenade.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM squeakgrenade.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/squeakgrenade.d - -# Compiles file subs.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/subs.d -V:/temp/ns.dll/gccDeveloper-release/subs.o: subs.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c subs.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/subs.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM subs.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/subs.d - -# Compiles file teamplay_gamerules.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/teamplay_gamerules.d -V:/temp/ns.dll/gccDeveloper-release/teamplay_gamerules.o: teamplay_gamerules.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c teamplay_gamerules.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/teamplay_gamerules.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM teamplay_gamerules.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/teamplay_gamerules.d - -# Compiles file triggers.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/triggers.d -V:/temp/ns.dll/gccDeveloper-release/triggers.o: triggers.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c triggers.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/triggers.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM triggers.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/triggers.d - -# Compiles file turret.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/turret.d -V:/temp/ns.dll/gccDeveloper-release/turret.o: turret.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c turret.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/turret.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM turret.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/turret.d - -# Compiles file util.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/util.d -V:/temp/ns.dll/gccDeveloper-release/util.o: util.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c util.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/util.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM util.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/util.d - -# Compiles file ../game_shared/voice_banmgr.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_banmgr.d -V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_banmgr.o: ../game_shared/voice_banmgr.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../game_shared/voice_banmgr.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_banmgr.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../game_shared/voice_banmgr.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_banmgr.d - -# Compiles file ../game_shared/voice_gamemgr.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_gamemgr.d -V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_gamemgr.o: ../game_shared/voice_gamemgr.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../game_shared/voice_gamemgr.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_gamemgr.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../game_shared/voice_gamemgr.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../game_shared/voice_gamemgr.d - -# Compiles file weapons.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/weapons.d -V:/temp/ns.dll/gccDeveloper-release/weapons.o: weapons.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c weapons.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/weapons.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM weapons.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/weapons.d - -# Compiles file world.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/world.d -V:/temp/ns.dll/gccDeveloper-release/world.o: world.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c world.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/world.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM world.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/world.d - -# Compiles file xen.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/xen.d -V:/temp/ns.dll/gccDeveloper-release/xen.o: xen.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c xen.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/xen.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM xen.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/xen.d - -# Compiles file ../mod/AnimationUtil.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AnimationUtil.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AnimationUtil.o: ../mod/AnimationUtil.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AnimationUtil.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AnimationUtil.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AnimationUtil.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AnimationUtil.d - -# Compiles file ../mod/AvHAlienEquipment.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienEquipment.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienEquipment.o: ../mod/AvHAlienEquipment.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHAlienEquipment.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienEquipment.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHAlienEquipment.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienEquipment.d - -# Compiles file ../mod/AvHAlienTurret.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienTurret.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienTurret.o: ../mod/AvHAlienTurret.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHAlienTurret.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienTurret.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHAlienTurret.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienTurret.d - -# Compiles file ../mod/AvHAlienWeapon.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienWeapon.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienWeapon.o: ../mod/AvHAlienWeapon.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHAlienWeapon.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienWeapon.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHAlienWeapon.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienWeapon.d - -# Compiles file ../mod/AvHAssert.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAssert.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAssert.o: ../mod/AvHAssert.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHAssert.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAssert.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHAssert.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAssert.d - -# Compiles file ../mod/AvHBaseBuildable.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseBuildable.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseBuildable.o: ../mod/AvHBaseBuildable.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHBaseBuildable.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseBuildable.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHBaseBuildable.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseBuildable.d - -# Compiles file ../mod/AvHBaseInfoLocation.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseInfoLocation.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseInfoLocation.o: ../mod/AvHBaseInfoLocation.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHBaseInfoLocation.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseInfoLocation.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHBaseInfoLocation.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBaseInfoLocation.d - -# Compiles file ../mod/AvHBuildable.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildable.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildable.o: ../mod/AvHBuildable.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHBuildable.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildable.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHBuildable.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildable.d - -# Compiles file ../mod/AvHCloakable.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCloakable.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCloakable.o: ../mod/AvHCloakable.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHCloakable.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCloakable.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHCloakable.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCloakable.d - -# Compiles file ../mod/AvHCombat.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCombat.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCombat.o: ../mod/AvHCombat.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHCombat.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCombat.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHCombat.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCombat.d - -# Compiles file ../mod/AvHConsoleCommands.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConsoleCommands.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConsoleCommands.o: ../mod/AvHConsoleCommands.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHConsoleCommands.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConsoleCommands.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHConsoleCommands.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConsoleCommands.d - -# Compiles file ../mod/AvHConstants.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConstants.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConstants.o: ../mod/AvHConstants.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHConstants.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConstants.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHConstants.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHConstants.d - -# Compiles file ../mod/AvHCurl.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCurl.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCurl.o: ../mod/AvHCurl.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHCurl.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCurl.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHCurl.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHCurl.d - -# Compiles file ../mod/AvHEntities.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntities.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntities.o: ../mod/AvHEntities.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHEntities.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntities.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHEntities.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntities.d - -# Compiles file ../mod/AvHEntityHierarchy.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntityHierarchy.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntityHierarchy.o: ../mod/AvHEntityHierarchy.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHEntityHierarchy.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntityHierarchy.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHEntityHierarchy.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHEntityHierarchy.d - -# Compiles file ../mod/AvHGamerules.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGamerules.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGamerules.o: ../mod/AvHGamerules.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHGamerules.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGamerules.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHGamerules.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGamerules.d - -# Compiles file ../mod/AvHHive.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHive.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHive.o: ../mod/AvHHive.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHHive.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHive.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHHive.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHive.d - -# Compiles file ../mod/AvHMapExtents.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMapExtents.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMapExtents.o: ../mod/AvHMapExtents.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHMapExtents.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMapExtents.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHMapExtents.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMapExtents.d - -# Compiles file ../mod/AvHMarineEquipment.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineEquipment.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineEquipment.o: ../mod/AvHMarineEquipment.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHMarineEquipment.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineEquipment.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHMarineEquipment.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineEquipment.d - -# Compiles file ../mod/AvHMarineTurret.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineTurret.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineTurret.o: ../mod/AvHMarineTurret.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHMarineTurret.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineTurret.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHMarineTurret.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineTurret.d - -# Compiles file ../mod/AvHMarineWeapon.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineWeapon.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineWeapon.o: ../mod/AvHMarineWeapon.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHMarineWeapon.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineWeapon.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHMarineWeapon.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMarineWeapon.d - -# Compiles file ../mod/AvHMiniMap.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMiniMap.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMiniMap.o: ../mod/AvHMiniMap.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHMiniMap.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMiniMap.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHMiniMap.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMiniMap.d - -# Compiles file ../mod/AvHMovementUtil.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMovementUtil.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMovementUtil.o: ../mod/AvHMovementUtil.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHMovementUtil.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMovementUtil.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHMovementUtil.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMovementUtil.d - -# Compiles file ../mod/AvHNetworkMessages.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNetworkMessages.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNetworkMessages.o: ../mod/AvHNetworkMessages.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHNetworkMessages.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNetworkMessages.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHNetworkMessages.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNetworkMessages.d - -# Compiles file ../mod/AvHNexusServer.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusServer.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusServer.o: ../mod/AvHNexusServer.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHNexusServer.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusServer.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHNexusServer.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusServer.d - -# Compiles file ../mod/AvHNexusTunnelToClient.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusTunnelToClient.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusTunnelToClient.o: ../mod/AvHNexusTunnelToClient.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHNexusTunnelToClient.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusTunnelToClient.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHNexusTunnelToClient.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHNexusTunnelToClient.d - -# Compiles file ../mod/AvHOrder.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHOrder.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHOrder.o: ../mod/AvHOrder.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHOrder.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHOrder.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHOrder.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHOrder.d - -# Compiles file ../mod/AvHPlayer.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayer.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayer.o: ../mod/AvHPlayer.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHPlayer.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayer.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHPlayer.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayer.d - -# Compiles file ../mod/AvHPlayerUpgrade.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayerUpgrade.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayerUpgrade.o: ../mod/AvHPlayerUpgrade.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHPlayerUpgrade.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayerUpgrade.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHPlayerUpgrade.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPlayerUpgrade.d - -# Compiles file ../mod/AvHPushableBuildable.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPushableBuildable.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPushableBuildable.o: ../mod/AvHPushableBuildable.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHPushableBuildable.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPushableBuildable.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHPushableBuildable.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPushableBuildable.d - -# Compiles file ../mod/AvHReinforceable.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHReinforceable.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHReinforceable.o: ../mod/AvHReinforceable.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHReinforceable.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHReinforceable.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHReinforceable.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHReinforceable.d - -# Compiles file ../mod/AvHResearchManager.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHResearchManager.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHResearchManager.o: ../mod/AvHResearchManager.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHResearchManager.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHResearchManager.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHResearchManager.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHResearchManager.d - -# Compiles file ../mod/AvHScriptManager.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptManager.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptManager.o: ../mod/AvHScriptManager.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHScriptManager.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptManager.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHScriptManager.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptManager.d - -# Compiles file ../mod/AvHScriptServer.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptServer.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptServer.o: ../mod/AvHScriptServer.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHScriptServer.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptServer.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHScriptServer.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptServer.d - -# Compiles file ../mod/AvHScriptShared.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptShared.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptShared.o: ../mod/AvHScriptShared.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHScriptShared.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptShared.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHScriptShared.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHScriptShared.d - -# Compiles file ../mod/AvHSelectionHelper.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSelectionHelper.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSelectionHelper.o: ../mod/AvHSelectionHelper.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSelectionHelper.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSelectionHelper.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSelectionHelper.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSelectionHelper.d - -# Compiles file ../mod/AvHServerPlayerData.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerPlayerData.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerPlayerData.o: ../mod/AvHServerPlayerData.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHServerPlayerData.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerPlayerData.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHServerPlayerData.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerPlayerData.d - -# Compiles file ../mod/AvHServerUtil.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerUtil.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerUtil.o: ../mod/AvHServerUtil.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHServerUtil.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerUtil.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHServerUtil.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHServerUtil.d - -# Compiles file ../mod/AvHSharedMovementInfo.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedMovementInfo.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedMovementInfo.o: ../mod/AvHSharedMovementInfo.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSharedMovementInfo.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedMovementInfo.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSharedMovementInfo.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedMovementInfo.d - -# Compiles file ../mod/AvHSharedUtil.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedUtil.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedUtil.o: ../mod/AvHSharedUtil.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSharedUtil.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedUtil.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSharedUtil.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSharedUtil.d - -# Compiles file ../mod/AvHSiegeTurret.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSiegeTurret.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSiegeTurret.o: ../mod/AvHSiegeTurret.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSiegeTurret.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSiegeTurret.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSiegeTurret.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSiegeTurret.d - -# Compiles file ../mod/AvHSoundListManager.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSoundListManager.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSoundListManager.o: ../mod/AvHSoundListManager.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSoundListManager.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSoundListManager.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSoundListManager.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSoundListManager.d - -# Compiles file ../mod/AvHSpawn.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpawn.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpawn.o: ../mod/AvHSpawn.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSpawn.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpawn.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSpawn.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpawn.d - -# Compiles file ../mod/AvHSpecials.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpecials.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpecials.o: ../mod/AvHSpecials.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSpecials.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpecials.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSpecials.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpecials.d - -# Compiles file ../mod/AvHTeam.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTeam.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTeam.o: ../mod/AvHTeam.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHTeam.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTeam.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHTeam.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTeam.d - -# Compiles file ../mod/AvHTechNode.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechNode.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechNode.o: ../mod/AvHTechNode.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHTechNode.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechNode.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHTechNode.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechNode.d - -# Compiles file ../mod/AvHTechSlotManager.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechSlotManager.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechSlotManager.o: ../mod/AvHTechSlotManager.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHTechSlotManager.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechSlotManager.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHTechSlotManager.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechSlotManager.d - -# Compiles file ../mod/AvHTechTree.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechTree.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechTree.o: ../mod/AvHTechTree.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHTechTree.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechTree.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHTechTree.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTechTree.d - -# Compiles file ../mod/AvHTurret.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTurret.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTurret.o: ../mod/AvHTurret.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHTurret.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTurret.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHTurret.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHTurret.d - -# Compiles file ../mod/AvHVisibleBlipList.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVisibleBlipList.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVisibleBlipList.o: ../mod/AvHVisibleBlipList.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHVisibleBlipList.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVisibleBlipList.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHVisibleBlipList.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVisibleBlipList.d - -# Compiles file ../mod/AvHVoiceHelper.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVoiceHelper.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVoiceHelper.o: ../mod/AvHVoiceHelper.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHVoiceHelper.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVoiceHelper.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHVoiceHelper.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHVoiceHelper.d - -# Compiles file ../mod/AvHWeldable.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWeldable.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWeldable.o: ../mod/AvHWeldable.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHWeldable.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWeldable.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHWeldable.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWeldable.d - -# Compiles file ../mod/AvHWorldUpdate.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWorldUpdate.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWorldUpdate.o: ../mod/AvHWorldUpdate.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHWorldUpdate.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWorldUpdate.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHWorldUpdate.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWorldUpdate.d - -# Compiles file ../mod/CollisionChecker.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker.d -V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker.o: ../mod/CollisionChecker.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/CollisionChecker.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/CollisionChecker.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker.d - -# Compiles file ../mod/CollisionChecker_ServerOnly.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker_ServerOnly.d -V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker_ServerOnly.o: ../mod/CollisionChecker_ServerOnly.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/CollisionChecker_ServerOnly.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker_ServerOnly.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/CollisionChecker_ServerOnly.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionChecker_ServerOnly.d - -# Compiles file ../mod/CollisionUtil.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionUtil.d -V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionUtil.o: ../mod/CollisionUtil.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/CollisionUtil.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionUtil.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/CollisionUtil.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/CollisionUtil.d - -# Compiles file ../mod/NetworkMeter.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/NetworkMeter.d -V:/temp/ns.dll/gccDeveloper-release/../mod/NetworkMeter.o: ../mod/NetworkMeter.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/NetworkMeter.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/NetworkMeter.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/NetworkMeter.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/NetworkMeter.d - -# Compiles file ../mod/AvHAcidRocketGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAcidRocketGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAcidRocketGun.o: ../mod/AvHAcidRocketGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHAcidRocketGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAcidRocketGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHAcidRocketGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAcidRocketGun.d - -# Compiles file ../mod/AvHAlienAbilities.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienAbilities.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienAbilities.o: ../mod/AvHAlienAbilities.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHAlienAbilities.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienAbilities.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHAlienAbilities.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHAlienAbilities.d - -# Compiles file ../mod/AvHBasePlayerWeapon.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBasePlayerWeapon.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBasePlayerWeapon.o: ../mod/AvHBasePlayerWeapon.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHBasePlayerWeapon.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBasePlayerWeapon.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHBasePlayerWeapon.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBasePlayerWeapon.d - -# Compiles file ../mod/AvHBileBombGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBileBombGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBileBombGun.o: ../mod/AvHBileBombGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHBileBombGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBileBombGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHBileBombGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBileBombGun.d - -# Compiles file ../mod/AvHBite.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite.o: ../mod/AvHBite.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHBite.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHBite.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite.d - -# Compiles file ../mod/AvHBite2.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite2.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite2.o: ../mod/AvHBite2.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHBite2.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite2.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHBite2.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBite2.d - -# Compiles file ../mod/AvHBlink.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBlink.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBlink.o: ../mod/AvHBlink.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHBlink.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBlink.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHBlink.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBlink.d - -# Compiles file ../mod/AvHBuildingGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildingGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildingGun.o: ../mod/AvHBuildingGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHBuildingGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildingGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHBuildingGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHBuildingGun.d - -# Compiles file ../mod/AvHClaws.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHClaws.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHClaws.o: ../mod/AvHClaws.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHClaws.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHClaws.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHClaws.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHClaws.d - -# Compiles file ../mod/AvHDevour.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDevour.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDevour.o: ../mod/AvHDevour.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHDevour.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDevour.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHDevour.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDevour.d - -# Compiles file ../mod/AvHDivineWind.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDivineWind.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDivineWind.o: ../mod/AvHDivineWind.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHDivineWind.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDivineWind.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHDivineWind.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHDivineWind.d - -# Compiles file ../mod/AvHGrenade.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenade.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenade.o: ../mod/AvHGrenade.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHGrenade.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenade.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHGrenade.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenade.d - -# Compiles file ../mod/AvHGrenadeGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenadeGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenadeGun.o: ../mod/AvHGrenadeGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHGrenadeGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenadeGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHGrenadeGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHGrenadeGun.d - -# Compiles file ../mod/AvHHealingSpray.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHealingSpray.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHealingSpray.o: ../mod/AvHHealingSpray.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHHealingSpray.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHealingSpray.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHHealingSpray.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHealingSpray.d - -# Compiles file ../mod/AvHHeavyMachineGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHeavyMachineGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHeavyMachineGun.o: ../mod/AvHHeavyMachineGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHHeavyMachineGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHeavyMachineGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHHeavyMachineGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHHeavyMachineGun.d - -# Compiles file ../mod/AvHItemInfo.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHItemInfo.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHItemInfo.o: ../mod/AvHItemInfo.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHItemInfo.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHItemInfo.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHItemInfo.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHItemInfo.d - -# Compiles file ../mod/AvHKnife.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHKnife.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHKnife.o: ../mod/AvHKnife.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHKnife.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHKnife.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHKnife.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHKnife.d - -# Compiles file ../mod/AvHMachineGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMachineGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMachineGun.o: ../mod/AvHMachineGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHMachineGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMachineGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHMachineGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMachineGun.d - -# Compiles file ../mod/AvHMetabolize.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMetabolize.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMetabolize.o: ../mod/AvHMetabolize.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHMetabolize.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMetabolize.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHMetabolize.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMetabolize.d - -# Compiles file ../mod/AvHMine.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMine.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMine.o: ../mod/AvHMine.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHMine.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMine.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHMine.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHMine.d - -# Compiles file ../mod/AvHParasiteGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParasiteGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParasiteGun.o: ../mod/AvHParasiteGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHParasiteGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParasiteGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHParasiteGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParasiteGun.d - -# Compiles file ../mod/AvHPistol.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPistol.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPistol.o: ../mod/AvHPistol.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHPistol.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPistol.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHPistol.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPistol.d - -# Compiles file ../mod/AvHPrimalScream.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPrimalScream.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPrimalScream.o: ../mod/AvHPrimalScream.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHPrimalScream.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPrimalScream.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHPrimalScream.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHPrimalScream.d - -# Compiles file ../mod/AvHSonicGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSonicGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSonicGun.o: ../mod/AvHSonicGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSonicGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSonicGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSonicGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSonicGun.d - -# Compiles file ../mod/AvHSpikeGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpikeGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpikeGun.o: ../mod/AvHSpikeGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSpikeGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpikeGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSpikeGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpikeGun.d - -# Compiles file ../mod/AvHSpitGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpitGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpitGun.o: ../mod/AvHSpitGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSpitGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpitGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSpitGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpitGun.d - -# Compiles file ../mod/AvHSpores.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpores.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpores.o: ../mod/AvHSpores.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSpores.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpores.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSpores.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSpores.d - -# Compiles file ../mod/AvHStomp.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHStomp.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHStomp.o: ../mod/AvHStomp.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHStomp.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHStomp.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHStomp.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHStomp.d - -# Compiles file ../mod/AvHSwipe.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSwipe.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSwipe.o: ../mod/AvHSwipe.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHSwipe.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSwipe.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHSwipe.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHSwipe.d - -# Compiles file ../mod/AvHUmbraGun.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHUmbraGun.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHUmbraGun.o: ../mod/AvHUmbraGun.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHUmbraGun.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHUmbraGun.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHUmbraGun.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHUmbraGun.d - -# Compiles file ../mod/AvHWebSpinner.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWebSpinner.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWebSpinner.o: ../mod/AvHWebSpinner.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHWebSpinner.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWebSpinner.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHWebSpinner.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWebSpinner.d - -# Compiles file ../mod/AvHWelder.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWelder.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWelder.o: ../mod/AvHWelder.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHWelder.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWelder.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHWelder.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHWelder.d - -# Compiles file ggrenade.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/ggrenade.d -V:/temp/ns.dll/gccDeveloper-release/ggrenade.o: ggrenade.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ggrenade.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/ggrenade.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ggrenade.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/ggrenade.d - -# Compiles file ../mod/AvHParticleSystem.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystem.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystem.o: ../mod/AvHParticleSystem.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHParticleSystem.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystem.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHParticleSystem.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystem.d - -# Compiles file ../mod/AvHParticleSystemEntity.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemEntity.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemEntity.o: ../mod/AvHParticleSystemEntity.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHParticleSystemEntity.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemEntity.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHParticleSystemEntity.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemEntity.d - -# Compiles file ../mod/AvHParticleSystemManager.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemManager.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemManager.o: ../mod/AvHParticleSystemManager.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHParticleSystemManager.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemManager.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHParticleSystemManager.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleSystemManager.d - -# Compiles file ../mod/AvHParticleTemplate.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplate.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplate.o: ../mod/AvHParticleTemplate.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHParticleTemplate.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplate.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHParticleTemplate.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplate.d - -# Compiles file ../mod/AvHParticleTemplateServer.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplateServer.d -V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplateServer.o: ../mod/AvHParticleTemplateServer.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../mod/AvHParticleTemplateServer.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplateServer.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../mod/AvHParticleTemplateServer.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../mod/AvHParticleTemplateServer.d - -# Compiles file ../util/Balance.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/Balance.d -V:/temp/ns.dll/gccDeveloper-release/../util/Balance.o: ../util/Balance.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/Balance.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/Balance.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/Balance.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/Balance.d - -# Compiles file ../util/Checksum.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/Checksum.d -V:/temp/ns.dll/gccDeveloper-release/../util/Checksum.o: ../util/Checksum.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/Checksum.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/Checksum.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/Checksum.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/Checksum.d - -# Compiles file ../util/GammaTable.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/GammaTable.d -V:/temp/ns.dll/gccDeveloper-release/../util/GammaTable.o: ../util/GammaTable.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/GammaTable.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/GammaTable.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/GammaTable.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/GammaTable.d - -# Compiles file ../util/LinuxSupport.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/LinuxSupport.d -V:/temp/ns.dll/gccDeveloper-release/../util/LinuxSupport.o: ../util/LinuxSupport.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/LinuxSupport.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/LinuxSupport.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/LinuxSupport.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/LinuxSupport.d - -# Compiles file ../util/Mat3.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/Mat3.d -V:/temp/ns.dll/gccDeveloper-release/../util/Mat3.o: ../util/Mat3.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/Mat3.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/Mat3.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/Mat3.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/Mat3.d - -# Compiles file ../util/MathUtil.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/MathUtil.d -V:/temp/ns.dll/gccDeveloper-release/../util/MathUtil.o: ../util/MathUtil.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/MathUtil.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/MathUtil.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/MathUtil.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/MathUtil.d - -# Compiles file ../util/Quat.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/Quat.d -V:/temp/ns.dll/gccDeveloper-release/../util/Quat.o: ../util/Quat.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/Quat.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/Quat.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/Quat.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/Quat.d - -# Compiles file ../util/Stacktrace.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/Stacktrace.d -V:/temp/ns.dll/gccDeveloper-release/../util/Stacktrace.o: ../util/Stacktrace.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/Stacktrace.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/Stacktrace.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/Stacktrace.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/Stacktrace.d - -# Compiles file ../util/STLUtil.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/STLUtil.d -V:/temp/ns.dll/gccDeveloper-release/../util/STLUtil.o: ../util/STLUtil.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/STLUtil.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/STLUtil.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/STLUtil.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/STLUtil.d - -# Compiles file ../util/Tokenizer.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/Tokenizer.d -V:/temp/ns.dll/gccDeveloper-release/../util/Tokenizer.o: ../util/Tokenizer.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/Tokenizer.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/Tokenizer.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/Tokenizer.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/Tokenizer.d - -# Compiles file ../util/Zassert.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/Zassert.d -V:/temp/ns.dll/gccDeveloper-release/../util/Zassert.o: ../util/Zassert.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/Zassert.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/Zassert.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/Zassert.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/Zassert.d - -# Compiles file ../util/ZassertTemplate.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../util/ZassertTemplate.d -V:/temp/ns.dll/gccDeveloper-release/../util/ZassertTemplate.o: ../util/ZassertTemplate.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../util/ZassertTemplate.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../util/ZassertTemplate.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../util/ZassertTemplate.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../util/ZassertTemplate.d - -# Compiles file ../textrep/TRDescription.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../textrep/TRDescription.d -V:/temp/ns.dll/gccDeveloper-release/../textrep/TRDescription.o: ../textrep/TRDescription.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../textrep/TRDescription.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../textrep/TRDescription.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../textrep/TRDescription.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../textrep/TRDescription.d - -# Compiles file ../textrep/TRFactory.cpp for the Developer-release configuration... --include V:/temp/ns.dll/gccDeveloper-release/../textrep/TRFactory.d -V:/temp/ns.dll/gccDeveloper-release/../textrep/TRFactory.o: ../textrep/TRFactory.cpp - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -c ../textrep/TRFactory.cpp $(Developer-release_Include_Path) -o V:/temp/ns.dll/gccDeveloper-release/../textrep/TRFactory.o - $(CPP_COMPILER) $(Developer-release_Preprocessor_Definitions) $(Developer-release_Compiler_Flags) -MM ../textrep/TRFactory.cpp $(Developer-release_Include_Path) > V:/temp/ns.dll/gccDeveloper-release/../textrep/TRFactory.d - -# Builds the Playtest-balancedisabled configuration... -.PHONY: Playtest-balancedisabled -Playtest-balancedisabled: create_folders gccPlaytest-balancedisabled/animating.o gccPlaytest-balancedisabled/animation.o gccPlaytest-balancedisabled/bmodels.o gccPlaytest-balancedisabled/buttons.o gccPlaytest-balancedisabled/cbase.o gccPlaytest-balancedisabled/client.o gccPlaytest-balancedisabled/combat.o gccPlaytest-balancedisabled/doors.o gccPlaytest-balancedisabled/effects.o gccPlaytest-balancedisabled/egon.o gccPlaytest-balancedisabled/explode.o gccPlaytest-balancedisabled/func_break.o gccPlaytest-balancedisabled/func_tank.o gccPlaytest-balancedisabled/game.o gccPlaytest-balancedisabled/gamerules.o gccPlaytest-balancedisabled/gauss.o gccPlaytest-balancedisabled/globals.o gccPlaytest-balancedisabled/h_ai.o gccPlaytest-balancedisabled/h_battery.o gccPlaytest-balancedisabled/h_cycler.o gccPlaytest-balancedisabled/h_export.o gccPlaytest-balancedisabled/items.o gccPlaytest-balancedisabled/lights.o gccPlaytest-balancedisabled/maprules.o gccPlaytest-balancedisabled/mpstubb.o gccPlaytest-balancedisabled/multiplay_gamerules.o gccPlaytest-balancedisabled/observer.o gccPlaytest-balancedisabled/pathcorner.o gccPlaytest-balancedisabled/plane.o gccPlaytest-balancedisabled/plats.o gccPlaytest-balancedisabled/player.o gccPlaytest-balancedisabled/../pm_shared/pm_debug.o gccPlaytest-balancedisabled/../pm_shared/pm_math.o gccPlaytest-balancedisabled/../pm_shared/pm_shared.o gccPlaytest-balancedisabled/satchel.o gccPlaytest-balancedisabled/shotgun.o gccPlaytest-balancedisabled/singleplay_gamerules.o gccPlaytest-balancedisabled/skill.o gccPlaytest-balancedisabled/sound.o gccPlaytest-balancedisabled/soundent.o gccPlaytest-balancedisabled/spectator.o gccPlaytest-balancedisabled/squeakgrenade.o gccPlaytest-balancedisabled/subs.o gccPlaytest-balancedisabled/teamplay_gamerules.o gccPlaytest-balancedisabled/triggers.o gccPlaytest-balancedisabled/turret.o gccPlaytest-balancedisabled/util.o gccPlaytest-balancedisabled/../game_shared/voice_banmgr.o gccPlaytest-balancedisabled/../game_shared/voice_gamemgr.o gccPlaytest-balancedisabled/weapons.o gccPlaytest-balancedisabled/world.o gccPlaytest-balancedisabled/xen.o gccPlaytest-balancedisabled/../mod/AnimationUtil.o gccPlaytest-balancedisabled/../mod/AvHAlienEquipment.o gccPlaytest-balancedisabled/../mod/AvHAlienTurret.o gccPlaytest-balancedisabled/../mod/AvHAlienWeapon.o gccPlaytest-balancedisabled/../mod/AvHAssert.o gccPlaytest-balancedisabled/../mod/AvHBaseBuildable.o gccPlaytest-balancedisabled/../mod/AvHBaseInfoLocation.o gccPlaytest-balancedisabled/../mod/AvHBuildable.o gccPlaytest-balancedisabled/../mod/AvHCloakable.o gccPlaytest-balancedisabled/../mod/AvHCombat.o gccPlaytest-balancedisabled/../mod/AvHConsoleCommands.o gccPlaytest-balancedisabled/../mod/AvHConstants.o gccPlaytest-balancedisabled/../mod/AvHCurl.o gccPlaytest-balancedisabled/../mod/AvHEntities.o gccPlaytest-balancedisabled/../mod/AvHEntityHierarchy.o gccPlaytest-balancedisabled/../mod/AvHGamerules.o gccPlaytest-balancedisabled/../mod/AvHHive.o gccPlaytest-balancedisabled/../mod/AvHMapExtents.o gccPlaytest-balancedisabled/../mod/AvHMarineEquipment.o gccPlaytest-balancedisabled/../mod/AvHMarineTurret.o gccPlaytest-balancedisabled/../mod/AvHMarineWeapon.o gccPlaytest-balancedisabled/../mod/AvHMiniMap.o gccPlaytest-balancedisabled/../mod/AvHMovementUtil.o gccPlaytest-balancedisabled/../mod/AvHNetworkMessages.o gccPlaytest-balancedisabled/../mod/AvHNexusServer.o gccPlaytest-balancedisabled/../mod/AvHNexusTunnelToClient.o gccPlaytest-balancedisabled/../mod/AvHOrder.o gccPlaytest-balancedisabled/../mod/AvHPlayer.o gccPlaytest-balancedisabled/../mod/AvHPlayerUpgrade.o gccPlaytest-balancedisabled/../mod/AvHPushableBuildable.o gccPlaytest-balancedisabled/../mod/AvHReinforceable.o gccPlaytest-balancedisabled/../mod/AvHResearchManager.o gccPlaytest-balancedisabled/../mod/AvHScriptManager.o gccPlaytest-balancedisabled/../mod/AvHScriptServer.o gccPlaytest-balancedisabled/../mod/AvHScriptShared.o gccPlaytest-balancedisabled/../mod/AvHSelectionHelper.o gccPlaytest-balancedisabled/../mod/AvHServerPlayerData.o gccPlaytest-balancedisabled/../mod/AvHServerUtil.o gccPlaytest-balancedisabled/../mod/AvHSharedMovementInfo.o gccPlaytest-balancedisabled/../mod/AvHSharedUtil.o gccPlaytest-balancedisabled/../mod/AvHSiegeTurret.o gccPlaytest-balancedisabled/../mod/AvHSoundListManager.o gccPlaytest-balancedisabled/../mod/AvHSpawn.o gccPlaytest-balancedisabled/../mod/AvHSpecials.o gccPlaytest-balancedisabled/../mod/AvHTeam.o gccPlaytest-balancedisabled/../mod/AvHTechNode.o gccPlaytest-balancedisabled/../mod/AvHTechSlotManager.o gccPlaytest-balancedisabled/../mod/AvHTechTree.o gccPlaytest-balancedisabled/../mod/AvHTurret.o gccPlaytest-balancedisabled/../mod/AvHVisibleBlipList.o gccPlaytest-balancedisabled/../mod/AvHVoiceHelper.o gccPlaytest-balancedisabled/../mod/AvHWeldable.o gccPlaytest-balancedisabled/../mod/AvHWorldUpdate.o gccPlaytest-balancedisabled/../mod/CollisionChecker.o gccPlaytest-balancedisabled/../mod/CollisionChecker_ServerOnly.o gccPlaytest-balancedisabled/../mod/CollisionUtil.o gccPlaytest-balancedisabled/../mod/NetworkMeter.o gccPlaytest-balancedisabled/../mod/AvHAcidRocketGun.o gccPlaytest-balancedisabled/../mod/AvHAlienAbilities.o gccPlaytest-balancedisabled/../mod/AvHBasePlayerWeapon.o gccPlaytest-balancedisabled/../mod/AvHBileBombGun.o gccPlaytest-balancedisabled/../mod/AvHBite.o gccPlaytest-balancedisabled/../mod/AvHBite2.o gccPlaytest-balancedisabled/../mod/AvHBlink.o gccPlaytest-balancedisabled/../mod/AvHBuildingGun.o gccPlaytest-balancedisabled/../mod/AvHClaws.o gccPlaytest-balancedisabled/../mod/AvHDevour.o gccPlaytest-balancedisabled/../mod/AvHDivineWind.o gccPlaytest-balancedisabled/../mod/AvHGrenade.o gccPlaytest-balancedisabled/../mod/AvHGrenadeGun.o gccPlaytest-balancedisabled/../mod/AvHHealingSpray.o gccPlaytest-balancedisabled/../mod/AvHHeavyMachineGun.o gccPlaytest-balancedisabled/../mod/AvHItemInfo.o gccPlaytest-balancedisabled/../mod/AvHKnife.o gccPlaytest-balancedisabled/../mod/AvHMachineGun.o gccPlaytest-balancedisabled/../mod/AvHMetabolize.o gccPlaytest-balancedisabled/../mod/AvHMine.o gccPlaytest-balancedisabled/../mod/AvHParasiteGun.o gccPlaytest-balancedisabled/../mod/AvHPistol.o gccPlaytest-balancedisabled/../mod/AvHPrimalScream.o gccPlaytest-balancedisabled/../mod/AvHSonicGun.o gccPlaytest-balancedisabled/../mod/AvHSpikeGun.o gccPlaytest-balancedisabled/../mod/AvHSpitGun.o gccPlaytest-balancedisabled/../mod/AvHSpores.o gccPlaytest-balancedisabled/../mod/AvHStomp.o gccPlaytest-balancedisabled/../mod/AvHSwipe.o gccPlaytest-balancedisabled/../mod/AvHUmbraGun.o gccPlaytest-balancedisabled/../mod/AvHWebSpinner.o gccPlaytest-balancedisabled/../mod/AvHWelder.o gccPlaytest-balancedisabled/ggrenade.o gccPlaytest-balancedisabled/../mod/AvHParticleSystem.o gccPlaytest-balancedisabled/../mod/AvHParticleSystemEntity.o gccPlaytest-balancedisabled/../mod/AvHParticleSystemManager.o gccPlaytest-balancedisabled/../mod/AvHParticleTemplate.o gccPlaytest-balancedisabled/../mod/AvHParticleTemplateServer.o gccPlaytest-balancedisabled/../util/Balance.o gccPlaytest-balancedisabled/../util/Checksum.o gccPlaytest-balancedisabled/../util/GammaTable.o gccPlaytest-balancedisabled/../util/LinuxSupport.o gccPlaytest-balancedisabled/../util/Mat3.o gccPlaytest-balancedisabled/../util/MathUtil.o gccPlaytest-balancedisabled/../util/Quat.o gccPlaytest-balancedisabled/../util/Stacktrace.o gccPlaytest-balancedisabled/../util/STLUtil.o gccPlaytest-balancedisabled/../util/Tokenizer.o gccPlaytest-balancedisabled/../util/Zassert.o gccPlaytest-balancedisabled/../util/ZassertTemplate.o gccPlaytest-balancedisabled/../textrep/TRDescription.o gccPlaytest-balancedisabled/../textrep/TRFactory.o - g++ -fPIC -shared -Wl,-soname,libns.dll.so -o ../gccPlaytest-balancedisabled/libns.dll.so gccPlaytest-balancedisabled/animating.o gccPlaytest-balancedisabled/animation.o gccPlaytest-balancedisabled/bmodels.o gccPlaytest-balancedisabled/buttons.o gccPlaytest-balancedisabled/cbase.o gccPlaytest-balancedisabled/client.o gccPlaytest-balancedisabled/combat.o gccPlaytest-balancedisabled/doors.o gccPlaytest-balancedisabled/effects.o gccPlaytest-balancedisabled/egon.o gccPlaytest-balancedisabled/explode.o gccPlaytest-balancedisabled/func_break.o gccPlaytest-balancedisabled/func_tank.o gccPlaytest-balancedisabled/game.o gccPlaytest-balancedisabled/gamerules.o gccPlaytest-balancedisabled/gauss.o gccPlaytest-balancedisabled/globals.o gccPlaytest-balancedisabled/h_ai.o gccPlaytest-balancedisabled/h_battery.o gccPlaytest-balancedisabled/h_cycler.o gccPlaytest-balancedisabled/h_export.o gccPlaytest-balancedisabled/items.o gccPlaytest-balancedisabled/lights.o gccPlaytest-balancedisabled/maprules.o gccPlaytest-balancedisabled/mpstubb.o gccPlaytest-balancedisabled/multiplay_gamerules.o gccPlaytest-balancedisabled/observer.o gccPlaytest-balancedisabled/pathcorner.o gccPlaytest-balancedisabled/plane.o gccPlaytest-balancedisabled/plats.o gccPlaytest-balancedisabled/player.o gccPlaytest-balancedisabled/../pm_shared/pm_debug.o gccPlaytest-balancedisabled/../pm_shared/pm_math.o gccPlaytest-balancedisabled/../pm_shared/pm_shared.o gccPlaytest-balancedisabled/satchel.o gccPlaytest-balancedisabled/shotgun.o gccPlaytest-balancedisabled/singleplay_gamerules.o gccPlaytest-balancedisabled/skill.o gccPlaytest-balancedisabled/sound.o gccPlaytest-balancedisabled/soundent.o gccPlaytest-balancedisabled/spectator.o gccPlaytest-balancedisabled/squeakgrenade.o gccPlaytest-balancedisabled/subs.o gccPlaytest-balancedisabled/teamplay_gamerules.o gccPlaytest-balancedisabled/triggers.o gccPlaytest-balancedisabled/turret.o gccPlaytest-balancedisabled/util.o gccPlaytest-balancedisabled/../game_shared/voice_banmgr.o gccPlaytest-balancedisabled/../game_shared/voice_gamemgr.o gccPlaytest-balancedisabled/weapons.o gccPlaytest-balancedisabled/world.o gccPlaytest-balancedisabled/xen.o gccPlaytest-balancedisabled/../mod/AnimationUtil.o gccPlaytest-balancedisabled/../mod/AvHAlienEquipment.o gccPlaytest-balancedisabled/../mod/AvHAlienTurret.o gccPlaytest-balancedisabled/../mod/AvHAlienWeapon.o gccPlaytest-balancedisabled/../mod/AvHAssert.o gccPlaytest-balancedisabled/../mod/AvHBaseBuildable.o gccPlaytest-balancedisabled/../mod/AvHBaseInfoLocation.o gccPlaytest-balancedisabled/../mod/AvHBuildable.o gccPlaytest-balancedisabled/../mod/AvHCloakable.o gccPlaytest-balancedisabled/../mod/AvHCombat.o gccPlaytest-balancedisabled/../mod/AvHConsoleCommands.o gccPlaytest-balancedisabled/../mod/AvHConstants.o gccPlaytest-balancedisabled/../mod/AvHCurl.o gccPlaytest-balancedisabled/../mod/AvHEntities.o gccPlaytest-balancedisabled/../mod/AvHEntityHierarchy.o gccPlaytest-balancedisabled/../mod/AvHGamerules.o gccPlaytest-balancedisabled/../mod/AvHHive.o gccPlaytest-balancedisabled/../mod/AvHMapExtents.o gccPlaytest-balancedisabled/../mod/AvHMarineEquipment.o gccPlaytest-balancedisabled/../mod/AvHMarineTurret.o gccPlaytest-balancedisabled/../mod/AvHMarineWeapon.o gccPlaytest-balancedisabled/../mod/AvHMiniMap.o gccPlaytest-balancedisabled/../mod/AvHMovementUtil.o gccPlaytest-balancedisabled/../mod/AvHNetworkMessages.o gccPlaytest-balancedisabled/../mod/AvHNexusServer.o gccPlaytest-balancedisabled/../mod/AvHNexusTunnelToClient.o gccPlaytest-balancedisabled/../mod/AvHOrder.o gccPlaytest-balancedisabled/../mod/AvHPlayer.o gccPlaytest-balancedisabled/../mod/AvHPlayerUpgrade.o gccPlaytest-balancedisabled/../mod/AvHPushableBuildable.o gccPlaytest-balancedisabled/../mod/AvHReinforceable.o gccPlaytest-balancedisabled/../mod/AvHResearchManager.o gccPlaytest-balancedisabled/../mod/AvHScriptManager.o gccPlaytest-balancedisabled/../mod/AvHScriptServer.o gccPlaytest-balancedisabled/../mod/AvHScriptShared.o gccPlaytest-balancedisabled/../mod/AvHSelectionHelper.o gccPlaytest-balancedisabled/../mod/AvHServerPlayerData.o gccPlaytest-balancedisabled/../mod/AvHServerUtil.o gccPlaytest-balancedisabled/../mod/AvHSharedMovementInfo.o gccPlaytest-balancedisabled/../mod/AvHSharedUtil.o gccPlaytest-balancedisabled/../mod/AvHSiegeTurret.o gccPlaytest-balancedisabled/../mod/AvHSoundListManager.o gccPlaytest-balancedisabled/../mod/AvHSpawn.o gccPlaytest-balancedisabled/../mod/AvHSpecials.o gccPlaytest-balancedisabled/../mod/AvHTeam.o gccPlaytest-balancedisabled/../mod/AvHTechNode.o gccPlaytest-balancedisabled/../mod/AvHTechSlotManager.o gccPlaytest-balancedisabled/../mod/AvHTechTree.o gccPlaytest-balancedisabled/../mod/AvHTurret.o gccPlaytest-balancedisabled/../mod/AvHVisibleBlipList.o gccPlaytest-balancedisabled/../mod/AvHVoiceHelper.o gccPlaytest-balancedisabled/../mod/AvHWeldable.o gccPlaytest-balancedisabled/../mod/AvHWorldUpdate.o gccPlaytest-balancedisabled/../mod/CollisionChecker.o gccPlaytest-balancedisabled/../mod/CollisionChecker_ServerOnly.o gccPlaytest-balancedisabled/../mod/CollisionUtil.o gccPlaytest-balancedisabled/../mod/NetworkMeter.o gccPlaytest-balancedisabled/../mod/AvHAcidRocketGun.o gccPlaytest-balancedisabled/../mod/AvHAlienAbilities.o gccPlaytest-balancedisabled/../mod/AvHBasePlayerWeapon.o gccPlaytest-balancedisabled/../mod/AvHBileBombGun.o gccPlaytest-balancedisabled/../mod/AvHBite.o gccPlaytest-balancedisabled/../mod/AvHBite2.o gccPlaytest-balancedisabled/../mod/AvHBlink.o gccPlaytest-balancedisabled/../mod/AvHBuildingGun.o gccPlaytest-balancedisabled/../mod/AvHClaws.o gccPlaytest-balancedisabled/../mod/AvHDevour.o gccPlaytest-balancedisabled/../mod/AvHDivineWind.o gccPlaytest-balancedisabled/../mod/AvHGrenade.o gccPlaytest-balancedisabled/../mod/AvHGrenadeGun.o gccPlaytest-balancedisabled/../mod/AvHHealingSpray.o gccPlaytest-balancedisabled/../mod/AvHHeavyMachineGun.o gccPlaytest-balancedisabled/../mod/AvHItemInfo.o gccPlaytest-balancedisabled/../mod/AvHKnife.o gccPlaytest-balancedisabled/../mod/AvHMachineGun.o gccPlaytest-balancedisabled/../mod/AvHMetabolize.o gccPlaytest-balancedisabled/../mod/AvHMine.o gccPlaytest-balancedisabled/../mod/AvHParasiteGun.o gccPlaytest-balancedisabled/../mod/AvHPistol.o gccPlaytest-balancedisabled/../mod/AvHPrimalScream.o gccPlaytest-balancedisabled/../mod/AvHSonicGun.o gccPlaytest-balancedisabled/../mod/AvHSpikeGun.o gccPlaytest-balancedisabled/../mod/AvHSpitGun.o gccPlaytest-balancedisabled/../mod/AvHSpores.o gccPlaytest-balancedisabled/../mod/AvHStomp.o gccPlaytest-balancedisabled/../mod/AvHSwipe.o gccPlaytest-balancedisabled/../mod/AvHUmbraGun.o gccPlaytest-balancedisabled/../mod/AvHWebSpinner.o gccPlaytest-balancedisabled/../mod/AvHWelder.o gccPlaytest-balancedisabled/ggrenade.o gccPlaytest-balancedisabled/../mod/AvHParticleSystem.o gccPlaytest-balancedisabled/../mod/AvHParticleSystemEntity.o gccPlaytest-balancedisabled/../mod/AvHParticleSystemManager.o gccPlaytest-balancedisabled/../mod/AvHParticleTemplate.o gccPlaytest-balancedisabled/../mod/AvHParticleTemplateServer.o gccPlaytest-balancedisabled/../util/Balance.o gccPlaytest-balancedisabled/../util/Checksum.o gccPlaytest-balancedisabled/../util/GammaTable.o gccPlaytest-balancedisabled/../util/LinuxSupport.o gccPlaytest-balancedisabled/../util/Mat3.o gccPlaytest-balancedisabled/../util/MathUtil.o gccPlaytest-balancedisabled/../util/Quat.o gccPlaytest-balancedisabled/../util/Stacktrace.o gccPlaytest-balancedisabled/../util/STLUtil.o gccPlaytest-balancedisabled/../util/Tokenizer.o gccPlaytest-balancedisabled/../util/Zassert.o gccPlaytest-balancedisabled/../util/ZassertTemplate.o gccPlaytest-balancedisabled/../textrep/TRDescription.o gccPlaytest-balancedisabled/../textrep/TRFactory.o $(Playtest-balancedisabled_Implicitly_Linked_Objects) - -# Compiles file animating.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/animating.d -gccPlaytest-balancedisabled/animating.o: animating.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c animating.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/animating.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM animating.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/animating.d - -# Compiles file animation.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/animation.d -gccPlaytest-balancedisabled/animation.o: animation.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c animation.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/animation.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM animation.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/animation.d - -# Compiles file bmodels.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/bmodels.d -gccPlaytest-balancedisabled/bmodels.o: bmodels.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c bmodels.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/bmodels.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM bmodels.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/bmodels.d - -# Compiles file buttons.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/buttons.d -gccPlaytest-balancedisabled/buttons.o: buttons.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c buttons.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/buttons.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM buttons.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/buttons.d - -# Compiles file cbase.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/cbase.d -gccPlaytest-balancedisabled/cbase.o: cbase.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c cbase.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/cbase.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM cbase.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/cbase.d - -# Compiles file client.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/client.d -gccPlaytest-balancedisabled/client.o: client.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c client.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/client.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM client.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/client.d - -# Compiles file combat.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/combat.d -gccPlaytest-balancedisabled/combat.o: combat.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c combat.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/combat.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM combat.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/combat.d - -# Compiles file doors.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/doors.d -gccPlaytest-balancedisabled/doors.o: doors.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c doors.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/doors.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM doors.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/doors.d - -# Compiles file effects.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/effects.d -gccPlaytest-balancedisabled/effects.o: effects.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c effects.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/effects.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM effects.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/effects.d - -# Compiles file egon.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/egon.d -gccPlaytest-balancedisabled/egon.o: egon.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c egon.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/egon.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM egon.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/egon.d - -# Compiles file explode.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/explode.d -gccPlaytest-balancedisabled/explode.o: explode.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c explode.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/explode.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM explode.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/explode.d - -# Compiles file func_break.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/func_break.d -gccPlaytest-balancedisabled/func_break.o: func_break.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c func_break.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/func_break.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM func_break.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/func_break.d - -# Compiles file func_tank.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/func_tank.d -gccPlaytest-balancedisabled/func_tank.o: func_tank.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c func_tank.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/func_tank.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM func_tank.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/func_tank.d - -# Compiles file game.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/game.d -gccPlaytest-balancedisabled/game.o: game.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c game.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/game.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM game.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/game.d - -# Compiles file gamerules.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/gamerules.d -gccPlaytest-balancedisabled/gamerules.o: gamerules.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c gamerules.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/gamerules.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM gamerules.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/gamerules.d - -# Compiles file gauss.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/gauss.d -gccPlaytest-balancedisabled/gauss.o: gauss.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c gauss.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/gauss.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM gauss.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/gauss.d - -# Compiles file globals.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/globals.d -gccPlaytest-balancedisabled/globals.o: globals.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c globals.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/globals.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM globals.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/globals.d - -# Compiles file h_ai.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/h_ai.d -gccPlaytest-balancedisabled/h_ai.o: h_ai.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c h_ai.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/h_ai.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM h_ai.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/h_ai.d - -# Compiles file h_battery.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/h_battery.d -gccPlaytest-balancedisabled/h_battery.o: h_battery.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c h_battery.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/h_battery.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM h_battery.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/h_battery.d - -# Compiles file h_cycler.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/h_cycler.d -gccPlaytest-balancedisabled/h_cycler.o: h_cycler.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c h_cycler.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/h_cycler.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM h_cycler.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/h_cycler.d - -# Compiles file h_export.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/h_export.d -gccPlaytest-balancedisabled/h_export.o: h_export.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c h_export.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/h_export.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM h_export.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/h_export.d - -# Compiles file items.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/items.d -gccPlaytest-balancedisabled/items.o: items.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c items.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/items.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM items.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/items.d - -# Compiles file lights.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/lights.d -gccPlaytest-balancedisabled/lights.o: lights.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c lights.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/lights.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM lights.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/lights.d - -# Compiles file maprules.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/maprules.d -gccPlaytest-balancedisabled/maprules.o: maprules.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c maprules.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/maprules.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM maprules.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/maprules.d - -# Compiles file mpstubb.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/mpstubb.d -gccPlaytest-balancedisabled/mpstubb.o: mpstubb.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c mpstubb.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/mpstubb.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM mpstubb.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/mpstubb.d - -# Compiles file multiplay_gamerules.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/multiplay_gamerules.d -gccPlaytest-balancedisabled/multiplay_gamerules.o: multiplay_gamerules.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c multiplay_gamerules.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/multiplay_gamerules.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM multiplay_gamerules.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/multiplay_gamerules.d - -# Compiles file observer.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/observer.d -gccPlaytest-balancedisabled/observer.o: observer.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c observer.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/observer.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM observer.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/observer.d - -# Compiles file pathcorner.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/pathcorner.d -gccPlaytest-balancedisabled/pathcorner.o: pathcorner.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c pathcorner.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/pathcorner.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM pathcorner.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/pathcorner.d - -# Compiles file plane.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/plane.d -gccPlaytest-balancedisabled/plane.o: plane.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c plane.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/plane.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM plane.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/plane.d - -# Compiles file plats.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/plats.d -gccPlaytest-balancedisabled/plats.o: plats.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c plats.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/plats.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM plats.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/plats.d - -# Compiles file player.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/player.d -gccPlaytest-balancedisabled/player.o: player.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c player.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/player.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM player.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/player.d - -# Compiles file ../pm_shared/pm_debug.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../pm_shared/pm_debug.d -gccPlaytest-balancedisabled/../pm_shared/pm_debug.o: ../pm_shared/pm_debug.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../pm_shared/pm_debug.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../pm_shared/pm_debug.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../pm_shared/pm_debug.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../pm_shared/pm_debug.d - -# Compiles file ../pm_shared/pm_math.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../pm_shared/pm_math.d -gccPlaytest-balancedisabled/../pm_shared/pm_math.o: ../pm_shared/pm_math.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../pm_shared/pm_math.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../pm_shared/pm_math.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../pm_shared/pm_math.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../pm_shared/pm_math.d - -# Compiles file ../pm_shared/pm_shared.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../pm_shared/pm_shared.d -gccPlaytest-balancedisabled/../pm_shared/pm_shared.o: ../pm_shared/pm_shared.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../pm_shared/pm_shared.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../pm_shared/pm_shared.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../pm_shared/pm_shared.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../pm_shared/pm_shared.d - -# Compiles file satchel.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/satchel.d -gccPlaytest-balancedisabled/satchel.o: satchel.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c satchel.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/satchel.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM satchel.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/satchel.d - -# Compiles file shotgun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/shotgun.d -gccPlaytest-balancedisabled/shotgun.o: shotgun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c shotgun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/shotgun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM shotgun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/shotgun.d - -# Compiles file singleplay_gamerules.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/singleplay_gamerules.d -gccPlaytest-balancedisabled/singleplay_gamerules.o: singleplay_gamerules.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c singleplay_gamerules.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/singleplay_gamerules.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM singleplay_gamerules.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/singleplay_gamerules.d - -# Compiles file skill.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/skill.d -gccPlaytest-balancedisabled/skill.o: skill.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c skill.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/skill.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM skill.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/skill.d - -# Compiles file sound.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/sound.d -gccPlaytest-balancedisabled/sound.o: sound.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c sound.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/sound.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM sound.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/sound.d - -# Compiles file soundent.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/soundent.d -gccPlaytest-balancedisabled/soundent.o: soundent.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c soundent.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/soundent.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM soundent.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/soundent.d - -# Compiles file spectator.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/spectator.d -gccPlaytest-balancedisabled/spectator.o: spectator.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c spectator.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/spectator.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM spectator.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/spectator.d - -# Compiles file squeakgrenade.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/squeakgrenade.d -gccPlaytest-balancedisabled/squeakgrenade.o: squeakgrenade.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c squeakgrenade.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/squeakgrenade.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM squeakgrenade.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/squeakgrenade.d - -# Compiles file subs.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/subs.d -gccPlaytest-balancedisabled/subs.o: subs.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c subs.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/subs.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM subs.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/subs.d - -# Compiles file teamplay_gamerules.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/teamplay_gamerules.d -gccPlaytest-balancedisabled/teamplay_gamerules.o: teamplay_gamerules.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c teamplay_gamerules.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/teamplay_gamerules.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM teamplay_gamerules.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/teamplay_gamerules.d - -# Compiles file triggers.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/triggers.d -gccPlaytest-balancedisabled/triggers.o: triggers.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c triggers.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/triggers.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM triggers.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/triggers.d - -# Compiles file turret.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/turret.d -gccPlaytest-balancedisabled/turret.o: turret.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c turret.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/turret.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM turret.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/turret.d - -# Compiles file util.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/util.d -gccPlaytest-balancedisabled/util.o: util.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c util.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/util.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM util.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/util.d - -# Compiles file ../game_shared/voice_banmgr.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../game_shared/voice_banmgr.d -gccPlaytest-balancedisabled/../game_shared/voice_banmgr.o: ../game_shared/voice_banmgr.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../game_shared/voice_banmgr.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../game_shared/voice_banmgr.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../game_shared/voice_banmgr.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../game_shared/voice_banmgr.d - -# Compiles file ../game_shared/voice_gamemgr.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../game_shared/voice_gamemgr.d -gccPlaytest-balancedisabled/../game_shared/voice_gamemgr.o: ../game_shared/voice_gamemgr.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../game_shared/voice_gamemgr.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../game_shared/voice_gamemgr.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../game_shared/voice_gamemgr.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../game_shared/voice_gamemgr.d - -# Compiles file weapons.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/weapons.d -gccPlaytest-balancedisabled/weapons.o: weapons.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c weapons.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/weapons.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM weapons.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/weapons.d - -# Compiles file world.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/world.d -gccPlaytest-balancedisabled/world.o: world.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c world.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/world.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM world.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/world.d - -# Compiles file xen.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/xen.d -gccPlaytest-balancedisabled/xen.o: xen.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c xen.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/xen.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM xen.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/xen.d - -# Compiles file ../mod/AnimationUtil.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AnimationUtil.d -gccPlaytest-balancedisabled/../mod/AnimationUtil.o: ../mod/AnimationUtil.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AnimationUtil.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AnimationUtil.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AnimationUtil.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AnimationUtil.d - -# Compiles file ../mod/AvHAlienEquipment.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHAlienEquipment.d -gccPlaytest-balancedisabled/../mod/AvHAlienEquipment.o: ../mod/AvHAlienEquipment.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHAlienEquipment.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHAlienEquipment.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHAlienEquipment.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHAlienEquipment.d - -# Compiles file ../mod/AvHAlienTurret.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHAlienTurret.d -gccPlaytest-balancedisabled/../mod/AvHAlienTurret.o: ../mod/AvHAlienTurret.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHAlienTurret.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHAlienTurret.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHAlienTurret.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHAlienTurret.d - -# Compiles file ../mod/AvHAlienWeapon.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHAlienWeapon.d -gccPlaytest-balancedisabled/../mod/AvHAlienWeapon.o: ../mod/AvHAlienWeapon.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHAlienWeapon.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHAlienWeapon.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHAlienWeapon.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHAlienWeapon.d - -# Compiles file ../mod/AvHAssert.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHAssert.d -gccPlaytest-balancedisabled/../mod/AvHAssert.o: ../mod/AvHAssert.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHAssert.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHAssert.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHAssert.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHAssert.d - -# Compiles file ../mod/AvHBaseBuildable.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHBaseBuildable.d -gccPlaytest-balancedisabled/../mod/AvHBaseBuildable.o: ../mod/AvHBaseBuildable.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHBaseBuildable.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHBaseBuildable.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHBaseBuildable.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHBaseBuildable.d - -# Compiles file ../mod/AvHBaseInfoLocation.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHBaseInfoLocation.d -gccPlaytest-balancedisabled/../mod/AvHBaseInfoLocation.o: ../mod/AvHBaseInfoLocation.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHBaseInfoLocation.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHBaseInfoLocation.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHBaseInfoLocation.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHBaseInfoLocation.d - -# Compiles file ../mod/AvHBuildable.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHBuildable.d -gccPlaytest-balancedisabled/../mod/AvHBuildable.o: ../mod/AvHBuildable.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHBuildable.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHBuildable.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHBuildable.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHBuildable.d - -# Compiles file ../mod/AvHCloakable.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHCloakable.d -gccPlaytest-balancedisabled/../mod/AvHCloakable.o: ../mod/AvHCloakable.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHCloakable.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHCloakable.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHCloakable.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHCloakable.d - -# Compiles file ../mod/AvHCombat.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHCombat.d -gccPlaytest-balancedisabled/../mod/AvHCombat.o: ../mod/AvHCombat.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHCombat.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHCombat.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHCombat.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHCombat.d - -# Compiles file ../mod/AvHConsoleCommands.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHConsoleCommands.d -gccPlaytest-balancedisabled/../mod/AvHConsoleCommands.o: ../mod/AvHConsoleCommands.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHConsoleCommands.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHConsoleCommands.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHConsoleCommands.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHConsoleCommands.d - -# Compiles file ../mod/AvHConstants.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHConstants.d -gccPlaytest-balancedisabled/../mod/AvHConstants.o: ../mod/AvHConstants.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHConstants.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHConstants.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHConstants.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHConstants.d - -# Compiles file ../mod/AvHCurl.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHCurl.d -gccPlaytest-balancedisabled/../mod/AvHCurl.o: ../mod/AvHCurl.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHCurl.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHCurl.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHCurl.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHCurl.d - -# Compiles file ../mod/AvHEntities.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHEntities.d -gccPlaytest-balancedisabled/../mod/AvHEntities.o: ../mod/AvHEntities.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHEntities.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHEntities.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHEntities.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHEntities.d - -# Compiles file ../mod/AvHEntityHierarchy.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHEntityHierarchy.d -gccPlaytest-balancedisabled/../mod/AvHEntityHierarchy.o: ../mod/AvHEntityHierarchy.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHEntityHierarchy.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHEntityHierarchy.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHEntityHierarchy.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHEntityHierarchy.d - -# Compiles file ../mod/AvHGamerules.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHGamerules.d -gccPlaytest-balancedisabled/../mod/AvHGamerules.o: ../mod/AvHGamerules.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHGamerules.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHGamerules.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHGamerules.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHGamerules.d - -# Compiles file ../mod/AvHHive.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHHive.d -gccPlaytest-balancedisabled/../mod/AvHHive.o: ../mod/AvHHive.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHHive.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHHive.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHHive.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHHive.d - -# Compiles file ../mod/AvHMapExtents.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHMapExtents.d -gccPlaytest-balancedisabled/../mod/AvHMapExtents.o: ../mod/AvHMapExtents.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHMapExtents.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHMapExtents.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHMapExtents.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHMapExtents.d - -# Compiles file ../mod/AvHMarineEquipment.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHMarineEquipment.d -gccPlaytest-balancedisabled/../mod/AvHMarineEquipment.o: ../mod/AvHMarineEquipment.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHMarineEquipment.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHMarineEquipment.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHMarineEquipment.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHMarineEquipment.d - -# Compiles file ../mod/AvHMarineTurret.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHMarineTurret.d -gccPlaytest-balancedisabled/../mod/AvHMarineTurret.o: ../mod/AvHMarineTurret.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHMarineTurret.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHMarineTurret.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHMarineTurret.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHMarineTurret.d - -# Compiles file ../mod/AvHMarineWeapon.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHMarineWeapon.d -gccPlaytest-balancedisabled/../mod/AvHMarineWeapon.o: ../mod/AvHMarineWeapon.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHMarineWeapon.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHMarineWeapon.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHMarineWeapon.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHMarineWeapon.d - -# Compiles file ../mod/AvHMiniMap.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHMiniMap.d -gccPlaytest-balancedisabled/../mod/AvHMiniMap.o: ../mod/AvHMiniMap.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHMiniMap.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHMiniMap.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHMiniMap.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHMiniMap.d - -# Compiles file ../mod/AvHMovementUtil.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHMovementUtil.d -gccPlaytest-balancedisabled/../mod/AvHMovementUtil.o: ../mod/AvHMovementUtil.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHMovementUtil.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHMovementUtil.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHMovementUtil.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHMovementUtil.d - -# Compiles file ../mod/AvHNetworkMessages.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHNetworkMessages.d -gccPlaytest-balancedisabled/../mod/AvHNetworkMessages.o: ../mod/AvHNetworkMessages.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHNetworkMessages.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHNetworkMessages.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHNetworkMessages.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHNetworkMessages.d - -# Compiles file ../mod/AvHNexusServer.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHNexusServer.d -gccPlaytest-balancedisabled/../mod/AvHNexusServer.o: ../mod/AvHNexusServer.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHNexusServer.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHNexusServer.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHNexusServer.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHNexusServer.d - -# Compiles file ../mod/AvHNexusTunnelToClient.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHNexusTunnelToClient.d -gccPlaytest-balancedisabled/../mod/AvHNexusTunnelToClient.o: ../mod/AvHNexusTunnelToClient.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHNexusTunnelToClient.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHNexusTunnelToClient.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHNexusTunnelToClient.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHNexusTunnelToClient.d - -# Compiles file ../mod/AvHOrder.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHOrder.d -gccPlaytest-balancedisabled/../mod/AvHOrder.o: ../mod/AvHOrder.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHOrder.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHOrder.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHOrder.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHOrder.d - -# Compiles file ../mod/AvHPlayer.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHPlayer.d -gccPlaytest-balancedisabled/../mod/AvHPlayer.o: ../mod/AvHPlayer.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHPlayer.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHPlayer.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHPlayer.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHPlayer.d - -# Compiles file ../mod/AvHPlayerUpgrade.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHPlayerUpgrade.d -gccPlaytest-balancedisabled/../mod/AvHPlayerUpgrade.o: ../mod/AvHPlayerUpgrade.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHPlayerUpgrade.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHPlayerUpgrade.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHPlayerUpgrade.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHPlayerUpgrade.d - -# Compiles file ../mod/AvHPushableBuildable.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHPushableBuildable.d -gccPlaytest-balancedisabled/../mod/AvHPushableBuildable.o: ../mod/AvHPushableBuildable.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHPushableBuildable.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHPushableBuildable.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHPushableBuildable.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHPushableBuildable.d - -# Compiles file ../mod/AvHReinforceable.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHReinforceable.d -gccPlaytest-balancedisabled/../mod/AvHReinforceable.o: ../mod/AvHReinforceable.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHReinforceable.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHReinforceable.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHReinforceable.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHReinforceable.d - -# Compiles file ../mod/AvHResearchManager.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHResearchManager.d -gccPlaytest-balancedisabled/../mod/AvHResearchManager.o: ../mod/AvHResearchManager.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHResearchManager.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHResearchManager.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHResearchManager.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHResearchManager.d - -# Compiles file ../mod/AvHScriptManager.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHScriptManager.d -gccPlaytest-balancedisabled/../mod/AvHScriptManager.o: ../mod/AvHScriptManager.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHScriptManager.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHScriptManager.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHScriptManager.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHScriptManager.d - -# Compiles file ../mod/AvHScriptServer.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHScriptServer.d -gccPlaytest-balancedisabled/../mod/AvHScriptServer.o: ../mod/AvHScriptServer.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHScriptServer.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHScriptServer.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHScriptServer.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHScriptServer.d - -# Compiles file ../mod/AvHScriptShared.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHScriptShared.d -gccPlaytest-balancedisabled/../mod/AvHScriptShared.o: ../mod/AvHScriptShared.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHScriptShared.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHScriptShared.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHScriptShared.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHScriptShared.d - -# Compiles file ../mod/AvHSelectionHelper.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSelectionHelper.d -gccPlaytest-balancedisabled/../mod/AvHSelectionHelper.o: ../mod/AvHSelectionHelper.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSelectionHelper.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSelectionHelper.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSelectionHelper.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSelectionHelper.d - -# Compiles file ../mod/AvHServerPlayerData.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHServerPlayerData.d -gccPlaytest-balancedisabled/../mod/AvHServerPlayerData.o: ../mod/AvHServerPlayerData.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHServerPlayerData.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHServerPlayerData.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHServerPlayerData.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHServerPlayerData.d - -# Compiles file ../mod/AvHServerUtil.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHServerUtil.d -gccPlaytest-balancedisabled/../mod/AvHServerUtil.o: ../mod/AvHServerUtil.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHServerUtil.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHServerUtil.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHServerUtil.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHServerUtil.d - -# Compiles file ../mod/AvHSharedMovementInfo.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSharedMovementInfo.d -gccPlaytest-balancedisabled/../mod/AvHSharedMovementInfo.o: ../mod/AvHSharedMovementInfo.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSharedMovementInfo.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSharedMovementInfo.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSharedMovementInfo.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSharedMovementInfo.d - -# Compiles file ../mod/AvHSharedUtil.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSharedUtil.d -gccPlaytest-balancedisabled/../mod/AvHSharedUtil.o: ../mod/AvHSharedUtil.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSharedUtil.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSharedUtil.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSharedUtil.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSharedUtil.d - -# Compiles file ../mod/AvHSiegeTurret.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSiegeTurret.d -gccPlaytest-balancedisabled/../mod/AvHSiegeTurret.o: ../mod/AvHSiegeTurret.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSiegeTurret.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSiegeTurret.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSiegeTurret.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSiegeTurret.d - -# Compiles file ../mod/AvHSoundListManager.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSoundListManager.d -gccPlaytest-balancedisabled/../mod/AvHSoundListManager.o: ../mod/AvHSoundListManager.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSoundListManager.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSoundListManager.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSoundListManager.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSoundListManager.d - -# Compiles file ../mod/AvHSpawn.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSpawn.d -gccPlaytest-balancedisabled/../mod/AvHSpawn.o: ../mod/AvHSpawn.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSpawn.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSpawn.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSpawn.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSpawn.d - -# Compiles file ../mod/AvHSpecials.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSpecials.d -gccPlaytest-balancedisabled/../mod/AvHSpecials.o: ../mod/AvHSpecials.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSpecials.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSpecials.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSpecials.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSpecials.d - -# Compiles file ../mod/AvHTeam.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHTeam.d -gccPlaytest-balancedisabled/../mod/AvHTeam.o: ../mod/AvHTeam.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHTeam.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHTeam.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHTeam.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHTeam.d - -# Compiles file ../mod/AvHTechNode.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHTechNode.d -gccPlaytest-balancedisabled/../mod/AvHTechNode.o: ../mod/AvHTechNode.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHTechNode.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHTechNode.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHTechNode.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHTechNode.d - -# Compiles file ../mod/AvHTechSlotManager.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHTechSlotManager.d -gccPlaytest-balancedisabled/../mod/AvHTechSlotManager.o: ../mod/AvHTechSlotManager.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHTechSlotManager.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHTechSlotManager.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHTechSlotManager.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHTechSlotManager.d - -# Compiles file ../mod/AvHTechTree.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHTechTree.d -gccPlaytest-balancedisabled/../mod/AvHTechTree.o: ../mod/AvHTechTree.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHTechTree.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHTechTree.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHTechTree.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHTechTree.d - -# Compiles file ../mod/AvHTurret.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHTurret.d -gccPlaytest-balancedisabled/../mod/AvHTurret.o: ../mod/AvHTurret.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHTurret.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHTurret.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHTurret.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHTurret.d - -# Compiles file ../mod/AvHVisibleBlipList.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHVisibleBlipList.d -gccPlaytest-balancedisabled/../mod/AvHVisibleBlipList.o: ../mod/AvHVisibleBlipList.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHVisibleBlipList.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHVisibleBlipList.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHVisibleBlipList.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHVisibleBlipList.d - -# Compiles file ../mod/AvHVoiceHelper.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHVoiceHelper.d -gccPlaytest-balancedisabled/../mod/AvHVoiceHelper.o: ../mod/AvHVoiceHelper.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHVoiceHelper.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHVoiceHelper.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHVoiceHelper.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHVoiceHelper.d - -# Compiles file ../mod/AvHWeldable.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHWeldable.d -gccPlaytest-balancedisabled/../mod/AvHWeldable.o: ../mod/AvHWeldable.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHWeldable.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHWeldable.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHWeldable.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHWeldable.d - -# Compiles file ../mod/AvHWorldUpdate.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHWorldUpdate.d -gccPlaytest-balancedisabled/../mod/AvHWorldUpdate.o: ../mod/AvHWorldUpdate.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHWorldUpdate.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHWorldUpdate.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHWorldUpdate.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHWorldUpdate.d - -# Compiles file ../mod/CollisionChecker.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/CollisionChecker.d -gccPlaytest-balancedisabled/../mod/CollisionChecker.o: ../mod/CollisionChecker.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/CollisionChecker.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/CollisionChecker.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/CollisionChecker.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/CollisionChecker.d - -# Compiles file ../mod/CollisionChecker_ServerOnly.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/CollisionChecker_ServerOnly.d -gccPlaytest-balancedisabled/../mod/CollisionChecker_ServerOnly.o: ../mod/CollisionChecker_ServerOnly.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/CollisionChecker_ServerOnly.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/CollisionChecker_ServerOnly.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/CollisionChecker_ServerOnly.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/CollisionChecker_ServerOnly.d - -# Compiles file ../mod/CollisionUtil.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/CollisionUtil.d -gccPlaytest-balancedisabled/../mod/CollisionUtil.o: ../mod/CollisionUtil.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/CollisionUtil.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/CollisionUtil.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/CollisionUtil.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/CollisionUtil.d - -# Compiles file ../mod/NetworkMeter.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/NetworkMeter.d -gccPlaytest-balancedisabled/../mod/NetworkMeter.o: ../mod/NetworkMeter.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/NetworkMeter.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/NetworkMeter.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/NetworkMeter.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/NetworkMeter.d - -# Compiles file ../mod/AvHAcidRocketGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHAcidRocketGun.d -gccPlaytest-balancedisabled/../mod/AvHAcidRocketGun.o: ../mod/AvHAcidRocketGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHAcidRocketGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHAcidRocketGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHAcidRocketGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHAcidRocketGun.d - -# Compiles file ../mod/AvHAlienAbilities.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHAlienAbilities.d -gccPlaytest-balancedisabled/../mod/AvHAlienAbilities.o: ../mod/AvHAlienAbilities.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHAlienAbilities.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHAlienAbilities.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHAlienAbilities.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHAlienAbilities.d - -# Compiles file ../mod/AvHBasePlayerWeapon.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHBasePlayerWeapon.d -gccPlaytest-balancedisabled/../mod/AvHBasePlayerWeapon.o: ../mod/AvHBasePlayerWeapon.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHBasePlayerWeapon.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHBasePlayerWeapon.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHBasePlayerWeapon.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHBasePlayerWeapon.d - -# Compiles file ../mod/AvHBileBombGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHBileBombGun.d -gccPlaytest-balancedisabled/../mod/AvHBileBombGun.o: ../mod/AvHBileBombGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHBileBombGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHBileBombGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHBileBombGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHBileBombGun.d - -# Compiles file ../mod/AvHBite.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHBite.d -gccPlaytest-balancedisabled/../mod/AvHBite.o: ../mod/AvHBite.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHBite.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHBite.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHBite.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHBite.d - -# Compiles file ../mod/AvHBite2.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHBite2.d -gccPlaytest-balancedisabled/../mod/AvHBite2.o: ../mod/AvHBite2.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHBite2.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHBite2.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHBite2.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHBite2.d - -# Compiles file ../mod/AvHBlink.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHBlink.d -gccPlaytest-balancedisabled/../mod/AvHBlink.o: ../mod/AvHBlink.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHBlink.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHBlink.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHBlink.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHBlink.d - -# Compiles file ../mod/AvHBuildingGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHBuildingGun.d -gccPlaytest-balancedisabled/../mod/AvHBuildingGun.o: ../mod/AvHBuildingGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHBuildingGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHBuildingGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHBuildingGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHBuildingGun.d - -# Compiles file ../mod/AvHClaws.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHClaws.d -gccPlaytest-balancedisabled/../mod/AvHClaws.o: ../mod/AvHClaws.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHClaws.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHClaws.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHClaws.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHClaws.d - -# Compiles file ../mod/AvHDevour.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHDevour.d -gccPlaytest-balancedisabled/../mod/AvHDevour.o: ../mod/AvHDevour.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHDevour.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHDevour.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHDevour.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHDevour.d - -# Compiles file ../mod/AvHDivineWind.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHDivineWind.d -gccPlaytest-balancedisabled/../mod/AvHDivineWind.o: ../mod/AvHDivineWind.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHDivineWind.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHDivineWind.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHDivineWind.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHDivineWind.d - -# Compiles file ../mod/AvHGrenade.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHGrenade.d -gccPlaytest-balancedisabled/../mod/AvHGrenade.o: ../mod/AvHGrenade.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHGrenade.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHGrenade.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHGrenade.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHGrenade.d - -# Compiles file ../mod/AvHGrenadeGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHGrenadeGun.d -gccPlaytest-balancedisabled/../mod/AvHGrenadeGun.o: ../mod/AvHGrenadeGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHGrenadeGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHGrenadeGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHGrenadeGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHGrenadeGun.d - -# Compiles file ../mod/AvHHealingSpray.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHHealingSpray.d -gccPlaytest-balancedisabled/../mod/AvHHealingSpray.o: ../mod/AvHHealingSpray.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHHealingSpray.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHHealingSpray.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHHealingSpray.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHHealingSpray.d - -# Compiles file ../mod/AvHHeavyMachineGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHHeavyMachineGun.d -gccPlaytest-balancedisabled/../mod/AvHHeavyMachineGun.o: ../mod/AvHHeavyMachineGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHHeavyMachineGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHHeavyMachineGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHHeavyMachineGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHHeavyMachineGun.d - -# Compiles file ../mod/AvHItemInfo.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHItemInfo.d -gccPlaytest-balancedisabled/../mod/AvHItemInfo.o: ../mod/AvHItemInfo.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHItemInfo.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHItemInfo.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHItemInfo.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHItemInfo.d - -# Compiles file ../mod/AvHKnife.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHKnife.d -gccPlaytest-balancedisabled/../mod/AvHKnife.o: ../mod/AvHKnife.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHKnife.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHKnife.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHKnife.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHKnife.d - -# Compiles file ../mod/AvHMachineGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHMachineGun.d -gccPlaytest-balancedisabled/../mod/AvHMachineGun.o: ../mod/AvHMachineGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHMachineGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHMachineGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHMachineGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHMachineGun.d - -# Compiles file ../mod/AvHMetabolize.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHMetabolize.d -gccPlaytest-balancedisabled/../mod/AvHMetabolize.o: ../mod/AvHMetabolize.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHMetabolize.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHMetabolize.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHMetabolize.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHMetabolize.d - -# Compiles file ../mod/AvHMine.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHMine.d -gccPlaytest-balancedisabled/../mod/AvHMine.o: ../mod/AvHMine.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHMine.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHMine.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHMine.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHMine.d - -# Compiles file ../mod/AvHParasiteGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHParasiteGun.d -gccPlaytest-balancedisabled/../mod/AvHParasiteGun.o: ../mod/AvHParasiteGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHParasiteGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHParasiteGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHParasiteGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHParasiteGun.d - -# Compiles file ../mod/AvHPistol.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHPistol.d -gccPlaytest-balancedisabled/../mod/AvHPistol.o: ../mod/AvHPistol.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHPistol.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHPistol.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHPistol.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHPistol.d - -# Compiles file ../mod/AvHPrimalScream.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHPrimalScream.d -gccPlaytest-balancedisabled/../mod/AvHPrimalScream.o: ../mod/AvHPrimalScream.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHPrimalScream.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHPrimalScream.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHPrimalScream.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHPrimalScream.d - -# Compiles file ../mod/AvHSonicGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSonicGun.d -gccPlaytest-balancedisabled/../mod/AvHSonicGun.o: ../mod/AvHSonicGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSonicGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSonicGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSonicGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSonicGun.d - -# Compiles file ../mod/AvHSpikeGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSpikeGun.d -gccPlaytest-balancedisabled/../mod/AvHSpikeGun.o: ../mod/AvHSpikeGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSpikeGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSpikeGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSpikeGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSpikeGun.d - -# Compiles file ../mod/AvHSpitGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSpitGun.d -gccPlaytest-balancedisabled/../mod/AvHSpitGun.o: ../mod/AvHSpitGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSpitGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSpitGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSpitGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSpitGun.d - -# Compiles file ../mod/AvHSpores.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSpores.d -gccPlaytest-balancedisabled/../mod/AvHSpores.o: ../mod/AvHSpores.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSpores.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSpores.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSpores.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSpores.d - -# Compiles file ../mod/AvHStomp.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHStomp.d -gccPlaytest-balancedisabled/../mod/AvHStomp.o: ../mod/AvHStomp.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHStomp.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHStomp.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHStomp.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHStomp.d - -# Compiles file ../mod/AvHSwipe.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHSwipe.d -gccPlaytest-balancedisabled/../mod/AvHSwipe.o: ../mod/AvHSwipe.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHSwipe.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHSwipe.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHSwipe.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHSwipe.d - -# Compiles file ../mod/AvHUmbraGun.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHUmbraGun.d -gccPlaytest-balancedisabled/../mod/AvHUmbraGun.o: ../mod/AvHUmbraGun.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHUmbraGun.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHUmbraGun.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHUmbraGun.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHUmbraGun.d - -# Compiles file ../mod/AvHWebSpinner.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHWebSpinner.d -gccPlaytest-balancedisabled/../mod/AvHWebSpinner.o: ../mod/AvHWebSpinner.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHWebSpinner.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHWebSpinner.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHWebSpinner.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHWebSpinner.d - -# Compiles file ../mod/AvHWelder.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHWelder.d -gccPlaytest-balancedisabled/../mod/AvHWelder.o: ../mod/AvHWelder.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHWelder.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHWelder.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHWelder.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHWelder.d - -# Compiles file ggrenade.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/ggrenade.d -gccPlaytest-balancedisabled/ggrenade.o: ggrenade.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ggrenade.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/ggrenade.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ggrenade.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/ggrenade.d - -# Compiles file ../mod/AvHParticleSystem.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHParticleSystem.d -gccPlaytest-balancedisabled/../mod/AvHParticleSystem.o: ../mod/AvHParticleSystem.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHParticleSystem.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHParticleSystem.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHParticleSystem.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHParticleSystem.d - -# Compiles file ../mod/AvHParticleSystemEntity.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHParticleSystemEntity.d -gccPlaytest-balancedisabled/../mod/AvHParticleSystemEntity.o: ../mod/AvHParticleSystemEntity.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHParticleSystemEntity.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHParticleSystemEntity.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHParticleSystemEntity.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHParticleSystemEntity.d - -# Compiles file ../mod/AvHParticleSystemManager.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHParticleSystemManager.d -gccPlaytest-balancedisabled/../mod/AvHParticleSystemManager.o: ../mod/AvHParticleSystemManager.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHParticleSystemManager.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHParticleSystemManager.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHParticleSystemManager.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHParticleSystemManager.d - -# Compiles file ../mod/AvHParticleTemplate.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHParticleTemplate.d -gccPlaytest-balancedisabled/../mod/AvHParticleTemplate.o: ../mod/AvHParticleTemplate.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHParticleTemplate.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHParticleTemplate.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHParticleTemplate.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHParticleTemplate.d - -# Compiles file ../mod/AvHParticleTemplateServer.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../mod/AvHParticleTemplateServer.d -gccPlaytest-balancedisabled/../mod/AvHParticleTemplateServer.o: ../mod/AvHParticleTemplateServer.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../mod/AvHParticleTemplateServer.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../mod/AvHParticleTemplateServer.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../mod/AvHParticleTemplateServer.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../mod/AvHParticleTemplateServer.d - -# Compiles file ../util/Balance.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/Balance.d -gccPlaytest-balancedisabled/../util/Balance.o: ../util/Balance.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/Balance.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/Balance.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/Balance.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/Balance.d - -# Compiles file ../util/Checksum.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/Checksum.d -gccPlaytest-balancedisabled/../util/Checksum.o: ../util/Checksum.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/Checksum.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/Checksum.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/Checksum.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/Checksum.d - -# Compiles file ../util/GammaTable.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/GammaTable.d -gccPlaytest-balancedisabled/../util/GammaTable.o: ../util/GammaTable.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/GammaTable.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/GammaTable.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/GammaTable.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/GammaTable.d - -# Compiles file ../util/LinuxSupport.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/LinuxSupport.d -gccPlaytest-balancedisabled/../util/LinuxSupport.o: ../util/LinuxSupport.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/LinuxSupport.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/LinuxSupport.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/LinuxSupport.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/LinuxSupport.d - -# Compiles file ../util/Mat3.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/Mat3.d -gccPlaytest-balancedisabled/../util/Mat3.o: ../util/Mat3.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/Mat3.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/Mat3.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/Mat3.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/Mat3.d - -# Compiles file ../util/MathUtil.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/MathUtil.d -gccPlaytest-balancedisabled/../util/MathUtil.o: ../util/MathUtil.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/MathUtil.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/MathUtil.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/MathUtil.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/MathUtil.d - -# Compiles file ../util/Quat.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/Quat.d -gccPlaytest-balancedisabled/../util/Quat.o: ../util/Quat.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/Quat.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/Quat.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/Quat.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/Quat.d - -# Compiles file ../util/Stacktrace.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/Stacktrace.d -gccPlaytest-balancedisabled/../util/Stacktrace.o: ../util/Stacktrace.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/Stacktrace.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/Stacktrace.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/Stacktrace.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/Stacktrace.d - -# Compiles file ../util/STLUtil.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/STLUtil.d -gccPlaytest-balancedisabled/../util/STLUtil.o: ../util/STLUtil.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/STLUtil.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/STLUtil.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/STLUtil.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/STLUtil.d - -# Compiles file ../util/Tokenizer.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/Tokenizer.d -gccPlaytest-balancedisabled/../util/Tokenizer.o: ../util/Tokenizer.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/Tokenizer.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/Tokenizer.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/Tokenizer.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/Tokenizer.d - -# Compiles file ../util/Zassert.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/Zassert.d -gccPlaytest-balancedisabled/../util/Zassert.o: ../util/Zassert.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/Zassert.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/Zassert.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/Zassert.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/Zassert.d - -# Compiles file ../util/ZassertTemplate.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../util/ZassertTemplate.d -gccPlaytest-balancedisabled/../util/ZassertTemplate.o: ../util/ZassertTemplate.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../util/ZassertTemplate.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../util/ZassertTemplate.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../util/ZassertTemplate.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../util/ZassertTemplate.d - -# Compiles file ../textrep/TRDescription.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../textrep/TRDescription.d -gccPlaytest-balancedisabled/../textrep/TRDescription.o: ../textrep/TRDescription.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../textrep/TRDescription.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../textrep/TRDescription.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../textrep/TRDescription.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../textrep/TRDescription.d - -# Compiles file ../textrep/TRFactory.cpp for the Playtest-balancedisabled configuration... --include gccPlaytest-balancedisabled/../textrep/TRFactory.d -gccPlaytest-balancedisabled/../textrep/TRFactory.o: ../textrep/TRFactory.cpp - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -c ../textrep/TRFactory.cpp $(Playtest-balancedisabled_Include_Path) -o gccPlaytest-balancedisabled/../textrep/TRFactory.o - $(CPP_COMPILER) $(Playtest-balancedisabled_Preprocessor_Definitions) $(Playtest-balancedisabled_Compiler_Flags) -MM ../textrep/TRFactory.cpp $(Playtest-balancedisabled_Include_Path) > gccPlaytest-balancedisabled/../textrep/TRFactory.d - -# Builds the Playtest configuration... -.PHONY: Playtest -Playtest: create_folders gccPlaytest/animating.o gccPlaytest/animation.o gccPlaytest/bmodels.o gccPlaytest/buttons.o gccPlaytest/cbase.o gccPlaytest/client.o gccPlaytest/combat.o gccPlaytest/doors.o gccPlaytest/effects.o gccPlaytest/egon.o gccPlaytest/explode.o gccPlaytest/func_break.o gccPlaytest/func_tank.o gccPlaytest/game.o gccPlaytest/gamerules.o gccPlaytest/gauss.o gccPlaytest/globals.o gccPlaytest/h_ai.o gccPlaytest/h_battery.o gccPlaytest/h_cycler.o gccPlaytest/h_export.o gccPlaytest/items.o gccPlaytest/lights.o gccPlaytest/maprules.o gccPlaytest/mpstubb.o gccPlaytest/multiplay_gamerules.o gccPlaytest/observer.o gccPlaytest/pathcorner.o gccPlaytest/plane.o gccPlaytest/plats.o gccPlaytest/player.o gccPlaytest/../pm_shared/pm_debug.o gccPlaytest/../pm_shared/pm_math.o gccPlaytest/../pm_shared/pm_shared.o gccPlaytest/satchel.o gccPlaytest/shotgun.o gccPlaytest/singleplay_gamerules.o gccPlaytest/skill.o gccPlaytest/sound.o gccPlaytest/soundent.o gccPlaytest/spectator.o gccPlaytest/squeakgrenade.o gccPlaytest/subs.o gccPlaytest/teamplay_gamerules.o gccPlaytest/triggers.o gccPlaytest/turret.o gccPlaytest/util.o gccPlaytest/../game_shared/voice_banmgr.o gccPlaytest/../game_shared/voice_gamemgr.o gccPlaytest/weapons.o gccPlaytest/world.o gccPlaytest/xen.o gccPlaytest/../mod/AnimationUtil.o gccPlaytest/../mod/AvHAlienEquipment.o gccPlaytest/../mod/AvHAlienTurret.o gccPlaytest/../mod/AvHAlienWeapon.o gccPlaytest/../mod/AvHAssert.o gccPlaytest/../mod/AvHBaseBuildable.o gccPlaytest/../mod/AvHBaseInfoLocation.o gccPlaytest/../mod/AvHBuildable.o gccPlaytest/../mod/AvHCloakable.o gccPlaytest/../mod/AvHCombat.o gccPlaytest/../mod/AvHConsoleCommands.o gccPlaytest/../mod/AvHConstants.o gccPlaytest/../mod/AvHCurl.o gccPlaytest/../mod/AvHEntities.o gccPlaytest/../mod/AvHEntityHierarchy.o gccPlaytest/../mod/AvHGamerules.o gccPlaytest/../mod/AvHHive.o gccPlaytest/../mod/AvHMapExtents.o gccPlaytest/../mod/AvHMarineEquipment.o gccPlaytest/../mod/AvHMarineTurret.o gccPlaytest/../mod/AvHMarineWeapon.o gccPlaytest/../mod/AvHMiniMap.o gccPlaytest/../mod/AvHMovementUtil.o gccPlaytest/../mod/AvHNetworkMessages.o gccPlaytest/../mod/AvHNexusServer.o gccPlaytest/../mod/AvHNexusTunnelToClient.o gccPlaytest/../mod/AvHOrder.o gccPlaytest/../mod/AvHPlayer.o gccPlaytest/../mod/AvHPlayerUpgrade.o gccPlaytest/../mod/AvHPushableBuildable.o gccPlaytest/../mod/AvHReinforceable.o gccPlaytest/../mod/AvHResearchManager.o gccPlaytest/../mod/AvHScriptManager.o gccPlaytest/../mod/AvHScriptServer.o gccPlaytest/../mod/AvHScriptShared.o gccPlaytest/../mod/AvHSelectionHelper.o gccPlaytest/../mod/AvHServerPlayerData.o gccPlaytest/../mod/AvHServerUtil.o gccPlaytest/../mod/AvHSharedMovementInfo.o gccPlaytest/../mod/AvHSharedUtil.o gccPlaytest/../mod/AvHSiegeTurret.o gccPlaytest/../mod/AvHSoundListManager.o gccPlaytest/../mod/AvHSpawn.o gccPlaytest/../mod/AvHSpecials.o gccPlaytest/../mod/AvHTeam.o gccPlaytest/../mod/AvHTechNode.o gccPlaytest/../mod/AvHTechSlotManager.o gccPlaytest/../mod/AvHTechTree.o gccPlaytest/../mod/AvHTurret.o gccPlaytest/../mod/AvHVisibleBlipList.o gccPlaytest/../mod/AvHVoiceHelper.o gccPlaytest/../mod/AvHWeldable.o gccPlaytest/../mod/AvHWorldUpdate.o gccPlaytest/../mod/CollisionChecker.o gccPlaytest/../mod/CollisionChecker_ServerOnly.o gccPlaytest/../mod/CollisionUtil.o gccPlaytest/../mod/NetworkMeter.o gccPlaytest/../mod/AvHAcidRocketGun.o gccPlaytest/../mod/AvHAlienAbilities.o gccPlaytest/../mod/AvHBasePlayerWeapon.o gccPlaytest/../mod/AvHBileBombGun.o gccPlaytest/../mod/AvHBite.o gccPlaytest/../mod/AvHBite2.o gccPlaytest/../mod/AvHBlink.o gccPlaytest/../mod/AvHBuildingGun.o gccPlaytest/../mod/AvHClaws.o gccPlaytest/../mod/AvHDevour.o gccPlaytest/../mod/AvHDivineWind.o gccPlaytest/../mod/AvHGrenade.o gccPlaytest/../mod/AvHGrenadeGun.o gccPlaytest/../mod/AvHHealingSpray.o gccPlaytest/../mod/AvHHeavyMachineGun.o gccPlaytest/../mod/AvHItemInfo.o gccPlaytest/../mod/AvHKnife.o gccPlaytest/../mod/AvHMachineGun.o gccPlaytest/../mod/AvHMetabolize.o gccPlaytest/../mod/AvHMine.o gccPlaytest/../mod/AvHParasiteGun.o gccPlaytest/../mod/AvHPistol.o gccPlaytest/../mod/AvHPrimalScream.o gccPlaytest/../mod/AvHSonicGun.o gccPlaytest/../mod/AvHSpikeGun.o gccPlaytest/../mod/AvHSpitGun.o gccPlaytest/../mod/AvHSpores.o gccPlaytest/../mod/AvHStomp.o gccPlaytest/../mod/AvHSwipe.o gccPlaytest/../mod/AvHUmbraGun.o gccPlaytest/../mod/AvHWebSpinner.o gccPlaytest/../mod/AvHWelder.o gccPlaytest/ggrenade.o gccPlaytest/../mod/AvHParticleSystem.o gccPlaytest/../mod/AvHParticleSystemEntity.o gccPlaytest/../mod/AvHParticleSystemManager.o gccPlaytest/../mod/AvHParticleTemplate.o gccPlaytest/../mod/AvHParticleTemplateServer.o gccPlaytest/../util/Balance.o gccPlaytest/../util/Checksum.o gccPlaytest/../util/GammaTable.o gccPlaytest/../util/LinuxSupport.o gccPlaytest/../util/Mat3.o gccPlaytest/../util/MathUtil.o gccPlaytest/../util/Quat.o gccPlaytest/../util/Stacktrace.o gccPlaytest/../util/STLUtil.o gccPlaytest/../util/Tokenizer.o gccPlaytest/../util/Zassert.o gccPlaytest/../util/ZassertTemplate.o gccPlaytest/../textrep/TRDescription.o gccPlaytest/../textrep/TRFactory.o - g++ -fPIC -shared -Wl,-soname,libns.dll.so -o ../../../../../../../../ProgramFiles(x86)/Steam/SteamApps/common/Half-Life/ns/gccdlls/libns.dll.so gccPlaytest/animating.o gccPlaytest/animation.o gccPlaytest/bmodels.o gccPlaytest/buttons.o gccPlaytest/cbase.o gccPlaytest/client.o gccPlaytest/combat.o gccPlaytest/doors.o gccPlaytest/effects.o gccPlaytest/egon.o gccPlaytest/explode.o gccPlaytest/func_break.o gccPlaytest/func_tank.o gccPlaytest/game.o gccPlaytest/gamerules.o gccPlaytest/gauss.o gccPlaytest/globals.o gccPlaytest/h_ai.o gccPlaytest/h_battery.o gccPlaytest/h_cycler.o gccPlaytest/h_export.o gccPlaytest/items.o gccPlaytest/lights.o gccPlaytest/maprules.o gccPlaytest/mpstubb.o gccPlaytest/multiplay_gamerules.o gccPlaytest/observer.o gccPlaytest/pathcorner.o gccPlaytest/plane.o gccPlaytest/plats.o gccPlaytest/player.o gccPlaytest/../pm_shared/pm_debug.o gccPlaytest/../pm_shared/pm_math.o gccPlaytest/../pm_shared/pm_shared.o gccPlaytest/satchel.o gccPlaytest/shotgun.o gccPlaytest/singleplay_gamerules.o gccPlaytest/skill.o gccPlaytest/sound.o gccPlaytest/soundent.o gccPlaytest/spectator.o gccPlaytest/squeakgrenade.o gccPlaytest/subs.o gccPlaytest/teamplay_gamerules.o gccPlaytest/triggers.o gccPlaytest/turret.o gccPlaytest/util.o gccPlaytest/../game_shared/voice_banmgr.o gccPlaytest/../game_shared/voice_gamemgr.o gccPlaytest/weapons.o gccPlaytest/world.o gccPlaytest/xen.o gccPlaytest/../mod/AnimationUtil.o gccPlaytest/../mod/AvHAlienEquipment.o gccPlaytest/../mod/AvHAlienTurret.o gccPlaytest/../mod/AvHAlienWeapon.o gccPlaytest/../mod/AvHAssert.o gccPlaytest/../mod/AvHBaseBuildable.o gccPlaytest/../mod/AvHBaseInfoLocation.o gccPlaytest/../mod/AvHBuildable.o gccPlaytest/../mod/AvHCloakable.o gccPlaytest/../mod/AvHCombat.o gccPlaytest/../mod/AvHConsoleCommands.o gccPlaytest/../mod/AvHConstants.o gccPlaytest/../mod/AvHCurl.o gccPlaytest/../mod/AvHEntities.o gccPlaytest/../mod/AvHEntityHierarchy.o gccPlaytest/../mod/AvHGamerules.o gccPlaytest/../mod/AvHHive.o gccPlaytest/../mod/AvHMapExtents.o gccPlaytest/../mod/AvHMarineEquipment.o gccPlaytest/../mod/AvHMarineTurret.o gccPlaytest/../mod/AvHMarineWeapon.o gccPlaytest/../mod/AvHMiniMap.o gccPlaytest/../mod/AvHMovementUtil.o gccPlaytest/../mod/AvHNetworkMessages.o gccPlaytest/../mod/AvHNexusServer.o gccPlaytest/../mod/AvHNexusTunnelToClient.o gccPlaytest/../mod/AvHOrder.o gccPlaytest/../mod/AvHPlayer.o gccPlaytest/../mod/AvHPlayerUpgrade.o gccPlaytest/../mod/AvHPushableBuildable.o gccPlaytest/../mod/AvHReinforceable.o gccPlaytest/../mod/AvHResearchManager.o gccPlaytest/../mod/AvHScriptManager.o gccPlaytest/../mod/AvHScriptServer.o gccPlaytest/../mod/AvHScriptShared.o gccPlaytest/../mod/AvHSelectionHelper.o gccPlaytest/../mod/AvHServerPlayerData.o gccPlaytest/../mod/AvHServerUtil.o gccPlaytest/../mod/AvHSharedMovementInfo.o gccPlaytest/../mod/AvHSharedUtil.o gccPlaytest/../mod/AvHSiegeTurret.o gccPlaytest/../mod/AvHSoundListManager.o gccPlaytest/../mod/AvHSpawn.o gccPlaytest/../mod/AvHSpecials.o gccPlaytest/../mod/AvHTeam.o gccPlaytest/../mod/AvHTechNode.o gccPlaytest/../mod/AvHTechSlotManager.o gccPlaytest/../mod/AvHTechTree.o gccPlaytest/../mod/AvHTurret.o gccPlaytest/../mod/AvHVisibleBlipList.o gccPlaytest/../mod/AvHVoiceHelper.o gccPlaytest/../mod/AvHWeldable.o gccPlaytest/../mod/AvHWorldUpdate.o gccPlaytest/../mod/CollisionChecker.o gccPlaytest/../mod/CollisionChecker_ServerOnly.o gccPlaytest/../mod/CollisionUtil.o gccPlaytest/../mod/NetworkMeter.o gccPlaytest/../mod/AvHAcidRocketGun.o gccPlaytest/../mod/AvHAlienAbilities.o gccPlaytest/../mod/AvHBasePlayerWeapon.o gccPlaytest/../mod/AvHBileBombGun.o gccPlaytest/../mod/AvHBite.o gccPlaytest/../mod/AvHBite2.o gccPlaytest/../mod/AvHBlink.o gccPlaytest/../mod/AvHBuildingGun.o gccPlaytest/../mod/AvHClaws.o gccPlaytest/../mod/AvHDevour.o gccPlaytest/../mod/AvHDivineWind.o gccPlaytest/../mod/AvHGrenade.o gccPlaytest/../mod/AvHGrenadeGun.o gccPlaytest/../mod/AvHHealingSpray.o gccPlaytest/../mod/AvHHeavyMachineGun.o gccPlaytest/../mod/AvHItemInfo.o gccPlaytest/../mod/AvHKnife.o gccPlaytest/../mod/AvHMachineGun.o gccPlaytest/../mod/AvHMetabolize.o gccPlaytest/../mod/AvHMine.o gccPlaytest/../mod/AvHParasiteGun.o gccPlaytest/../mod/AvHPistol.o gccPlaytest/../mod/AvHPrimalScream.o gccPlaytest/../mod/AvHSonicGun.o gccPlaytest/../mod/AvHSpikeGun.o gccPlaytest/../mod/AvHSpitGun.o gccPlaytest/../mod/AvHSpores.o gccPlaytest/../mod/AvHStomp.o gccPlaytest/../mod/AvHSwipe.o gccPlaytest/../mod/AvHUmbraGun.o gccPlaytest/../mod/AvHWebSpinner.o gccPlaytest/../mod/AvHWelder.o gccPlaytest/ggrenade.o gccPlaytest/../mod/AvHParticleSystem.o gccPlaytest/../mod/AvHParticleSystemEntity.o gccPlaytest/../mod/AvHParticleSystemManager.o gccPlaytest/../mod/AvHParticleTemplate.o gccPlaytest/../mod/AvHParticleTemplateServer.o gccPlaytest/../util/Balance.o gccPlaytest/../util/Checksum.o gccPlaytest/../util/GammaTable.o gccPlaytest/../util/LinuxSupport.o gccPlaytest/../util/Mat3.o gccPlaytest/../util/MathUtil.o gccPlaytest/../util/Quat.o gccPlaytest/../util/Stacktrace.o gccPlaytest/../util/STLUtil.o gccPlaytest/../util/Tokenizer.o gccPlaytest/../util/Zassert.o gccPlaytest/../util/ZassertTemplate.o gccPlaytest/../textrep/TRDescription.o gccPlaytest/../textrep/TRFactory.o $(Playtest_Implicitly_Linked_Objects) - -# Compiles file animating.cpp for the Playtest configuration... --include gccPlaytest/animating.d -gccPlaytest/animating.o: animating.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c animating.cpp $(Playtest_Include_Path) -o gccPlaytest/animating.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM animating.cpp $(Playtest_Include_Path) > gccPlaytest/animating.d - -# Compiles file animation.cpp for the Playtest configuration... --include gccPlaytest/animation.d -gccPlaytest/animation.o: animation.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c animation.cpp $(Playtest_Include_Path) -o gccPlaytest/animation.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM animation.cpp $(Playtest_Include_Path) > gccPlaytest/animation.d - -# Compiles file bmodels.cpp for the Playtest configuration... --include gccPlaytest/bmodels.d -gccPlaytest/bmodels.o: bmodels.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c bmodels.cpp $(Playtest_Include_Path) -o gccPlaytest/bmodels.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM bmodels.cpp $(Playtest_Include_Path) > gccPlaytest/bmodels.d - -# Compiles file buttons.cpp for the Playtest configuration... --include gccPlaytest/buttons.d -gccPlaytest/buttons.o: buttons.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c buttons.cpp $(Playtest_Include_Path) -o gccPlaytest/buttons.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM buttons.cpp $(Playtest_Include_Path) > gccPlaytest/buttons.d - -# Compiles file cbase.cpp for the Playtest configuration... --include gccPlaytest/cbase.d -gccPlaytest/cbase.o: cbase.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c cbase.cpp $(Playtest_Include_Path) -o gccPlaytest/cbase.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM cbase.cpp $(Playtest_Include_Path) > gccPlaytest/cbase.d - -# Compiles file client.cpp for the Playtest configuration... --include gccPlaytest/client.d -gccPlaytest/client.o: client.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c client.cpp $(Playtest_Include_Path) -o gccPlaytest/client.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM client.cpp $(Playtest_Include_Path) > gccPlaytest/client.d - -# Compiles file combat.cpp for the Playtest configuration... --include gccPlaytest/combat.d -gccPlaytest/combat.o: combat.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c combat.cpp $(Playtest_Include_Path) -o gccPlaytest/combat.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM combat.cpp $(Playtest_Include_Path) > gccPlaytest/combat.d - -# Compiles file doors.cpp for the Playtest configuration... --include gccPlaytest/doors.d -gccPlaytest/doors.o: doors.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c doors.cpp $(Playtest_Include_Path) -o gccPlaytest/doors.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM doors.cpp $(Playtest_Include_Path) > gccPlaytest/doors.d - -# Compiles file effects.cpp for the Playtest configuration... --include gccPlaytest/effects.d -gccPlaytest/effects.o: effects.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c effects.cpp $(Playtest_Include_Path) -o gccPlaytest/effects.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM effects.cpp $(Playtest_Include_Path) > gccPlaytest/effects.d - -# Compiles file egon.cpp for the Playtest configuration... --include gccPlaytest/egon.d -gccPlaytest/egon.o: egon.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c egon.cpp $(Playtest_Include_Path) -o gccPlaytest/egon.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM egon.cpp $(Playtest_Include_Path) > gccPlaytest/egon.d - -# Compiles file explode.cpp for the Playtest configuration... --include gccPlaytest/explode.d -gccPlaytest/explode.o: explode.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c explode.cpp $(Playtest_Include_Path) -o gccPlaytest/explode.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM explode.cpp $(Playtest_Include_Path) > gccPlaytest/explode.d - -# Compiles file func_break.cpp for the Playtest configuration... --include gccPlaytest/func_break.d -gccPlaytest/func_break.o: func_break.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c func_break.cpp $(Playtest_Include_Path) -o gccPlaytest/func_break.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM func_break.cpp $(Playtest_Include_Path) > gccPlaytest/func_break.d - -# Compiles file func_tank.cpp for the Playtest configuration... --include gccPlaytest/func_tank.d -gccPlaytest/func_tank.o: func_tank.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c func_tank.cpp $(Playtest_Include_Path) -o gccPlaytest/func_tank.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM func_tank.cpp $(Playtest_Include_Path) > gccPlaytest/func_tank.d - -# Compiles file game.cpp for the Playtest configuration... --include gccPlaytest/game.d -gccPlaytest/game.o: game.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c game.cpp $(Playtest_Include_Path) -o gccPlaytest/game.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM game.cpp $(Playtest_Include_Path) > gccPlaytest/game.d - -# Compiles file gamerules.cpp for the Playtest configuration... --include gccPlaytest/gamerules.d -gccPlaytest/gamerules.o: gamerules.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c gamerules.cpp $(Playtest_Include_Path) -o gccPlaytest/gamerules.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM gamerules.cpp $(Playtest_Include_Path) > gccPlaytest/gamerules.d - -# Compiles file gauss.cpp for the Playtest configuration... --include gccPlaytest/gauss.d -gccPlaytest/gauss.o: gauss.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c gauss.cpp $(Playtest_Include_Path) -o gccPlaytest/gauss.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM gauss.cpp $(Playtest_Include_Path) > gccPlaytest/gauss.d - -# Compiles file globals.cpp for the Playtest configuration... --include gccPlaytest/globals.d -gccPlaytest/globals.o: globals.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c globals.cpp $(Playtest_Include_Path) -o gccPlaytest/globals.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM globals.cpp $(Playtest_Include_Path) > gccPlaytest/globals.d - -# Compiles file h_ai.cpp for the Playtest configuration... --include gccPlaytest/h_ai.d -gccPlaytest/h_ai.o: h_ai.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c h_ai.cpp $(Playtest_Include_Path) -o gccPlaytest/h_ai.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM h_ai.cpp $(Playtest_Include_Path) > gccPlaytest/h_ai.d - -# Compiles file h_battery.cpp for the Playtest configuration... --include gccPlaytest/h_battery.d -gccPlaytest/h_battery.o: h_battery.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c h_battery.cpp $(Playtest_Include_Path) -o gccPlaytest/h_battery.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM h_battery.cpp $(Playtest_Include_Path) > gccPlaytest/h_battery.d - -# Compiles file h_cycler.cpp for the Playtest configuration... --include gccPlaytest/h_cycler.d -gccPlaytest/h_cycler.o: h_cycler.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c h_cycler.cpp $(Playtest_Include_Path) -o gccPlaytest/h_cycler.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM h_cycler.cpp $(Playtest_Include_Path) > gccPlaytest/h_cycler.d - -# Compiles file h_export.cpp for the Playtest configuration... --include gccPlaytest/h_export.d -gccPlaytest/h_export.o: h_export.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c h_export.cpp $(Playtest_Include_Path) -o gccPlaytest/h_export.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM h_export.cpp $(Playtest_Include_Path) > gccPlaytest/h_export.d - -# Compiles file items.cpp for the Playtest configuration... --include gccPlaytest/items.d -gccPlaytest/items.o: items.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c items.cpp $(Playtest_Include_Path) -o gccPlaytest/items.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM items.cpp $(Playtest_Include_Path) > gccPlaytest/items.d - -# Compiles file lights.cpp for the Playtest configuration... --include gccPlaytest/lights.d -gccPlaytest/lights.o: lights.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c lights.cpp $(Playtest_Include_Path) -o gccPlaytest/lights.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM lights.cpp $(Playtest_Include_Path) > gccPlaytest/lights.d - -# Compiles file maprules.cpp for the Playtest configuration... --include gccPlaytest/maprules.d -gccPlaytest/maprules.o: maprules.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c maprules.cpp $(Playtest_Include_Path) -o gccPlaytest/maprules.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM maprules.cpp $(Playtest_Include_Path) > gccPlaytest/maprules.d - -# Compiles file mpstubb.cpp for the Playtest configuration... --include gccPlaytest/mpstubb.d -gccPlaytest/mpstubb.o: mpstubb.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c mpstubb.cpp $(Playtest_Include_Path) -o gccPlaytest/mpstubb.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM mpstubb.cpp $(Playtest_Include_Path) > gccPlaytest/mpstubb.d - -# Compiles file multiplay_gamerules.cpp for the Playtest configuration... --include gccPlaytest/multiplay_gamerules.d -gccPlaytest/multiplay_gamerules.o: multiplay_gamerules.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c multiplay_gamerules.cpp $(Playtest_Include_Path) -o gccPlaytest/multiplay_gamerules.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM multiplay_gamerules.cpp $(Playtest_Include_Path) > gccPlaytest/multiplay_gamerules.d - -# Compiles file observer.cpp for the Playtest configuration... --include gccPlaytest/observer.d -gccPlaytest/observer.o: observer.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c observer.cpp $(Playtest_Include_Path) -o gccPlaytest/observer.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM observer.cpp $(Playtest_Include_Path) > gccPlaytest/observer.d - -# Compiles file pathcorner.cpp for the Playtest configuration... --include gccPlaytest/pathcorner.d -gccPlaytest/pathcorner.o: pathcorner.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c pathcorner.cpp $(Playtest_Include_Path) -o gccPlaytest/pathcorner.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM pathcorner.cpp $(Playtest_Include_Path) > gccPlaytest/pathcorner.d - -# Compiles file plane.cpp for the Playtest configuration... --include gccPlaytest/plane.d -gccPlaytest/plane.o: plane.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c plane.cpp $(Playtest_Include_Path) -o gccPlaytest/plane.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM plane.cpp $(Playtest_Include_Path) > gccPlaytest/plane.d - -# Compiles file plats.cpp for the Playtest configuration... --include gccPlaytest/plats.d -gccPlaytest/plats.o: plats.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c plats.cpp $(Playtest_Include_Path) -o gccPlaytest/plats.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM plats.cpp $(Playtest_Include_Path) > gccPlaytest/plats.d - -# Compiles file player.cpp for the Playtest configuration... --include gccPlaytest/player.d -gccPlaytest/player.o: player.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c player.cpp $(Playtest_Include_Path) -o gccPlaytest/player.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM player.cpp $(Playtest_Include_Path) > gccPlaytest/player.d - -# Compiles file ../pm_shared/pm_debug.cpp for the Playtest configuration... --include gccPlaytest/../pm_shared/pm_debug.d -gccPlaytest/../pm_shared/pm_debug.o: ../pm_shared/pm_debug.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../pm_shared/pm_debug.cpp $(Playtest_Include_Path) -o gccPlaytest/../pm_shared/pm_debug.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../pm_shared/pm_debug.cpp $(Playtest_Include_Path) > gccPlaytest/../pm_shared/pm_debug.d - -# Compiles file ../pm_shared/pm_math.cpp for the Playtest configuration... --include gccPlaytest/../pm_shared/pm_math.d -gccPlaytest/../pm_shared/pm_math.o: ../pm_shared/pm_math.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../pm_shared/pm_math.cpp $(Playtest_Include_Path) -o gccPlaytest/../pm_shared/pm_math.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../pm_shared/pm_math.cpp $(Playtest_Include_Path) > gccPlaytest/../pm_shared/pm_math.d - -# Compiles file ../pm_shared/pm_shared.cpp for the Playtest configuration... --include gccPlaytest/../pm_shared/pm_shared.d -gccPlaytest/../pm_shared/pm_shared.o: ../pm_shared/pm_shared.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../pm_shared/pm_shared.cpp $(Playtest_Include_Path) -o gccPlaytest/../pm_shared/pm_shared.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../pm_shared/pm_shared.cpp $(Playtest_Include_Path) > gccPlaytest/../pm_shared/pm_shared.d - -# Compiles file satchel.cpp for the Playtest configuration... --include gccPlaytest/satchel.d -gccPlaytest/satchel.o: satchel.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c satchel.cpp $(Playtest_Include_Path) -o gccPlaytest/satchel.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM satchel.cpp $(Playtest_Include_Path) > gccPlaytest/satchel.d - -# Compiles file shotgun.cpp for the Playtest configuration... --include gccPlaytest/shotgun.d -gccPlaytest/shotgun.o: shotgun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c shotgun.cpp $(Playtest_Include_Path) -o gccPlaytest/shotgun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM shotgun.cpp $(Playtest_Include_Path) > gccPlaytest/shotgun.d - -# Compiles file singleplay_gamerules.cpp for the Playtest configuration... --include gccPlaytest/singleplay_gamerules.d -gccPlaytest/singleplay_gamerules.o: singleplay_gamerules.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c singleplay_gamerules.cpp $(Playtest_Include_Path) -o gccPlaytest/singleplay_gamerules.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM singleplay_gamerules.cpp $(Playtest_Include_Path) > gccPlaytest/singleplay_gamerules.d - -# Compiles file skill.cpp for the Playtest configuration... --include gccPlaytest/skill.d -gccPlaytest/skill.o: skill.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c skill.cpp $(Playtest_Include_Path) -o gccPlaytest/skill.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM skill.cpp $(Playtest_Include_Path) > gccPlaytest/skill.d - -# Compiles file sound.cpp for the Playtest configuration... --include gccPlaytest/sound.d -gccPlaytest/sound.o: sound.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c sound.cpp $(Playtest_Include_Path) -o gccPlaytest/sound.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM sound.cpp $(Playtest_Include_Path) > gccPlaytest/sound.d - -# Compiles file soundent.cpp for the Playtest configuration... --include gccPlaytest/soundent.d -gccPlaytest/soundent.o: soundent.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c soundent.cpp $(Playtest_Include_Path) -o gccPlaytest/soundent.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM soundent.cpp $(Playtest_Include_Path) > gccPlaytest/soundent.d - -# Compiles file spectator.cpp for the Playtest configuration... --include gccPlaytest/spectator.d -gccPlaytest/spectator.o: spectator.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c spectator.cpp $(Playtest_Include_Path) -o gccPlaytest/spectator.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM spectator.cpp $(Playtest_Include_Path) > gccPlaytest/spectator.d - -# Compiles file squeakgrenade.cpp for the Playtest configuration... --include gccPlaytest/squeakgrenade.d -gccPlaytest/squeakgrenade.o: squeakgrenade.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c squeakgrenade.cpp $(Playtest_Include_Path) -o gccPlaytest/squeakgrenade.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM squeakgrenade.cpp $(Playtest_Include_Path) > gccPlaytest/squeakgrenade.d - -# Compiles file subs.cpp for the Playtest configuration... --include gccPlaytest/subs.d -gccPlaytest/subs.o: subs.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c subs.cpp $(Playtest_Include_Path) -o gccPlaytest/subs.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM subs.cpp $(Playtest_Include_Path) > gccPlaytest/subs.d - -# Compiles file teamplay_gamerules.cpp for the Playtest configuration... --include gccPlaytest/teamplay_gamerules.d -gccPlaytest/teamplay_gamerules.o: teamplay_gamerules.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c teamplay_gamerules.cpp $(Playtest_Include_Path) -o gccPlaytest/teamplay_gamerules.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM teamplay_gamerules.cpp $(Playtest_Include_Path) > gccPlaytest/teamplay_gamerules.d - -# Compiles file triggers.cpp for the Playtest configuration... --include gccPlaytest/triggers.d -gccPlaytest/triggers.o: triggers.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c triggers.cpp $(Playtest_Include_Path) -o gccPlaytest/triggers.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM triggers.cpp $(Playtest_Include_Path) > gccPlaytest/triggers.d - -# Compiles file turret.cpp for the Playtest configuration... --include gccPlaytest/turret.d -gccPlaytest/turret.o: turret.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c turret.cpp $(Playtest_Include_Path) -o gccPlaytest/turret.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM turret.cpp $(Playtest_Include_Path) > gccPlaytest/turret.d - -# Compiles file util.cpp for the Playtest configuration... --include gccPlaytest/util.d -gccPlaytest/util.o: util.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c util.cpp $(Playtest_Include_Path) -o gccPlaytest/util.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM util.cpp $(Playtest_Include_Path) > gccPlaytest/util.d - -# Compiles file ../game_shared/voice_banmgr.cpp for the Playtest configuration... --include gccPlaytest/../game_shared/voice_banmgr.d -gccPlaytest/../game_shared/voice_banmgr.o: ../game_shared/voice_banmgr.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../game_shared/voice_banmgr.cpp $(Playtest_Include_Path) -o gccPlaytest/../game_shared/voice_banmgr.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../game_shared/voice_banmgr.cpp $(Playtest_Include_Path) > gccPlaytest/../game_shared/voice_banmgr.d - -# Compiles file ../game_shared/voice_gamemgr.cpp for the Playtest configuration... --include gccPlaytest/../game_shared/voice_gamemgr.d -gccPlaytest/../game_shared/voice_gamemgr.o: ../game_shared/voice_gamemgr.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../game_shared/voice_gamemgr.cpp $(Playtest_Include_Path) -o gccPlaytest/../game_shared/voice_gamemgr.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../game_shared/voice_gamemgr.cpp $(Playtest_Include_Path) > gccPlaytest/../game_shared/voice_gamemgr.d - -# Compiles file weapons.cpp for the Playtest configuration... --include gccPlaytest/weapons.d -gccPlaytest/weapons.o: weapons.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c weapons.cpp $(Playtest_Include_Path) -o gccPlaytest/weapons.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM weapons.cpp $(Playtest_Include_Path) > gccPlaytest/weapons.d - -# Compiles file world.cpp for the Playtest configuration... --include gccPlaytest/world.d -gccPlaytest/world.o: world.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c world.cpp $(Playtest_Include_Path) -o gccPlaytest/world.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM world.cpp $(Playtest_Include_Path) > gccPlaytest/world.d - -# Compiles file xen.cpp for the Playtest configuration... --include gccPlaytest/xen.d -gccPlaytest/xen.o: xen.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c xen.cpp $(Playtest_Include_Path) -o gccPlaytest/xen.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM xen.cpp $(Playtest_Include_Path) > gccPlaytest/xen.d - -# Compiles file ../mod/AnimationUtil.cpp for the Playtest configuration... --include gccPlaytest/../mod/AnimationUtil.d -gccPlaytest/../mod/AnimationUtil.o: ../mod/AnimationUtil.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AnimationUtil.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AnimationUtil.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AnimationUtil.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AnimationUtil.d - -# Compiles file ../mod/AvHAlienEquipment.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHAlienEquipment.d -gccPlaytest/../mod/AvHAlienEquipment.o: ../mod/AvHAlienEquipment.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHAlienEquipment.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHAlienEquipment.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHAlienEquipment.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHAlienEquipment.d - -# Compiles file ../mod/AvHAlienTurret.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHAlienTurret.d -gccPlaytest/../mod/AvHAlienTurret.o: ../mod/AvHAlienTurret.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHAlienTurret.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHAlienTurret.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHAlienTurret.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHAlienTurret.d - -# Compiles file ../mod/AvHAlienWeapon.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHAlienWeapon.d -gccPlaytest/../mod/AvHAlienWeapon.o: ../mod/AvHAlienWeapon.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHAlienWeapon.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHAlienWeapon.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHAlienWeapon.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHAlienWeapon.d - -# Compiles file ../mod/AvHAssert.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHAssert.d -gccPlaytest/../mod/AvHAssert.o: ../mod/AvHAssert.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHAssert.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHAssert.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHAssert.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHAssert.d - -# Compiles file ../mod/AvHBaseBuildable.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHBaseBuildable.d -gccPlaytest/../mod/AvHBaseBuildable.o: ../mod/AvHBaseBuildable.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHBaseBuildable.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHBaseBuildable.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHBaseBuildable.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHBaseBuildable.d - -# Compiles file ../mod/AvHBaseInfoLocation.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHBaseInfoLocation.d -gccPlaytest/../mod/AvHBaseInfoLocation.o: ../mod/AvHBaseInfoLocation.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHBaseInfoLocation.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHBaseInfoLocation.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHBaseInfoLocation.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHBaseInfoLocation.d - -# Compiles file ../mod/AvHBuildable.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHBuildable.d -gccPlaytest/../mod/AvHBuildable.o: ../mod/AvHBuildable.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHBuildable.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHBuildable.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHBuildable.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHBuildable.d - -# Compiles file ../mod/AvHCloakable.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHCloakable.d -gccPlaytest/../mod/AvHCloakable.o: ../mod/AvHCloakable.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHCloakable.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHCloakable.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHCloakable.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHCloakable.d - -# Compiles file ../mod/AvHCombat.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHCombat.d -gccPlaytest/../mod/AvHCombat.o: ../mod/AvHCombat.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHCombat.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHCombat.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHCombat.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHCombat.d - -# Compiles file ../mod/AvHConsoleCommands.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHConsoleCommands.d -gccPlaytest/../mod/AvHConsoleCommands.o: ../mod/AvHConsoleCommands.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHConsoleCommands.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHConsoleCommands.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHConsoleCommands.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHConsoleCommands.d - -# Compiles file ../mod/AvHConstants.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHConstants.d -gccPlaytest/../mod/AvHConstants.o: ../mod/AvHConstants.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHConstants.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHConstants.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHConstants.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHConstants.d - -# Compiles file ../mod/AvHCurl.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHCurl.d -gccPlaytest/../mod/AvHCurl.o: ../mod/AvHCurl.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHCurl.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHCurl.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHCurl.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHCurl.d - -# Compiles file ../mod/AvHEntities.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHEntities.d -gccPlaytest/../mod/AvHEntities.o: ../mod/AvHEntities.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHEntities.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHEntities.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHEntities.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHEntities.d - -# Compiles file ../mod/AvHEntityHierarchy.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHEntityHierarchy.d -gccPlaytest/../mod/AvHEntityHierarchy.o: ../mod/AvHEntityHierarchy.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHEntityHierarchy.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHEntityHierarchy.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHEntityHierarchy.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHEntityHierarchy.d - -# Compiles file ../mod/AvHGamerules.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHGamerules.d -gccPlaytest/../mod/AvHGamerules.o: ../mod/AvHGamerules.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHGamerules.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHGamerules.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHGamerules.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHGamerules.d - -# Compiles file ../mod/AvHHive.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHHive.d -gccPlaytest/../mod/AvHHive.o: ../mod/AvHHive.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHHive.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHHive.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHHive.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHHive.d - -# Compiles file ../mod/AvHMapExtents.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHMapExtents.d -gccPlaytest/../mod/AvHMapExtents.o: ../mod/AvHMapExtents.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHMapExtents.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHMapExtents.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHMapExtents.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHMapExtents.d - -# Compiles file ../mod/AvHMarineEquipment.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHMarineEquipment.d -gccPlaytest/../mod/AvHMarineEquipment.o: ../mod/AvHMarineEquipment.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHMarineEquipment.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHMarineEquipment.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHMarineEquipment.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHMarineEquipment.d - -# Compiles file ../mod/AvHMarineTurret.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHMarineTurret.d -gccPlaytest/../mod/AvHMarineTurret.o: ../mod/AvHMarineTurret.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHMarineTurret.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHMarineTurret.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHMarineTurret.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHMarineTurret.d - -# Compiles file ../mod/AvHMarineWeapon.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHMarineWeapon.d -gccPlaytest/../mod/AvHMarineWeapon.o: ../mod/AvHMarineWeapon.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHMarineWeapon.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHMarineWeapon.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHMarineWeapon.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHMarineWeapon.d - -# Compiles file ../mod/AvHMiniMap.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHMiniMap.d -gccPlaytest/../mod/AvHMiniMap.o: ../mod/AvHMiniMap.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHMiniMap.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHMiniMap.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHMiniMap.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHMiniMap.d - -# Compiles file ../mod/AvHMovementUtil.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHMovementUtil.d -gccPlaytest/../mod/AvHMovementUtil.o: ../mod/AvHMovementUtil.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHMovementUtil.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHMovementUtil.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHMovementUtil.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHMovementUtil.d - -# Compiles file ../mod/AvHNetworkMessages.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHNetworkMessages.d -gccPlaytest/../mod/AvHNetworkMessages.o: ../mod/AvHNetworkMessages.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHNetworkMessages.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHNetworkMessages.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHNetworkMessages.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHNetworkMessages.d - -# Compiles file ../mod/AvHNexusServer.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHNexusServer.d -gccPlaytest/../mod/AvHNexusServer.o: ../mod/AvHNexusServer.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHNexusServer.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHNexusServer.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHNexusServer.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHNexusServer.d - -# Compiles file ../mod/AvHNexusTunnelToClient.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHNexusTunnelToClient.d -gccPlaytest/../mod/AvHNexusTunnelToClient.o: ../mod/AvHNexusTunnelToClient.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHNexusTunnelToClient.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHNexusTunnelToClient.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHNexusTunnelToClient.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHNexusTunnelToClient.d - -# Compiles file ../mod/AvHOrder.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHOrder.d -gccPlaytest/../mod/AvHOrder.o: ../mod/AvHOrder.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHOrder.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHOrder.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHOrder.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHOrder.d - -# Compiles file ../mod/AvHPlayer.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHPlayer.d -gccPlaytest/../mod/AvHPlayer.o: ../mod/AvHPlayer.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHPlayer.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHPlayer.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHPlayer.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHPlayer.d - -# Compiles file ../mod/AvHPlayerUpgrade.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHPlayerUpgrade.d -gccPlaytest/../mod/AvHPlayerUpgrade.o: ../mod/AvHPlayerUpgrade.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHPlayerUpgrade.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHPlayerUpgrade.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHPlayerUpgrade.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHPlayerUpgrade.d - -# Compiles file ../mod/AvHPushableBuildable.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHPushableBuildable.d -gccPlaytest/../mod/AvHPushableBuildable.o: ../mod/AvHPushableBuildable.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHPushableBuildable.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHPushableBuildable.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHPushableBuildable.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHPushableBuildable.d - -# Compiles file ../mod/AvHReinforceable.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHReinforceable.d -gccPlaytest/../mod/AvHReinforceable.o: ../mod/AvHReinforceable.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHReinforceable.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHReinforceable.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHReinforceable.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHReinforceable.d - -# Compiles file ../mod/AvHResearchManager.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHResearchManager.d -gccPlaytest/../mod/AvHResearchManager.o: ../mod/AvHResearchManager.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHResearchManager.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHResearchManager.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHResearchManager.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHResearchManager.d - -# Compiles file ../mod/AvHScriptManager.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHScriptManager.d -gccPlaytest/../mod/AvHScriptManager.o: ../mod/AvHScriptManager.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHScriptManager.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHScriptManager.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHScriptManager.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHScriptManager.d - -# Compiles file ../mod/AvHScriptServer.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHScriptServer.d -gccPlaytest/../mod/AvHScriptServer.o: ../mod/AvHScriptServer.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHScriptServer.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHScriptServer.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHScriptServer.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHScriptServer.d - -# Compiles file ../mod/AvHScriptShared.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHScriptShared.d -gccPlaytest/../mod/AvHScriptShared.o: ../mod/AvHScriptShared.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHScriptShared.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHScriptShared.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHScriptShared.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHScriptShared.d - -# Compiles file ../mod/AvHSelectionHelper.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSelectionHelper.d -gccPlaytest/../mod/AvHSelectionHelper.o: ../mod/AvHSelectionHelper.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSelectionHelper.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSelectionHelper.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSelectionHelper.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSelectionHelper.d - -# Compiles file ../mod/AvHServerPlayerData.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHServerPlayerData.d -gccPlaytest/../mod/AvHServerPlayerData.o: ../mod/AvHServerPlayerData.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHServerPlayerData.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHServerPlayerData.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHServerPlayerData.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHServerPlayerData.d - -# Compiles file ../mod/AvHServerUtil.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHServerUtil.d -gccPlaytest/../mod/AvHServerUtil.o: ../mod/AvHServerUtil.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHServerUtil.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHServerUtil.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHServerUtil.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHServerUtil.d - -# Compiles file ../mod/AvHSharedMovementInfo.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSharedMovementInfo.d -gccPlaytest/../mod/AvHSharedMovementInfo.o: ../mod/AvHSharedMovementInfo.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSharedMovementInfo.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSharedMovementInfo.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSharedMovementInfo.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSharedMovementInfo.d - -# Compiles file ../mod/AvHSharedUtil.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSharedUtil.d -gccPlaytest/../mod/AvHSharedUtil.o: ../mod/AvHSharedUtil.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSharedUtil.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSharedUtil.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSharedUtil.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSharedUtil.d - -# Compiles file ../mod/AvHSiegeTurret.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSiegeTurret.d -gccPlaytest/../mod/AvHSiegeTurret.o: ../mod/AvHSiegeTurret.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSiegeTurret.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSiegeTurret.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSiegeTurret.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSiegeTurret.d - -# Compiles file ../mod/AvHSoundListManager.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSoundListManager.d -gccPlaytest/../mod/AvHSoundListManager.o: ../mod/AvHSoundListManager.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSoundListManager.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSoundListManager.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSoundListManager.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSoundListManager.d - -# Compiles file ../mod/AvHSpawn.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSpawn.d -gccPlaytest/../mod/AvHSpawn.o: ../mod/AvHSpawn.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSpawn.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSpawn.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSpawn.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSpawn.d - -# Compiles file ../mod/AvHSpecials.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSpecials.d -gccPlaytest/../mod/AvHSpecials.o: ../mod/AvHSpecials.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSpecials.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSpecials.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSpecials.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSpecials.d - -# Compiles file ../mod/AvHTeam.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHTeam.d -gccPlaytest/../mod/AvHTeam.o: ../mod/AvHTeam.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHTeam.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHTeam.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHTeam.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHTeam.d - -# Compiles file ../mod/AvHTechNode.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHTechNode.d -gccPlaytest/../mod/AvHTechNode.o: ../mod/AvHTechNode.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHTechNode.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHTechNode.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHTechNode.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHTechNode.d - -# Compiles file ../mod/AvHTechSlotManager.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHTechSlotManager.d -gccPlaytest/../mod/AvHTechSlotManager.o: ../mod/AvHTechSlotManager.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHTechSlotManager.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHTechSlotManager.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHTechSlotManager.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHTechSlotManager.d - -# Compiles file ../mod/AvHTechTree.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHTechTree.d -gccPlaytest/../mod/AvHTechTree.o: ../mod/AvHTechTree.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHTechTree.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHTechTree.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHTechTree.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHTechTree.d - -# Compiles file ../mod/AvHTurret.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHTurret.d -gccPlaytest/../mod/AvHTurret.o: ../mod/AvHTurret.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHTurret.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHTurret.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHTurret.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHTurret.d - -# Compiles file ../mod/AvHVisibleBlipList.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHVisibleBlipList.d -gccPlaytest/../mod/AvHVisibleBlipList.o: ../mod/AvHVisibleBlipList.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHVisibleBlipList.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHVisibleBlipList.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHVisibleBlipList.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHVisibleBlipList.d - -# Compiles file ../mod/AvHVoiceHelper.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHVoiceHelper.d -gccPlaytest/../mod/AvHVoiceHelper.o: ../mod/AvHVoiceHelper.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHVoiceHelper.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHVoiceHelper.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHVoiceHelper.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHVoiceHelper.d - -# Compiles file ../mod/AvHWeldable.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHWeldable.d -gccPlaytest/../mod/AvHWeldable.o: ../mod/AvHWeldable.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHWeldable.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHWeldable.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHWeldable.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHWeldable.d - -# Compiles file ../mod/AvHWorldUpdate.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHWorldUpdate.d -gccPlaytest/../mod/AvHWorldUpdate.o: ../mod/AvHWorldUpdate.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHWorldUpdate.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHWorldUpdate.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHWorldUpdate.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHWorldUpdate.d - -# Compiles file ../mod/CollisionChecker.cpp for the Playtest configuration... --include gccPlaytest/../mod/CollisionChecker.d -gccPlaytest/../mod/CollisionChecker.o: ../mod/CollisionChecker.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/CollisionChecker.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/CollisionChecker.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/CollisionChecker.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/CollisionChecker.d - -# Compiles file ../mod/CollisionChecker_ServerOnly.cpp for the Playtest configuration... --include gccPlaytest/../mod/CollisionChecker_ServerOnly.d -gccPlaytest/../mod/CollisionChecker_ServerOnly.o: ../mod/CollisionChecker_ServerOnly.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/CollisionChecker_ServerOnly.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/CollisionChecker_ServerOnly.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/CollisionChecker_ServerOnly.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/CollisionChecker_ServerOnly.d - -# Compiles file ../mod/CollisionUtil.cpp for the Playtest configuration... --include gccPlaytest/../mod/CollisionUtil.d -gccPlaytest/../mod/CollisionUtil.o: ../mod/CollisionUtil.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/CollisionUtil.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/CollisionUtil.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/CollisionUtil.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/CollisionUtil.d - -# Compiles file ../mod/NetworkMeter.cpp for the Playtest configuration... --include gccPlaytest/../mod/NetworkMeter.d -gccPlaytest/../mod/NetworkMeter.o: ../mod/NetworkMeter.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/NetworkMeter.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/NetworkMeter.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/NetworkMeter.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/NetworkMeter.d - -# Compiles file ../mod/AvHAcidRocketGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHAcidRocketGun.d -gccPlaytest/../mod/AvHAcidRocketGun.o: ../mod/AvHAcidRocketGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHAcidRocketGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHAcidRocketGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHAcidRocketGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHAcidRocketGun.d - -# Compiles file ../mod/AvHAlienAbilities.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHAlienAbilities.d -gccPlaytest/../mod/AvHAlienAbilities.o: ../mod/AvHAlienAbilities.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHAlienAbilities.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHAlienAbilities.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHAlienAbilities.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHAlienAbilities.d - -# Compiles file ../mod/AvHBasePlayerWeapon.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHBasePlayerWeapon.d -gccPlaytest/../mod/AvHBasePlayerWeapon.o: ../mod/AvHBasePlayerWeapon.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHBasePlayerWeapon.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHBasePlayerWeapon.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHBasePlayerWeapon.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHBasePlayerWeapon.d - -# Compiles file ../mod/AvHBileBombGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHBileBombGun.d -gccPlaytest/../mod/AvHBileBombGun.o: ../mod/AvHBileBombGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHBileBombGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHBileBombGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHBileBombGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHBileBombGun.d - -# Compiles file ../mod/AvHBite.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHBite.d -gccPlaytest/../mod/AvHBite.o: ../mod/AvHBite.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHBite.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHBite.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHBite.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHBite.d - -# Compiles file ../mod/AvHBite2.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHBite2.d -gccPlaytest/../mod/AvHBite2.o: ../mod/AvHBite2.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHBite2.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHBite2.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHBite2.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHBite2.d - -# Compiles file ../mod/AvHBlink.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHBlink.d -gccPlaytest/../mod/AvHBlink.o: ../mod/AvHBlink.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHBlink.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHBlink.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHBlink.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHBlink.d - -# Compiles file ../mod/AvHBuildingGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHBuildingGun.d -gccPlaytest/../mod/AvHBuildingGun.o: ../mod/AvHBuildingGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHBuildingGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHBuildingGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHBuildingGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHBuildingGun.d - -# Compiles file ../mod/AvHClaws.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHClaws.d -gccPlaytest/../mod/AvHClaws.o: ../mod/AvHClaws.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHClaws.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHClaws.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHClaws.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHClaws.d - -# Compiles file ../mod/AvHDevour.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHDevour.d -gccPlaytest/../mod/AvHDevour.o: ../mod/AvHDevour.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHDevour.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHDevour.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHDevour.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHDevour.d - -# Compiles file ../mod/AvHDivineWind.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHDivineWind.d -gccPlaytest/../mod/AvHDivineWind.o: ../mod/AvHDivineWind.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHDivineWind.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHDivineWind.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHDivineWind.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHDivineWind.d - -# Compiles file ../mod/AvHGrenade.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHGrenade.d -gccPlaytest/../mod/AvHGrenade.o: ../mod/AvHGrenade.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHGrenade.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHGrenade.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHGrenade.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHGrenade.d - -# Compiles file ../mod/AvHGrenadeGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHGrenadeGun.d -gccPlaytest/../mod/AvHGrenadeGun.o: ../mod/AvHGrenadeGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHGrenadeGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHGrenadeGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHGrenadeGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHGrenadeGun.d - -# Compiles file ../mod/AvHHealingSpray.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHHealingSpray.d -gccPlaytest/../mod/AvHHealingSpray.o: ../mod/AvHHealingSpray.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHHealingSpray.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHHealingSpray.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHHealingSpray.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHHealingSpray.d - -# Compiles file ../mod/AvHHeavyMachineGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHHeavyMachineGun.d -gccPlaytest/../mod/AvHHeavyMachineGun.o: ../mod/AvHHeavyMachineGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHHeavyMachineGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHHeavyMachineGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHHeavyMachineGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHHeavyMachineGun.d - -# Compiles file ../mod/AvHItemInfo.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHItemInfo.d -gccPlaytest/../mod/AvHItemInfo.o: ../mod/AvHItemInfo.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHItemInfo.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHItemInfo.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHItemInfo.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHItemInfo.d - -# Compiles file ../mod/AvHKnife.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHKnife.d -gccPlaytest/../mod/AvHKnife.o: ../mod/AvHKnife.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHKnife.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHKnife.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHKnife.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHKnife.d - -# Compiles file ../mod/AvHMachineGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHMachineGun.d -gccPlaytest/../mod/AvHMachineGun.o: ../mod/AvHMachineGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHMachineGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHMachineGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHMachineGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHMachineGun.d - -# Compiles file ../mod/AvHMetabolize.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHMetabolize.d -gccPlaytest/../mod/AvHMetabolize.o: ../mod/AvHMetabolize.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHMetabolize.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHMetabolize.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHMetabolize.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHMetabolize.d - -# Compiles file ../mod/AvHMine.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHMine.d -gccPlaytest/../mod/AvHMine.o: ../mod/AvHMine.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHMine.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHMine.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHMine.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHMine.d - -# Compiles file ../mod/AvHParasiteGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHParasiteGun.d -gccPlaytest/../mod/AvHParasiteGun.o: ../mod/AvHParasiteGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHParasiteGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHParasiteGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHParasiteGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHParasiteGun.d - -# Compiles file ../mod/AvHPistol.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHPistol.d -gccPlaytest/../mod/AvHPistol.o: ../mod/AvHPistol.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHPistol.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHPistol.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHPistol.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHPistol.d - -# Compiles file ../mod/AvHPrimalScream.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHPrimalScream.d -gccPlaytest/../mod/AvHPrimalScream.o: ../mod/AvHPrimalScream.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHPrimalScream.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHPrimalScream.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHPrimalScream.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHPrimalScream.d - -# Compiles file ../mod/AvHSonicGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSonicGun.d -gccPlaytest/../mod/AvHSonicGun.o: ../mod/AvHSonicGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSonicGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSonicGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSonicGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSonicGun.d - -# Compiles file ../mod/AvHSpikeGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSpikeGun.d -gccPlaytest/../mod/AvHSpikeGun.o: ../mod/AvHSpikeGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSpikeGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSpikeGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSpikeGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSpikeGun.d - -# Compiles file ../mod/AvHSpitGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSpitGun.d -gccPlaytest/../mod/AvHSpitGun.o: ../mod/AvHSpitGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSpitGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSpitGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSpitGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSpitGun.d - -# Compiles file ../mod/AvHSpores.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSpores.d -gccPlaytest/../mod/AvHSpores.o: ../mod/AvHSpores.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSpores.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSpores.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSpores.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSpores.d - -# Compiles file ../mod/AvHStomp.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHStomp.d -gccPlaytest/../mod/AvHStomp.o: ../mod/AvHStomp.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHStomp.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHStomp.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHStomp.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHStomp.d - -# Compiles file ../mod/AvHSwipe.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHSwipe.d -gccPlaytest/../mod/AvHSwipe.o: ../mod/AvHSwipe.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHSwipe.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHSwipe.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHSwipe.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHSwipe.d - -# Compiles file ../mod/AvHUmbraGun.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHUmbraGun.d -gccPlaytest/../mod/AvHUmbraGun.o: ../mod/AvHUmbraGun.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHUmbraGun.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHUmbraGun.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHUmbraGun.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHUmbraGun.d - -# Compiles file ../mod/AvHWebSpinner.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHWebSpinner.d -gccPlaytest/../mod/AvHWebSpinner.o: ../mod/AvHWebSpinner.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHWebSpinner.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHWebSpinner.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHWebSpinner.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHWebSpinner.d - -# Compiles file ../mod/AvHWelder.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHWelder.d -gccPlaytest/../mod/AvHWelder.o: ../mod/AvHWelder.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHWelder.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHWelder.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHWelder.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHWelder.d - -# Compiles file ggrenade.cpp for the Playtest configuration... --include gccPlaytest/ggrenade.d -gccPlaytest/ggrenade.o: ggrenade.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ggrenade.cpp $(Playtest_Include_Path) -o gccPlaytest/ggrenade.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ggrenade.cpp $(Playtest_Include_Path) > gccPlaytest/ggrenade.d - -# Compiles file ../mod/AvHParticleSystem.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHParticleSystem.d -gccPlaytest/../mod/AvHParticleSystem.o: ../mod/AvHParticleSystem.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHParticleSystem.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHParticleSystem.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHParticleSystem.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHParticleSystem.d - -# Compiles file ../mod/AvHParticleSystemEntity.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHParticleSystemEntity.d -gccPlaytest/../mod/AvHParticleSystemEntity.o: ../mod/AvHParticleSystemEntity.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHParticleSystemEntity.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHParticleSystemEntity.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHParticleSystemEntity.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHParticleSystemEntity.d - -# Compiles file ../mod/AvHParticleSystemManager.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHParticleSystemManager.d -gccPlaytest/../mod/AvHParticleSystemManager.o: ../mod/AvHParticleSystemManager.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHParticleSystemManager.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHParticleSystemManager.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHParticleSystemManager.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHParticleSystemManager.d - -# Compiles file ../mod/AvHParticleTemplate.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHParticleTemplate.d -gccPlaytest/../mod/AvHParticleTemplate.o: ../mod/AvHParticleTemplate.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHParticleTemplate.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHParticleTemplate.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHParticleTemplate.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHParticleTemplate.d - -# Compiles file ../mod/AvHParticleTemplateServer.cpp for the Playtest configuration... --include gccPlaytest/../mod/AvHParticleTemplateServer.d -gccPlaytest/../mod/AvHParticleTemplateServer.o: ../mod/AvHParticleTemplateServer.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../mod/AvHParticleTemplateServer.cpp $(Playtest_Include_Path) -o gccPlaytest/../mod/AvHParticleTemplateServer.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../mod/AvHParticleTemplateServer.cpp $(Playtest_Include_Path) > gccPlaytest/../mod/AvHParticleTemplateServer.d - -# Compiles file ../util/Balance.cpp for the Playtest configuration... --include gccPlaytest/../util/Balance.d -gccPlaytest/../util/Balance.o: ../util/Balance.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/Balance.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/Balance.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/Balance.cpp $(Playtest_Include_Path) > gccPlaytest/../util/Balance.d - -# Compiles file ../util/Checksum.cpp for the Playtest configuration... --include gccPlaytest/../util/Checksum.d -gccPlaytest/../util/Checksum.o: ../util/Checksum.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/Checksum.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/Checksum.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/Checksum.cpp $(Playtest_Include_Path) > gccPlaytest/../util/Checksum.d - -# Compiles file ../util/GammaTable.cpp for the Playtest configuration... --include gccPlaytest/../util/GammaTable.d -gccPlaytest/../util/GammaTable.o: ../util/GammaTable.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/GammaTable.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/GammaTable.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/GammaTable.cpp $(Playtest_Include_Path) > gccPlaytest/../util/GammaTable.d - -# Compiles file ../util/LinuxSupport.cpp for the Playtest configuration... --include gccPlaytest/../util/LinuxSupport.d -gccPlaytest/../util/LinuxSupport.o: ../util/LinuxSupport.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/LinuxSupport.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/LinuxSupport.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/LinuxSupport.cpp $(Playtest_Include_Path) > gccPlaytest/../util/LinuxSupport.d - -# Compiles file ../util/Mat3.cpp for the Playtest configuration... --include gccPlaytest/../util/Mat3.d -gccPlaytest/../util/Mat3.o: ../util/Mat3.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/Mat3.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/Mat3.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/Mat3.cpp $(Playtest_Include_Path) > gccPlaytest/../util/Mat3.d - -# Compiles file ../util/MathUtil.cpp for the Playtest configuration... --include gccPlaytest/../util/MathUtil.d -gccPlaytest/../util/MathUtil.o: ../util/MathUtil.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/MathUtil.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/MathUtil.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/MathUtil.cpp $(Playtest_Include_Path) > gccPlaytest/../util/MathUtil.d - -# Compiles file ../util/Quat.cpp for the Playtest configuration... --include gccPlaytest/../util/Quat.d -gccPlaytest/../util/Quat.o: ../util/Quat.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/Quat.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/Quat.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/Quat.cpp $(Playtest_Include_Path) > gccPlaytest/../util/Quat.d - -# Compiles file ../util/Stacktrace.cpp for the Playtest configuration... --include gccPlaytest/../util/Stacktrace.d -gccPlaytest/../util/Stacktrace.o: ../util/Stacktrace.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/Stacktrace.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/Stacktrace.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/Stacktrace.cpp $(Playtest_Include_Path) > gccPlaytest/../util/Stacktrace.d - -# Compiles file ../util/STLUtil.cpp for the Playtest configuration... --include gccPlaytest/../util/STLUtil.d -gccPlaytest/../util/STLUtil.o: ../util/STLUtil.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/STLUtil.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/STLUtil.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/STLUtil.cpp $(Playtest_Include_Path) > gccPlaytest/../util/STLUtil.d - -# Compiles file ../util/Tokenizer.cpp for the Playtest configuration... --include gccPlaytest/../util/Tokenizer.d -gccPlaytest/../util/Tokenizer.o: ../util/Tokenizer.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/Tokenizer.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/Tokenizer.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/Tokenizer.cpp $(Playtest_Include_Path) > gccPlaytest/../util/Tokenizer.d - -# Compiles file ../util/Zassert.cpp for the Playtest configuration... --include gccPlaytest/../util/Zassert.d -gccPlaytest/../util/Zassert.o: ../util/Zassert.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/Zassert.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/Zassert.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/Zassert.cpp $(Playtest_Include_Path) > gccPlaytest/../util/Zassert.d - -# Compiles file ../util/ZassertTemplate.cpp for the Playtest configuration... --include gccPlaytest/../util/ZassertTemplate.d -gccPlaytest/../util/ZassertTemplate.o: ../util/ZassertTemplate.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../util/ZassertTemplate.cpp $(Playtest_Include_Path) -o gccPlaytest/../util/ZassertTemplate.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../util/ZassertTemplate.cpp $(Playtest_Include_Path) > gccPlaytest/../util/ZassertTemplate.d - -# Compiles file ../textrep/TRDescription.cpp for the Playtest configuration... --include gccPlaytest/../textrep/TRDescription.d -gccPlaytest/../textrep/TRDescription.o: ../textrep/TRDescription.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../textrep/TRDescription.cpp $(Playtest_Include_Path) -o gccPlaytest/../textrep/TRDescription.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../textrep/TRDescription.cpp $(Playtest_Include_Path) > gccPlaytest/../textrep/TRDescription.d - -# Compiles file ../textrep/TRFactory.cpp for the Playtest configuration... --include gccPlaytest/../textrep/TRFactory.d -gccPlaytest/../textrep/TRFactory.o: ../textrep/TRFactory.cpp - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -c ../textrep/TRFactory.cpp $(Playtest_Include_Path) -o gccPlaytest/../textrep/TRFactory.o - $(CPP_COMPILER) $(Playtest_Preprocessor_Definitions) $(Playtest_Compiler_Flags) -MM ../textrep/TRFactory.cpp $(Playtest_Include_Path) > gccPlaytest/../textrep/TRFactory.d - -# Creates the intermediate and output folders for each configuration... -.PHONY: create_folders -create_folders: - mkdir -p V:/temp/ns.dll/gccDeveloper-debug/source - mkdir -p V:/temp/ns.dll/gccDeveloper-release/source - mkdir -p gccPlaytest-balancedisabled/source - mkdir -p ../gccPlaytest-balancedisabled - mkdir -p gccPlaytest/source - mkdir -p ../../../../../../../../ProgramFiles(x86)/Steam/SteamApps/common/Half-Life/ns/gccdlls - -# Cleans intermediate and output files (objects, libraries, executables)... -.PHONY: clean -clean: - rm -f V:/temp/ns.dll/gccDeveloper-debug/*.o - rm -f V:/temp/ns.dll/gccDeveloper-debug/*.d - rm -f V:/temp/ns.dll/gccDeveloper-debug/*.a - rm -f V:/temp/ns.dll/gccDeveloper-debug/*.so - rm -f V:/temp/ns.dll/gccDeveloper-debug/*.dll - rm -f V:/temp/ns.dll/gccDeveloper-debug/*.exe - rm -f V:/temp/ns.dll/gccDeveloper-release/*.o - rm -f V:/temp/ns.dll/gccDeveloper-release/*.d - rm -f V:/temp/ns.dll/gccDeveloper-release/*.a - rm -f V:/temp/ns.dll/gccDeveloper-release/*.so - rm -f V:/temp/ns.dll/gccDeveloper-release/*.dll - rm -f V:/temp/ns.dll/gccDeveloper-release/*.exe - rm -f gccPlaytest-balancedisabled/*.o - rm -f gccPlaytest-balancedisabled/*.d - rm -f ../gccPlaytest-balancedisabled/*.a - rm -f ../gccPlaytest-balancedisabled/*.so - rm -f ../gccPlaytest-balancedisabled/*.dll - rm -f ../gccPlaytest-balancedisabled/*.exe - rm -f gccPlaytest/*.o - rm -f gccPlaytest/*.d - rm -f ../../../../../../../../ProgramFiles(x86)/Steam/SteamApps/common/Half-Life/ns/gccdlls/*.a - rm -f ../../../../../../../../ProgramFiles(x86)/Steam/SteamApps/common/Half-Life/ns/gccdlls/*.so - rm -f ../../../../../../../../ProgramFiles(x86)/Steam/SteamApps/common/Half-Life/ns/gccdlls/*.dll - rm -f ../../../../../../../../ProgramFiles(x86)/Steam/SteamApps/common/Half-Life/ns/gccdlls/*.exe - diff --git a/main/source/dlls/weapons.h b/main/source/dlls/weapons.h index 8e67a055..7963e955 100644 --- a/main/source/dlls/weapons.h +++ b/main/source/dlls/weapons.h @@ -77,12 +77,11 @@ public: virtual void BounceSound( void ); virtual int BloodColor( void ) { return DONT_BLEED; } virtual void Killed( entvars_t *pevAttacker, int iGib ); - //virtual void SetDamageType(int inDamageType); - int m_damageType; + virtual void SetDamageType(int inDamageType); BOOL m_fRegisteredSound;// whether or not this grenade has issued its DANGER sound to the world sound list yet. private: - //int m_damageType;//@2014 + int m_damageType; }; diff --git a/main/source/dlls/weapons.h~ b/main/source/dlls/weapons.h~ index ace1f5b3..b2f92ba4 100644 --- a/main/source/dlls/weapons.h~ +++ b/main/source/dlls/weapons.h~ @@ -206,7 +206,7 @@ private: #define AMMO_URANIUMBOX_GIVE 20 #define AMMO_SNARKBOX_GIVE 5 -#include "../common/bullettypes.h" +#include "..common/bullettypes.h" #define ITEM_FLAG_SELECTONEMPTY 1 #define ITEM_FLAG_NOAUTORELOAD 2 diff --git a/main/source/engine/Progs.h b/main/source/engine/Progs.h deleted file mode 100644 index d7cbb70f..00000000 --- a/main/source/engine/Progs.h +++ /dev/null @@ -1,82 +0,0 @@ -/*** -* -* Copyright (c) 1996-2002, Valve LLC. All rights reserved. -* -* This product contains software technology licensed from Id -* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc. -* All Rights Reserved. -* -* Use, distribution, and modification of this source code and/or resulting -* object code is restricted to non-commercial enhancements to products from -* Valve LLC. All other use, distribution, or modification is prohibited -* without written permission from Valve LLC. -* -****/ -#ifndef PROGS_H -#define PROGS_H - -#include "progdefs.h" - -// 16 simultaneous events, max -#define MAX_EVENT_QUEUE 64 - -#define DEFAULT_EVENT_RESENDS 1 - -#include "event_flags.h" - -typedef struct event_info_s event_info_t; - -#include "event_args.h" - -struct event_info_s -{ - unsigned short index; // 0 implies not in use - - short packet_index; // Use data from state info for entity in delta_packet . -1 implies separate info based on event - // parameter signature - short entity_index; // The edict this event is associated with - - float fire_time; // if non-zero, the time when the event should be fired ( fixed up on the client ) - - event_args_t args; - -// CLIENT ONLY - int flags; // Reliable or not, etc. - -}; - -typedef struct event_state_s event_state_t; - -struct event_state_s -{ - struct event_info_s ei[ MAX_EVENT_QUEUE ]; -}; - -#if !defined( ENTITY_STATEH ) -#include "entity_state.h" -#endif - -#if !defined( EDICT_H ) -#include "edict.h" -#endif - -#define STRUCT_FROM_LINK(l,t,m) ((t *)((byte *)l - (int)&(((t *)0)->m))) -#define EDICT_FROM_AREA(l) STRUCT_FROM_LINK(l,edict_t,area) - -//============================================================================ - -extern char *pr_strings; -extern globalvars_t gGlobalVariables; - -//============================================================================ - -edict_t *ED_Alloc (void); -void ED_Free (edict_t *ed); -void ED_LoadFromFile (char *data); - -edict_t *EDICT_NUM(int n); -int NUM_FOR_EDICT(const edict_t *e); - -#define PROG_TO_EDICT(e) ((edict_t *)((byte *)sv.edicts + e)) - -#endif // PROGS_H \ No newline at end of file diff --git a/main/source/getzip.bat b/main/source/getzip.bat deleted file mode 100755 index ea87555f..00000000 --- a/main/source/getzip.bat +++ /dev/null @@ -1,5 +0,0 @@ -@echo off -pscp flayra@www.jarhedz.com:/home/flayra/build/linux/ns_i386.zip ..\dlls -cd ..\dlls -c:\"program files"\Winzip\wzunzip.exe ns_i386.zip -cd ..\source diff --git a/main/source/includes/lpng1610/contrib/pngminus/png2pnm.bat b/main/source/includes/lpng1610/contrib/pngminus/png2pnm.bat old mode 100755 new mode 100644 diff --git a/main/source/includes/lpng1610/contrib/pngminus/pngminus.bat b/main/source/includes/lpng1610/contrib/pngminus/pngminus.bat old mode 100755 new mode 100644 diff --git a/main/source/includes/lpng1610/contrib/pngminus/pnm2png.bat b/main/source/includes/lpng1610/contrib/pngminus/pnm2png.bat old mode 100755 new mode 100644 diff --git a/main/source/ipch/hl-90a4307c/releasehl/hl-e0597f0b.ipch b/main/source/ipch/hl-90a4307c/releasehl/hl-e0597f0b.ipch deleted file mode 100644 index 362db128..00000000 Binary files a/main/source/ipch/hl-90a4307c/releasehl/hl-e0597f0b.ipch and /dev/null differ diff --git a/main/source/linux/Makefile b/main/source/linux/Makefile index c8ec8d7d..807cd829 100644 --- a/main/source/linux/Makefile +++ b/main/source/linux/Makefile @@ -120,11 +120,7 @@ LIBEXT=a MAKE+= -j8 MAKE_HL_LIB=$(MAKE) -f Makefile.nsdll -MAKE_DMC_LIB=$(MAKE) -f Makefile.dmcdll -MAKE_RICOCHET_LIB=$(MAKE) -f Makefile.ricochetdll MAKE_hl_cdll=$(MAKE) -f Makefile.hl_cdll -MAKE_DMC_CDLL=$(MAKE) -f Makefile.dmc_cdll -MAKE_RICOCHET_CDLL=$(MAKE) -f Makefile.ricochet_cdll ############################################################################# # SETUP AND BUILD @@ -136,11 +132,7 @@ TARGETS= TARGETS+= \ ns \ - dmc \ - ricochet \ hl_cdll \ - dmc_cdll \ - ricochet_cdll \ build_dir: -mkdir $(BUILD_DIR); @@ -152,20 +144,8 @@ targets: $(TARGETS) hl_cdll: build_dir $(MAKE_hl_cdll) ARCH=i686 CC=$(CC) CPLUS=$(CPLUS) CPP_LIB="$(CPP_LIB)" BUILD_DIR=$(BUILD_DIR) BUILD_OBJ_DIR=$(BUILD_OBJ_DIR) SOURCE_DIR=$(SOURCE_DIR) ENGINE_SRC_DIR=$(ENGINE_SRC_DIR) MOD_SRC_DIR=$(MOD_SRC_DIR) COMMON_SRC_DIR=$(COMMON_SRC_DIR) BASE_CFLAGS="$(BASE_CFLAGS)" PUBLIC_SRC_DIR=$(PUBLIC_SRC_DIR) DBG_SRC_DIR=$(DBG_SRC_DIR) ARCH_CFLAGS="$(ARCH_CFLAGS_I686)" GAME_SHARED_SRC_DIR=$(GAME_SHARED_SRC_DIR) CLINK=$(CLINK) PM_SRC_DIR=$(PM_SRC_DIR) SHLIBEXT=$(SHLIBEXT) SHLIBCFLAGS=$(SHLIBCFLAGS) SHLIBLDFLAGS=$(SHLIBLDFLAGS) CFG=$(CFG) OS=$(OS) -dmc_cdll: build_dir - $(MAKE_DMC_CDLL) ARCH=i686 CC=$(CC) CPLUS=$(CPLUS) CPP_LIB="$(CPP_LIB)" BUILD_DIR=$(BUILD_DIR) BUILD_OBJ_DIR=$(BUILD_OBJ_DIR) SOURCE_DIR=$(SOURCE_DIR) ENGINE_SRC_DIR=$(ENGINE_SRC_DIR) COMMON_SRC_DIR=$(COMMON_SRC_DIR) BASE_CFLAGS="$(BASE_CFLAGS)" PUBLIC_SRC_DIR=$(PUBLIC_SRC_DIR) DBG_SRC_DIR=$(DBG_SRC_DIR) ARCH_CFLAGS="$(ARCH_CFLAGS_I686)" GAME_SHARED_SRC_DIR=$(GAME_SHARED_SRC_DIR) CLINK=$(CLINK) PM_SRC_DIR=$(PM_SRC_DIR) SHLIBEXT=$(SHLIBEXT) SHLIBCFLAGS=$(SHLIBCFLAGS) SHLIBLDFLAGS=$(SHLIBLDFLAGS) CFG=$(CFG) OS=$(OS) - -ricochet_cdll: build_dir - $(MAKE_RICOCHET_CDLL) ARCH=i686 CC=$(CC) CPLUS=$(CPLUS) CPP_LIB="$(CPP_LIB)" BUILD_DIR=$(BUILD_DIR) BUILD_OBJ_DIR=$(BUILD_OBJ_DIR) SOURCE_DIR=$(SOURCE_DIR) ENGINE_SRC_DIR=$(ENGINE_SRC_DIR) COMMON_SRC_DIR=$(COMMON_SRC_DIR) BASE_CFLAGS="$(BASE_CFLAGS)" PUBLIC_SRC_DIR=$(PUBLIC_SRC_DIR) DBG_SRC_DIR=$(DBG_SRC_DIR) ARCH_CFLAGS="$(ARCH_CFLAGS_I686)" GAME_SHARED_SRC_DIR=$(GAME_SHARED_SRC_DIR) CLINK=$(CLINK) PM_SRC_DIR=$(PM_SRC_DIR) SHLIBEXT=$(SHLIBEXT) SHLIBCFLAGS=$(SHLIBCFLAGS) SHLIBLDFLAGS=$(SHLIBLDFLAGS) CFG=$(CFG) OS=$(OS) - ns: build_dir $(MAKE_HL_LIB) CC=$(CC) ARCH=$(ARCH) CPP_LIB="$(CPP_LIB)" BUILD_DIR=$(BUILD_DIR) BUILD_OBJ_DIR=$(BUILD_OBJ_DIR) SOURCE_DIR=$(SOURCE_DIR) ENGINE_SRC_DIR=$(ENGINE_SRC_DIR) COMMON_SRC_DIR=$(COMMON_SRC_DIR) PM_SRC_DIR=$(PM_SRC_DIR) GAME_SHARED_SRC_DIR=$(GAME_SHARED_SRC_DIR) GAMEDB_SRC_DIR=$(GAMEDB_SRC_DIR) BASE_CFLAGS="$(BASE_CFLAGS)" SHLIBEXT=$(SHLIBEXT) SHLIBCFLAGS=$(SHLIBCFLAGS) SHLIBLDFLAGS=$(SHLIBLDFLAGS) PUBLIC_SRC_DIR=$(PUBLIC_SRC_DIR) CFG=$(CFG) OS=$(OS) ARCH_CFLAGS="$(ARCH_CFLAGS_I686)" -dmc: build_dir - $(MAKE_DMC_LIB) CC=$(CC) CPLUS=$(CPLUS) CPP_LIB="$(CPP_LIB)" ARCH=$(ARCH) BUILD_DIR=$(BUILD_DIR) BUILD_OBJ_DIR=$(BUILD_OBJ_DIR) SOURCE_DIR=$(SOURCE_DIR) ENGINE_SRC_DIR=$(ENGINE_SRC_DIR) COMMON_SRC_DIR=$(COMMON_SRC_DIR) GAME_SHARED_SRC_DIR=$(GAME_SHARED_SRC_DIR) BASE_CFLAGS="$(BASE_CFLAGS)" SHLIBEXT=$(SHLIBEXT) SHLIBCFLAGS=$(SHLIBCFLAGS) SHLIBLDFLAGS=$(SHLIBLDFLAGS) PUBLIC_SRC_DIR=$(PUBLIC_SRC_DIR) CFG=$(CFG) OS=$(OS) CLINK=$(CLINK) ARCH_CFLAGS="$(ARCH_CFLAGS_I686)" - -ricochet: build_dir - $(MAKE_RICOCHET_LIB) CC=$(CC) CPLUS=$(CPLUS) CPP_LIB="$(CPP_LIB)" ARCH=$(ARCH) BUILD_DIR=$(BUILD_DIR) BUILD_OBJ_DIR=$(BUILD_OBJ_DIR) SOURCE_DIR=$(SOURCE_DIR) ENGINE_SRC_DIR=$(ENGINE_SRC_DIR) COMMON_SRC_DIR=$(COMMON_SRC_DIR) GAME_SHARED_SRC_DIR=$(GAME_SHARED_SRC_DIR) BASE_CFLAGS="$(BASE_CFLAGS)" SHLIBEXT=$(SHLIBEXT) SHLIBCFLAGS=$(SHLIBCFLAGS) SHLIBLDFLAGS=$(SHLIBLDFLAGS) PUBLIC_SRC_DIR=$(PUBLIC_SRC_DIR) CFG=$(CFG) OS=$(OS) CLINK=$(CLINK) ARCH_CFLAGS="$(ARCH_CFLAGS_I686)" - clean: -rm -rf $(BUILD_OBJ_DIR) diff --git a/main/source/linux/Makefile.hl_cdll b/main/source/linux/Makefile.hl_cdll index 892499b8..ab971d26 100644 --- a/main/source/linux/Makefile.hl_cdll +++ b/main/source/linux/Makefile.hl_cdll @@ -25,15 +25,14 @@ GAME_SHARED_OBJ_DIR=$(HL1_OBJ_DIR)/game_shared PM_SHARED_OBJ_DIR=$(HL1_OBJ_DIR)/pm_shared HL1_SERVER_OBJ_DIR=$(HL1_OBJ_DIR)/server -CFLAGS=$(BASE_CFLAGS) $(ARCH_CFLAGS) -DCLIENT_DLL -I/usr/include/malloc -D_snwprintf=swprintf \ - -DDISABLE_JUMP_ORIGIN -DDISABLE_VEC_FUNCS -DDISABLE_VEC_ORIGIN -DAVH_CLIENT -DUSE_OLDAUTH -DAVH_NO_NEXUS -DNDEBUG -DASSERT=assert -Dsprintf_s=snprintf +CFLAGS=$(BASE_CFLAGS) $(ARCH_CFLAGS) -DCLIENT_DLL -I/usr/include/malloc -D_snwprintf=swprintf -DAVH_CLIENT -DUSE_OLDAUTH -DAVH_NO_NEXUS -DNDEBUG -DASSERT=assert -Dsprintf_s=snprintf -DDISABLE_VEC_FUNCS -DDISABLE_VEC_ORIGIN INCLUDEDIRS= -I$(HL_SRC_DIR) -I$(NS_MOD_SRC_DIR) -I$(COMMON_SRC_DIR) -I$(PUBLIC_SRC_DIR) -I$(PM_SHARED_SRC_DIR) -I../engine -I$(GAME_SHARED_SRC_DIR) -I../external/ -I../particles -I../includes/fmodapi375linux/api/inc -I$(HL_SERVER_SRC_DIR) -I$(HL_SRC_DIR)/cl_dll -I$(VGUI_INCLUDE_DIR) -I$(UI_INCLUDE_DIR) -I$(UTIL_SRC_DIR) -I../ -I../includes/fmodapi375linux/api ifeq ($(OS),Darwin) LDFLAGS=$(SHLIBLDFLAGS) $(CPP_LIB) -framework Carbon $(CFG)/vgui.dylib -L. -lSDL2-2.0.0 else -LDFLAGS=$(SHLIBLDFLAGS) $(CPP_LIB) -lpng -lz -lparticleMP -lfmod-3.75 -L$(CFG) vgui.so -L. libSDL2-2.0.so.0 +LDFLAGS=$(SHLIBLDFLAGS) $(CPP_LIB) -lpng -lz -lfmod-3.75 -L$(CFG) vgui.so -L. libSDL2-2.0.so.0 -L. libparticleMP.a endif DO_CC=$(CPLUS) $(INCLUDEDIRS) $(CFLAGS) -o $@ -c $< @@ -252,9 +251,7 @@ all: client.$(SHLIBEXT) client.$(SHLIBEXT): $(HL1_OBJS) $(MOD_OBJS) $(PUBLIC_OBJS) $(COMMON_OBJS) $(GAME_SHARED_OBJS) $(DLL_OBJS) $(PM_SHARED_OBJS) $(UI_OBJS) $(UTIL_OBJS) $(TEXTREP_OBJS) $(CLINK) -o $(BUILD_DIR)/$@ $(HL1_OBJS) $(MOD_OBJS) $(PUBLIC_OBJS) $(COMMON_OBJS) $(GAME_SHARED_OBJS) $(DLL_OBJS) $(PM_SHARED_OBJS) $(UI_OBJS) $(UTIL_OBJS) $(TEXTREP_OBJS) $(LDFLAGS) $(CPP_LIB) - p4 edit ../../game/mod/cl_dlls/$@ - cp $(BUILD_DIR)/$@ ../../game/mod/cl_dlls - ./gendbg.sh ../../game/mod/cl_dlls/client.$(SHLIBEXT) + @echo "Done..." $(HL1_OBJ_DIR): mkdir -p $(HL1_OBJ_DIR) diff --git a/main/source/linux/Makefile.nsdll b/main/source/linux/Makefile.nsdll index cda1dc64..4de4b522 100644 --- a/main/source/linux/Makefile.nsdll +++ b/main/source/linux/Makefile.nsdll @@ -1,7 +1,7 @@ # # NS game library Makefile for x86 Linux # -# Feb 2001 by Leon Hartwig (hartwig@valvesoftware.com) +# 11.2015 Makefile # HLDLL_SRC_DIR=$(SOURCE_DIR)/dlls @@ -9,6 +9,7 @@ HLWPN_SRC_DIR=$(HLDLL_SRC_DIR)/wpn_shared NS_MOD_SRC_DIR=$(SOURCE_DIR)/mod UTIL_SRC_DIR=$(SOURCE_DIR)/util TEXTREP_SRC_DIR=$(SOURCE_DIR)/textrep +PM_SHARED_SRC_DIR=$(SOURCE_DIR)/pm_shared HLDLL_OBJ_DIR=$(BUILD_OBJ_DIR)/hldll HLWPN_OBJ_DIR=$(HLDLL_OBJ_DIR)/wpn_shared @@ -19,13 +20,13 @@ UTIL_OBJ_DIR=$(HLDLL_OBJ_DIR)/util TEXTREP_OBJ_DIR=$(HLDLL_OBJ_DIR)/textrep #CFLAGS=$(BASE_CFLAGS) $(ARCH_CFLAGS) $(SHLIBCFLAGS) -DCLIENT_WEAPONS -CFLAGS=$(BASE_CFLAGS) $(ARCH_CFLAGS) -Dstricmp=strcasecmp -D_strnicmp=strncasecmp -Dstrnicmp=strncasecmp -DAVH_SERVER -DLINUX -DVALVE_DLL -DQUIVER -DVOXEL -DQUAKE2 -DDEDICATED -DSWDS -D_STLP_USE_GLIBC -DUSE_OLDAUTH -Dsprintf_s=snprintf -D_stricmp=strcasecmp -DCURL_STATICLIB -DDDISABLE_VEC_FUNCS +CFLAGS=$(BASE_CFLAGS) $(ARCH_CFLAGS) -Dstricmp=strcasecmp -D_strnicmp=strncasecmp -Dstrnicmp=strncasecmp -DAVH_SERVER -DLINUX -DVALVE_DLL -DQUIVER -DVOXEL -DQUAKE2 -DDEDICATED -DSWDS -D_STLP_USE_GLIBC -DUSE_OLDAUTH -Dsprintf_s=snprintf -D_stricmp=strcasecmp -DCURL_STATICLIB -DDISABLE_VEC_FUNCS -D_FORTIFY_SOURCE=0 #-O3 -ffast-math -fno-strength-reduce HLDLL_INCLUDEDIRS=-I$(HLDLL_SRC_DIR) -I../ -I$(ENGINE_SRC_DIR) -I$(COMMON_SRC_DIR) -I$(PM_SRC_DIR) -I$(GAME_SHARED_SRC_DIR) -I$(PUBLIC_SRC_DIR) -I$(UTIL_SRC_DIR) -I$(NS_MOD_SRC_DIR) -I$(PM_OBJ_DIR) -PM_INCLUDEDIRS=-I$(COMMON_SRC_DIR) -I$(PUBLIC_SRC_DIR) +PM_INCLUDEDIRS=-I$(COMMON_SRC_DIR) -I$(PUBLIC_SRC_DIR) -I$(PM_SHARED_SRC_DIR) GAME_SHARED_INCLUDEDIRS=-I$(HLDLL_SRC_DIR) -I$(ENGINE_SRC_DIR) -I$(COMMON_SRC_DIR) -I$(PM_SRC_DIR) -I$(PUBLIC_SRC_DIR) -I$(COMMON_SRC_DIR) -MOD_INCLUDEDIRS=-I$(UTIL_SRC_DIR) -I$(GAME_SHARED_SRC_DIR) -I$(HLDLL_SRC_DIR) -I$(PUBLIC_SRC_DIR) -I$(COMMON_SRC_DIR) -I$(ENGINE_SRC_DIR) -I../particle -I../cdll/ +MOD_INCLUDEDIRS=-I$(UTIL_SRC_DIR) -I$(GAME_SHARED_SRC_DIR) -I$(HLDLL_SRC_DIR) -I$(PUBLIC_SRC_DIR) -I$(COMMON_SRC_DIR) -I$(ENGINE_SRC_DIR) -I../particles -I../cdll/ UTIL_INCLUDEDIRS = -I../ -I../util TEXTREP_INCLUDEDIRS=.. @@ -222,10 +223,8 @@ dirs: ns.$(SHLIBEXT): $(HLDLL_OBJS) $(MOD_OBJS) $(PM_OBJS) $(GAME_SHARED_OBJS) $(UTIL_OBJS) $(TEXTREP_OBJS) $(CC) $(SHLIBLDFLAGS) -o $(BUILD_DIR)/$@ $(HLDLL_OBJS) $(MOD_OBJS) $(PM_OBJS) $(GAME_SHARED_OBJS) $(UTIL_OBJS) $(TEXTREP_OBJS) $(LDFLAGS) - p4 edit ../../game/mod/dlls/ns.$(SHLIBEXT) - cp $(BUILD_DIR)/$@ ../../game/mod/dlls/ns.$(SHLIBEXT) - ./gendbg.sh ../../game/mod/dlls/ns.$(SHLIBEXT) - + @echo "Done..." + $(NS_MOD_OBJ_DIR)/%.o: $(NS_MOD_SRC_DIR)/%.cpp $(DO_MOD_CC) @@ -249,5 +248,5 @@ clean: -rm -rf $(PM_OBJ_DIR) -rm -rf $(HLWPN_OBJ_DIR) -rm -rf $(HLDLL_OBJ_DIR) - -rm -f ns_$(ARCH).$(SHLIBEXT) + -rm -f ns.$(SHLIBEXT) diff --git a/main/source/linux/gendbg.sh b/main/source/linux/gendbg.sh deleted file mode 100644 index 9d0bf78a..00000000 --- a/main/source/linux/gendbg.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/bash - -UNAME=`uname` -if [ "$UNAME" == "Darwin" ]; then - p4 edit $1.dSYM/... - dsymutil $1 - p4 revert -a $1.dSYM/... - exit 0; -fi - -OBJCOPY=/valve/bin/objcopy - -function usage { - echo "$0 /path/to/input/file [-o /path/to/output/file ]" - echo "" -} - -if [ $# == 0 ]; then - usage - exit 2 -fi - -if [ $(basename $1) == $1 ]; then - INFILEDIR=$PWD -else - INFILEDIR=$(cd ${1%/*} && echo $PWD) -fi -INFILE=$(basename $1) - -OUTFILEDIR=$INFILEDIR -OUTFILE=$INFILE.dbg - -while getopts "o:" opt; do - case $opt in - o) - OUTFILEDIR=$(cd ${OPTARG%/*} && echo $PWD) - OUTFILE=$(basename $OPTARG) - ;; - esac -done - -if [ "$OUTFILEDIR" != "$INFILEDIR" ]; then - INFILE=${INFILEDIR}/${INFILE} - OUTFILE=${OUTFILEDIR}/${OUTFILE} -fi - -pushd "$INFILEDIR" -p4 edit "$OUTFILE" -$OBJCOPY "$INFILE" "$OUTFILE" -$OBJCOPY --add-gnu-debuglink="$OUTFILE" "$INFILE" -p4 revert -a "$OUTFILE" -popd - diff --git a/main/source/linux/hl_cdll_map.txt b/main/source/linux/hl_cdll_map.txt deleted file mode 100644 index 69b4f476..00000000 --- a/main/source/linux/hl_cdll_map.txt +++ /dev/null @@ -1,24729 +0,0 @@ -Archive member included to satisfy reference by file (symbol) - -./libparticleMP.a(action_api.o) - release/obj/hl1_client/mod/AvHParticleSystem.o (pGravity(float, float, float)) -./libparticleMP.a(actions.o) ./libparticleMP.a(action_api.o) (pDomain::pDomain(PDomainEnum, float, float, float, float, float, float, float, float, float)) -./libparticleMP.a(system.o) ./libparticleMP.a(action_api.o) (_pCallActionList(ParticleAction*, int, ParticleGroup*)) - -As-needed library included to satisfy reference by file (symbol) - -libstdc++.so.6 release/obj/hl1_client/saytext.o (std::__throw_out_of_range(char const*)@@GLIBCXX_3.4) -libdl.so.2 release/obj/hl1_client/common/interface.o (dlopen@@GLIBC_2.1) -libpthread.so.0 (write@@GLIBC_2.0) -libpng12.so.0 release/obj/hl1_client/ui/loadpng.o (png_create_read_struct@@PNG12_0) -vgui.so release/obj/hl1_client/vgui_SpectatorPanel.o (vgui::Panel::localToScreen(int&, int&)) -libSDL2-2.0.so.0 release/obj/hl1_client/inputw32.o (SDL_JoystickUpdate) - -Discarded input sections - - .note.GNU-stack - 0x0000000000000000 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .gnu_debuglink - 0x0000000000000000 0xc /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .group 0x0000000000000000 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - .text.__x86.get_pc_thunk.bx - 0x0000000000000000 0x4 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - .note.GNU-stack - 0x0000000000000000 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/hl/hl_baseentity.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/hl/hl_objects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity7RespawnEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseToggle14GetToggleStateEv - 0x0000000000000000 0xb release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseToggle8GetDelayEv - 0x0000000000000000 0xb release/obj/hl1_client/hl/hl_weapons.o - .text._ZN12CBaseMonster9PainSoundEv - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN12CBaseMonster7IsAliveEv - 0x0000000000000000 0x15 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZNK15CBasePlayerItem11GetItemInfoEP8ItemInfo - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN15CBasePlayerItem9iItemSlotEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/hl/hl_weapons.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/hl/hl_weapons.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/hl/hl_weapons.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/hl/hl_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ammo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/cdll_int.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/cdll_int.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/ammo_secondary.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/ammo_secondary.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/ammo_secondary.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/ammo_secondary.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/ammo_secondary.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/ammo_secondary.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/ammo_secondary.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/ammo_secondary.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/ammo_secondary.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/ammo_secondary.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ammo_secondary.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ammohistory.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/battery.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/battery.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/battery.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/battery.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/battery.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/battery.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/battery.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/battery.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/battery.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/battery.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/battery.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/battery.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/com_weapons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/death.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/death.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/death.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/death.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/death.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/death.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/death.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/death.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/death.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/death.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/death.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/death.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/entity.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ev_common.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/events.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/flashlight.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/flashlight.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/flashlight.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/flashlight.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/flashlight.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/flashlight.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/flashlight.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/flashlight.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/flashlight.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/flashlight.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/flashlight.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/flashlight.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/GameStudioModelRenderer.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/GameStudioModelRenderer.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/GameStudioModelRenderer.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/GameStudioModelRenderer.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/GameStudioModelRenderer.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/GameStudioModelRenderer.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/geiger.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/geiger.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/geiger.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/geiger.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/geiger.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/geiger.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/geiger.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/geiger.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/geiger.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/geiger.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/geiger.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/geiger.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/hud.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/hud.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/hud.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/hud.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/hud.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/hud.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/hud.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/hud.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/hud.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/hud.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/hud.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/hud.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/hud_msg.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/hud_redraw.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/hud_servers.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/hud_spectator.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/hud_spectator.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/hud_spectator.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/hud_spectator.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/hud_spectator.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/hud_spectator.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/hud_spectator.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/hud_spectator.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/hud_spectator.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/hud_spectator.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/hud_spectator.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/hud_spectator.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/hud_update.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/in_camera.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/input.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/input.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/input.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/inputw32.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/menu.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/menu.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/menu.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/menu.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/menu.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/menu.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/menu.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/menu.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/menu.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/menu.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/menu.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/menu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_SpectatorPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .text._ZN13CommandButton10IsNotValidEv - 0x0000000000000000 0x3 release/obj/hl1_client/vgui_TeamFortressViewport.o - .text._ZN17CTransparentPanel15paintBackgroundEv - 0x0000000000000000 0x5d release/obj/hl1_client/vgui_TeamFortressViewport.o - .rodata._ZTIN4vgui12ActionSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .rodata._ZTSN4vgui12ActionSignalE - 0x0000000000000000 0x16 release/obj/hl1_client/vgui_TeamFortressViewport.o - .rodata._ZTI17CTransparentPanel - 0x0000000000000000 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - .rodata._ZTS17CTransparentPanel - 0x0000000000000000 0x14 release/obj/hl1_client/vgui_TeamFortressViewport.o - .rodata._ZTVN4vgui12ActionSignalE - 0x0000000000000000 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - .rodata._ZTV17CTransparentPanel - 0x0000000000000000 0x204 release/obj/hl1_client/vgui_TeamFortressViewport.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_TeamFortressViewport.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .text._ZN14SpectateButton10IsNotValidEv - 0x0000000000000000 0x14 release/obj/hl1_client/vgui_teammenu.o - .text._ZN17CTransparentPanel15paintBackgroundEv - 0x0000000000000000 0x5d release/obj/hl1_client/vgui_teammenu.o - .text._ZN26CMenuHandler_StringCommand15actionPerformedEPN4vgui5PanelE - 0x0000000000000000 0x39 release/obj/hl1_client/vgui_teammenu.o - .text._ZN23CMenuHandler_TextWindow15actionPerformedEPN4vgui5PanelE - 0x0000000000000000 0x45 release/obj/hl1_client/vgui_teammenu.o - .text._ZN31CMenuHandler_StringCommandWatch15actionPerformedEPN4vgui5PanelE - 0x0000000000000000 0x103 release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTIN4vgui12ActionSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTSN4vgui12ActionSignalE - 0x0000000000000000 0x16 release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTI26CMenuHandler_StringCommand - 0x0000000000000000 0xc release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTS26CMenuHandler_StringCommand - 0x0000000000000000 0x1d release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTI31CMenuHandler_StringCommandWatch - 0x0000000000000000 0xc release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTS31CMenuHandler_StringCommandWatch - 0x0000000000000000 0x22 release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTI23CMenuHandler_TextWindow - 0x0000000000000000 0xc release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTS23CMenuHandler_TextWindow - 0x0000000000000000 0x1a release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTI14SpectateButton - 0x0000000000000000 0xc release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTS14SpectateButton - 0x0000000000000000 0x11 release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTI17CTransparentPanel - 0x0000000000000000 0xc release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTS17CTransparentPanel - 0x0000000000000000 0x14 release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTVN4vgui12ActionSignalE - 0x0000000000000000 0xc release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTV26CMenuHandler_StringCommand - 0x0000000000000000 0xc release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTV31CMenuHandler_StringCommandWatch - 0x0000000000000000 0xc release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTV23CMenuHandler_TextWindow - 0x0000000000000000 0xc release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTV14SpectateButton - 0x0000000000000000 0x270 release/obj/hl1_client/vgui_teammenu.o - .rodata._ZTV17CTransparentPanel - 0x0000000000000000 0x204 release/obj/hl1_client/vgui_teammenu.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_teammenu.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/view.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/message.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/message.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/message.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/message.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/message.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/message.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/message.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/message.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/message.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/message.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/message.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/message.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/parsemsg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/saytext.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/saytext.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/saytext.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/saytext.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/saytext.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/saytext.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/saytext.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/saytext.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/saytext.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/saytext.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/saytext.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/saytext.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/status_icons.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/status_icons.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/status_icons.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/status_icons.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/status_icons.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/status_icons.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/status_icons.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/status_icons.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/status_icons.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/status_icons.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/status_icons.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/status_icons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/statusbar.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/statusbar.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/statusbar.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/statusbar.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/statusbar.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/statusbar.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/statusbar.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/statusbar.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/statusbar.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/statusbar.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/statusbar.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/statusbar.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/studio_util.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/StudioModelRenderer.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/StudioModelRenderer.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/StudioModelRenderer.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/StudioModelRenderer.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/text_message.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/text_message.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/text_message.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/text_message.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/text_message.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/text_message.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/text_message.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/text_message.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/text_message.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/text_message.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/text_message.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/text_message.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/train.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/train.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/train.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/train.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/train.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/train.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/train.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/train.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/train.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/train.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/train.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/train.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/tri.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_int.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/cl_util.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ev_hldm.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .text._ZN17CTransparentPanel15paintBackgroundEv - 0x0000000000000000 0x5d release/obj/hl1_client/vgui_MOTDWindow.o - .text._ZN10CMenuPanel5ResetEv - 0x0000000000000000 0x1f release/obj/hl1_client/vgui_MOTDWindow.o - .text._ZN10CMenuPanel4OpenEv - 0x0000000000000000 0x2e release/obj/hl1_client/vgui_MOTDWindow.o - .text._ZN10CMenuPanel5CloseEv - 0x0000000000000000 0x3e release/obj/hl1_client/vgui_MOTDWindow.o - .text._ZN10CMenuPanel9SlotInputEi - 0x0000000000000000 0x3 release/obj/hl1_client/vgui_MOTDWindow.o - .text._ZN10CMenuPanel13SetActiveInfoEi - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_MOTDWindow.o - .text._ZN23CMenuHandler_TextWindow15actionPerformedEPN4vgui5PanelE - 0x0000000000000000 0x45 release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTIN4vgui12ActionSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTSN4vgui12ActionSignalE - 0x0000000000000000 0x16 release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTI23CMenuHandler_TextWindow - 0x0000000000000000 0xc release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTS23CMenuHandler_TextWindow - 0x0000000000000000 0x1a release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTI17CTransparentPanel - 0x0000000000000000 0xc release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTS17CTransparentPanel - 0x0000000000000000 0x14 release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTI10CMenuPanel - 0x0000000000000000 0xc release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTS10CMenuPanel - 0x0000000000000000 0xd release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTVN4vgui12ActionSignalE - 0x0000000000000000 0xc release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTV23CMenuHandler_TextWindow - 0x0000000000000000 0xc release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTV17CTransparentPanel - 0x0000000000000000 0x204 release/obj/hl1_client/vgui_MOTDWindow.o - .rodata._ZTV10CMenuPanel - 0x0000000000000000 0x218 release/obj/hl1_client/vgui_MOTDWindow.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_MOTDWindow.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SchemeManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SchemeManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_SchemeManager.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_SchemeManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .text._ZN26CMenuHandler_StringCommand15actionPerformedEPN4vgui5PanelE - 0x0000000000000000 0x39 release/obj/hl1_client/vgui_ScorePanel.o - .text._ZN31CMenuHandler_StringCommandWatch15actionPerformedEPN4vgui5PanelE - 0x0000000000000000 0x103 release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTIN4vgui12ActionSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTSN4vgui12ActionSignalE - 0x0000000000000000 0x16 release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTI26CMenuHandler_StringCommand - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTS26CMenuHandler_StringCommand - 0x0000000000000000 0x1d release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTI31CMenuHandler_StringCommandWatch - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTS31CMenuHandler_StringCommandWatch - 0x0000000000000000 0x22 release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTVN4vgui12ActionSignalE - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTV26CMenuHandler_StringCommand - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTV31CMenuHandler_StringCommandWatch - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ScorePanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_ScorePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .text._ZN17CTransparentPanel15paintBackgroundEv - 0x0000000000000000 0x5d release/obj/hl1_client/vgui_ClassMenu.o - .text._ZN10CMenuPanel5ResetEv - 0x0000000000000000 0x1f release/obj/hl1_client/vgui_ClassMenu.o - .text._ZN10CMenuPanel4OpenEv - 0x0000000000000000 0x2e release/obj/hl1_client/vgui_ClassMenu.o - .text._ZN10CMenuPanel5CloseEv - 0x0000000000000000 0x3e release/obj/hl1_client/vgui_ClassMenu.o - .text._ZN10CMenuPanel9SlotInputEi - 0x0000000000000000 0x3 release/obj/hl1_client/vgui_ClassMenu.o - .text._ZN10CMenuPanel13SetActiveInfoEi - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_ClassMenu.o - .text._ZN26CMenuHandler_StringCommand15actionPerformedEPN4vgui5PanelE - 0x0000000000000000 0x39 release/obj/hl1_client/vgui_ClassMenu.o - .text._ZN23CMenuHandler_TextWindow15actionPerformedEPN4vgui5PanelE - 0x0000000000000000 0x45 release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTIN4vgui12ActionSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTSN4vgui12ActionSignalE - 0x0000000000000000 0x16 release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTI26CMenuHandler_StringCommand - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTS26CMenuHandler_StringCommand - 0x0000000000000000 0x1d release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTI23CMenuHandler_TextWindow - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTS23CMenuHandler_TextWindow - 0x0000000000000000 0x1a release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTI17CTransparentPanel - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTS17CTransparentPanel - 0x0000000000000000 0x14 release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTI10CMenuPanel - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTS10CMenuPanel - 0x0000000000000000 0xd release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTVN4vgui12ActionSignalE - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTV26CMenuHandler_StringCommand - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTV23CMenuHandler_TextWindow - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTV17CTransparentPanel - 0x0000000000000000 0x204 release/obj/hl1_client/vgui_ClassMenu.o - .rodata._ZTV10CMenuPanel - 0x0000000000000000 0x218 release/obj/hl1_client/vgui_ClassMenu.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_ClassMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ConsolePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ConsolePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ConsolePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ConsolePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ConsolePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ConsolePanel.o - .rodata._ZTIN4vgui12ActionSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ConsolePanel.o - .rodata._ZTSN4vgui12ActionSignalE - 0x0000000000000000 0x16 release/obj/hl1_client/vgui_ConsolePanel.o - .rodata._ZTVN4vgui12ActionSignalE - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ConsolePanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_ConsolePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ControlConfigPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ControlConfigPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ControlConfigPanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_ControlConfigPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN13CommandButton10IsNotValidEv - 0x0000000000000000 0x3 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight13cursorEnteredEPN4vgui5PanelE - 0x0000000000000000 0x1e release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight12cursorExitedEPN4vgui5PanelE - 0x0000000000000000 0x1b release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight13mouseReleasedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight11cursorMovedEiiPN4vgui5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight12mouseWheeledEiPN4vgui5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN24CHandler_ButtonHighlight14keyFocusTickedEPN4vgui5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN31CHandler_CommandButtonHighlight12cursorExitedEPN4vgui5PanelE - 0x0000000000000000 0x34 release/obj/hl1_client/vgui_CustomObjects.o - .text._ZN31CHandler_CommandButtonHighlight13cursorEnteredEPN4vgui5PanelE - 0x0000000000000000 0xaa release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTIN4vgui12ActionSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTSN4vgui12ActionSignalE - 0x0000000000000000 0x16 release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTI26CMenuHandler_StringCommand - 0x0000000000000000 0xc release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTS26CMenuHandler_StringCommand - 0x0000000000000000 0x1d release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTI24CHandler_ButtonHighlight - 0x0000000000000000 0xc release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTS24CHandler_ButtonHighlight - 0x0000000000000000 0x1b release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTI31CHandler_CommandButtonHighlight - 0x0000000000000000 0xc release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTS31CHandler_CommandButtonHighlight - 0x0000000000000000 0x22 release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTV24CHandler_ButtonHighlight - 0x0000000000000000 0x34 release/obj/hl1_client/vgui_CustomObjects.o - .rodata._ZTV31CHandler_CommandButtonHighlight - 0x0000000000000000 0x34 release/obj/hl1_client/vgui_CustomObjects.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_CustomObjects.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .text._ZN17CTransparentPanel15paintBackgroundEv - 0x0000000000000000 0x5d release/obj/hl1_client/vgui_ServerBrowser.o - .rodata._ZTIN4vgui12ActionSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .rodata._ZTSN4vgui12ActionSignalE - 0x0000000000000000 0x16 release/obj/hl1_client/vgui_ServerBrowser.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ServerBrowser.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/vgui_ServerBrowser.o - .rodata._ZTI17CTransparentPanel - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ServerBrowser.o - .rodata._ZTS17CTransparentPanel - 0x0000000000000000 0x14 release/obj/hl1_client/vgui_ServerBrowser.o - .rodata._ZTVN4vgui12ActionSignalE - 0x0000000000000000 0xc release/obj/hl1_client/vgui_ServerBrowser.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/vgui_ServerBrowser.o - .rodata._ZTV17CTransparentPanel - 0x0000000000000000 0x204 release/obj/hl1_client/vgui_ServerBrowser.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/vgui_ServerBrowser.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/health.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/health.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/health.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/health.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/health.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/health.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/health.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/health.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/health.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/health.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/health.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/health.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/demo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHAcidRocketGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZNK15CBasePlayerItem11GetItemInfoEP8ItemInfo - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN15CBasePlayerItem9iItemSlotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN21AvHAlienAbilityWeapon17PlaybackLeapEventEv - 0x0000000000000000 0x49 release/obj/hl1_client/mod/AvHAlienAbilities.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHAlienAbilities.o - .rodata._ZTI21AvHAlienAbilityWeapon - 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHAlienAbilities.o - .rodata._ZTS21AvHAlienAbilityWeapon - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHAlienAbilities.o - .rodata._ZTV21AvHAlienAbilityWeapon - 0x0000000000000000 0x290 release/obj/hl1_client/mod/AvHAlienAbilities.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHAlienAbilities.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZNK15CBasePlayerItem11GetItemInfoEP8ItemInfo - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN15CBasePlayerItem9iItemSlotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZNK17CBasePlayerWeapon13GetDeployTimeEv - 0x0000000000000000 0x7 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBileBombGun.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHBileBombGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHBileBombGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHBite.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHBite.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHBite.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHBite.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHBite.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHBite2.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBite2.o - .text._ZNK7AvHBite30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBite2.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHBite2.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHBite2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZNK15CBasePlayerItem11GetItemInfoEP8ItemInfo - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN15CBasePlayerItem9iItemSlotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHBlink.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN21AvHAlienAbilityWeapon17PlaybackLeapEventEv - 0x0000000000000000 0x49 release/obj/hl1_client/mod/AvHBlink.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHBlink.o - .rodata._ZTI21AvHAlienAbilityWeapon - 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHBlink.o - .rodata._ZTS21AvHAlienAbilityWeapon - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHBlink.o - .rodata._ZTV21AvHAlienAbilityWeapon - 0x0000000000000000 0x290 release/obj/hl1_client/mod/AvHBlink.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHBlink.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHClaws.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHClaws.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHClaws.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHClaws.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHDevour.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDevour.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHDevour.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHDevour.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenade.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHGrenade.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHGrenade.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHDivineWind.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHDivineWind.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHDivineWind.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZNK17CBasePlayerWeapon13GetDeployTimeEv - 0x0000000000000000 0x7 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHGrenadeGun.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHGrenadeGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHGrenadeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHealingSpray.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHHealingSpray.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHHealingSpray.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHItemInfo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHKnife.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHKnife.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHKnife.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHKnife.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMachineGun.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHMachineGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHMachineGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZNK15CBasePlayerItem11GetItemInfoEP8ItemInfo - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN15CBasePlayerItem9iItemSlotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZNK17CBasePlayerWeapon13GetDeployTimeEv - 0x0000000000000000 0x7 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMarineWeapon.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHMarineWeapon.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHMarineWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMetabolize.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHMetabolize.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHMetabolize.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHMine.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHMine.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHMine.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMine.o - .text._ZNK17CBasePlayerWeapon13GetDeployTimeEv - 0x0000000000000000 0x7 release/obj/hl1_client/mod/AvHMine.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHMine.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHMine.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHMine.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHParasiteGun.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHParasiteGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHParasiteGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHPistol.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPistol.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHPistol.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHPistol.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHPrimalScream.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHPrimalScream.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHPrimalScream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSonicGun.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHSonicGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHSonicGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpikeGun.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHSpikeGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHSpikeGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpitGun.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHSpitGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHSpitGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHSpores.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSpores.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHSpores.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHSpores.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHStomp.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHStomp.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHStomp.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHStomp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHSwipe.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHSwipe.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHSwipe.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHUmbraGun.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHUmbraGun.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHUmbraGun.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWebSpinner.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHWebSpinner.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHWebSpinner.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHWelder.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHWelder.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHWelder.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHWelder.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AnimationUtil.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHActionButtons.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHActionButtons.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZNK15CBasePlayerItem11GetItemInfoEP8ItemInfo - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN15CBasePlayerItem9iItemSlotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x0000000000000000 0x3 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x0000000000000000 0x6 release/obj/hl1_client/mod/AvHAlienWeapon.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/mod/AvHAlienWeapon.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHAlienWeapon.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHAmbientSound.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHAssert.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHClientUtil.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .rodata._ZTI11StaticLabel - 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .rodata._ZTS11StaticLabel - 0x0000000000000000 0xe release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHConstants.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHEvents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHEvents.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHEvents.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHFont.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHHelp.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHud.o - .text._ZNSt8_Rb_treeIiSt4pairIKi9MapEntityESt10_Select1stIS3_ESt4lessIiESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x0000000000000000 0x1aa release/obj/hl1_client/mod/AvHHud.o - .text._ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs - 0x0000000000000000 0x295 release/obj/hl1_client/mod/AvHHud.o - .text._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi - 0x0000000000000000 0x195 release/obj/hl1_client/mod/AvHHud.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHudRender.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHudRender.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHudRender.o - .text._ZSt6__findIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiET_S7_S7_RKT0_St26random_access_iterator_tag - 0x0000000000000000 0xed release/obj/hl1_client/mod/AvHHudRender.o - .text._ZNSt8_Rb_treeIiSt4pairIKiiESt10_Select1stIS2_ESt4lessIiESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x0000000000000000 0x1aa release/obj/hl1_client/mod/AvHHudRender.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHHudRender.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - .text._ZN11StaticLabel7setSizeEii - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHLogoutComponent.o - .rodata._ZTI11StaticLabel - 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHLogoutComponent.o - .rodata._ZTS11StaticLabel - 0x0000000000000000 0xe release/obj/hl1_client/mod/AvHLogoutComponent.o - .rodata._ZTI18AvHLogoutComponent - 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHLogoutComponent.o - .rodata._ZTS18AvHLogoutComponent - 0x0000000000000000 0x15 release/obj/hl1_client/mod/AvHLogoutComponent.o - .rodata._ZTV11StaticLabel - 0x0000000000000000 0x234 release/obj/hl1_client/mod/AvHLogoutComponent.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHLogoutComponent.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHMapExtents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMiniMap.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMiniMap.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMiniMap.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHMiniMap.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHMovementUtil.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHNetworkMessages.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHNetworkMessages.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHNetworkMessages.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHNetworkMessages.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHNetworkMessages.o - .text._ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs - 0x0000000000000000 0x295 release/obj/hl1_client/mod/AvHNetworkMessages.o - .text._ZNSt6vectorI11AvHHiveInfoSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000000000 0x249 release/obj/hl1_client/mod/AvHNetworkMessages.o - .text._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi - 0x0000000000000000 0x195 release/obj/hl1_client/mod/AvHNetworkMessages.o - .text._ZNSt8_Rb_treeIiSt4pairIKi9MapEntityESt10_Select1stIS3_ESt4lessIiESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x0000000000000000 0x1aa release/obj/hl1_client/mod/AvHNetworkMessages.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHNetworkMessages.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHNexusClient.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHNexusTunnelToServer.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOrder.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHOrder.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/mod/AvHOverviewControl.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/mod/AvHOverviewControl.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHOverviewControl.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewMap.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewMap.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewMap.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewMap.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewMap.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewMap.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewMap.o - .text._ZNSt8_Rb_treeIiSt4pairIKi9MapEntityESt10_Select1stIS3_ESt4lessIiESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x0000000000000000 0x1aa release/obj/hl1_client/mod/AvHOverviewMap.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHOverviewMap.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHScriptClient.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScriptManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScriptManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScriptManager.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHScriptManager.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHScriptShared.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollHandler.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/mod/AvHScrollHandler.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/mod/AvHScrollHandler.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHScrollHandler.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHScrollPanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHScrollPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSharedUtil.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSharedUtil.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSharedUtil.o - .text._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi - 0x0000000000000000 0x195 release/obj/hl1_client/mod/AvHSharedUtil.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHSharedUtil.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHSpecials.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHSpriteAPI.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .text._ZN11StaticLabel7setSizeEii - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .rodata._ZTI11StaticLabel - 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHTeamHierarchy.o - .rodata._ZTS11StaticLabel - 0x0000000000000000 0xe release/obj/hl1_client/mod/AvHTeamHierarchy.o - .rodata._ZTV11StaticLabel - 0x0000000000000000 0x234 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechNode.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechNode.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechNode.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHTechNode.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechSlotManager.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHTechSlotManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTechTree.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHTechTree.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTooltip.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTooltip.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTooltip.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHTooltip.o - .text._ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs - 0x0000000000000000 0x295 release/obj/hl1_client/mod/AvHTooltip.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHTooltip.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUIFactory.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUIFactory.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHUIFactory.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHUIFactory.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHVisibleBlipList.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/CollisionChecker.o - .text._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi - 0x0000000000000000 0x195 release/obj/hl1_client/mod/CollisionChecker.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/CollisionChecker.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/CollisionUtil.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHParticleSystem.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .text._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi - 0x0000000000000000 0x195 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - .text._ZNSt8_Rb_treeIiSt4pairIKi19AvHParticleTemplateESt10_Select1stIS3_ESt4lessIiESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x0000000000000000 0x18d release/obj/hl1_client/mod/AvHParticleTemplate.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHParticleTemplate.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .text._ZNSt8_Rb_treeIiSt4pairIKi19AvHParticleTemplateESt10_Select1stIS3_ESt4lessIiESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x0000000000000000 0x444 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .text._ZNSt3mapIi19AvHParticleTemplateSt4lessIiESaISt4pairIKiS0_EEEixERS4_ - 0x0000000000000000 0x554 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSelectionHelper.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSelectionHelper.o - .text._ZNSt6vectorIiSaIiEEaSERKS1_ - 0x0000000000000000 0x1d5 release/obj/hl1_client/mod/AvHSelectionHelper.o - .text._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi - 0x0000000000000000 0x195 release/obj/hl1_client/mod/AvHSelectionHelper.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/mod/AvHSelectionHelper.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/common/interface.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal11cursorMovedEiiPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal13cursorEnteredEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal12cursorExitedEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal12mousePressedENS_9MouseCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal18mouseDoublePressedENS_9MouseCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal13mouseReleasedENS_9MouseCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal12mouseWheeledEiPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal10keyPressedENS_7KeyCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal8keyTypedENS_7KeyCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal11keyReleasedENS_7KeyCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .text._ZN4vgui19CDefaultInputSignal14keyFocusTickedEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .rodata._ZTIN4vgui19CDefaultInputSignalE - 0x0000000000000000 0xc release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .rodata._ZTSN4vgui19CDefaultInputSignalE - 0x0000000000000000 0x1d release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .rodata._ZTVN4vgui19CDefaultInputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_grid.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_grid.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_grid.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/game_shared/vgui_grid.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/game_shared/vgui_helpers.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .rodata._ZTIN4vgui15IntChangeSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_listbox.o - .rodata._ZTSN4vgui15IntChangeSignalE - 0x0000000000000000 0x19 release/obj/hl1_client/game_shared/vgui_listbox.o - .rodata._ZTVN4vgui15IntChangeSignalE - 0x0000000000000000 0xc release/obj/hl1_client/game_shared/vgui_listbox.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/game_shared/vgui_listbox.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/game_shared/vgui_loadtga.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .rodata._ZTIN4vgui15IntChangeSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .rodata._ZTSN4vgui15IntChangeSignalE - 0x0000000000000000 0x19 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .rodata._ZTIN4vgui12ActionSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .rodata._ZTSN4vgui12ActionSignalE - 0x0000000000000000 0x16 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .rodata._ZTVN4vgui15IntChangeSignalE - 0x0000000000000000 0xc release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .rodata._ZTVN4vgui12ActionSignalE - 0x0000000000000000 0xc release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_slider2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_slider2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_slider2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_slider2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_slider2.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_slider2.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/vgui_slider2.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/game_shared/vgui_slider2.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/game_shared/vgui_slider2.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/game_shared/vgui_slider2.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/game_shared/voice_banmgr.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/game_shared/voice_status.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal11cursorMovedEiiPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal13cursorEnteredEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal12cursorExitedEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal12mousePressedENS_9MouseCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal18mouseDoublePressedENS_9MouseCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal13mouseReleasedENS_9MouseCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal12mouseWheeledEiPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal10keyPressedENS_7KeyCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal8keyTypedENS_7KeyCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal11keyReleasedENS_7KeyCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN4vgui19CDefaultInputSignal14keyFocusTickedEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_status.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/game_shared/voice_status.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/game_shared/voice_status.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_status.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/game_shared/voice_status.o - .rodata._ZTIN4vgui19CDefaultInputSignalE - 0x0000000000000000 0xc release/obj/hl1_client/game_shared/voice_status.o - .rodata._ZTSN4vgui19CDefaultInputSignalE - 0x0000000000000000 0x1d release/obj/hl1_client/game_shared/voice_status.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/game_shared/voice_status.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/game_shared/voice_status.o - .rodata._ZTVN4vgui19CDefaultInputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/game_shared/voice_status.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/game_shared/voice_status.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .text._ZN17CTransparentPanel15paintBackgroundEv - 0x0000000000000000 0x5d release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .text._ZN10CMenuPanel5ResetEv - 0x0000000000000000 0x1f release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .text._ZN10CMenuPanel4OpenEv - 0x0000000000000000 0x2e release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .text._ZN10CMenuPanel5CloseEv - 0x0000000000000000 0x3e release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .text._ZN10CMenuPanel9SlotInputEi - 0x0000000000000000 0x3 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .text._ZN10CMenuPanel13SetActiveInfoEi - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTIN4vgui20ICheckButton2HandlerE - 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTSN4vgui20ICheckButton2HandlerE - 0x0000000000000000 0x1e release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTIN4vgui12ActionSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTSN4vgui12ActionSignalE - 0x0000000000000000 0x16 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTI17CTransparentPanel - 0x0000000000000000 0xc release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTS17CTransparentPanel - 0x0000000000000000 0x14 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTI10CMenuPanel - 0x0000000000000000 0xc release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTS10CMenuPanel - 0x0000000000000000 0xd release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTVN4vgui20ICheckButton2HandlerE - 0x0000000000000000 0xc release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTV17CTransparentPanel - 0x0000000000000000 0x204 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata._ZTV10CMenuPanel - 0x0000000000000000 0x218 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity8KeyValueEP14KeyValueData_s - 0x0000000000000000 0xc release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity10ObjectCapsEv - 0x0000000000000000 0x6 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity8ActivateEv - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity8ClassifyEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZNK11CBaseEntity13GetPointValueEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity10BloodColorEv - 0x0000000000000000 0x6 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x0000000000000000 0x6 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity14GetToggleStateEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity9AddPointsEii - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x0000000000000000 0x6 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity8GetDelayEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity8IsMovingEv - 0x0000000000000000 0x55 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity13OverrideResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity14SetToggleStateEi - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity13StartSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity12StopSneakingEv - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity10IsSneakingEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZNK11CBaseEntity7IsAliveEv - 0x0000000000000000 0x27 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity10IsBSPModelEv - 0x0000000000000000 0x26 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity12ReflectGaussEv - 0x0000000000000000 0x37 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity8IsPlayerEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity11IsNetClientEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity6TeamIDEv - 0x0000000000000000 0x6 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity11ResetEntityEv - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity5ThinkEv - 0x0000000000000000 0x31 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity5TouchEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x0000000000000000 0x81 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity7BlockedEPS_ - 0x0000000000000000 0x42 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity12FBecomeProneEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity6CenterEv - 0x0000000000000000 0x4c release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity11EyePositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity11EarPositionEv - 0x0000000000000000 0x31 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x0000000000000000 0x28 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity12IlluminationEv - 0x0000000000000000 0x18 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZNK15CBasePlayerItem11GetItemInfoEP8ItemInfo - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x0000000000000000 0x5 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x0000000000000000 0x1f release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZNK17CBasePlayerWeapon18GetWeaponPrimeTimeEv - 0x0000000000000000 0x5 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN17CBasePlayerWeapon11PrimeWeaponEv - 0x0000000000000000 0x1 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZNK17CBasePlayerWeapon17GetIsWeaponPrimedEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZNK17CBasePlayerWeapon18GetIsWeaponPrimingEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZNK17CBasePlayerWeapon13GetDeployTimeEv - 0x0000000000000000 0x7 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x0000000000000000 0x3 release/obj/hl1_client/server/hl_wpn_glock.o - .text._ZN11CBaseEntity9HasTargetEj - 0x0000000000000000 0x3b release/obj/hl1_client/server/hl_wpn_glock.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/server/hl_wpn_glock.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/pm_shared/pm_debug.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/pm_shared/pm_shared.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/pm_shared/pm_math.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/bitmappng.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/bitmappng.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/bitmappng.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/bitmappng.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal11cursorMovedEiiPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal13cursorEnteredEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal12cursorExitedEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal12mousePressedENS_9MouseCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal18mouseDoublePressedENS_9MouseCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal13mouseReleasedENS_9MouseCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal12mouseWheeledEiPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal10keyPressedENS_7KeyCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal8keyTypedENS_7KeyCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal11keyReleasedENS_7KeyCodeEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .text._ZN4vgui19CDefaultInputSignal14keyFocusTickedEPNS_5PanelE - 0x0000000000000000 0x1 release/obj/hl1_client/ui/ChatPanel.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/ui/ChatPanel.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/ui/ChatPanel.o - .rodata._ZTIN4vgui19CDefaultInputSignalE - 0x0000000000000000 0xc release/obj/hl1_client/ui/ChatPanel.o - .rodata._ZTSN4vgui19CDefaultInputSignalE - 0x0000000000000000 0x1d release/obj/hl1_client/ui/ChatPanel.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/ui/ChatPanel.o - .rodata._ZTVN4vgui19CDefaultInputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/ui/ChatPanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/ChatPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ColoredPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ColoredPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ColoredPanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/ColoredPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/DummyPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/DummyPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/DummyPanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/DummyPanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .text._ZN13FakeTextImage7setFontEN4vgui6Scheme10SchemeFontE - 0x0000000000000000 0x5 release/obj/hl1_client/ui/FadingImageLabel.o - .text._ZN13FakeTextImage7setFontEPN4vgui4FontE - 0x0000000000000000 0x5 release/obj/hl1_client/ui/FadingImageLabel.o - .rodata._ZTI13FakeTextImage - 0x0000000000000000 0xc release/obj/hl1_client/ui/FadingImageLabel.o - .rodata._ZTS13FakeTextImage - 0x0000000000000000 0x10 release/obj/hl1_client/ui/FadingImageLabel.o - .rodata._ZTV13FakeTextImage - 0x0000000000000000 0x88 release/obj/hl1_client/ui/FadingImageLabel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/FadingImageLabel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/loadpng.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MarqueeComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MarqueeComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MarqueeComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MarqueeComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MarqueeComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MarqueeComponent.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/MarqueeComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MemoryInputStream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MemoryInputStream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MemoryInputStream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MemoryInputStream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MemoryInputStream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/MemoryInputStream.o - .rodata._ZTIN4vgui11InputStreamE - 0x0000000000000000 0x8 release/obj/hl1_client/ui/MemoryInputStream.o - .rodata._ZTSN4vgui11InputStreamE - 0x0000000000000000 0x15 release/obj/hl1_client/ui/MemoryInputStream.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/MemoryInputStream.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .rodata._ZTI19GammaAwareComponent - 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .rodata._ZTS19GammaAwareComponent - 0x0000000000000000 0x16 release/obj/hl1_client/ui/PieMenu.o - .rodata._ZTI19ReloadableComponent - 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieMenu.o - .rodata._ZTS19ReloadableComponent - 0x0000000000000000 0x16 release/obj/hl1_client/ui/PieMenu.o - .rodata._ZTV19GammaAwareComponent - 0x0000000000000000 0xc release/obj/hl1_client/ui/PieMenu.o - .rodata._ZTV19ReloadableComponent - 0x0000000000000000 0xc release/obj/hl1_client/ui/PieMenu.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/PieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieNode.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieNode.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieNode.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieNode.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieNode.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieNode.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/PieNode.o - .text._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi - 0x0000000000000000 0x195 release/obj/hl1_client/ui/PieNode.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/PieNode.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/ScoreboardIcon.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/ScoreboardIcon.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/ui/SliderPlus.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/ui/SliderPlus.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/ui/SliderPlus.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/SliderPlus.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .rodata._ZTI19GammaAwareComponent - 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .rodata._ZTS19GammaAwareComponent - 0x0000000000000000 0x16 release/obj/hl1_client/ui/SpritePanel.o - .rodata._ZTI19ReloadableComponent - 0x0000000000000000 0x8 release/obj/hl1_client/ui/SpritePanel.o - .rodata._ZTS19ReloadableComponent - 0x0000000000000000 0x16 release/obj/hl1_client/ui/SpritePanel.o - .rodata._ZTV19GammaAwareComponent - 0x0000000000000000 0xc release/obj/hl1_client/ui/SpritePanel.o - .rodata._ZTV19ReloadableComponent - 0x0000000000000000 0xc release/obj/hl1_client/ui/SpritePanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/SpritePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponent.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/UIComponent.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .text._ZNK7UILabel7GetTypeEv - 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .text._ZNK14UIColoredPanel7GetTypeEv - 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .text._ZNK13UIStaticLabel7GetTypeEv - 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .text._ZN11StaticLabel7setSizeEii - 0x0000000000000000 0x5 release/obj/hl1_client/ui/UIComponents.o - .rodata._ZTI11StaticLabel - 0x0000000000000000 0xc release/obj/hl1_client/ui/UIComponents.o - .rodata._ZTS11StaticLabel - 0x0000000000000000 0xe release/obj/hl1_client/ui/UIComponents.o - .rodata._ZTV11StaticLabel - 0x0000000000000000 0x234 release/obj/hl1_client/ui/UIComponents.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/UIComponents.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIFactory.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIFactory.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIFactory.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIFactory.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/UIFactory.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .text._ZN8CHudBaseD2Ev - 0x0000000000000000 0xb release/obj/hl1_client/ui/UIHud.o - .text._ZN8CHudBase4InitEv - 0x0000000000000000 0x3 release/obj/hl1_client/ui/UIHud.o - .text._ZN8CHudBase7VidInitEv - 0x0000000000000000 0x3 release/obj/hl1_client/ui/UIHud.o - .text._ZN8CHudBase4DrawEf - 0x0000000000000000 0x3 release/obj/hl1_client/ui/UIHud.o - .text._ZN8CHudBase5ThinkEv - 0x0000000000000000 0x1 release/obj/hl1_client/ui/UIHud.o - .text._ZN8CHudBase5ResetEv - 0x0000000000000000 0x1 release/obj/hl1_client/ui/UIHud.o - .text._ZN8CHudBase11InitHUDDataEv - 0x0000000000000000 0x1 release/obj/hl1_client/ui/UIHud.o - .text._ZN8CHudBaseD0Ev - 0x0000000000000000 0xf release/obj/hl1_client/ui/UIHud.o - .rodata._ZTI8CHudBase - 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIHud.o - .rodata._ZTS8CHudBase - 0x0000000000000000 0xa release/obj/hl1_client/ui/UIHud.o - .rodata._ZTV8CHudBase - 0x0000000000000000 0x28 release/obj/hl1_client/ui/UIHud.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/UIHud.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .text._ZNSt6vectorISt4pairISsSsESaIS1_EEaSERKS3_ - 0x0000000000000000 0x45c release/obj/hl1_client/ui/UIManager.o - .rodata._ZTIN4vgui11InputSignalE - 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .rodata._ZTSN4vgui11InputSignalE - 0x0000000000000000 0x15 release/obj/hl1_client/ui/UIManager.o - .rodata._ZTI19GammaAwareComponent - 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .rodata._ZTS19GammaAwareComponent - 0x0000000000000000 0x16 release/obj/hl1_client/ui/UIManager.o - .rodata._ZTI19ReloadableComponent - 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIManager.o - .rodata._ZTS19ReloadableComponent - 0x0000000000000000 0x16 release/obj/hl1_client/ui/UIManager.o - .rodata._ZTVN4vgui11InputSignalE - 0x0000000000000000 0x34 release/obj/hl1_client/ui/UIManager.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/UIManager.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIPieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIPieMenu.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIPieMenu.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/UIPieMenu.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/UIUtil.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/InvisiblePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/InvisiblePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/ui/InvisiblePanel.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/ui/InvisiblePanel.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Balance.o - .text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x0000000000000000 0x4ef release/obj/hl1_client/util/Balance.o - .text._ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs - 0x0000000000000000 0x295 release/obj/hl1_client/util/Balance.o - .text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE24_M_get_insert_unique_posERS1_ - 0x0000000000000000 0x113 release/obj/hl1_client/util/Balance.o - .text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_ - 0x0000000000000000 0x2ea release/obj/hl1_client/util/Balance.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util/Balance.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Checksum.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Checksum.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Checksum.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Checksum.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Checksum.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Checksum.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Checksum.o - .text._ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs - 0x0000000000000000 0x295 release/obj/hl1_client/util/Checksum.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util/Checksum.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util/GammaTable.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util/LinuxSupport.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util/Mat3.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util/MathUtil.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util/Quat.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util/Stacktrace.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/STLUtil.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util/STLUtil.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/util/Tokenizer.o - .text._ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs - 0x0000000000000000 0x295 release/obj/hl1_client/util/Tokenizer.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/util/Tokenizer.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/textrep/TRDescription.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/textrep/TRDescription.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/textrep/TRDescription.o - .text._ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs - 0x0000000000000000 0x295 release/obj/hl1_client/textrep/TRDescription.o - .text._ZNSt6vectorI7CStringSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000000000 0x557 release/obj/hl1_client/textrep/TRDescription.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/textrep/TRDescription.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/textrep/TRFactory.o - .group 0x0000000000000000 0x8 release/obj/hl1_client/textrep/TRFactory.o - .text._ZNSt6vectorISt4pairISsSsESaIS1_EEaSERKS3_ - 0x0000000000000000 0x45c release/obj/hl1_client/textrep/TRFactory.o - .text._ZNSt6vectorI13TRDescriptionSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000000000 0xb1a release/obj/hl1_client/textrep/TRFactory.o - .note.GNU-stack - 0x0000000000000000 0x0 release/obj/hl1_client/textrep/TRFactory.o - .group 0x0000000000000000 0x8 ./libparticleMP.a(action_api.o) - .text.__x86.get_pc_thunk.bx - 0x0000000000000000 0x4 ./libparticleMP.a(action_api.o) - .note.GNU-stack - 0x0000000000000000 0x0 ./libparticleMP.a(action_api.o) - .group 0x0000000000000000 0x8 ./libparticleMP.a(actions.o) - .text.__x86.get_pc_thunk.bx - 0x0000000000000000 0x4 ./libparticleMP.a(actions.o) - .note.GNU-stack - 0x0000000000000000 0x0 ./libparticleMP.a(actions.o) - .group 0x0000000000000000 0x8 ./libparticleMP.a(system.o) - .group 0x0000000000000000 0x8 ./libparticleMP.a(system.o) - .text.__x86.get_pc_thunk.bx - 0x0000000000000000 0x4 ./libparticleMP.a(system.o) - .note.GNU-stack - 0x0000000000000000 0x0 ./libparticleMP.a(system.o) - .note.GNU-stack - 0x0000000000000000 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtendS.o - .note.GNU-stack - 0x0000000000000000 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crtn.o - .gnu_debuglink - 0x0000000000000000 0xc /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crtn.o - -↵ -Speichereinrichtung -↵ - -Name Ursprung Länge Eigenschaften -*default* 0x0000000000000000 0xffffffffffffffff - -Linker script and memory map - -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o -LOAD release/obj/hl1_client/hl/hl_baseentity.o -LOAD release/obj/hl1_client/hl/hl_objects.o -LOAD release/obj/hl1_client/hl/hl_weapons.o -LOAD release/obj/hl1_client/ammo.o -LOAD release/obj/hl1_client/cdll_int.o -LOAD release/obj/hl1_client/ammo_secondary.o -LOAD release/obj/hl1_client/ammohistory.o -LOAD release/obj/hl1_client/battery.o -LOAD release/obj/hl1_client/com_weapons.o -LOAD release/obj/hl1_client/death.o -LOAD release/obj/hl1_client/entity.o -LOAD release/obj/hl1_client/ev_common.o -LOAD release/obj/hl1_client/events.o -LOAD release/obj/hl1_client/flashlight.o -LOAD release/obj/hl1_client/GameStudioModelRenderer.o -LOAD release/obj/hl1_client/geiger.o -LOAD release/obj/hl1_client/hud.o -LOAD release/obj/hl1_client/hud_msg.o -LOAD release/obj/hl1_client/hud_redraw.o -LOAD release/obj/hl1_client/hud_servers.o -LOAD release/obj/hl1_client/hud_spectator.o -LOAD release/obj/hl1_client/hud_update.o -LOAD release/obj/hl1_client/in_camera.o -LOAD release/obj/hl1_client/input.o -LOAD release/obj/hl1_client/inputw32.o -LOAD release/obj/hl1_client/menu.o -LOAD release/obj/hl1_client/vgui_SpectatorPanel.o -LOAD release/obj/hl1_client/vgui_TeamFortressViewport.o -LOAD release/obj/hl1_client/vgui_teammenu.o -LOAD release/obj/hl1_client/view.o -LOAD release/obj/hl1_client/message.o -LOAD release/obj/hl1_client/parsemsg.o -LOAD release/obj/hl1_client/saytext.o -LOAD release/obj/hl1_client/status_icons.o -LOAD release/obj/hl1_client/statusbar.o -LOAD release/obj/hl1_client/studio_util.o -LOAD release/obj/hl1_client/StudioModelRenderer.o -LOAD release/obj/hl1_client/text_message.o -LOAD release/obj/hl1_client/train.o -LOAD release/obj/hl1_client/tri.o -LOAD release/obj/hl1_client/vgui_int.o -LOAD release/obj/hl1_client/cl_util.o -LOAD release/obj/hl1_client/ev_hldm.o -LOAD release/obj/hl1_client/vgui_MOTDWindow.o -LOAD release/obj/hl1_client/vgui_SchemeManager.o -LOAD release/obj/hl1_client/vgui_ScorePanel.o -LOAD release/obj/hl1_client/vgui_ClassMenu.o -LOAD release/obj/hl1_client/vgui_ConsolePanel.o -LOAD release/obj/hl1_client/vgui_ControlConfigPanel.o -LOAD release/obj/hl1_client/vgui_CustomObjects.o -LOAD release/obj/hl1_client/vgui_ServerBrowser.o -LOAD release/obj/hl1_client/util.o -LOAD release/obj/hl1_client/health.o -LOAD release/obj/hl1_client/demo.o -LOAD release/obj/hl1_client/mod/AvHAcidRocketGun.o -LOAD release/obj/hl1_client/mod/AvHAlienAbilities.o -LOAD release/obj/hl1_client/mod/AvHBasePlayerWeapon.o -LOAD release/obj/hl1_client/mod/AvHBileBombGun.o -LOAD release/obj/hl1_client/mod/AvHBite.o -LOAD release/obj/hl1_client/mod/AvHBite2.o -LOAD release/obj/hl1_client/mod/AvHBlink.o -LOAD release/obj/hl1_client/mod/AvHClaws.o -LOAD release/obj/hl1_client/mod/AvHDevour.o -LOAD release/obj/hl1_client/mod/AvHGrenade.o -LOAD release/obj/hl1_client/mod/AvHDivineWind.o -LOAD release/obj/hl1_client/mod/AvHGrenadeGun.o -LOAD release/obj/hl1_client/mod/AvHHealingSpray.o -LOAD release/obj/hl1_client/mod/AvHHeavyMachineGun.o -LOAD release/obj/hl1_client/mod/AvHItemInfo.o -LOAD release/obj/hl1_client/mod/AvHKnife.o -LOAD release/obj/hl1_client/mod/AvHMachineGun.o -LOAD release/obj/hl1_client/mod/AvHMarineWeapon.o -LOAD release/obj/hl1_client/mod/AvHMetabolize.o -LOAD release/obj/hl1_client/mod/AvHMine.o -LOAD release/obj/hl1_client/mod/AvHParasiteGun.o -LOAD release/obj/hl1_client/mod/AvHPistol.o -LOAD release/obj/hl1_client/mod/AvHPrimalScream.o -LOAD release/obj/hl1_client/mod/AvHSonicGun.o -LOAD release/obj/hl1_client/mod/AvHSpikeGun.o -LOAD release/obj/hl1_client/mod/AvHSpitGun.o -LOAD release/obj/hl1_client/mod/AvHSpores.o -LOAD release/obj/hl1_client/mod/AvHStomp.o -LOAD release/obj/hl1_client/mod/AvHSwipe.o -LOAD release/obj/hl1_client/mod/AvHUmbraGun.o -LOAD release/obj/hl1_client/mod/AvHWebSpinner.o -LOAD release/obj/hl1_client/mod/AvHWelder.o -LOAD release/obj/hl1_client/mod/AnimationUtil.o -LOAD release/obj/hl1_client/mod/AvHActionButtons.o -LOAD release/obj/hl1_client/mod/AvHAlienWeapon.o -LOAD release/obj/hl1_client/mod/AvHAmbientSound.o -LOAD release/obj/hl1_client/mod/AvHAssert.o -LOAD release/obj/hl1_client/mod/AvHBaseInfoLocation.o -LOAD release/obj/hl1_client/mod/AvHClientUtil.o -LOAD release/obj/hl1_client/mod/AvHCommanderModeHandler.o -LOAD release/obj/hl1_client/mod/AvHConstants.o -LOAD release/obj/hl1_client/mod/AvHEntityHierarchy.o -LOAD release/obj/hl1_client/mod/AvHEvents.o -LOAD release/obj/hl1_client/mod/AvHFont.o -LOAD release/obj/hl1_client/mod/AvHHelp.o -LOAD release/obj/hl1_client/mod/AvHHud.o -LOAD release/obj/hl1_client/mod/AvHHudRender.o -LOAD release/obj/hl1_client/mod/AvHLogoutComponent.o -LOAD release/obj/hl1_client/mod/AvHMapExtents.o -LOAD release/obj/hl1_client/mod/AvHMiniMap.o -LOAD release/obj/hl1_client/mod/AvHMovementUtil.o -LOAD release/obj/hl1_client/mod/AvHNetworkMessages.o -LOAD release/obj/hl1_client/mod/AvHNexusClient.o -LOAD release/obj/hl1_client/mod/AvHNexusTunnelToServer.o -LOAD release/obj/hl1_client/mod/AvHOrder.o -LOAD release/obj/hl1_client/mod/AvHOverviewControl.o -LOAD release/obj/hl1_client/mod/AvHOverviewMap.o -LOAD release/obj/hl1_client/mod/AvHParticleEditorHandler.o -LOAD release/obj/hl1_client/mod/AvHPieMenuHandler.o -LOAD release/obj/hl1_client/mod/AvHPlayerUpgrade.o -LOAD release/obj/hl1_client/mod/AvHScriptClient.o -LOAD release/obj/hl1_client/mod/AvHScriptManager.o -LOAD release/obj/hl1_client/mod/AvHScriptShared.o -LOAD release/obj/hl1_client/mod/AvHScrollHandler.o -LOAD release/obj/hl1_client/mod/AvHScrollPanel.o -LOAD release/obj/hl1_client/mod/AvHSharedMovementInfo.o -LOAD release/obj/hl1_client/mod/AvHSharedUtil.o -LOAD release/obj/hl1_client/mod/AvHSpecials.o -LOAD release/obj/hl1_client/mod/AvHSpriteAPI.o -LOAD release/obj/hl1_client/mod/AvHTeamHierarchy.o -LOAD release/obj/hl1_client/mod/AvHTechImpulsePanel.o -LOAD release/obj/hl1_client/mod/AvHTechNode.o -LOAD release/obj/hl1_client/mod/AvHTechSlotManager.o -LOAD release/obj/hl1_client/mod/AvHTechTree.o -LOAD release/obj/hl1_client/mod/AvHTooltip.o -LOAD release/obj/hl1_client/mod/AvHUIFactory.o -LOAD release/obj/hl1_client/mod/AvHVisibleBlipList.o -LOAD release/obj/hl1_client/mod/CollisionChecker.o -LOAD release/obj/hl1_client/mod/CollisionUtil.o -LOAD release/obj/hl1_client/mod/AvHParticleSystem.o -LOAD release/obj/hl1_client/mod/AvHParticleSystemManager.o -LOAD release/obj/hl1_client/mod/AvHParticleTemplate.o -LOAD release/obj/hl1_client/mod/AvHParticleTemplateClient.o -LOAD release/obj/hl1_client/mod/AvHSelectionHelper.o -LOAD release/obj/hl1_client/common/interface.o -LOAD release/obj/hl1_client/game_shared/vgui_checkbutton2.o -LOAD release/obj/hl1_client/game_shared/vgui_grid.o -LOAD release/obj/hl1_client/game_shared/vgui_helpers.o -LOAD release/obj/hl1_client/game_shared/vgui_listbox.o -LOAD release/obj/hl1_client/game_shared/vgui_loadtga.o -LOAD release/obj/hl1_client/game_shared/vgui_scrollbar2.o -LOAD release/obj/hl1_client/game_shared/vgui_slider2.o -LOAD release/obj/hl1_client/game_shared/voice_banmgr.o -LOAD release/obj/hl1_client/game_shared/voice_status.o -LOAD release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o -LOAD release/obj/hl1_client/server/hl_wpn_glock.o -LOAD release/obj/hl1_client/pm_shared/pm_debug.o -LOAD release/obj/hl1_client/pm_shared/pm_shared.o -LOAD release/obj/hl1_client/pm_shared/pm_math.o -LOAD release/obj/hl1_client/ui/bitmappng.o -LOAD release/obj/hl1_client/ui/ChatPanel.o -LOAD release/obj/hl1_client/ui/ColoredPanel.o -LOAD release/obj/hl1_client/ui/DummyPanel.o -LOAD release/obj/hl1_client/ui/FadingImageLabel.o -LOAD release/obj/hl1_client/ui/loadpng.o -LOAD release/obj/hl1_client/ui/MarqueeComponent.o -LOAD release/obj/hl1_client/ui/MemoryInputStream.o -LOAD release/obj/hl1_client/ui/PieMenu.o -LOAD release/obj/hl1_client/ui/PieNode.o -LOAD release/obj/hl1_client/ui/ScoreboardIcon.o -LOAD release/obj/hl1_client/ui/SliderPlus.o -LOAD release/obj/hl1_client/ui/SpritePanel.o -LOAD release/obj/hl1_client/ui/UIComponent.o -LOAD release/obj/hl1_client/ui/UIComponents.o -LOAD release/obj/hl1_client/ui/UIFactory.o -LOAD release/obj/hl1_client/ui/UIHud.o -LOAD release/obj/hl1_client/ui/UIManager.o -LOAD release/obj/hl1_client/ui/UIPieMenu.o -LOAD release/obj/hl1_client/ui/UIUtil.o -LOAD release/obj/hl1_client/ui/InvisiblePanel.o -LOAD release/obj/hl1_client/util/Balance.o -LOAD release/obj/hl1_client/util/Checksum.o -LOAD release/obj/hl1_client/util/GammaTable.o -LOAD release/obj/hl1_client/util/LinuxSupport.o -LOAD release/obj/hl1_client/util/Mat3.o -LOAD release/obj/hl1_client/util/MathUtil.o -LOAD release/obj/hl1_client/util/Quat.o -LOAD release/obj/hl1_client/util/Stacktrace.o -LOAD release/obj/hl1_client/util/STLUtil.o -LOAD release/obj/hl1_client/util/Tokenizer.o -LOAD release/obj/hl1_client/textrep/TRDescription.o -LOAD release/obj/hl1_client/textrep/TRFactory.o -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/32/libstdc++.so -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/libdl.so -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/libpthread.so -START GROUP -LOAD /lib/i386-linux-gnu/libpthread.so.0 -LOAD /usr/lib/i386-linux-gnu/libpthread_nonshared.a -END GROUP -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/libpng.so -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/libz.so -LOAD ./libparticleMP.a -LOAD ./libfmod-3.75.so -LOAD vgui.so -LOAD libSDL2-2.0.so.0 -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/32/libstdc++.so -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/libdl.so -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/libpthread.so -START GROUP -LOAD /lib/i386-linux-gnu/libpthread.so.0 -LOAD /usr/lib/i386-linux-gnu/libpthread_nonshared.a -END GROUP -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/32/libgcc.a -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/32/libgcc_s.so -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/libc.so -START GROUP -LOAD /lib/i386-linux-gnu/libc.so.6 -LOAD /usr/lib/i386-linux-gnu/libc_nonshared.a -LOAD /lib/i386-linux-gnu/ld-linux.so.2 -END GROUP -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/32/libgcc.a -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/32/libgcc_s.so -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtendS.o -LOAD /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crtn.o - 0x0000000000000114 . = (0x0 + SIZEOF_HEADERS) - -.note.gnu.build-id - 0x0000000000000114 0x24 - *(.note.gnu.build-id) - .note.gnu.build-id - 0x0000000000000114 0x24 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - -.hash - *(.hash) - -.gnu.hash 0x0000000000000138 0xaee0 - *(.gnu.hash) - .gnu.hash 0x0000000000000138 0xaee0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - -.dynsym 0x000000000000b018 0x19ae0 - *(.dynsym) - .dynsym 0x000000000000b018 0x19ae0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - -.dynstr 0x0000000000024af8 0x3617d - *(.dynstr) - .dynstr 0x0000000000024af8 0x3617d /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - -.gnu.version 0x000000000005ac76 0x335c - *(.gnu.version) - .gnu.version 0x000000000005ac76 0x335c /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - -.gnu.version_d 0x000000000005dfd4 0x0 - *(.gnu.version_d) - .gnu.version_d - 0x0000000000000000 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - -.gnu.version_r 0x000000000005dfd4 0x140 - *(.gnu.version_r) - .gnu.version_r - 0x000000000005dfd4 0x140 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - -.rel.dyn 0x000000000005e114 0x704b8 - *(.rel.init) - .rel.init 0x0000000000000000 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*) - .rel.text 0x000000000005e114 0x3e420 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CBaseEntity8IsMovingEv - 0x000000000009c534 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CBaseEntity6TeamIDEv - 0x000000000009c54c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CBaseEntity6CenterEv - 0x000000000009c554 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CBaseEntity12IlluminationEv - 0x000000000009c56c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK17CBasePlayerWeapon13GetDeployTimeEv - 0x000000000009c574 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CBaseEntity9HasTargetEj - 0x000000000009c57c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text.startup - 0x000000000009c58c 0x90e0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CBasePlayer10BodyTargetERK6Vector - 0x00000000000a566c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CBasePlayer13StartSneakingEv - 0x00000000000a5674 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CBasePlayer12StopSneakingEv - 0x00000000000a567c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CBasePlayer10IsSneakingEv - 0x00000000000a568c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN9AvHChargeD2Ev - 0x00000000000a5694 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN7AvHLeapD2Ev - 0x00000000000a56a4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11AvHBlinkGunD2Ev - 0x00000000000a56b4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8AvHStompD2Ev - 0x00000000000a56c4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN9AvHDevourD2Ev - 0x00000000000a56d4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13AvHMetabolizeD2Ev - 0x00000000000a56e4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN15AvHHealingSprayD2Ev - 0x00000000000a56f4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN16AvHAcidRocketGunD2Ev - 0x00000000000a5704 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14AvHBileBombGunD2Ev - 0x00000000000a5714 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13AvHDivineWindD2Ev - 0x00000000000a5724 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11AvHUmbraGunD2Ev - 0x00000000000a5734 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14AvHParasiteGunD2Ev - 0x00000000000a5744 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN15AvHPrimalScreamD2Ev - 0x00000000000a5754 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13AvHWebSpinnerD2Ev - 0x00000000000a5764 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8AvHSwipeD2Ev - 0x00000000000a5774 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11AvHSpikeGunD2Ev - 0x00000000000a5784 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN7AvHBiteD2Ev - 0x00000000000a5794 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8AvHBite2D2Ev - 0x00000000000a57a4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8AvHSporeD2Ev - 0x00000000000a57b4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8AvHClawsD2Ev - 0x00000000000a57c4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10AvHSpitGunD2Ev - 0x00000000000a57d4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN7AvHMineD2Ev - 0x00000000000a57e4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN9AvHWelderD2Ev - 0x00000000000a57f4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10AvHGrenadeD2Ev - 0x00000000000a5804 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13AvHGrenadeGunD2Ev - 0x00000000000a5814 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18AvHHeavyMachineGunD2Ev - 0x00000000000a5824 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11AvHSonicGunD2Ev - 0x00000000000a5834 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN9AvHPistolD2Ev - 0x00000000000a5844 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13AvHMachineGunD2Ev - 0x00000000000a5854 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8AvHKnifeD2Ev - 0x00000000000a5864 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorIiSaIiEED2Ev - 0x00000000000a5874 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi - 0x00000000000a587c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8CHudBaseD2Ev - 0x00000000000a58a4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8CHudAmmoD2Ev - 0x00000000000a58ac 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8CHudBaseD0Ev - 0x00000000000a58b4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8CHudAmmoD0Ev - 0x00000000000a58c4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14IBaseInterfaceD2Ev - 0x00000000000a58d4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14CClientExports17GetServerHostNameEv - 0x00000000000a58dc 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18IGameClientExportsD2Ev - 0x00000000000a58e4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14CClientExportsD2Ev - 0x00000000000a58ec 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14IBaseInterfaceD0Ev - 0x00000000000a58f4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18IGameClientExportsD0Ev - 0x00000000000a5904 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14CClientExportsD0Ev - 0x00000000000a5914 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14CClientExports22IsPlayerGameVoiceMutedEi - 0x00000000000a5924 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14CClientExports19MutePlayerGameVoiceEi - 0x00000000000a593c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14CClientExports21UnmutePlayerGameVoiceEi - 0x00000000000a5954 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN17CHudAmmoSecondaryD2Ev - 0x00000000000a596c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN17CHudAmmoSecondaryD0Ev - 0x00000000000a5974 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CHudBatteryD2Ev - 0x00000000000a5984 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CHudBatteryD0Ev - 0x00000000000a598c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN15CHudDeathNoticeD2Ev - 0x00000000000a599c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN15CHudDeathNoticeD0Ev - 0x00000000000a59a4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14CHudFlashlightD2Ev - 0x00000000000a59b4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14CHudFlashlightD0Ev - 0x00000000000a59bc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN24CGameStudioModelRendererD2Ev - 0x00000000000a59cc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN24CGameStudioModelRendererD0Ev - 0x00000000000a59dc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10CHudGeigerD2Ev - 0x00000000000a59f4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10CHudGeigerD0Ev - 0x00000000000a59fc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18IVoiceStatusHelperD2Ev - 0x00000000000a5a0c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN20CHLVoiceStatusHelper20CanShowSpeakerLabelsEv - 0x00000000000a5a14 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN20CHLVoiceStatusHelperD2Ev - 0x00000000000a5a1c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18IVoiceStatusHelperD0Ev - 0x00000000000a5a24 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN20CHLVoiceStatusHelperD0Ev - 0x00000000000a5a34 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN20CHLVoiceStatusHelper17UpdateCursorStateEv - 0x00000000000a5a44 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN20CHLVoiceStatusHelper16GetAckIconHeightEv - 0x00000000000a5a54 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN20CHLVoiceStatusHelper18GetPlayerTextColorEiPi - 0x00000000000a5a64 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13CHudSpectatorD2Ev - 0x00000000000a5a84 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13CHudSpectatorD0Ev - 0x00000000000a5a8c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISt4pairIiSsESaIS1_EED2Ev - 0x00000000000a5a9c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISt4pairIiSsESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000000a5acc 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8CHudMenuD2Ev - 0x00000000000a5b54 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8CHudMenuD0Ev - 0x00000000000a5b5c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11ColorButton15paintBackgroundEv - 0x00000000000a5b6c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN25CSpectatorHandler_Command15actionPerformedEPN4vgui5PanelE - 0x00000000000a5b7c 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN28Spectator_CheckButtonHandler12StateChangedEPN4vgui13CCheckButton2E - 0x00000000000a5bcc 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11ColorButton5paintEv - 0x00000000000a5c2c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10TeamButton10IsNotValidEv - 0x00000000000a5c3c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14SpectateButton10IsNotValidEv - 0x00000000000a5c4c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN21TeamOnlyCommandButton10IsNotValidEv - 0x00000000000a5c54 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN9MapButton10IsNotValidEv - 0x00000000000a5c5c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN31CHandler_CommandButtonHighlight13cursorEnteredEPN4vgui5PanelE - 0x00000000000a5c6c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN19ToggleCommandButton13cursorEnteredEPN4vgui5PanelE - 0x00000000000a5c74 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN17SpectToggleButton13cursorEnteredEPN4vgui5PanelE - 0x00000000000a5c7c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN31CHandler_CommandButtonHighlight12cursorExitedEPN4vgui5PanelE - 0x00000000000a5c84 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN19ToggleCommandButton12cursorExitedEPN4vgui5PanelE - 0x00000000000a5c8c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN17SpectToggleButton12cursorExitedEPN4vgui5PanelE - 0x00000000000a5c94 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN19ToggleCommandButton5paintEv - 0x00000000000a5c9c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN21CViewPortInputHandler12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000000a5cac 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14DisguiseButton10IsNotValidEv - 0x00000000000a5cbc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11FeignButton10IsNotValidEv - 0x00000000000a5ccc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13DetpackButton10IsNotValidEv - 0x00000000000a5cdc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11BuildButton10IsNotValidEv - 0x00000000000a5cec 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN30CMenuHandler_PopupSubMenuInput13cursorEnteredEPN4vgui5PanelE - 0x00000000000a5cfc 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN23CMenuHandler_ToggleCvar15actionPerformedEPN4vgui5PanelE - 0x00000000000a5d04 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN26CMenuHandler_StringCommand15actionPerformedEPN4vgui5PanelE - 0x00000000000a5d14 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN31CMenuHandler_StringCommandWatch15actionPerformedEPN4vgui5PanelE - 0x00000000000a5d64 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11SpectButton5paintEv - 0x00000000000a5dec 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN21TeamOnlyCommandButton5paintEv - 0x00000000000a5dfc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN17SpectToggleButton5paintEv - 0x00000000000a5e0c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12PlayerButton5paintEv - 0x00000000000a5e1c 0x90 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN23CMenuHandler_TextWindow15actionPerformedEPN4vgui5PanelE - 0x00000000000a5eac 0xc8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10CMenuPanel4OpenEv - 0x00000000000a5f74 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10CMenuPanel5CloseEv - 0x00000000000a5f7c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CHudMessageD2Ev - 0x00000000000a5f84 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CHudMessageD0Ev - 0x00000000000a5f8c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CHudSayTextD2Ev - 0x00000000000a5f9c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CHudSayTextD0Ev - 0x00000000000a5fa4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN15CHudStatusIconsD2Ev - 0x00000000000a5fb4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN15CHudStatusIconsD0Ev - 0x00000000000a5fbc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13CHudStatusBarD2Ev - 0x00000000000a5fcc 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13CHudStatusBarD0Ev - 0x00000000000a5fd4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN15CHudTextMessageD2Ev - 0x00000000000a5fe4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN15CHudTextMessageD0Ev - 0x00000000000a5fec 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs - 0x00000000000a5ffc 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN9CHudTrainD2Ev - 0x00000000000a6084 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN9CHudTrainD0Ev - 0x00000000000a608c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CTextImage26setPosEii - 0x00000000000a609c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11CTextImage28setColorEN4vgui5ColorE - 0x00000000000a60a4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12CLabelHeader7setTextEiPKc - 0x00000000000a60b4 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12CLabelHeader10setFgColorEiiii - 0x00000000000a60d4 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12CLabelHeader10setFgColorEN4vgui6Scheme11SchemeColorE - 0x00000000000a6104 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12CLabelHeader7setTextEPKc - 0x00000000000a6114 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISt4pairIPN4vgui9BitmapTGAESsESaIS4_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS4_S6_EERKS4_ - 0x00000000000a614c 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN21LabelSortInputHandler12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000000a61d4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN21LabelSortInputHandler18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000000a61dc 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10CHudHealthD2Ev - 0x00000000000a61e4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10CHudHealthD0Ev - 0x00000000000a61ec 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11StaticLabel7setSizeEii - 0x00000000000a61fc 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIiSt4pairIKi9MapEntityESt10_Select1stIS3_ESt4lessIiESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x00000000000a6204 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIiSt4pairIKi9MapEntityESt10_Select1stIS3_ESt4lessIiESaIS3_EE7_M_copyEPKSt13_Rb_tree_nodeIS3_EPSB_ - 0x00000000000a6254 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIiSt4pairIKi9MapEntityESt10_Select1stIS3_ESt4lessIiESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x00000000000a6274 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI9LightTypeSaIS0_EED2Ev - 0x00000000000a62a4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18AvHSelectionHelperD2Ev - 0x00000000000a62ac 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN23AvHCommanderModeHandlerD2Ev - 0x00000000000a62d4 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorIiSaIiEEaSERKS1_ - 0x00000000000a6314 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeI12AvHMessageIDSt4pairIKS0_iESt10_Select1stIS3_ESt4lessIS0_ESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x00000000000a634c 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIiSt4pairIKiS0_IifEESt10_Select1stIS3_ESt4lessIiESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x00000000000a639c 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIiSt4pairIKiiESt10_Select1stIS2_ESt4lessIiESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x00000000000a63ec 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x00000000000a643c 0x138 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI19NumericalInfoEffectSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a6574 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10AvHTooltipC2ERKS_ - 0x00000000000a6584 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZSt6__findIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEESsET_S7_S7_RKT0_St26random_access_iterator_tag - 0x00000000000a65b4 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI15SelectionEffectSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a65ec 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI15AvHAmbientSoundSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a65fc 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIiSt4pairIKiS0_IifEESt10_Select1stIS3_ESt4lessIiESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x00000000000a6684 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI19AvHBaseInfoLocationSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a66b4 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorIN6AvHHud19HUDNotificationTypeESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000000a673c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI11AvHHiveInfoSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a674c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISt4pairI6VectoriESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - 0x00000000000a6774 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISsSaISsEEaSERKS1_ - 0x00000000000a6784 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI10AvHTooltipSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a680c 0xf8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeI12AvHMessageIDSt4pairIKS0_iESt10_Select1stIS3_ESt4lessIS0_ESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x00000000000a6904 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE24_M_get_insert_unique_posERS1_ - 0x00000000000a6934 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_ - 0x00000000000a694c 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text.unlikely - 0x00000000000a69ac 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIiSt4pairIKiiESt10_Select1stIS2_ESt4lessIiESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_ - 0x00000000000a69c4 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN20AvHUILogoutComponentD2Ev - 0x00000000000a69f4 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN20AvHUILogoutComponentD0Ev - 0x00000000000a6a2c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI23AvHAlienUpgradeCategorySaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a6a6c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI8AvHOrderSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a6a94 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN22AvHOverviewInputSignal12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000000a6aa4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN22AvHOverviewInputSignal18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000000a6aac 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorIN14AvHOverviewMap8MapAlertESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000000a6ab4 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI14DrawableEntitySaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a6adc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorIN14AvHOverviewMap8MapOrderESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000000a6aec 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIP14DrawableEntitySt6vectorIS2_SaIS2_EEEE16DrawingOrderSortEvT_S9_T0_ - 0x00000000000a6b14 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN21AvHGenVelShapeHandlerD2Ev - 0x00000000000a6b1c 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN32AvHParticleSystemLifetimeHandlerD2Ev - 0x00000000000a6b54 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18AvHDrawModeHandlerD2Ev - 0x00000000000a6b8c 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN24AvHGenerationRateHandlerD2Ev - 0x00000000000a6bc4 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN15AvHScaleHandlerD2Ev - 0x00000000000a6bfc 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN22AvHGenVelParamsHandlerD2Ev - 0x00000000000a6c34 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN24AvHGenVelParamNumHandlerD2Ev - 0x00000000000a6c6c 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14AvHSizeHandlerD2Ev - 0x00000000000a6ca4 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN26AvHParticleLifetimeHandlerD2Ev - 0x00000000000a6cdc 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN22AvHGenVelToggleHandlerD2Ev - 0x00000000000a6d14 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN22AvHMaxParticlesHandlerD2Ev - 0x00000000000a6d4c 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISt4pairISsfESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000000a6d84 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISt4pairISsfESaIS1_EEaSERKS3_ - 0x00000000000a6e0c 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI17AvHScriptInstanceSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a6e94 0x200 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN16AvHUIScrollPanelD2Ev - 0x00000000000a7094 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN16AvHUIScrollPanelD0Ev - 0x00000000000a70bc 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIiSt4pairIKi21AvHPlayerMovementInfoESt10_Select1stIS3_ESt4lessIiESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x00000000000a70ec 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI8AvHUser3SaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a711c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISt4pairIi6VectorESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - 0x00000000000a7144 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN21AvHUITechImpulsePanelD2Ev - 0x00000000000a7154 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN21AvHUITechImpulsePanelD0Ev - 0x00000000000a717c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13FakeTextImage7setFontEN4vgui6Scheme10SchemeFontE - 0x00000000000a71ac 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13FakeTextImage7setFontEPN4vgui4FontE - 0x00000000000a71b4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI12AvHTechSlotsSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a71bc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeI12AvHMessageIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE8_M_eraseEPSt13_Rb_tree_nodeIS5_E - 0x00000000000a71cc 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeI9AvHTechIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE8_M_eraseEPSt13_Rb_tree_nodeIS5_E - 0x00000000000a721c 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorIPK11AvHTechNodeSaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - 0x00000000000a726c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI12AvHMessageIDSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a7294 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeI12AvHMessageIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS5_ERKS5_ - 0x00000000000a72bc 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeI12AvHMessageIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE7_M_copyEPKSt13_Rb_tree_nodeIS5_EPSD_ - 0x00000000000a72ec 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeI9AvHTechIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE7_M_copyEPKSt13_Rb_tree_nodeIS5_EPSD_ - 0x00000000000a730c 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeI9AvHTechIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS5_ERKS5_ - 0x00000000000a732c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13CollisionTestD2Ev - 0x00000000000a735c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN17AABBCollisionTestD2Ev - 0x00000000000a7364 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN16OBBCollisionTestD2Ev - 0x00000000000a7374 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN21CylinderCollisionTestD2Ev - 0x00000000000a7384 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18PointCollisionTestD2Ev - 0x00000000000a7394 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13CollisionTestD0Ev - 0x00000000000a739c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN17AABBCollisionTestD0Ev - 0x00000000000a73ac 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN16OBBCollisionTestD0Ev - 0x00000000000a73c4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN21CylinderCollisionTestD0Ev - 0x00000000000a73dc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18PointCollisionTestD0Ev - 0x00000000000a73f4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK18PointCollisionTest5ShiftERA3_Kf - 0x00000000000a7404 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK17AABBCollisionTest5ShiftERA3_Kf - 0x00000000000a7414 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK21CylinderCollisionTest5ShiftERA3_Kf - 0x00000000000a742c 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK21CylinderCollisionTest14RotateAndShiftERA3_KfS2_S2_S2_ - 0x00000000000a744c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK16OBBCollisionTest5ShiftERA3_Kf - 0x00000000000a7474 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK16OBBCollisionTest14RotateAndShiftERA3_KfS2_S2_S2_ - 0x00000000000a748c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK17AABBCollisionTest14RotateAndShiftERA3_KfS2_S2_S2_ - 0x00000000000a74bc 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK21CylinderCollisionTest25GetPlanarIntersectionTypeEPK8mplane_s - 0x00000000000a74e4 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIiSt4pairIKi19AvHParticleTemplateESt10_Select1stIS3_ESt4lessIiESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x00000000000a751c 0x78 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN29AvHParticleTemplateListClientD2Ev - 0x00000000000a7594 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI20QueuedParticleSystemSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a75a4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI17AvHParticleSystemSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a75b4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZSteqIcEN9__gnu_cxx11__enable_ifIXsrSt9__is_charIT_E7__valueEbE6__typeERKSbIS3_St11char_traitsIS3_ESaIS3_EESC_ - 0x00000000000a75c4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIiSt4pairIKi19AvHParticleTemplateESt10_Select1stIS3_ESt4lessIiESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x00000000000a75cc 0x58 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt3mapIi19AvHParticleTemplateSt4lessIiESaISt4pairIKiS0_EEEixERS4_ - 0x00000000000a7624 0x128 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN19CVoiceTweakOKButton15actionPerformedEPN4vgui5PanelE - 0x00000000000a774c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10CGlockAmmo8PrecacheEv - 0x00000000000a775c 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10CGlockAmmo5SpawnEv - 0x00000000000a777c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN10CGlockAmmo7AddAmmoEP11CBaseEntity - 0x00000000000a7794 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorIPN4vgui9BitmapTGAESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - 0x00000000000a77ac 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISt4pairISsSsESaIS1_EEaSERKS3_ - 0x00000000000a77d4 0xe8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN7UIPanelD2Ev - 0x00000000000a78bc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN7UIPanelD0Ev - 0x00000000000a78d4 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN7UILabelD2Ev - 0x00000000000a78f4 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13UIProgressBarD2Ev - 0x00000000000a791c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14UIConfigWizardD2Ev - 0x00000000000a7944 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12UITreeFolderD2Ev - 0x00000000000a796c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN6UIMenuD2Ev - 0x00000000000a7994 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12UIImagePanelD2Ev - 0x00000000000a79bc 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18UIMarqueeComponentD2Ev - 0x00000000000a79e4 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14UIColoredPanelD2Ev - 0x00000000000a7a0c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN16UIInvisiblePanelD2Ev - 0x00000000000a7a34 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8UISliderD2Ev - 0x00000000000a7a5c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN9UISlider2D2Ev - 0x00000000000a7a84 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12UISliderPlusD2Ev - 0x00000000000a7aac 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12UIDummyPanelD2Ev - 0x00000000000a7ad4 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18UIFadingImageLabelD2Ev - 0x00000000000a7afc 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13UIProgressBarD0Ev - 0x00000000000a7b1c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN7UILabelD0Ev - 0x00000000000a7b4c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12UIDummyPanelD0Ev - 0x00000000000a7b7c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN16UIInvisiblePanelD0Ev - 0x00000000000a7bac 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14UIConfigWizardD0Ev - 0x00000000000a7bdc 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12UIImagePanelD0Ev - 0x00000000000a7c0c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12UITreeFolderD0Ev - 0x00000000000a7c3c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN14UIColoredPanelD0Ev - 0x00000000000a7c6c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8UISliderD0Ev - 0x00000000000a7c9c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN6UIMenuD0Ev - 0x00000000000a7ccc 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12UISliderPlusD0Ev - 0x00000000000a7cfc 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN9UISlider2D0Ev - 0x00000000000a7d2c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18UIMarqueeComponentD0Ev - 0x00000000000a7d5c 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12UIImageLabelD2Ev - 0x00000000000a7d8c 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13UIStaticLabelD2Ev - 0x00000000000a7dc4 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11UIPopupMenuD2Ev - 0x00000000000a7dfc 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8UIButtonD2Ev - 0x00000000000a7e34 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18UIFadingImageLabelD0Ev - 0x00000000000a7e6c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13UIStaticLabelD0Ev - 0x00000000000a7e94 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN12UIImageLabelD0Ev - 0x00000000000a7ed4 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN11UIPopupMenuD0Ev - 0x00000000000a7f14 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8UIButtonD0Ev - 0x00000000000a7f54 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13UISpritePanelD2Ev - 0x00000000000a7f94 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13UISpritePanelD0Ev - 0x00000000000a801c 0x90 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN13UIStaticLabelC2Ev - 0x00000000000a80ac 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorIP11UIComponentSaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000000a80fc 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI13TRDescriptionSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a8124 0x210 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18NullValueContainerD2Ev - 0x00000000000a8334 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK18NullValueContainer11getFloatMapEv - 0x00000000000a833c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK18NullValueContainer9getIntMapEv - 0x00000000000a8344 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK18NullValueContainer12getStringMapEv - 0x00000000000a834c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN18NullValueContainerD0Ev - 0x00000000000a8354 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK18NullValueContainereqERK21BalanceValueContainer - 0x00000000000a8364 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNK18NullValueContainer3getERKSsS1_ - 0x00000000000a837c 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsP21BalanceValueContainerESt10_Select1stIS4_ESt4lessISsESaIS4_EE8_M_eraseEPSt13_Rb_tree_nodeIS4_E - 0x00000000000a8384 0x148 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIjSt4pairIKjPK21BalanceChangeListenerESt10_Select1stIS5_ESt4lessIjESaIS5_EE8_M_eraseEPSt13_Rb_tree_nodeIS5_E - 0x00000000000a84cc 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIjSt4pairIKjPK21BalanceChangeListenerESt10_Select1stIS5_ESt4lessIjESaIS5_EE5eraseERS1_ - 0x00000000000a851c 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIjSt4pairIKjPK21BalanceChangeListenerESt10_Select1stIS5_ESt4lessIjESaIS5_EE16_M_insert_uniqueERKS5_ - 0x00000000000a853c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsfESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x00000000000a8554 0x148 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt3mapISsfSt4lessISsESaISt4pairIKSsfEEED2Ev - 0x00000000000a869c 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt3mapISsiSt4lessISsESaISt4pairIKSsiEEED2Ev - 0x00000000000a86e4 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x00000000000a872c 0x228 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEED2Ev - 0x00000000000a8954 0x68 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIjjSt9_IdentityIjESt4lessIjESaIjEE8_M_eraseEPSt13_Rb_tree_nodeIjE - 0x00000000000a89bc 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsPSt3setIjSt4lessIjESaIjEEESt10_Select1stIS8_ES3_ISsESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E - 0x00000000000a8a0c 0x148 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIPK21BalanceChangeListenerS2_St9_IdentityIS2_E19BalanceListenerSortSaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x00000000000a8b54 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE4findERS1_ - 0x00000000000a8ba4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsfESt10_Select1stIS2_ESt4lessISsESaIS2_EE4findERS1_ - 0x00000000000a8bb4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE4findERS1_ - 0x00000000000a8bc4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsPSt3setIjSt4lessIjESaIjEEESt10_Select1stIS8_ES3_ISsESaIS8_EE4findERS1_ - 0x00000000000a8bd4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIjjSt9_IdentityIjESt4lessIjESaIjEE5eraseERKj - 0x00000000000a8be4 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeIPK21BalanceChangeListenerS2_St9_IdentityIS2_E19BalanceListenerSortSaIS2_EE16_M_insert_uniqueERKS2_ - 0x00000000000a8c04 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsP21BalanceValueContainerESt10_Select1stIS4_ESt4lessISsESaIS4_EE24_M_get_insert_unique_posERS1_ - 0x00000000000a8c1c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsP21BalanceValueContainerESt10_Select1stIS4_ESt4lessISsESaIS4_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS4_ERKS4_ - 0x00000000000a8c34 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsfESt10_Select1stIS2_ESt4lessISsESaIS2_EE24_M_get_insert_unique_posERS1_ - 0x00000000000a8c94 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsfESt10_Select1stIS2_ESt4lessISsESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_ - 0x00000000000a8cac 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE24_M_get_insert_unique_posERS1_ - 0x00000000000a8d0c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_ - 0x00000000000a8d24 0x68 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsPSt3setIjSt4lessIjESaIjEEESt10_Select1stIS8_ES3_ISsESaIS8_EE24_M_get_insert_unique_posERS1_ - 0x00000000000a8d8c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt8_Rb_treeISsSt4pairIKSsPSt3setIjSt4lessIjESaIjEEESt10_Select1stIS8_ES3_ISsESaIS8_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS8_ERKS8_ - 0x00000000000a8da4 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8ChecksumD2Ev - 0x00000000000a8e04 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZN8ChecksumD0Ev - 0x00000000000a8e3c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI13ChecksumEntrySaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a8e7c 0x88 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorI7CStringSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000000a8f04 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.text._ZNSt6vectorISt4pairISsSsESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000000a8f3c 0xf8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *(.rel.fini) - .rel.fini 0x0000000000000000 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*) - .rel.rodata._ZTI11CBaseEntity - 0x00000000000a9034 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10CBaseDelay - 0x00000000000a9044 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14CBaseAnimating - 0x00000000000a905c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11CBaseToggle - 0x00000000000a9074 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12CBaseMonster - 0x00000000000a908c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8CGrenade - 0x00000000000a90a4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15CBasePlayerItem - 0x00000000000a90bc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI17CBasePlayerWeapon - 0x00000000000a90d4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15CBasePlayerAmmo - 0x00000000000a90ec 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11CBaseEntity - 0x00000000000a9104 0x1f8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10CBaseDelay - 0x00000000000a92fc 0x1f8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14CBaseAnimating - 0x00000000000a94f4 0x208 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11CBaseToggle - 0x00000000000a96fc 0x210 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8CGrenade - 0x00000000000a990c 0x2a8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12CBaseMonster - 0x00000000000a9bb4 0x2a0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV17CBasePlayerWeapon - 0x00000000000a9e54 0x350 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15CBasePlayerItem - 0x00000000000aa1a4 0x2b0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15CBasePlayerAmmo - 0x00000000000aa454 0x200 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata 0x00000000000aa654 0x3d20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11CBasePlayer - 0x00000000000ae374 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI21AvHAlienAbilityWeapon - 0x00000000000ae38c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV21AvHAlienAbilityWeapon - 0x00000000000ae3a4 0x518 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11CBasePlayer - 0x00000000000ae8bc 0x370 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8CHudBase - 0x00000000000aec2c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8CHudAmmo - 0x00000000000aec3c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8CHudBase - 0x00000000000aec54 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8CHudAmmo - 0x00000000000aec9c 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14IBaseInterface - 0x00000000000aece4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18IGameClientExports - 0x00000000000aecf4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14CClientExports - 0x00000000000aed0c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14IBaseInterface - 0x00000000000aed24 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18IGameClientExports - 0x00000000000aed3c 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14CClientExports - 0x00000000000aed74 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI17CHudAmmoSecondary - 0x00000000000aedac 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV17CHudAmmoSecondary - 0x00000000000aedc4 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11CHudBattery - 0x00000000000aee0c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11CHudBattery - 0x00000000000aee24 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15CHudDeathNotice - 0x00000000000aee6c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15CHudDeathNotice - 0x00000000000aee84 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14CHudFlashlight - 0x00000000000aeecc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14CHudFlashlight - 0x00000000000aeee4 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI24CGameStudioModelRenderer - 0x00000000000aef2c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV24CGameStudioModelRenderer - 0x00000000000aef44 0xd8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10CHudGeiger - 0x00000000000af01c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10CHudGeiger - 0x00000000000af034 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18IVoiceStatusHelper - 0x00000000000af07c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI20CHLVoiceStatusHelper - 0x00000000000af08c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18IVoiceStatusHelper - 0x00000000000af0a4 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV20CHLVoiceStatusHelper - 0x00000000000af0dc 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13CHudSpectator - 0x00000000000af114 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13CHudSpectator - 0x00000000000af12c 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8CHudMenu - 0x00000000000af174 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8CHudMenu - 0x00000000000af18c 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui20ICheckButton2HandlerE - 0x00000000000af1d4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui12ActionSignalE - 0x00000000000af1e4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11ColorButton - 0x00000000000af1f4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI17CTransparentPanel - 0x00000000000af20c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14SpectatorPanel - 0x00000000000af224 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI25CSpectatorHandler_Command - 0x00000000000af23c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI28Spectator_CheckButtonHandler - 0x00000000000af254 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui20ICheckButton2HandlerE - 0x00000000000af26c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui12ActionSignalE - 0x00000000000af27c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11ColorButton - 0x00000000000af28c 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV17CTransparentPanel - 0x00000000000af764 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV25CSpectatorHandler_Command - 0x00000000000afb64 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV28Spectator_CheckButtonHandler - 0x00000000000afb74 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14SpectatorPanel - 0x00000000000afb84 0x410 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZN23CMenuHandler_TextWindow15actionPerformedEPN4vgui5PanelE - 0x00000000000aff94 0x50 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui11InputSignalE - 0x00000000000affe4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11SpectButton - 0x00000000000afff4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI20TeamFortressViewport - 0x00000000000b000c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI26CMenuHandler_StringCommand - 0x00000000000b0024 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI31CMenuHandler_StringCommandWatch - 0x00000000000b003c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI30CMenuHandler_PopupSubMenuInput - 0x00000000000b0054 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI23CMenuHandler_TextWindow - 0x00000000000b006c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI23CMenuHandler_ToggleCvar - 0x00000000000b0084 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI17CDragNDropHandler - 0x00000000000b009c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI24CHandler_ButtonHighlight - 0x00000000000b00b4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI31CHandler_CommandButtonHighlight - 0x00000000000b00cc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10TeamButton - 0x00000000000b00e4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11FeignButton - 0x00000000000b00fc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14SpectateButton - 0x00000000000b0114 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14DisguiseButton - 0x00000000000b012c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13DetpackButton - 0x00000000000b0144 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11BuildButton - 0x00000000000b015c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9MapButton - 0x00000000000b0174 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI21TeamOnlyCommandButton - 0x00000000000b018c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI19ToggleCommandButton - 0x00000000000b01a4 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI17SpectToggleButton - 0x00000000000b01c4 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12PlayerButton - 0x00000000000b01e4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI21CViewPortInputHandler - 0x00000000000b01fc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui11InputSignalE - 0x00000000000b0214 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11SpectButton - 0x00000000000b0274 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV26CMenuHandler_StringCommand - 0x00000000000b074c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV31CMenuHandler_StringCommandWatch - 0x00000000000b075c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV30CMenuHandler_PopupSubMenuInput - 0x00000000000b076c 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV23CMenuHandler_TextWindow - 0x00000000000b07cc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV23CMenuHandler_ToggleCvar - 0x00000000000b07dc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV24CHandler_ButtonHighlight - 0x00000000000b07ec 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV31CHandler_CommandButtonHighlight - 0x00000000000b084c 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10TeamButton - 0x00000000000b08ac 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11FeignButton - 0x00000000000b0d84 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14SpectateButton - 0x00000000000b125c 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14DisguiseButton - 0x00000000000b1734 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13DetpackButton - 0x00000000000b1c0c 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11BuildButton - 0x00000000000b20e4 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9MapButton - 0x00000000000b25bc 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV21TeamOnlyCommandButton - 0x00000000000b2a94 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV19ToggleCommandButton - 0x00000000000b2f6c 0x590 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV17SpectToggleButton - 0x00000000000b34fc 0x590 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12PlayerButton - 0x00000000000b3a8c 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV21CViewPortInputHandler - 0x00000000000b3f64 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV20TeamFortressViewport - 0x00000000000b3fc4 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV17CDragNDropHandler - 0x00000000000b43c4 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10CMenuPanel - 0x00000000000b4424 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14CTeamMenuPanel - 0x00000000000b443c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10CMenuPanel - 0x00000000000b4454 0x428 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14CTeamMenuPanel - 0x00000000000b487c 0x438 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11CHudMessage - 0x00000000000b4cb4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11CHudMessage - 0x00000000000b4ccc 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11CHudSayText - 0x00000000000b4d14 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11CHudSayText - 0x00000000000b4d2c 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15CHudStatusIcons - 0x00000000000b4d74 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15CHudStatusIcons - 0x00000000000b4d8c 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13CHudStatusBar - 0x00000000000b4dd4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13CHudStatusBar - 0x00000000000b4dec 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI20CStudioModelRenderer - 0x00000000000b4e34 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV20CStudioModelRenderer - 0x00000000000b4e44 0xd8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15CHudTextMessage - 0x00000000000b4f1c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15CHudTextMessage - 0x00000000000b4f34 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9CHudTrain - 0x00000000000b4f7c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9CHudTrain - 0x00000000000b4f94 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI19CMessageWindowPanel - 0x00000000000b4fdc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV19CMessageWindowPanel - 0x00000000000b4ff4 0x428 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14CSchemeManager - 0x00000000000b541c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14CSchemeManager - 0x00000000000b542c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui19CDefaultInputSignalE - 0x00000000000b5444 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11CTextImage2 - 0x00000000000b545c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12CLabelHeader - 0x00000000000b5474 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN10ScorePanel12HitTestPanelE - 0x00000000000b548c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10ScorePanel - 0x00000000000b54a4 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui19CDefaultInputSignalE - 0x00000000000b54c4 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11CTextImage2 - 0x00000000000b5524 0xc8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN10ScorePanel12HitTestPanelE - 0x00000000000b55ec 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10ScorePanel - 0x00000000000b59ec 0x470 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12CLabelHeader - 0x00000000000b5e5c 0x468 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15CClassMenuPanel - 0x00000000000b62c4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15CClassMenuPanel - 0x00000000000b62dc 0x438 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12ConsolePanel - 0x00000000000b6714 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12ConsolePanel - 0x00000000000b672c 0x420 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18ControlConfigPanel - 0x00000000000b6b4c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18ControlConfigPanel - 0x00000000000b6b64 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11CImageLabel - 0x00000000000b6f64 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13CommandButton - 0x00000000000b6f7c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12CCommandMenu - 0x00000000000b6f94 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI37CMenuHandler_StringCommandClassSelect - 0x00000000000b6fac 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI23CHandler_MenuButtonOver - 0x00000000000b6fc4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11ClassButton - 0x00000000000b6fdc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15CTFScrollButton - 0x00000000000b6ff4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9CTFSlider - 0x00000000000b700c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14CTFScrollPanel - 0x00000000000b7024 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14CTFScrollPanel - 0x00000000000b703c 0x458 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13CommandButton - 0x00000000000b7494 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11ClassButton - 0x00000000000b796c 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11CImageLabel - 0x00000000000b7e44 0x470 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12CCommandMenu - 0x00000000000b82b4 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15CTFScrollButton - 0x00000000000b86b4 0x4d8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9CTFSlider - 0x00000000000b8b8c 0x488 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV23CHandler_MenuButtonOver - 0x00000000000b9014 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV37CMenuHandler_StringCommandClassSelect - 0x00000000000b9074 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13ServerBrowser - 0x00000000000b9084 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI21LabelSortInputHandler - 0x00000000000b909c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8CSBLabel - 0x00000000000b90b4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV21LabelSortInputHandler - 0x00000000000b90cc 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8CSBLabel - 0x00000000000b912c 0x460 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13ServerBrowser - 0x00000000000b958c 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10CHudHealth - 0x00000000000b998c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10CHudHealth - 0x00000000000b99a4 0x48 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI16AvHAcidRocketGun - 0x00000000000b99ec 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV16AvHAcidRocketGun - 0x00000000000b9a04 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI7AvHLeap - 0x00000000000b9f14 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9AvHCharge - 0x00000000000b9f2c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV7AvHLeap - 0x00000000000b9f44 0x520 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9AvHCharge - 0x00000000000ba464 0x520 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI19AvHBasePlayerWeapon - 0x00000000000ba984 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV19AvHBasePlayerWeapon - 0x00000000000ba99c 0x4f0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14AvHBileBombGun - 0x00000000000bae8c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14AvHBileBombGun - 0x00000000000baea4 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI7AvHBite - 0x00000000000bb3b4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV7AvHBite - 0x00000000000bb3cc 0x518 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8AvHBite2 - 0x00000000000bb8e4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8AvHBite2 - 0x00000000000bb8fc 0x518 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11AvHBlinkGun - 0x00000000000bbe14 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11AvHBlinkGun - 0x00000000000bbe2c 0x520 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8AvHClaws - 0x00000000000bc34c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8AvHClaws - 0x00000000000bc364 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9AvHDevour - 0x00000000000bc874 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9AvHDevour - 0x00000000000bc88c 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10AvHGrenade - 0x00000000000bcd9c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10AvHGrenade - 0x00000000000bcdb4 0x500 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13AvHDivineWind - 0x00000000000bd2b4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13AvHDivineWind - 0x00000000000bd2cc 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13AvHGrenadeGun - 0x00000000000bd7dc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13AvHGrenadeGun - 0x00000000000bd7f4 0x500 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15AvHHealingSpray - 0x00000000000bdcf4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15AvHHealingSpray - 0x00000000000bdd0c 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18AvHHeavyMachineGun - 0x00000000000be21c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18AvHHeavyMachineGun - 0x00000000000be234 0x500 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8AvHKnife - 0x00000000000be734 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8AvHKnife - 0x00000000000be74c 0x500 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13AvHMachineGun - 0x00000000000bec4c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13AvHMachineGun - 0x00000000000bec64 0x500 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15AvHMarineWeapon - 0x00000000000bf164 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI25AvHReloadableMarineWeapon - 0x00000000000bf17c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15AvHMarineWeapon - 0x00000000000bf194 0x4f8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV25AvHReloadableMarineWeapon - 0x00000000000bf68c 0x538 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13AvHMetabolize - 0x00000000000bfbc4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13AvHMetabolize - 0x00000000000bfbdc 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI7AvHMine - 0x00000000000c00ec 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV7AvHMine - 0x00000000000c0104 0x500 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14AvHParasiteGun - 0x00000000000c0604 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14AvHParasiteGun - 0x00000000000c061c 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9AvHPistol - 0x00000000000c0b2c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9AvHPistol - 0x00000000000c0b44 0x500 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15AvHPrimalScream - 0x00000000000c1044 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15AvHPrimalScream - 0x00000000000c105c 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11AvHSonicGun - 0x00000000000c156c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11AvHSonicGun - 0x00000000000c1584 0x538 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11AvHSpikeGun - 0x00000000000c1abc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11AvHSpikeGun - 0x00000000000c1ad4 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10AvHSpitGun - 0x00000000000c1fe4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10AvHSpitGun - 0x00000000000c1ffc 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8AvHSpore - 0x00000000000c250c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8AvHSpore - 0x00000000000c2524 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8AvHStomp - 0x00000000000c2a34 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8AvHStomp - 0x00000000000c2a4c 0x520 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8AvHSwipe - 0x00000000000c2f6c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8AvHSwipe - 0x00000000000c2f84 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11AvHUmbraGun - 0x00000000000c3494 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11AvHUmbraGun - 0x00000000000c34ac 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13AvHWebSpinner - 0x00000000000c39bc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13AvHWebSpinner - 0x00000000000c39d4 0x510 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9AvHWelder - 0x00000000000c3ee4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9AvHWelder - 0x00000000000c3efc 0x500 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11StaticLabel - 0x00000000000c43fc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12ActionButton - 0x00000000000c4414 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI16AvHActionButtons - 0x00000000000c442c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18AvHUIActionButtons - 0x00000000000c4444 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11StaticLabel - 0x00000000000c445c 0x460 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12ActionButton - 0x00000000000c48bc 0x460 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV16AvHActionButtons - 0x00000000000c4d1c 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18AvHUIActionButtons - 0x00000000000c511c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14AvHAlienWeapon - 0x00000000000c515c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14AvHAlienWeapon - 0x00000000000c5174 0x508 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI23AvHCommanderModeHandler - 0x00000000000c567c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18AvHLogoutComponent - 0x00000000000c5694 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV23AvHCommanderModeHandler - 0x00000000000c56ac 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI6AvHHud - 0x00000000000c570c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV6AvHHud - 0x00000000000c5724 0xf8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI20AvHUILogoutComponent - 0x00000000000c581c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18AvHLogoutComponent - 0x00000000000c5834 0x460 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV20AvHUILogoutComponent - 0x00000000000c5c94 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10AvHMiniMap - 0x00000000000c5cd4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10AvHMiniMap - 0x00000000000c5ce4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18AvHOverviewControl - 0x00000000000c5cfc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI22AvHOverviewInputSignal - 0x00000000000c5d14 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV22AvHOverviewInputSignal - 0x00000000000c5d2c 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18AvHOverviewControl - 0x00000000000c5d8c 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui15IntChangeSignalE - 0x00000000000c618c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI24AvHParticleEditorHandler - 0x00000000000c619c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI16AvHSliderHandler - 0x00000000000c61b4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14AvHSizeHandler - 0x00000000000c61cc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15AvHScaleHandler - 0x00000000000c61e4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI24AvHGenerationRateHandler - 0x00000000000c61fc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI26AvHParticleLifetimeHandler - 0x00000000000c6214 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI32AvHParticleSystemLifetimeHandler - 0x00000000000c622c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI22AvHMaxParticlesHandler - 0x00000000000c6244 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18AvHDrawModeHandler - 0x00000000000c625c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI22AvHGenVelToggleHandler - 0x00000000000c6274 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI21AvHGenVelShapeHandler - 0x00000000000c628c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI24AvHGenVelParamNumHandler - 0x00000000000c62a4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI22AvHGenVelParamsHandler - 0x00000000000c62bc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui15IntChangeSignalE - 0x00000000000c62d4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV24AvHParticleEditorHandler - 0x00000000000c62e4 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV16AvHSliderHandler - 0x00000000000c6344 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14AvHSizeHandler - 0x00000000000c63a4 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15AvHScaleHandler - 0x00000000000c6404 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV24AvHGenerationRateHandler - 0x00000000000c6464 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV26AvHParticleLifetimeHandler - 0x00000000000c64c4 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV32AvHParticleSystemLifetimeHandler - 0x00000000000c6524 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV22AvHMaxParticlesHandler - 0x00000000000c6584 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18AvHDrawModeHandler - 0x00000000000c65e4 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV22AvHGenVelToggleHandler - 0x00000000000c6644 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV21AvHGenVelShapeHandler - 0x00000000000c66a4 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV24AvHGenVelParamNumHandler - 0x00000000000c6704 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV22AvHGenVelParamsHandler - 0x00000000000c6764 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI17AvHPieMenuHandler - 0x00000000000c67c4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV17AvHPieMenuHandler - 0x00000000000c67dc 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI16AvHScrollHandler - 0x00000000000c683c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV16AvHScrollHandler - 0x00000000000c6854 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14AvHScrollPanel - 0x00000000000c68b4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI16AvHUIScrollPanel - 0x00000000000c68cc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14AvHScrollPanel - 0x00000000000c68e4 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV16AvHUIScrollPanel - 0x00000000000c6ce4 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI16AvHTeamHierarchy - 0x00000000000c6d24 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18AvHUITeamHierarchy - 0x00000000000c6d3c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV16AvHTeamHierarchy - 0x00000000000c6d54 0x460 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18AvHUITeamHierarchy - 0x00000000000c71b4 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13FakeTextImage - 0x00000000000c71f4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI19AvHTechImpulsePanel - 0x00000000000c720c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI21AvHUITechImpulsePanel - 0x00000000000c7224 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13FakeTextImage - 0x00000000000c723c 0x108 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV19AvHTechImpulsePanel - 0x00000000000c7344 0x460 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV21AvHUITechImpulsePanel - 0x00000000000c77a4 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11AvHTechNode - 0x00000000000c77e4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11AvHTechNode - 0x00000000000c77f4 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11AvHTechTree - 0x00000000000c7824 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11AvHTechTree - 0x00000000000c783c 0x80 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10AvHTooltip - 0x00000000000c78bc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10AvHTooltip - 0x00000000000c78cc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12AvHUIFactory - 0x00000000000c78e4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12AvHUIFactory - 0x00000000000c78fc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13CollisionTest - 0x00000000000c790c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18PointCollisionTest - 0x00000000000c791c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI21CylinderCollisionTest - 0x00000000000c7934 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI16OBBCollisionTest - 0x00000000000c794c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI17AABBCollisionTest - 0x00000000000c7964 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13CollisionTest - 0x00000000000c797c 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18PointCollisionTest - 0x00000000000c79b4 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV21CylinderCollisionTest - 0x00000000000c79ec 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV16OBBCollisionTest - 0x00000000000c7a24 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV17AABBCollisionTest - 0x00000000000c7a5c 0x38 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI29AvHParticleTemplateListClient - 0x00000000000c7a94 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV29AvHParticleTemplateListClient - 0x00000000000c7aac 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI19AvHParticleTemplate - 0x00000000000c7abc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI23AvHParticleTemplateList - 0x00000000000c7acc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV19AvHParticleTemplate - 0x00000000000c7adc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV23AvHParticleTemplateList - 0x00000000000c7af4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui13CCheckButton2E - 0x00000000000c7b04 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui13CCheckButton2E - 0x00000000000c7b24 0x468 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui5CGridE - 0x00000000000c7f8c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui5CGridE - 0x00000000000c7fa4 0x410 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui8CListBox13ListBoxSignalE - 0x00000000000c83b4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui8CListBoxE - 0x00000000000c83cc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui8CListBox13ListBoxSignalE - 0x00000000000c83e4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui8CListBoxE - 0x00000000000c83f4 0x408 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui11InputStreamE - 0x00000000000c87fc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18MemoryInputStream2 - 0x00000000000c880c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18MemoryInputStream2 - 0x00000000000c8824 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui10ScrollBar2E - 0x00000000000c8864 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI15ScrollBarButton - 0x00000000000c887c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV15ScrollBarButton - 0x00000000000c8894 0x4c8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui10ScrollBar2E - 0x00000000000c8d5c 0x480 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTIN4vgui7Slider2E - 0x00000000000c91dc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui7Slider2E - 0x00000000000c91f4 0x488 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12CVoiceStatus - 0x00000000000c967c 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12CVoiceStatus - 0x00000000000c969c 0xb0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18CVoiceVGUITweakDlg - 0x00000000000c974c 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI19CVoiceTweakOKButton - 0x00000000000c976c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV19CVoiceTweakOKButton - 0x00000000000c9784 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18CVoiceVGUITweakDlg - 0x00000000000c9794 0x440 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI6CGlock - 0x00000000000c9bd4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10CGlockAmmo - 0x00000000000c9bec 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV6CGlock - 0x00000000000c9c04 0x350 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10CGlockAmmo - 0x00000000000c9f54 0x200 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9BitmapPNG - 0x00000000000ca154 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9BitmapPNG - 0x00000000000ca16c 0xe0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9ChatPanel - 0x00000000000ca24c 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9ChatPanel - 0x00000000000ca26c 0x460 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12ColoredPanel - 0x00000000000ca6cc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12ColoredPanel - 0x00000000000ca6e4 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10DummyPanel - 0x00000000000caae4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10DummyPanel - 0x00000000000caafc 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI19ReloadableComponent - 0x00000000000caefc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI16FadingImageLabel - 0x00000000000caf0c 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV19ReloadableComponent - 0x00000000000caf2c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV16FadingImageLabel - 0x00000000000caf3c 0x4c0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI19GammaAwareComponent - 0x00000000000cb3fc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI16MarqueeComponent - 0x00000000000cb40c 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV19GammaAwareComponent - 0x00000000000cb42c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV16MarqueeComponent - 0x00000000000cb43c 0x418 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI17MemoryInputStream - 0x00000000000cb854 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTVN4vgui11InputStreamE - 0x00000000000cb86c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV17MemoryInputStream - 0x00000000000cb8ac 0x58 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI7PieMenu - 0x00000000000cb904 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV7PieMenu - 0x00000000000cb92c 0x450 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI7PieNode - 0x00000000000cbd7c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11PieNodeList - 0x00000000000cbd94 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV7PieNode - 0x00000000000cbda4 0x4f8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11PieNodeList - 0x00000000000cc29c 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI10SliderPlus - 0x00000000000cc2c4 0x20 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV10SliderPlus - 0x00000000000cc2e4 0x518 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11SpritePanel - 0x00000000000cc7fc 0x28 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11SpritePanel - 0x00000000000cc824 0x438 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11UIComponent - 0x00000000000ccc5c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11UIComponent - 0x00000000000ccc6c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI7UIPanel - 0x00000000000cccac 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI7UILabel - 0x00000000000cccc4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12UIImageLabel - 0x00000000000cccdc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13UIProgressBar - 0x00000000000cccf4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14UIConfigWizard - 0x00000000000ccd0c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12UITreeFolder - 0x00000000000ccd24 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI6UIMenu - 0x00000000000ccd3c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI11UIPopupMenu - 0x00000000000ccd54 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12UIImagePanel - 0x00000000000ccd6c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8UIButton - 0x00000000000ccd84 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18UIFadingImageLabel - 0x00000000000ccd9c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18UIMarqueeComponent - 0x00000000000ccdb4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14UIColoredPanel - 0x00000000000ccdcc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI16UIInvisiblePanel - 0x00000000000ccde4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8UISlider - 0x00000000000ccdfc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9UISlider2 - 0x00000000000cce14 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12UISliderPlus - 0x00000000000cce2c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13UIStaticLabel - 0x00000000000cce44 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI13UISpritePanel - 0x00000000000cce5c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI12UIDummyPanel - 0x00000000000cce74 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV7UIPanel - 0x00000000000cce8c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV7UILabel - 0x00000000000ccecc 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12UIImageLabel - 0x00000000000ccf0c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13UIProgressBar - 0x00000000000ccf4c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14UIConfigWizard - 0x00000000000ccf8c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12UITreeFolder - 0x00000000000ccfcc 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV6UIMenu - 0x00000000000cd00c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV11UIPopupMenu - 0x00000000000cd04c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12UIImagePanel - 0x00000000000cd08c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8UIButton - 0x00000000000cd0cc 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18UIFadingImageLabel - 0x00000000000cd10c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18UIMarqueeComponent - 0x00000000000cd14c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14UIColoredPanel - 0x00000000000cd18c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV16UIInvisiblePanel - 0x00000000000cd1cc 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8UISlider - 0x00000000000cd20c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9UISlider2 - 0x00000000000cd24c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13UIStaticLabel - 0x00000000000cd28c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV13UISpritePanel - 0x00000000000cd2cc 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12UIDummyPanel - 0x00000000000cd30c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV12UISliderPlus - 0x00000000000cd34c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9UIFactory - 0x00000000000cd38c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9UIFactory - 0x00000000000cd39c 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI4CHud - 0x00000000000cd3ac 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI5UIHud - 0x00000000000cd3bc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV5UIHud - 0x00000000000cd3d4 0xd8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9UIManager - 0x00000000000cd4ac 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9UIManager - 0x00000000000cd4c4 0x80 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI9UIPieMenu - 0x00000000000cd544 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV9UIPieMenu - 0x00000000000cd55c 0x40 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI14InvisiblePanel - 0x00000000000cd59c 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV14InvisiblePanel - 0x00000000000cd5b4 0x400 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI21BalanceChangeListener - 0x00000000000cd9b4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI21BalanceValueContainer - 0x00000000000cd9c4 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18NullValueContainer - 0x00000000000cd9d4 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI22StandardValueContainer - 0x00000000000cd9ec 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI18FileValueContainer - 0x00000000000cda04 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18NullValueContainer - 0x00000000000cda1c 0xb8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV21BalanceChangeListener - 0x00000000000cdad4 0x80 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV21BalanceValueContainer - 0x00000000000cdb54 0xb8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV22StandardValueContainer - 0x00000000000cdc0c 0xe0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV18FileValueContainer - 0x00000000000cdcec 0xe0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTI8Checksum - 0x00000000000cddcc 0x10 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.rodata._ZTV8Checksum - 0x00000000000cdddc 0x18 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *(.rel.data.rel.ro .rel.data.rel.ro.* .rel.gnu.linkonce.d.rel.ro.*) - *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*) - .rel.data.rel 0x00000000000cddf4 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.data 0x00000000000cddfc 0x238 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*) - *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*) - *(.rel.ctors) - *(.rel.dtors) - *(.rel.got) - .rel.got 0x00000000000ce034 0x60 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*) - *(.rel.ifunc) - .rel.ifunc 0x0000000000000000 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.fini_array - 0x00000000000ce094 0x8 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .rel.init_array - 0x00000000000ce09c 0x530 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - -.rel.plt 0x00000000000ce5cc 0x1c0 - *(.rel.plt) - .rel.plt 0x00000000000ce5cc 0x1c0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *(.rel.iplt) - -.init 0x00000000000ce78c 0x23 - *(SORT(.init)) - .init 0x00000000000ce78c 0x1e /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - 0x00000000000ce78c _init - .init 0x00000000000ce7aa 0x5 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crtn.o - -.plt 0x00000000000ce7b0 0x390 - *(.plt) - .plt 0x00000000000ce7b0 0x390 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *(.iplt) - -.text 0x00000000000ceb40 0x123168 - *(.text.unlikely .text.*_unlikely .text.unlikely.*) - .text.unlikely - 0x00000000000ceb40 0x4b release/obj/hl1_client/mod/AvHHudRender.o - .text.unlikely - 0x00000000000ceb8b 0x1e release/obj/hl1_client/util/Balance.o - .text.unlikely - 0x00000000000ceba9 0x1e release/obj/hl1_client/textrep/TRFactory.o - *(.text.exit .text.exit.*) - *(.text.startup .text.startup.*) - *fill* 0x00000000000cebc7 0x9 - .text.startup 0x00000000000cebd0 0x45 release/obj/hl1_client/hl/hl_baseentity.o - *fill* 0x00000000000cec15 0xb - .text.startup 0x00000000000cec20 0x6c release/obj/hl1_client/hl/hl_objects.o - *fill* 0x00000000000cec8c 0x4 - .text.startup 0x00000000000cec90 0x814 release/obj/hl1_client/hl/hl_weapons.o - *fill* 0x00000000000cf4a4 0xc - .text.startup 0x00000000000cf4b0 0x98 release/obj/hl1_client/ammo.o - *fill* 0x00000000000cf548 0x8 - .text.startup 0x00000000000cf550 0x191 release/obj/hl1_client/cdll_int.o - *fill* 0x00000000000cf6e1 0xf - .text.startup 0x00000000000cf6f0 0x6c release/obj/hl1_client/ammo_secondary.o - *fill* 0x00000000000cf75c 0x4 - .text.startup 0x00000000000cf760 0x6c release/obj/hl1_client/ammohistory.o - *fill* 0x00000000000cf7cc 0x4 - .text.startup 0x00000000000cf7d0 0x6c release/obj/hl1_client/battery.o - *fill* 0x00000000000cf83c 0x4 - .text.startup 0x00000000000cf840 0x6c release/obj/hl1_client/com_weapons.o - *fill* 0x00000000000cf8ac 0x4 - .text.startup 0x00000000000cf8b0 0x6c release/obj/hl1_client/death.o - *fill* 0x00000000000cf91c 0x4 - .text.startup 0x00000000000cf920 0x6c release/obj/hl1_client/entity.o - *fill* 0x00000000000cf98c 0x4 - .text.startup 0x00000000000cf990 0x6c release/obj/hl1_client/ev_common.o - *fill* 0x00000000000cf9fc 0x4 - .text.startup 0x00000000000cfa00 0x6c release/obj/hl1_client/events.o - *fill* 0x00000000000cfa6c 0x4 - .text.startup 0x00000000000cfa70 0x6c release/obj/hl1_client/flashlight.o - *fill* 0x00000000000cfadc 0x4 - .text.startup 0x00000000000cfae0 0xa0 release/obj/hl1_client/GameStudioModelRenderer.o - .text.startup 0x00000000000cfb80 0x6c release/obj/hl1_client/geiger.o - *fill* 0x00000000000cfbec 0x4 - .text.startup 0x00000000000cfbf0 0x94 release/obj/hl1_client/hud.o - *fill* 0x00000000000cfc84 0xc - .text.startup 0x00000000000cfc90 0x6c release/obj/hl1_client/hud_msg.o - *fill* 0x00000000000cfcfc 0x4 - .text.startup 0x00000000000cfd00 0x6c release/obj/hl1_client/hud_redraw.o - *fill* 0x00000000000cfd6c 0x4 - .text.startup 0x00000000000cfd70 0x6c release/obj/hl1_client/hud_servers.o - *fill* 0x00000000000cfddc 0x4 - .text.startup 0x00000000000cfde0 0x6c release/obj/hl1_client/hud_spectator.o - *fill* 0x00000000000cfe4c 0x4 - .text.startup 0x00000000000cfe50 0x6c release/obj/hl1_client/hud_update.o - *fill* 0x00000000000cfebc 0x4 - .text.startup 0x00000000000cfec0 0x6c release/obj/hl1_client/in_camera.o - *fill* 0x00000000000cff2c 0x4 - .text.startup 0x00000000000cff30 0x9f release/obj/hl1_client/input.o - *fill* 0x00000000000cffcf 0x1 - .text.startup 0x00000000000cffd0 0x6c release/obj/hl1_client/inputw32.o - *fill* 0x00000000000d003c 0x4 - .text.startup 0x00000000000d0040 0x6c release/obj/hl1_client/menu.o - *fill* 0x00000000000d00ac 0x4 - .text.startup 0x00000000000d00b0 0x6c release/obj/hl1_client/vgui_SpectatorPanel.o - *fill* 0x00000000000d011c 0x4 - .text.startup 0x00000000000d0120 0x6c release/obj/hl1_client/vgui_TeamFortressViewport.o - *fill* 0x00000000000d018c 0x4 - .text.startup 0x00000000000d0190 0x6c release/obj/hl1_client/vgui_teammenu.o - *fill* 0x00000000000d01fc 0x4 - .text.startup 0x00000000000d0200 0x6c release/obj/hl1_client/view.o - *fill* 0x00000000000d026c 0x4 - .text.startup 0x00000000000d0270 0x6c release/obj/hl1_client/message.o - *fill* 0x00000000000d02dc 0x4 - .text.startup 0x00000000000d02e0 0x6c release/obj/hl1_client/saytext.o - *fill* 0x00000000000d034c 0x4 - .text.startup 0x00000000000d0350 0x6c release/obj/hl1_client/status_icons.o - *fill* 0x00000000000d03bc 0x4 - .text.startup 0x00000000000d03c0 0x6c release/obj/hl1_client/statusbar.o - *fill* 0x00000000000d042c 0x4 - .text.startup 0x00000000000d0430 0x6c release/obj/hl1_client/studio_util.o - *fill* 0x00000000000d049c 0x4 - .text.startup 0x00000000000d04a0 0x6c release/obj/hl1_client/StudioModelRenderer.o - *fill* 0x00000000000d050c 0x4 - .text.startup 0x00000000000d0510 0x6c release/obj/hl1_client/text_message.o - *fill* 0x00000000000d057c 0x4 - .text.startup 0x00000000000d0580 0x6c release/obj/hl1_client/train.o - *fill* 0x00000000000d05ec 0x4 - .text.startup 0x00000000000d05f0 0x6c release/obj/hl1_client/tri.o - *fill* 0x00000000000d065c 0x4 - .text.startup 0x00000000000d0660 0x6c release/obj/hl1_client/vgui_int.o - *fill* 0x00000000000d06cc 0x4 - .text.startup 0x00000000000d06d0 0x6c release/obj/hl1_client/cl_util.o - *fill* 0x00000000000d073c 0x4 - .text.startup 0x00000000000d0740 0x6c release/obj/hl1_client/ev_hldm.o - *fill* 0x00000000000d07ac 0x4 - .text.startup 0x00000000000d07b0 0x6c release/obj/hl1_client/vgui_MOTDWindow.o - *fill* 0x00000000000d081c 0x4 - .text.startup 0x00000000000d0820 0x6c release/obj/hl1_client/vgui_SchemeManager.o - *fill* 0x00000000000d088c 0x4 - .text.startup 0x00000000000d0890 0x6c release/obj/hl1_client/vgui_ScorePanel.o - *fill* 0x00000000000d08fc 0x4 - .text.startup 0x00000000000d0900 0x6c release/obj/hl1_client/vgui_ClassMenu.o - *fill* 0x00000000000d096c 0x4 - .text.startup 0x00000000000d0970 0x6c release/obj/hl1_client/vgui_ConsolePanel.o - *fill* 0x00000000000d09dc 0x4 - .text.startup 0x00000000000d09e0 0x6c release/obj/hl1_client/vgui_CustomObjects.o - *fill* 0x00000000000d0a4c 0x4 - .text.startup 0x00000000000d0a50 0x6c release/obj/hl1_client/vgui_ServerBrowser.o - *fill* 0x00000000000d0abc 0x4 - .text.startup 0x00000000000d0ac0 0x80 release/obj/hl1_client/util.o - .text.startup 0x00000000000d0b40 0x6c release/obj/hl1_client/health.o - *fill* 0x00000000000d0bac 0x4 - .text.startup 0x00000000000d0bb0 0x6c release/obj/hl1_client/demo.o - *fill* 0x00000000000d0c1c 0x4 - .text.startup 0x00000000000d0c20 0x31 release/obj/hl1_client/mod/AvHAcidRocketGun.o - *fill* 0x00000000000d0c51 0xf - .text.startup 0x00000000000d0c60 0x6c release/obj/hl1_client/mod/AvHAlienAbilities.o - *fill* 0x00000000000d0ccc 0x4 - .text.startup 0x00000000000d0cd0 0x6c release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - *fill* 0x00000000000d0d3c 0x4 - .text.startup 0x00000000000d0d40 0x31 release/obj/hl1_client/mod/AvHBileBombGun.o - *fill* 0x00000000000d0d71 0xf - .text.startup 0x00000000000d0d80 0x6c release/obj/hl1_client/mod/AvHBite.o - *fill* 0x00000000000d0dec 0x4 - .text.startup 0x00000000000d0df0 0x31 release/obj/hl1_client/mod/AvHBite2.o - *fill* 0x00000000000d0e21 0xf - .text.startup 0x00000000000d0e30 0x6c release/obj/hl1_client/mod/AvHBlink.o - *fill* 0x00000000000d0e9c 0x4 - .text.startup 0x00000000000d0ea0 0x6c release/obj/hl1_client/mod/AvHClaws.o - *fill* 0x00000000000d0f0c 0x4 - .text.startup 0x00000000000d0f10 0x31 release/obj/hl1_client/mod/AvHDevour.o - *fill* 0x00000000000d0f41 0xf - .text.startup 0x00000000000d0f50 0x31 release/obj/hl1_client/mod/AvHGrenade.o - *fill* 0x00000000000d0f81 0xf - .text.startup 0x00000000000d0f90 0x6c release/obj/hl1_client/mod/AvHDivineWind.o - *fill* 0x00000000000d0ffc 0x4 - .text.startup 0x00000000000d1000 0x31 release/obj/hl1_client/mod/AvHGrenadeGun.o - *fill* 0x00000000000d1031 0xf - .text.startup 0x00000000000d1040 0x6c release/obj/hl1_client/mod/AvHHealingSpray.o - *fill* 0x00000000000d10ac 0x4 - .text.startup 0x00000000000d10b0 0x31 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - *fill* 0x00000000000d10e1 0xf - .text.startup 0x00000000000d10f0 0x31 release/obj/hl1_client/mod/AvHItemInfo.o - *fill* 0x00000000000d1121 0xf - .text.startup 0x00000000000d1130 0x31 release/obj/hl1_client/mod/AvHKnife.o - *fill* 0x00000000000d1161 0xf - .text.startup 0x00000000000d1170 0x31 release/obj/hl1_client/mod/AvHMachineGun.o - *fill* 0x00000000000d11a1 0xf - .text.startup 0x00000000000d11b0 0x31 release/obj/hl1_client/mod/AvHMarineWeapon.o - *fill* 0x00000000000d11e1 0xf - .text.startup 0x00000000000d11f0 0x6c release/obj/hl1_client/mod/AvHMetabolize.o - *fill* 0x00000000000d125c 0x4 - .text.startup 0x00000000000d1260 0x31 release/obj/hl1_client/mod/AvHMine.o - *fill* 0x00000000000d1291 0xf - .text.startup 0x00000000000d12a0 0x31 release/obj/hl1_client/mod/AvHParasiteGun.o - *fill* 0x00000000000d12d1 0xf - .text.startup 0x00000000000d12e0 0x31 release/obj/hl1_client/mod/AvHPistol.o - *fill* 0x00000000000d1311 0xf - .text.startup 0x00000000000d1320 0x31 release/obj/hl1_client/mod/AvHPrimalScream.o - *fill* 0x00000000000d1351 0xf - .text.startup 0x00000000000d1360 0x31 release/obj/hl1_client/mod/AvHSonicGun.o - *fill* 0x00000000000d1391 0xf - .text.startup 0x00000000000d13a0 0x31 release/obj/hl1_client/mod/AvHSpikeGun.o - *fill* 0x00000000000d13d1 0xf - .text.startup 0x00000000000d13e0 0x6c release/obj/hl1_client/mod/AvHSpitGun.o - *fill* 0x00000000000d144c 0x4 - .text.startup 0x00000000000d1450 0x31 release/obj/hl1_client/mod/AvHSpores.o - *fill* 0x00000000000d1481 0xf - .text.startup 0x00000000000d1490 0x6c release/obj/hl1_client/mod/AvHStomp.o - *fill* 0x00000000000d14fc 0x4 - .text.startup 0x00000000000d1500 0x6c release/obj/hl1_client/mod/AvHSwipe.o - *fill* 0x00000000000d156c 0x4 - .text.startup 0x00000000000d1570 0x31 release/obj/hl1_client/mod/AvHUmbraGun.o - *fill* 0x00000000000d15a1 0xf - .text.startup 0x00000000000d15b0 0x31 release/obj/hl1_client/mod/AvHWebSpinner.o - *fill* 0x00000000000d15e1 0xf - .text.startup 0x00000000000d15f0 0x31 release/obj/hl1_client/mod/AvHWelder.o - *fill* 0x00000000000d1621 0xf - .text.startup 0x00000000000d1630 0x31 release/obj/hl1_client/mod/AnimationUtil.o - *fill* 0x00000000000d1661 0xf - .text.startup 0x00000000000d1670 0x7bc release/obj/hl1_client/mod/AvHActionButtons.o - *fill* 0x00000000000d1e2c 0x4 - .text.startup 0x00000000000d1e30 0x6c release/obj/hl1_client/mod/AvHAlienWeapon.o - *fill* 0x00000000000d1e9c 0x4 - .text.startup 0x00000000000d1ea0 0x6c release/obj/hl1_client/mod/AvHAmbientSound.o - *fill* 0x00000000000d1f0c 0x4 - .text.startup 0x00000000000d1f10 0x31 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - *fill* 0x00000000000d1f41 0xf - .text.startup 0x00000000000d1f50 0x6c release/obj/hl1_client/mod/AvHClientUtil.o - *fill* 0x00000000000d1fbc 0x4 - .text.startup 0x00000000000d1fc0 0x6c release/obj/hl1_client/mod/AvHCommanderModeHandler.o - *fill* 0x00000000000d202c 0x4 - .text.startup 0x00000000000d2030 0x31 release/obj/hl1_client/mod/AvHConstants.o - *fill* 0x00000000000d2061 0xf - .text.startup 0x00000000000d2070 0x6c release/obj/hl1_client/mod/AvHEntityHierarchy.o - *fill* 0x00000000000d20dc 0x4 - .text.startup 0x00000000000d20e0 0xc9 release/obj/hl1_client/mod/AvHEvents.o - *fill* 0x00000000000d21a9 0x7 - .text.startup 0x00000000000d21b0 0x6c release/obj/hl1_client/mod/AvHFont.o - *fill* 0x00000000000d221c 0x4 - .text.startup 0x00000000000d2220 0x6c release/obj/hl1_client/mod/AvHHelp.o - *fill* 0x00000000000d228c 0x4 - .text.startup 0x00000000000d2290 0xe2 release/obj/hl1_client/mod/AvHHud.o - *fill* 0x00000000000d2372 0xe - .text.startup 0x00000000000d2380 0x6c release/obj/hl1_client/mod/AvHHudRender.o - *fill* 0x00000000000d23ec 0x4 - .text.startup 0x00000000000d23f0 0x7bc release/obj/hl1_client/mod/AvHLogoutComponent.o - *fill* 0x00000000000d2bac 0x4 - .text.startup 0x00000000000d2bb0 0x31 release/obj/hl1_client/mod/AvHMapExtents.o - *fill* 0x00000000000d2be1 0xf - .text.startup 0x00000000000d2bf0 0x6c release/obj/hl1_client/mod/AvHMiniMap.o - *fill* 0x00000000000d2c5c 0x4 - .text.startup 0x00000000000d2c60 0x31 release/obj/hl1_client/mod/AvHMovementUtil.o - *fill* 0x00000000000d2c91 0xf - .text.startup 0x00000000000d2ca0 0x31 release/obj/hl1_client/mod/AvHNetworkMessages.o - *fill* 0x00000000000d2cd1 0xf - .text.startup 0x00000000000d2ce0 0x6c release/obj/hl1_client/mod/AvHOrder.o - *fill* 0x00000000000d2d4c 0x4 - .text.startup 0x00000000000d2d50 0x6c release/obj/hl1_client/mod/AvHOverviewControl.o - *fill* 0x00000000000d2dbc 0x4 - .text.startup 0x00000000000d2dc0 0x7bc release/obj/hl1_client/mod/AvHOverviewMap.o - *fill* 0x00000000000d357c 0x4 - .text.startup 0x00000000000d3580 0x702 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - *fill* 0x00000000000d3c82 0xe - .text.startup 0x00000000000d3c90 0xa5 release/obj/hl1_client/mod/AvHPieMenuHandler.o - *fill* 0x00000000000d3d35 0xb - .text.startup 0x00000000000d3d40 0x31 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - *fill* 0x00000000000d3d71 0xf - .text.startup 0x00000000000d3d80 0x6c release/obj/hl1_client/mod/AvHScriptClient.o - *fill* 0x00000000000d3dec 0x4 - .text.startup 0x00000000000d3df0 0x31 release/obj/hl1_client/mod/AvHScriptManager.o - *fill* 0x00000000000d3e21 0xf - .text.startup 0x00000000000d3e30 0x6c release/obj/hl1_client/mod/AvHScriptShared.o - *fill* 0x00000000000d3e9c 0x4 - .text.startup 0x00000000000d3ea0 0x6c release/obj/hl1_client/mod/AvHScrollHandler.o - *fill* 0x00000000000d3f0c 0x4 - .text.startup 0x00000000000d3f10 0x6c release/obj/hl1_client/mod/AvHScrollPanel.o - *fill* 0x00000000000d3f7c 0x4 - .text.startup 0x00000000000d3f80 0x6c release/obj/hl1_client/mod/AvHSharedMovementInfo.o - *fill* 0x00000000000d3fec 0x4 - .text.startup 0x00000000000d3ff0 0x170 release/obj/hl1_client/mod/AvHSharedUtil.o - .text.startup 0x00000000000d4160 0x31 release/obj/hl1_client/mod/AvHSpecials.o - *fill* 0x00000000000d4191 0xf - .text.startup 0x00000000000d41a0 0x6c release/obj/hl1_client/mod/AvHSpriteAPI.o - *fill* 0x00000000000d420c 0x4 - .text.startup 0x00000000000d4210 0x7bc release/obj/hl1_client/mod/AvHTeamHierarchy.o - *fill* 0x00000000000d49cc 0x4 - .text.startup 0x00000000000d49d0 0x7bc release/obj/hl1_client/mod/AvHTechImpulsePanel.o - *fill* 0x00000000000d518c 0x4 - .text.startup 0x00000000000d5190 0x31 release/obj/hl1_client/mod/AvHTechNode.o - *fill* 0x00000000000d51c1 0xf - .text.startup 0x00000000000d51d0 0x31 release/obj/hl1_client/mod/AvHTechSlotManager.o - *fill* 0x00000000000d5201 0xf - .text.startup 0x00000000000d5210 0x31 release/obj/hl1_client/mod/AvHTechTree.o - *fill* 0x00000000000d5241 0xf - .text.startup 0x00000000000d5250 0x6c release/obj/hl1_client/mod/AvHTooltip.o - *fill* 0x00000000000d52bc 0x4 - .text.startup 0x00000000000d52c0 0x6c release/obj/hl1_client/mod/AvHUIFactory.o - *fill* 0x00000000000d532c 0x4 - .text.startup 0x00000000000d5330 0x6c release/obj/hl1_client/mod/AvHVisibleBlipList.o - *fill* 0x00000000000d539c 0x4 - .text.startup 0x00000000000d53a0 0x31 release/obj/hl1_client/mod/CollisionChecker.o - *fill* 0x00000000000d53d1 0xf - .text.startup 0x00000000000d53e0 0x45 release/obj/hl1_client/mod/CollisionUtil.o - *fill* 0x00000000000d5425 0xb - .text.startup 0x00000000000d5430 0x6c release/obj/hl1_client/mod/AvHParticleSystem.o - *fill* 0x00000000000d549c 0x4 - .text.startup 0x00000000000d54a0 0xa0 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .text.startup 0x00000000000d5540 0x31 release/obj/hl1_client/mod/AvHParticleTemplate.o - *fill* 0x00000000000d5571 0xf - .text.startup 0x00000000000d5580 0x6c release/obj/hl1_client/mod/AvHParticleTemplateClient.o - *fill* 0x00000000000d55ec 0x4 - .text.startup 0x00000000000d55f0 0x6c release/obj/hl1_client/mod/AvHSelectionHelper.o - *fill* 0x00000000000d565c 0x4 - .text.startup 0x00000000000d5660 0x31 release/obj/hl1_client/game_shared/voice_banmgr.o - *fill* 0x00000000000d5691 0xf - .text.startup 0x00000000000d56a0 0x96 release/obj/hl1_client/game_shared/voice_status.o - *fill* 0x00000000000d5736 0xa - .text.startup 0x00000000000d5740 0xa0 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .text.startup 0x00000000000d57e0 0x31 release/obj/hl1_client/server/hl_wpn_glock.o - *fill* 0x00000000000d5811 0xf - .text.startup 0x00000000000d5820 0x31 release/obj/hl1_client/pm_shared/pm_shared.o - *fill* 0x00000000000d5851 0xf - .text.startup 0x00000000000d5860 0x6c release/obj/hl1_client/ui/ChatPanel.o - *fill* 0x00000000000d58cc 0x4 - .text.startup 0x00000000000d58d0 0x6c release/obj/hl1_client/ui/ColoredPanel.o - *fill* 0x00000000000d593c 0x4 - .text.startup 0x00000000000d5940 0x6c release/obj/hl1_client/ui/DummyPanel.o - *fill* 0x00000000000d59ac 0x4 - .text.startup 0x00000000000d59b0 0x6c release/obj/hl1_client/ui/FadingImageLabel.o - *fill* 0x00000000000d5a1c 0x4 - .text.startup 0x00000000000d5a20 0x6c release/obj/hl1_client/ui/MarqueeComponent.o - *fill* 0x00000000000d5a8c 0x4 - .text.startup 0x00000000000d5a90 0xa5 release/obj/hl1_client/ui/PieMenu.o - *fill* 0x00000000000d5b35 0xb - .text.startup 0x00000000000d5b40 0x6c release/obj/hl1_client/ui/PieNode.o - *fill* 0x00000000000d5bac 0x4 - .text.startup 0x00000000000d5bb0 0x31 release/obj/hl1_client/ui/ScoreboardIcon.o - *fill* 0x00000000000d5be1 0xf - .text.startup 0x00000000000d5bf0 0x31 release/obj/hl1_client/ui/SliderPlus.o - *fill* 0x00000000000d5c21 0xf - .text.startup 0x00000000000d5c30 0xdc release/obj/hl1_client/ui/SpritePanel.o - *fill* 0x00000000000d5d0c 0x4 - .text.startup 0x00000000000d5d10 0x31 release/obj/hl1_client/ui/UIComponent.o - *fill* 0x00000000000d5d41 0xf - .text.startup 0x00000000000d5d50 0x7bc release/obj/hl1_client/ui/UIComponents.o - *fill* 0x00000000000d650c 0x4 - .text.startup 0x00000000000d6510 0x6c release/obj/hl1_client/ui/UIFactory.o - *fill* 0x00000000000d657c 0x4 - .text.startup 0x00000000000d6580 0x6c release/obj/hl1_client/ui/UIHud.o - *fill* 0x00000000000d65ec 0x4 - .text.startup 0x00000000000d65f0 0x7bc release/obj/hl1_client/ui/UIManager.o - *fill* 0x00000000000d6dac 0x4 - .text.startup 0x00000000000d6db0 0x8cf release/obj/hl1_client/ui/UIPieMenu.o - *fill* 0x00000000000d767f 0x1 - .text.startup 0x00000000000d7680 0x7bc release/obj/hl1_client/ui/UIUtil.o - *fill* 0x00000000000d7e3c 0x4 - .text.startup 0x00000000000d7e40 0x6c release/obj/hl1_client/ui/InvisiblePanel.o - *fill* 0x00000000000d7eac 0x4 - .text.startup 0x00000000000d7eb0 0xe2 release/obj/hl1_client/util/Balance.o - *fill* 0x00000000000d7f92 0xe - .text.startup 0x00000000000d7fa0 0xa5 release/obj/hl1_client/util/Checksum.o - *fill* 0x00000000000d8045 0xb - .text.startup 0x00000000000d8050 0x31 release/obj/hl1_client/util/Mat3.o - *fill* 0x00000000000d8081 0xf - .text.startup 0x00000000000d8090 0x31 release/obj/hl1_client/util/MathUtil.o - *fill* 0x00000000000d80c1 0xf - .text.startup 0x00000000000d80d0 0x31 release/obj/hl1_client/util/STLUtil.o - *fill* 0x00000000000d8101 0xf - .text.startup 0x00000000000d8110 0x31 release/obj/hl1_client/textrep/TRDescription.o - *fill* 0x00000000000d8141 0xf - .text.startup 0x00000000000d8150 0x31 release/obj/hl1_client/textrep/TRFactory.o - *fill* 0x00000000000d8181 0xf - .text.startup 0x00000000000d8190 0x58 ./libparticleMP.a(actions.o) - *fill* 0x00000000000d81e8 0x8 - .text.startup 0x00000000000d81f0 0x4e ./libparticleMP.a(system.o) - *(.text.hot .text.hot.*) - *(.text .stub .text.* .gnu.linkonce.t.*) - .text 0x00000000000d823e 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *fill* 0x00000000000d823e 0x2 - .gnu.linkonce.t.__x86.get_pc_thunk.bx - 0x00000000000d8240 0x4 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - 0x00000000000d8240 __x86.get_pc_thunk.bx - *fill* 0x00000000000d8244 0xc - .text 0x00000000000d8250 0x11b /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - *fill* 0x00000000000d836b 0x5 - .text 0x00000000000d8370 0xea1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d8370 CBaseEntity::TakeHealth(float, int) - 0x00000000000d8380 CBaseEntity::TakeDamage(entvars_s*, entvars_s*, float, int) - 0x00000000000d8390 CBaseEntity::GetNextTarget() - 0x00000000000d83a0 CBaseEntity::Save(CSave&) - 0x00000000000d83b0 CBaseEntity::Restore(CRestore&) - 0x00000000000d83c0 CBaseEntity::SetObjectCollisionBox() - 0x00000000000d83d0 CBaseEntity::IsInWorld() - 0x00000000000d83e0 CBaseEntity::DamageDecal(int) - 0x00000000000d83f0 CBaseEntity::AddChecksum(Checksum&) - 0x00000000000d8400 CBaseEntity::UpdateOnRemove() - 0x00000000000d8410 CBaseDelay::KeyValue(KeyValueData_s*) - 0x00000000000d8420 CBaseDelay::Restore(CRestore&) - 0x00000000000d8430 CBaseDelay::Save(CSave&) - 0x00000000000d8440 CBaseAnimating::Restore(CRestore&) - 0x00000000000d8450 CBaseAnimating::Save(CSave&) - 0x00000000000d8460 CBaseToggle::Restore(CRestore&) - 0x00000000000d8470 CBaseToggle::Save(CSave&) - 0x00000000000d8480 CBaseToggle::KeyValue(KeyValueData_s*) - 0x00000000000d8490 CBaseToggle::SaveDataForReset() - 0x00000000000d84a0 CBaseToggle::ResetEntity() - 0x00000000000d84b0 CGrenade::BounceSound() - 0x00000000000d84c0 CGrenade::Killed(entvars_s*, int) - 0x00000000000d84d0 CGrenade::Spawn() - 0x00000000000d84e0 CBaseMonster::GetHull() const - 0x00000000000d84f0 CBaseMonster::Look(int) - 0x00000000000d8500 CBaseMonster::IRelationship(CBaseEntity*) - 0x00000000000d8510 CBaseMonster::BestVisibleEnemy() - 0x00000000000d8520 CBaseMonster::FInViewCone(CBaseEntity*) - 0x00000000000d8530 CBaseMonster::FInViewCone(Vector*) - 0x00000000000d8540 CBaseEntity::FVisible(CBaseEntity*) - 0x00000000000d8550 CBaseEntity::FVisible(Vector const&) - 0x00000000000d8560 CBaseMonster::ChangeYaw(int) - 0x00000000000d8570 CBaseAnimating::SetBoneController(int, float) - 0x00000000000d8580 CBaseEntity::TraceAttack(entvars_s*, float, Vector, TraceResult*, int) - 0x00000000000d8590 CBaseEntity::TraceBleed(float, Vector, TraceResult*, int) - 0x00000000000d85a0 CBaseMonster::ReportAIState() - 0x00000000000d85b0 CBaseMonster::KeyValue(KeyValueData_s*) - 0x00000000000d85c0 CBaseMonster::MonsterInitDead() - 0x00000000000d85d0 CBaseMonster::TraceAttack(entvars_s*, float, Vector, TraceResult*, int) - 0x00000000000d85e0 CBaseMonster::ShouldFadeOnDeath() - 0x00000000000d85f0 CBaseMonster::FadeMonster() - 0x00000000000d8600 CBaseMonster::GibMonster() - 0x00000000000d8610 CBaseMonster::HasHumanGibs() - 0x00000000000d8620 CBaseMonster::HasAlienGibs() - 0x00000000000d8630 CBaseMonster::GetDeathActivity() - 0x00000000000d8640 CBaseMonster::BecomeDead() - 0x00000000000d8650 CBaseMonster::Killed(entvars_s*, int) - 0x00000000000d8660 CBaseMonster::TakeHealth(float, int) - 0x00000000000d8670 CBaseMonster::TakeDamage(entvars_s*, entvars_s*, float, int) - 0x00000000000d8680 CBasePlayerItem::CanDeploy() - 0x00000000000d8690 CBasePlayerItem::CanHolster() - 0x00000000000d86a0 CBasePlayerItem::Deploy() - 0x00000000000d86b0 CBasePlayerItem::IsUseable() - 0x00000000000d86c0 CBasePlayerItem::Spawn() - 0x00000000000d86d0 CBasePlayerItem::Restore(CRestore&) - 0x00000000000d86e0 CBasePlayerItem::Save(CSave&) - 0x00000000000d86f0 CBasePlayerWeapon::Restore(CRestore&) - 0x00000000000d8700 CBasePlayerWeapon::Save(CSave&) - 0x00000000000d8710 CBasePlayerItem::SetObjectCollisionBox() - 0x00000000000d8720 CBasePlayerItem::Respawn() - 0x00000000000d8730 CBasePlayerItem::VirtualDestroyItem() - 0x00000000000d8740 CBasePlayerItem::AddToPlayer(CBasePlayer*) - 0x00000000000d8750 CBasePlayerItem::Drop() - 0x00000000000d8760 CBasePlayerItem::Kill() - 0x00000000000d8770 CBasePlayerItem::Holster(int) - 0x00000000000d8780 CBasePlayerItem::AttachToPlayer(CBasePlayer*) - 0x00000000000d8790 CBasePlayerWeapon::AddDuplicate(CBasePlayerItem*) - 0x00000000000d87a0 CBasePlayerWeapon::AddToPlayer(CBasePlayer*) - 0x00000000000d87b0 CBasePlayerWeapon::UpdateClientData(CBasePlayer*) - 0x00000000000d87c0 CBasePlayerWeapon::IsUseable() - 0x00000000000d87d0 CBasePlayerWeapon::PrimaryAmmoIndex() - 0x00000000000d87e0 CBasePlayerWeapon::SecondaryAmmoIndex() - 0x00000000000d87f0 CBasePlayerAmmo::Spawn() - 0x00000000000d8800 CBasePlayerAmmo::Respawn() - 0x00000000000d8810 CBasePlayerWeapon::ExtractAmmo(CBasePlayerWeapon*) - 0x00000000000d8820 CBasePlayerWeapon::ExtractClipAmmo(CBasePlayerWeapon*) - 0x00000000000d8830 CBasePlayerWeapon::RetireWeapon() - 0x00000000000d8840 EMIT_SOUND_DYN(edict_s*, int, char const*, float, float, int, int) - 0x00000000000d8850 CBaseEntity::Intersects(CBaseEntity*) - 0x00000000000d8860 CBaseEntity::MakeDormant() - 0x00000000000d8870 CBaseEntity::IsDormant() - 0x00000000000d8880 CBaseEntity::ShouldToggle(USE_TYPE, int) - 0x00000000000d8890 CBaseEntity::Create(char const*, Vector const&, Vector const&, edict_s*) - 0x00000000000d88a0 CBaseEntity::SUB_Remove() - 0x00000000000d88b0 DBG_EntOfVars(entvars_s const*) - 0x00000000000d88c0 UTIL_PrecacheOther(char const*) - 0x00000000000d88d0 UTIL_BloodDrips(Vector const&, Vector const&, int, int) - 0x00000000000d88e0 UTIL_DecalTrace(TraceResult*, int) - 0x00000000000d88f0 UTIL_GunshotDecalTrace(TraceResult*, int) - 0x00000000000d8900 UTIL_MakeVectors(Vector const&) - 0x00000000000d8910 UTIL_IsValidEntity(edict_s*) - 0x00000000000d8920 UTIL_SetOrigin(entvars_s*, Vector const&) - 0x00000000000d8930 UTIL_GetNextBestWeapon(CBasePlayer*, CBasePlayerItem*) - 0x00000000000d8940 UTIL_LogPrintf(char*, ...) - 0x00000000000d8950 UTIL_ClientPrintAll(int, char const*, char const*, char const*, char const*, char const*) - 0x00000000000d8960 ClientPrint(entvars_s*, int, char const*, char const*, char const*, char const*, char const*) - 0x00000000000d8970 CGrenade::Explode(Vector, Vector) - 0x00000000000d8980 CGrenade::Explode(TraceResult*, int) - 0x00000000000d8990 CGrenade::ShootTimed(entvars_s*, Vector, Vector, float) - 0x00000000000d89a0 CGrenade::ShootContact(entvars_s*, Vector, Vector) - 0x00000000000d89b0 CGrenade::DetonateUse(CBaseEntity*, CBaseEntity*, USE_TYPE, float) - 0x00000000000d89c0 UTIL_Remove(CBaseEntity*) - 0x00000000000d89d0 UTIL_SetSize(entvars_s*, Vector const&, Vector const&) - 0x00000000000d89e0 UTIL_FindEntityInSphere(CBaseEntity*, Vector const&, float) - 0x00000000000d89f0 UTIL_VecToAngles(Vector const&) - 0x00000000000d8a20 CSprite::SpriteCreate(char const*, Vector const&, int) - 0x00000000000d8a30 CBeam::PointEntInit(Vector const&, int) - 0x00000000000d8a40 CBeam::BeamCreate(char const*, int) - 0x00000000000d8a50 CSprite::Expand(float, float) - 0x00000000000d8a60 CBaseMonster::CheckTraceHullAttack(float, float&, int) - 0x00000000000d8a70 CBaseAnimating::StudioFrameAdvance(float) - 0x00000000000d8a80 CBaseMonster::MakeIdealYaw(Vector) - 0x00000000000d8a90 CBaseAnimating::LookupActivity(int) - 0x00000000000d8aa0 CBaseAnimating::LookupActivityHeaviest(int) - 0x00000000000d8ab0 CBaseAnimating::LookupSequence(char const*, int) - 0x00000000000d8ac0 CBaseAnimating::ResetSequenceInfo() - 0x00000000000d8ad0 CBaseAnimating::GetSequenceFlags() - 0x00000000000d8ae0 CBaseAnimating::DispatchAnimEvents(float) - 0x00000000000d8af0 CBaseAnimating::InitBoneControllers() - 0x00000000000d8b00 CBaseAnimating::SetBlending(int, float) - 0x00000000000d8b10 CBaseAnimating::GetBonePosition(int, Vector&, Vector&) - 0x00000000000d8b20 CBaseAnimating::GetAttachment(int, Vector&, Vector&) - 0x00000000000d8b30 CBaseAnimating::FindTransition(int, int, int*) - 0x00000000000d8b40 CBaseAnimating::GetAutomovement(Vector&, Vector&, float) - 0x00000000000d8b50 CBaseAnimating::SetBodygroup(int, int) - 0x00000000000d8b60 CBaseAnimating::GetBodygroup(int) - 0x00000000000d8b70 CBaseEntity::FireBullets(unsigned int, Vector, Vector, Vector, float, int, int, int, entvars_s*, int) - 0x00000000000d8b80 CBaseMonster::MakeDamageBloodDecal(int, float, TraceResult*, Vector const&) - 0x00000000000d8b90 CBaseMonster::FCheckAITrigger() - 0x00000000000d8ba0 CBaseMonster::CorpseFallThink() - 0x00000000000d8bb0 CBaseMonster::RadiusDamage(entvars_s*, entvars_s*, float, int, int) - 0x00000000000d8bc0 CBaseMonster::RadiusDamage(Vector, entvars_s*, entvars_s*, float, int, int) - 0x00000000000d8bd0 TrainSpeed(int, int) - 0x00000000000d8be0 CBasePlayer::DeathSound() - 0x00000000000d8bf0 CBasePlayer::TakeHealth(float, int) - 0x00000000000d8c00 CBasePlayer::TabulateAmmo() - 0x00000000000d8c10 CBasePlayer::TraceAttack(entvars_s*, float, Vector, TraceResult*, int) - 0x00000000000d8c20 CBasePlayer::TakeDamage(entvars_s*, entvars_s*, float, int) - 0x00000000000d8c30 CBasePlayer::PackDeadPlayerItems() - 0x00000000000d8c40 CBasePlayer::RemoveAllItems(int) - 0x00000000000d8c50 CBasePlayer::SetAnimation(PLAYER_ANIM) - 0x00000000000d8c60 CBasePlayer::WaterMove() - 0x00000000000d8c70 CBasePlayer::InitPlayerFromSpawn(edict_s*) - 0x00000000000d8c80 CBasePlayer::IsOnLadder() - 0x00000000000d8c90 CBasePlayer::IsAlive() const - 0x00000000000d8ca0 CBasePlayer::IsAlive(bool) const - 0x00000000000d8cb0 CBasePlayer::PlayerDeathThink() - 0x00000000000d8cc0 CBasePlayer::StartDeathCam() - 0x00000000000d8cd0 CBasePlayer::StartObserver(Vector, Vector) - 0x00000000000d8ce0 CBasePlayer::StopObserver() - 0x00000000000d8cf0 CBasePlayer::PlayerUse() - 0x00000000000d8d00 CBasePlayer::Jump() - 0x00000000000d8d10 CBasePlayer::Duck() - 0x00000000000d8d20 CBasePlayer::Classify() - 0x00000000000d8d30 CBasePlayer::PreThink() - 0x00000000000d8d40 CBasePlayer::CheckTimeBasedDamage() - 0x00000000000d8d50 CBasePlayer::UpdateGeigerCounter() - 0x00000000000d8d60 CBasePlayer::CheckSuitUpdate() - 0x00000000000d8d70 CBasePlayer::SetSuitUpdate(char*, int, int) - 0x00000000000d8d80 CBasePlayer::UpdatePlayerSound() - 0x00000000000d8d90 CBasePlayer::PostThink() - 0x00000000000d8da0 CBasePlayer::EffectivePlayerClassChanged() - 0x00000000000d8db0 CBasePlayer::NeedsTeamUpdate() - 0x00000000000d8dc0 CBasePlayer::SendTeamUpdate() - 0x00000000000d8dd0 CBasePlayer::Suicide() - 0x00000000000d8de0 CBasePlayer::Precache() - 0x00000000000d8df0 CBasePlayer::Save(CSave&) - 0x00000000000d8e00 CBasePlayer::RenewItems() - 0x00000000000d8e10 CBasePlayer::Restore(CRestore&) - 0x00000000000d8e20 CBasePlayer::SelectNextItem(int) - 0x00000000000d8e30 CBasePlayer::HasWeapons() - 0x00000000000d8e40 CBasePlayer::SelectPrevItem(int) - 0x00000000000d8e50 FindEntityForward(CBaseEntity*) - 0x00000000000d8e60 CBasePlayer::ForceClientDllUpdate() - 0x00000000000d8e70 CBasePlayer::ImpulseCommands() - 0x00000000000d8e80 CBasePlayer::CheatImpulseCommands(int) - 0x00000000000d8e90 CBasePlayer::AddPlayerItem(CBasePlayerItem*) - 0x00000000000d8ea0 CBasePlayer::RemovePlayerItem(CBasePlayerItem*) - 0x00000000000d8eb0 CBasePlayer::ItemPreFrame() - 0x00000000000d8ec0 CBasePlayer::ItemPostFrame() - 0x00000000000d8ed0 CBasePlayer::AmmoInventory(int) - 0x00000000000d8ee0 CBasePlayer::GetAmmoIndex(char const*) - 0x00000000000d8ef0 CBasePlayer::GetMaxWalkSpeed() const - 0x00000000000d8f00 CBasePlayer::SendAmmoUpdate() - 0x00000000000d8f10 CBasePlayer::SendWeaponUpdate() - 0x00000000000d8f20 CBasePlayer::UpdateClientData() - 0x00000000000d8f30 CBasePlayer::FBecomeProne() - 0x00000000000d8f40 CBasePlayer::BarnacleVictimBitten(entvars_s*) - 0x00000000000d8f50 CBasePlayer::BarnacleVictimReleased() - 0x00000000000d8f60 CBasePlayer::Illumination() - 0x00000000000d8f70 CBasePlayer::EnableControl(int) - 0x00000000000d8f80 CBasePlayer::GetAutoaimVector(float) - 0x00000000000d8fb0 CBasePlayer::AutoaimDeflection(Vector&, float, float) - 0x00000000000d8fe0 CBasePlayer::ResetAutoaim() - 0x00000000000d8ff0 CBasePlayer::SetCustomDecalFrames(int) - 0x00000000000d9000 CBasePlayer::GetCustomDecalFrames() - 0x00000000000d9010 CBasePlayer::DropPlayerItem(char*) - 0x00000000000d9020 CBasePlayer::HasPlayerItem(CBasePlayerItem*) - 0x00000000000d9030 CBasePlayer::SwitchWeapon(CBasePlayerItem*) - 0x00000000000d9040 CBasePlayer::GetGunPosition() - 0x00000000000d9070 CBasePlayer::TeamID() - 0x00000000000d9080 CBasePlayer::SetTeamID(char const*) - 0x00000000000d9090 CBasePlayer::GiveAmmo(int, char*, int) - 0x00000000000d90a0 CBasePlayer::AddPoints(int, int) - 0x00000000000d90b0 CBasePlayer::AddPointsToTeam(int, int) - 0x00000000000d90c0 CBasePlayer::GiveNamedItem(char const*, bool) - 0x00000000000d90d0 ClearMultiDamage() - 0x00000000000d90e0 ApplyMultiDamage(entvars_s*, entvars_s*) - 0x00000000000d90f0 AddMultiDamage(entvars_s*, CBaseEntity*, float, int) - 0x00000000000d9100 SpawnBlood(Vector, int, float) - 0x00000000000d9110 DamageDecal(CBaseEntity*, int) - 0x00000000000d9120 DecalGunshot(TraceResult*, int) - 0x00000000000d9130 EjectBrass(Vector const&, Vector const&, float, int, int) - 0x00000000000d9140 AddAmmoNameToAmmoRegistry(char const*) - 0x00000000000d9150 CBasePlayerItem::FallInit() - 0x00000000000d9160 CBasePlayerItem::FallThink() - 0x00000000000d9170 CBasePlayerItem::Materialize() - 0x00000000000d9180 CBasePlayerItem::AttemptToMaterialize() - 0x00000000000d9190 CBasePlayerItem::CheckRespawn() - 0x00000000000d91a0 CBasePlayerItem::DefaultTouch(CBaseEntity*) - 0x00000000000d91b0 CBasePlayerItem::DestroyItem() - 0x00000000000d91c0 CBasePlayerWeapon::AddPrimaryAmmo(int, char*, int, int) - 0x00000000000d91d0 CBasePlayerWeapon::AddSecondaryAmmo(int, char*, int) - 0x00000000000d91e0 CBasePlayerAmmo::Materialize() - 0x00000000000d91f0 CBasePlayerAmmo::DefaultTouch(CBaseEntity*) - 0x00000000000d9200 CSoundEnt::InsertSound(int, Vector const&, int, float) - 0x00000000000d9210 RadiusDamage(Vector, entvars_s*, entvars_s*, float, float, int, int) - *fill* 0x00000000000d9211 0xf - .text._ZN11CBaseEntity5SpawnEv - 0x00000000000d9220 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9220 CBaseEntity::Spawn() - *fill* 0x00000000000d9221 0xf - .text._ZN11CBaseEntity8PrecacheEv - 0x00000000000d9230 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9230 CBaseEntity::Precache() - *fill* 0x00000000000d9231 0xf - .text._ZN11CBaseEntity8KeyValueEP14KeyValueData_s - 0x00000000000d9240 0xc release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9240 CBaseEntity::KeyValue(KeyValueData_s*) - *fill* 0x00000000000d924c 0x4 - .text._ZN11CBaseEntity10ObjectCapsEv - 0x00000000000d9250 0x6 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9250 CBaseEntity::ObjectCaps() - *fill* 0x00000000000d9256 0xa - .text._ZN11CBaseEntity8ActivateEv - 0x00000000000d9260 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9260 CBaseEntity::Activate() - *fill* 0x00000000000d9261 0xf - .text._ZN11CBaseEntity8ClassifyEv - 0x00000000000d9270 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9270 CBaseEntity::Classify() - *fill* 0x00000000000d9273 0xd - .text._ZN11CBaseEntity11DeathNoticeEP9entvars_s - 0x00000000000d9280 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9280 CBaseEntity::DeathNotice(entvars_s*) - *fill* 0x00000000000d9281 0xf - .text._ZNK11CBaseEntity13GetPointValueEv - 0x00000000000d9290 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9290 CBaseEntity::GetPointValue() const - *fill* 0x00000000000d9293 0xd - .text._ZN11CBaseEntity9AwardKillEP9entvars_s - 0x00000000000d92a0 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d92a0 CBaseEntity::AwardKill(entvars_s*) - *fill* 0x00000000000d92a1 0xf - .text._ZN11CBaseEntity10BloodColorEv - 0x00000000000d92b0 0x6 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d92b0 CBaseEntity::BloodColor() - *fill* 0x00000000000d92b6 0xa - .text._ZN11CBaseEntity11IsTriggeredEPS_ - 0x00000000000d92c0 0x6 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d92c0 CBaseEntity::IsTriggered(CBaseEntity*) - *fill* 0x00000000000d92c6 0xa - .text._ZN11CBaseEntity16MyMonsterPointerEv - 0x00000000000d92d0 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d92d0 CBaseEntity::MyMonsterPointer() - *fill* 0x00000000000d92d3 0xd - .text._ZN11CBaseEntity21MySquadMonsterPointerEv - 0x00000000000d92e0 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d92e0 CBaseEntity::MySquadMonsterPointer() - *fill* 0x00000000000d92e3 0xd - .text._ZN11CBaseEntity14GetToggleStateEv - 0x00000000000d92f0 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d92f0 CBaseEntity::GetToggleState() - *fill* 0x00000000000d92f3 0xd - .text._ZN11CBaseEntity9AddPointsEii - 0x00000000000d9300 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9300 CBaseEntity::AddPoints(int, int) - *fill* 0x00000000000d9301 0xf - .text._ZN11CBaseEntity15AddPointsToTeamEii - 0x00000000000d9310 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9310 CBaseEntity::AddPointsToTeam(int, int) - *fill* 0x00000000000d9311 0xf - .text._ZN11CBaseEntity13AddPlayerItemEP15CBasePlayerItem - 0x00000000000d9320 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9320 CBaseEntity::AddPlayerItem(CBasePlayerItem*) - *fill* 0x00000000000d9323 0xd - .text._ZN11CBaseEntity16RemovePlayerItemEP15CBasePlayerItem - 0x00000000000d9330 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9330 CBaseEntity::RemovePlayerItem(CBasePlayerItem*) - *fill* 0x00000000000d9333 0xd - .text._ZN11CBaseEntity8GiveAmmoEiPci - 0x00000000000d9340 0x6 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9340 CBaseEntity::GiveAmmo(int, char*, int) - *fill* 0x00000000000d9346 0xa - .text._ZN11CBaseEntity8GetDelayEv - 0x00000000000d9350 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9350 CBaseEntity::GetDelay() - *fill* 0x00000000000d9353 0xd - .text._ZN11CBaseEntity8IsMovingEv - 0x00000000000d9360 0x55 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9360 CBaseEntity::IsMoving() - *fill* 0x00000000000d93b5 0xb - .text._ZN11CBaseEntity13OverrideResetEv - 0x00000000000d93c0 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d93c0 CBaseEntity::OverrideReset() - *fill* 0x00000000000d93c1 0xf - .text._ZN11CBaseEntity14SetToggleStateEi - 0x00000000000d93d0 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d93d0 CBaseEntity::SetToggleState(int) - *fill* 0x00000000000d93d1 0xf - .text._ZN11CBaseEntity13StartSneakingEv - 0x00000000000d93e0 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d93e0 CBaseEntity::StartSneaking() - *fill* 0x00000000000d93e1 0xf - .text._ZN11CBaseEntity12StopSneakingEv - 0x00000000000d93f0 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d93f0 CBaseEntity::StopSneaking() - *fill* 0x00000000000d93f1 0xf - .text._ZN11CBaseEntity10OnControlsEP9entvars_s - 0x00000000000d9400 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9400 CBaseEntity::OnControls(entvars_s*) - *fill* 0x00000000000d9403 0xd - .text._ZN11CBaseEntity10IsSneakingEv - 0x00000000000d9410 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9410 CBaseEntity::IsSneaking() - *fill* 0x00000000000d9413 0xd - .text._ZNK11CBaseEntity7IsAliveEv - 0x00000000000d9420 0x27 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9420 CBaseEntity::IsAlive() const - *fill* 0x00000000000d9447 0x9 - .text._ZN11CBaseEntity10IsBSPModelEv - 0x00000000000d9450 0x26 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9450 CBaseEntity::IsBSPModel() - *fill* 0x00000000000d9476 0xa - .text._ZN11CBaseEntity12ReflectGaussEv - 0x00000000000d9480 0x37 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9480 CBaseEntity::ReflectGauss() - *fill* 0x00000000000d94b7 0x9 - .text._ZN11CBaseEntity8IsPlayerEv - 0x00000000000d94c0 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d94c0 CBaseEntity::IsPlayer() - *fill* 0x00000000000d94c3 0xd - .text._ZN11CBaseEntity11IsNetClientEv - 0x00000000000d94d0 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d94d0 CBaseEntity::IsNetClient() - *fill* 0x00000000000d94d3 0xd - .text._ZN11CBaseEntity6TeamIDEv - 0x00000000000d94e0 0x6 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d94e0 CBaseEntity::TeamID() - *fill* 0x00000000000d94e6 0xa - .text._ZN11CBaseEntity11ResetEntityEv - 0x00000000000d94f0 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d94f0 CBaseEntity::ResetEntity() - *fill* 0x00000000000d94f1 0xf - .text._ZN11CBaseEntity5ThinkEv - 0x00000000000d9500 0x31 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9500 CBaseEntity::Think() - *fill* 0x00000000000d9531 0xf - .text._ZN11CBaseEntity5TouchEPS_ - 0x00000000000d9540 0x42 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9540 CBaseEntity::Touch(CBaseEntity*) - *fill* 0x00000000000d9582 0xe - .text._ZN11CBaseEntity3UseEPS_S0_8USE_TYPEf - 0x00000000000d9590 0x81 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9590 CBaseEntity::Use(CBaseEntity*, CBaseEntity*, USE_TYPE, float) - *fill* 0x00000000000d9611 0xf - .text._ZN11CBaseEntity7BlockedEPS_ - 0x00000000000d9620 0x42 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9620 CBaseEntity::Blocked(CBaseEntity*) - *fill* 0x00000000000d9662 0xe - .text._ZN11CBaseEntity7RespawnEv - 0x00000000000d9670 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9670 CBaseEntity::Respawn() - *fill* 0x00000000000d9673 0xd - .text._ZN11CBaseEntity11UpdateOwnerEv - 0x00000000000d9680 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9680 CBaseEntity::UpdateOwner() - *fill* 0x00000000000d9681 0xf - .text._ZN11CBaseEntity12FBecomeProneEv - 0x00000000000d9690 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9690 CBaseEntity::FBecomeProne() - *fill* 0x00000000000d9693 0xd - .text._ZN11CBaseEntity6CenterEv - 0x00000000000d96a0 0x4c release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d96a0 CBaseEntity::Center() - *fill* 0x00000000000d96ec 0x4 - .text._ZN11CBaseEntity11EyePositionEv - 0x00000000000d96f0 0x31 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d96f0 CBaseEntity::EyePosition() - *fill* 0x00000000000d9721 0xf - .text._ZN11CBaseEntity11EarPositionEv - 0x00000000000d9730 0x31 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9730 CBaseEntity::EarPosition() - *fill* 0x00000000000d9761 0xf - .text._ZN11CBaseEntity10BodyTargetERK6Vector - 0x00000000000d9770 0x28 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9770 CBaseEntity::BodyTarget(Vector const&) - *fill* 0x00000000000d9798 0x8 - .text._ZN11CBaseEntity12IlluminationEv - 0x00000000000d97a0 0x18 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d97a0 CBaseEntity::Illumination() - *fill* 0x00000000000d97b8 0x8 - .text._ZN14CBaseAnimating15HandleAnimEventEP14MonsterEvent_t - 0x00000000000d97c0 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d97c0 CBaseAnimating::HandleAnimEvent(MonsterEvent_t*) - *fill* 0x00000000000d97c1 0xf - .text._ZN11CBaseToggle14GetToggleStateEv - 0x00000000000d97d0 0xb release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d97d0 CBaseToggle::GetToggleState() - *fill* 0x00000000000d97db 0x5 - .text._ZN11CBaseToggle8GetDelayEv - 0x00000000000d97e0 0xb release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d97e0 CBaseToggle::GetDelay() - *fill* 0x00000000000d97eb 0x5 - .text._ZN12CBaseMonster9PainSoundEv - 0x00000000000d97f0 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d97f0 CBaseMonster::PainSound() - *fill* 0x00000000000d97f1 0xf - .text._ZN12CBaseMonster7IsAliveEv - 0x00000000000d9800 0x15 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9800 CBaseMonster::IsAlive() - *fill* 0x00000000000d9815 0xb - .text._ZN8CGrenade10BloodColorEv - 0x00000000000d9820 0x6 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9820 CGrenade::BloodColor() - *fill* 0x00000000000d9826 0xa - .text._ZN15CBasePlayerItem12AddDuplicateEPS_ - 0x00000000000d9830 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9830 CBasePlayerItem::AddDuplicate(CBasePlayerItem*) - *fill* 0x00000000000d9833 0xd - .text._ZN15CBasePlayerItem18VirtualMaterializeEv - 0x00000000000d9840 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9840 CBasePlayerItem::VirtualMaterialize() - *fill* 0x00000000000d9841 0xf - .text._ZNK15CBasePlayerItem11GetItemInfoEP8ItemInfo - 0x00000000000d9850 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9850 CBasePlayerItem::GetItemInfo(ItemInfo*) const - *fill* 0x00000000000d9853 0xd - .text._ZN15CBasePlayerItem14UpdateItemInfoEv - 0x00000000000d9860 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9860 CBasePlayerItem::UpdateItemInfo() - *fill* 0x00000000000d9861 0xf - .text._ZN15CBasePlayerItem12ItemPreFrameEv - 0x00000000000d9870 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9870 CBasePlayerItem::ItemPreFrame() - *fill* 0x00000000000d9871 0xf - .text._ZN15CBasePlayerItem13ItemPostFrameEv - 0x00000000000d9880 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9880 CBasePlayerItem::ItemPostFrame() - *fill* 0x00000000000d9881 0xf - .text._ZN15CBasePlayerItem16PrimaryAmmoIndexEv - 0x00000000000d9890 0x6 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9890 CBasePlayerItem::PrimaryAmmoIndex() - *fill* 0x00000000000d9896 0xa - .text._ZN15CBasePlayerItem18SecondaryAmmoIndexEv - 0x00000000000d98a0 0x6 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d98a0 CBasePlayerItem::SecondaryAmmoIndex() - *fill* 0x00000000000d98a6 0xa - .text._ZN15CBasePlayerItem16UpdateClientDataEP11CBasePlayer - 0x00000000000d98b0 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d98b0 CBasePlayerItem::UpdateClientData(CBasePlayer*) - *fill* 0x00000000000d98b3 0xd - .text._ZN15CBasePlayerItem12GetWeaponPtrEv - 0x00000000000d98c0 0x5 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d98c0 CBasePlayerItem::GetWeaponPtr() - *fill* 0x00000000000d98c5 0xb - .text._ZN15CBasePlayerItem9iItemSlotEv - 0x00000000000d98d0 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d98d0 CBasePlayerItem::iItemSlot() - *fill* 0x00000000000d98d3 0xd - .text._ZN17CBasePlayerWeapon9AddWeaponEv - 0x00000000000d98e0 0x1f release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d98e0 CBasePlayerWeapon::AddWeapon() - *fill* 0x00000000000d98ff 0x1 - .text._ZN17CBasePlayerWeapon14UpdateItemInfoEv - 0x00000000000d9900 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9900 CBasePlayerWeapon::UpdateItemInfo() - *fill* 0x00000000000d9901 0xf - .text._ZNK17CBasePlayerWeapon18GetWeaponPrimeTimeEv - 0x00000000000d9910 0x5 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9910 CBasePlayerWeapon::GetWeaponPrimeTime() const - *fill* 0x00000000000d9915 0xb - .text._ZN17CBasePlayerWeapon11PrimeWeaponEv - 0x00000000000d9920 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9920 CBasePlayerWeapon::PrimeWeapon() - *fill* 0x00000000000d9921 0xf - .text._ZNK17CBasePlayerWeapon17GetIsWeaponPrimedEv - 0x00000000000d9930 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9930 CBasePlayerWeapon::GetIsWeaponPrimed() const - *fill* 0x00000000000d9933 0xd - .text._ZNK17CBasePlayerWeapon18GetIsWeaponPrimingEv - 0x00000000000d9940 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9940 CBasePlayerWeapon::GetIsWeaponPriming() const - *fill* 0x00000000000d9943 0xd - .text._ZNK17CBasePlayerWeapon13GetDeployTimeEv - 0x00000000000d9950 0x7 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9950 CBasePlayerWeapon::GetDeployTime() const - *fill* 0x00000000000d9957 0x9 - .text._ZN17CBasePlayerWeapon13PrimaryAttackEv - 0x00000000000d9960 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9960 CBasePlayerWeapon::PrimaryAttack() - *fill* 0x00000000000d9961 0xf - .text._ZN17CBasePlayerWeapon15SecondaryAttackEv - 0x00000000000d9970 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9970 CBasePlayerWeapon::SecondaryAttack() - *fill* 0x00000000000d9971 0xf - .text._ZN17CBasePlayerWeapon6ReloadEv - 0x00000000000d9980 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9980 CBasePlayerWeapon::Reload() - *fill* 0x00000000000d9981 0xf - .text._ZN17CBasePlayerWeapon10WeaponIdleEv - 0x00000000000d9990 0x1 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d9990 CBasePlayerWeapon::WeaponIdle() - *fill* 0x00000000000d9991 0xf - .text._ZN17CBasePlayerWeapon16ShouldWeaponIdleEv - 0x00000000000d99a0 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d99a0 CBasePlayerWeapon::ShouldWeaponIdle() - *fill* 0x00000000000d99a3 0xd - .text._ZN17CBasePlayerWeapon12UseDecrementEv - 0x00000000000d99b0 0x3 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d99b0 CBasePlayerWeapon::UseDecrement() - *fill* 0x00000000000d99b3 0xd - .text._ZN15CBasePlayerAmmo7AddAmmoEP11CBaseEntity - 0x00000000000d99c0 0x6 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d99c0 CBasePlayerAmmo::AddAmmo(CBaseEntity*) - *fill* 0x00000000000d99c6 0xa - .text._ZN11CBaseEntity9HasTargetEj - 0x00000000000d99d0 0x3b release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000000d99d0 CBaseEntity::HasTarget(unsigned int) - *fill* 0x00000000000d9a0b 0x5 - .text 0x00000000000d9a10 0x1a1 release/obj/hl1_client/hl/hl_objects.o - 0x00000000000d9a10 UpdateBeams() - 0x00000000000d9b90 Game_AddObjects() - *fill* 0x00000000000d9bb1 0xf - .text 0x00000000000d9bc0 0x247a release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000d9bc0 CBaseEntity::Killed(entvars_s*, int) - 0x00000000000d9be0 CBasePlayerWeapon::CanDeploy() - 0x00000000000d9c60 CBasePlayerWeapon::ResetEmptySound() - 0x00000000000d9c70 CBasePlayer::Killed(entvars_s*, int) - 0x00000000000d9ca0 CBasePlayer::Spawn() - 0x00000000000d9cd0 AlertMessage(ALERT_TYPE, char*, ...) - 0x00000000000d9d20 CBasePlayerWeapon::PlayEmptySound() - 0x00000000000d9d60 CheckJetpack() - 0x00000000000d9d70 bIsMultiplayer() - 0x00000000000d9d90 LoadVModel(char*, CBasePlayer*) - 0x00000000000d9db0 CBasePlayerWeapon::DefaultReload(int, int, float, int) - 0x00000000000d9e40 CBasePlayerWeapon::DefaultDeploy(char*, char*, int, char*, int, int) - 0x00000000000d9ee0 CBasePlayerWeapon::Holster(int) - 0x00000000000d9f00 CBasePlayerWeapon::SendWeaponAnim(int, int, int) - 0x00000000000d9f30 CBaseEntity::FireBulletsPlayer(unsigned int, Vector, Vector, Vector, float, int, int, int, entvars_s*, int) - 0x00000000000d9f50 GetCanUseWeapon() - 0x00000000000d9fb0 CBasePlayerWeapon::ItemPostFrame() - 0x00000000000da830 CBasePlayer::SelectItem(char const*) - 0x00000000000da840 CBasePlayer::SelectLastItem() - 0x00000000000da8c0 UTIL_TraceLine(Vector const&, Vector const&, IGNORE_MONSTERS, edict_s*, TraceResult*) - 0x00000000000da9b0 UTIL_ParticleBox(CBasePlayer*, float*, float*, float, unsigned char, unsigned char, unsigned char) - 0x00000000000daa40 UTIL_ParticleBoxes() - 0x00000000000dab40 UTIL_ParticleLine(CBasePlayer*, float*, float*, float, unsigned char, unsigned char, unsigned char) - 0x00000000000daba0 CBasePlayerWeapon::PrintState() - 0x00000000000dac70 HUD_GetLastOrg(float*) - 0x00000000000daca0 HUD_SetLastOrg() - 0x00000000000dace0 HUD_GetWeaponForID(int) - 0x00000000000dad00 HUD_GetWeaponEnabled(int) - 0x00000000000dad60 HUD_PrepEntity(CBaseEntity*, CBasePlayer*) - 0x00000000000db1b0 HUD_InitClientWeapons() - 0x00000000000db5c0 HUD_WeaponsPostThink(local_state_s*, local_state_s*, usercmd_s*, double, unsigned int) - 0x00000000000dbfa0 HUD_PostRunCmd - *fill* 0x00000000000dc03a 0x6 - .text._ZN11CBasePlayer10BodyTargetERK6Vector - 0x00000000000dc040 0x7f release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc040 CBasePlayer::BodyTarget(Vector const&) - *fill* 0x00000000000dc0bf 0x1 - .text._ZN11CBasePlayer13StartSneakingEv - 0x00000000000dc0c0 0x14 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc0c0 CBasePlayer::StartSneaking() - *fill* 0x00000000000dc0d4 0xc - .text._ZN11CBasePlayer12StopSneakingEv - 0x00000000000dc0e0 0x18 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc0e0 CBasePlayer::StopSneaking() - *fill* 0x00000000000dc0f8 0x8 - .text._ZN11CBasePlayer10IsSneakingEv - 0x00000000000dc100 0x1d release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc100 CBasePlayer::IsSneaking() - *fill* 0x00000000000dc11d 0x3 - .text._ZN11CBasePlayer17ShouldFadeOnDeathEv - 0x00000000000dc120 0x3 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc120 CBasePlayer::ShouldFadeOnDeath() - *fill* 0x00000000000dc123 0xd - .text._ZN11CBasePlayer8IsPlayerEv - 0x00000000000dc130 0x6 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc130 CBasePlayer::IsPlayer() - *fill* 0x00000000000dc136 0xa - .text._ZN11CBasePlayer11IsNetClientEv - 0x00000000000dc140 0x15 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc140 CBasePlayer::IsNetClient() - *fill* 0x00000000000dc155 0xb - .text._ZN11CBasePlayer23GetEffectivePlayerClassEv - 0x00000000000dc160 0x3 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc160 CBasePlayer::GetEffectivePlayerClass() - *fill* 0x00000000000dc163 0xd - .text._ZN11CBasePlayer21GetAuthenticationMaskEv - 0x00000000000dc170 0x3 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc170 CBasePlayer::GetAuthenticationMask() - *fill* 0x00000000000dc173 0xd - .text._ZN11CBasePlayer10ObjectCapsEv - 0x00000000000dc180 0x3 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc180 CBasePlayer::ObjectCaps() - *fill* 0x00000000000dc183 0xd - .text._ZNK11CBasePlayer19GetAdrenalineFactorEv - 0x00000000000dc190 0x3 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc190 CBasePlayer::GetAdrenalineFactor() const - *fill* 0x00000000000dc193 0xd - .text._ZNK11CBasePlayer15GetCanUseWeaponEv - 0x00000000000dc1a0 0x3 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc1a0 CBasePlayer::GetCanUseWeapon() const - *fill* 0x00000000000dc1a3 0xd - .text._ZNK19AvHBasePlayerWeapon30GetMustPressTriggerForEachShotEv - 0x00000000000dc1b0 0x3 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc1b0 AvHBasePlayerWeapon::GetMustPressTriggerForEachShot() const - *fill* 0x00000000000dc1b3 0xd - .text._ZN14AvHAlienWeapon14GetTakesEnergyEv - 0x00000000000dc1c0 0x6 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc1c0 AvHAlienWeapon::GetTakesEnergy() - *fill* 0x00000000000dc1c6 0xa - .text._ZN21AvHAlienAbilityWeapon17PlaybackLeapEventEv - 0x00000000000dc1d0 0x49 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc1d0 AvHAlienAbilityWeapon::PlaybackLeapEvent() - *fill* 0x00000000000dc219 0x7 - .text._ZN9AvHChargeD2Ev - 0x00000000000dc220 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc220 AvHCharge::~AvHCharge() - 0x00000000000dc220 AvHCharge::~AvHCharge() - *fill* 0x00000000000dc241 0xf - .text._ZN7AvHLeapD2Ev - 0x00000000000dc250 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc250 AvHLeap::~AvHLeap() - 0x00000000000dc250 AvHLeap::~AvHLeap() - *fill* 0x00000000000dc271 0xf - .text._ZN11AvHBlinkGunD2Ev - 0x00000000000dc280 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc280 AvHBlinkGun::~AvHBlinkGun() - 0x00000000000dc280 AvHBlinkGun::~AvHBlinkGun() - *fill* 0x00000000000dc2a1 0xf - .text._ZN8AvHStompD2Ev - 0x00000000000dc2b0 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc2b0 AvHStomp::~AvHStomp() - 0x00000000000dc2b0 AvHStomp::~AvHStomp() - *fill* 0x00000000000dc2d1 0xf - .text._ZN9AvHDevourD2Ev - 0x00000000000dc2e0 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc2e0 AvHDevour::~AvHDevour() - 0x00000000000dc2e0 AvHDevour::~AvHDevour() - *fill* 0x00000000000dc301 0xf - .text._ZN13AvHMetabolizeD2Ev - 0x00000000000dc310 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc310 AvHMetabolize::~AvHMetabolize() - 0x00000000000dc310 AvHMetabolize::~AvHMetabolize() - *fill* 0x00000000000dc331 0xf - .text._ZN15AvHHealingSprayD2Ev - 0x00000000000dc340 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc340 AvHHealingSpray::~AvHHealingSpray() - 0x00000000000dc340 AvHHealingSpray::~AvHHealingSpray() - *fill* 0x00000000000dc361 0xf - .text._ZN16AvHAcidRocketGunD2Ev - 0x00000000000dc370 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc370 AvHAcidRocketGun::~AvHAcidRocketGun() - 0x00000000000dc370 AvHAcidRocketGun::~AvHAcidRocketGun() - *fill* 0x00000000000dc391 0xf - .text._ZN14AvHBileBombGunD2Ev - 0x00000000000dc3a0 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc3a0 AvHBileBombGun::~AvHBileBombGun() - 0x00000000000dc3a0 AvHBileBombGun::~AvHBileBombGun() - *fill* 0x00000000000dc3c1 0xf - .text._ZN13AvHDivineWindD2Ev - 0x00000000000dc3d0 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc3d0 AvHDivineWind::~AvHDivineWind() - 0x00000000000dc3d0 AvHDivineWind::~AvHDivineWind() - *fill* 0x00000000000dc3f1 0xf - .text._ZN11AvHUmbraGunD2Ev - 0x00000000000dc400 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc400 AvHUmbraGun::~AvHUmbraGun() - 0x00000000000dc400 AvHUmbraGun::~AvHUmbraGun() - *fill* 0x00000000000dc421 0xf - .text._ZN14AvHParasiteGunD2Ev - 0x00000000000dc430 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc430 AvHParasiteGun::~AvHParasiteGun() - 0x00000000000dc430 AvHParasiteGun::~AvHParasiteGun() - *fill* 0x00000000000dc451 0xf - .text._ZN15AvHPrimalScreamD2Ev - 0x00000000000dc460 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc460 AvHPrimalScream::~AvHPrimalScream() - 0x00000000000dc460 AvHPrimalScream::~AvHPrimalScream() - *fill* 0x00000000000dc481 0xf - .text._ZN13AvHWebSpinnerD2Ev - 0x00000000000dc490 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc490 AvHWebSpinner::~AvHWebSpinner() - 0x00000000000dc490 AvHWebSpinner::~AvHWebSpinner() - *fill* 0x00000000000dc4b1 0xf - .text._ZN8AvHSwipeD2Ev - 0x00000000000dc4c0 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc4c0 AvHSwipe::~AvHSwipe() - 0x00000000000dc4c0 AvHSwipe::~AvHSwipe() - *fill* 0x00000000000dc4e1 0xf - .text._ZN11AvHSpikeGunD2Ev - 0x00000000000dc4f0 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc4f0 AvHSpikeGun::~AvHSpikeGun() - 0x00000000000dc4f0 AvHSpikeGun::~AvHSpikeGun() - *fill* 0x00000000000dc511 0xf - .text._ZN7AvHBiteD2Ev - 0x00000000000dc520 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc520 AvHBite::~AvHBite() - 0x00000000000dc520 AvHBite::~AvHBite() - *fill* 0x00000000000dc541 0xf - .text._ZN8AvHBite2D2Ev - 0x00000000000dc550 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc550 AvHBite2::~AvHBite2() - 0x00000000000dc550 AvHBite2::~AvHBite2() - *fill* 0x00000000000dc571 0xf - .text._ZN8AvHSporeD2Ev - 0x00000000000dc580 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc580 AvHSpore::~AvHSpore() - 0x00000000000dc580 AvHSpore::~AvHSpore() - *fill* 0x00000000000dc5a1 0xf - .text._ZN8AvHClawsD2Ev - 0x00000000000dc5b0 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc5b0 AvHClaws::~AvHClaws() - 0x00000000000dc5b0 AvHClaws::~AvHClaws() - *fill* 0x00000000000dc5d1 0xf - .text._ZN10AvHSpitGunD2Ev - 0x00000000000dc5e0 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc5e0 AvHSpitGun::~AvHSpitGun() - 0x00000000000dc5e0 AvHSpitGun::~AvHSpitGun() - *fill* 0x00000000000dc601 0xf - .text._ZN7AvHMineD2Ev - 0x00000000000dc610 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc610 AvHMine::~AvHMine() - 0x00000000000dc610 AvHMine::~AvHMine() - *fill* 0x00000000000dc631 0xf - .text._ZN9AvHWelderD2Ev - 0x00000000000dc640 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc640 AvHWelder::~AvHWelder() - 0x00000000000dc640 AvHWelder::~AvHWelder() - *fill* 0x00000000000dc661 0xf - .text._ZN10AvHGrenadeD2Ev - 0x00000000000dc670 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc670 AvHGrenade::~AvHGrenade() - 0x00000000000dc670 AvHGrenade::~AvHGrenade() - *fill* 0x00000000000dc691 0xf - .text._ZN13AvHGrenadeGunD2Ev - 0x00000000000dc6a0 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc6a0 AvHGrenadeGun::~AvHGrenadeGun() - 0x00000000000dc6a0 AvHGrenadeGun::~AvHGrenadeGun() - *fill* 0x00000000000dc6c1 0xf - .text._ZN18AvHHeavyMachineGunD2Ev - 0x00000000000dc6d0 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc6d0 AvHHeavyMachineGun::~AvHHeavyMachineGun() - 0x00000000000dc6d0 AvHHeavyMachineGun::~AvHHeavyMachineGun() - *fill* 0x00000000000dc6f1 0xf - .text._ZN11AvHSonicGunD2Ev - 0x00000000000dc700 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc700 AvHSonicGun::~AvHSonicGun() - 0x00000000000dc700 AvHSonicGun::~AvHSonicGun() - *fill* 0x00000000000dc721 0xf - .text._ZN9AvHPistolD2Ev - 0x00000000000dc730 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc730 AvHPistol::~AvHPistol() - 0x00000000000dc730 AvHPistol::~AvHPistol() - *fill* 0x00000000000dc751 0xf - .text._ZN13AvHMachineGunD2Ev - 0x00000000000dc760 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc760 AvHMachineGun::~AvHMachineGun() - 0x00000000000dc760 AvHMachineGun::~AvHMachineGun() - *fill* 0x00000000000dc781 0xf - .text._ZN8AvHKnifeD2Ev - 0x00000000000dc790 0x21 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc790 AvHKnife::~AvHKnife() - 0x00000000000dc790 AvHKnife::~AvHKnife() - *fill* 0x00000000000dc7b1 0xf - .text._ZNSt6vectorIiSaIiEED2Ev - 0x00000000000dc7c0 0x19 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc7c0 std::vector >::~vector() - 0x00000000000dc7c0 std::vector >::~vector() - *fill* 0x00000000000dc7d9 0x7 - .text._ZN11CBasePlayer23GetAnimationForActivityEiPcb - 0x00000000000dc7e0 0x8 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc7e0 CBasePlayer::GetAnimationForActivity(int, char*, bool) - *fill* 0x00000000000dc7e8 0x8 - .text._ZSt6__findIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiET_S7_S7_RKT0_St26random_access_iterator_tag - 0x00000000000dc7f0 0xed release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc7f0 __gnu_cxx::__normal_iterator > > std::__find<__gnu_cxx::__normal_iterator > >, int>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, int const&, std::random_access_iterator_tag) - *fill* 0x00000000000dc8dd 0x3 - .text._ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi - 0x00000000000dc8e0 0x195 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000000dc8e0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, int const&) - *fill* 0x00000000000dca75 0xb - .text 0x00000000000dca80 0x665a release/obj/hl1_client/ammo.o - 0x00000000000dca80 WeaponsResource::~WeaponsResource() - 0x00000000000dca80 WeaponsResource::~WeaponsResource() - 0x00000000000dca90 __CmdFunc_MovementOff() - 0x00000000000dcaa0 __MsgFunc_AmmoX(char const*, int, void*) - 0x00000000000dcaf0 __MsgFunc_WeapPickup(char const*, int, void*) - 0x00000000000dcb40 __MsgFunc_AmmoPickup(char const*, int, void*) - 0x00000000000dcba0 __MsgFunc_ItemPickup(char const*, int, void*) - 0x00000000000dcc40 CHudAmmo::Reset() - 0x00000000000dcd10 __CmdFunc_Close() - 0x00000000000dcd70 __CmdFunc_MovementOn() - 0x00000000000dce00 __MsgFunc_HideWeapon(char const*, int, void*) - 0x00000000000dcf00 __CmdFunc_LastInv() - 0x00000000000dcf90 __MsgFunc_CurWeapon(char const*, int, void*) - 0x00000000000dd140 CHudAmmo::Init() - 0x00000000000dd460 WeaponsResource::WeaponsResource() - 0x00000000000dd460 WeaponsResource::WeaponsResource() - 0x00000000000dd480 WeaponsResource::Init() - 0x00000000000dd690 WeaponsResource::Reset() - 0x00000000000dd840 WeaponsResource::LoadWeaponSprites(WEAPON*, int) - 0x00000000000de3a0 WeaponsResource::LoadAllWeaponSprites() - 0x00000000000de410 CHudAmmo::VidInit() - 0x00000000000de530 WeaponsResource::GetWeapon(int) - 0x00000000000de570 WeaponsResource::GetWeaponSlot(int, int) - 0x00000000000de590 WeaponsResource::GetFirstPos(int) - 0x00000000000de600 WeaponsResource::GetNextActivePos(int, int) - 0x00000000000de670 WeaponsResource::IsEnabled(WEAPON*) - 0x00000000000de700 WeaponsResource::IsSelectable(WEAPON*) - 0x00000000000de730 WeaponsResource::HasAmmo(WEAPON*) - 0x00000000000de7b0 WeaponsResource::CountAmmo(int) - 0x00000000000de7d0 WeaponsResource::GetAmmo(int) - 0x00000000000de7e0 WeaponsResource::SetAmmo(int, int) - 0x00000000000de800 WeaponsResource::GetAmmoPicFromWeapon(int, rect_s&) - 0x00000000000de8b0 WeaponsResource::AddWeapon(WEAPON*) - 0x00000000000de940 WeaponsResource::PickupWeapon(WEAPON*) - 0x00000000000de970 WeaponsResource::DropWeapon(WEAPON*) - 0x00000000000de9b0 WeaponsResource::DropAllWeapons() - 0x00000000000dea20 WeaponsResource::UserCmd_LastInv() - 0x00000000000deac0 WeaponsResource::UserCmd_MovementOn() - 0x00000000000deb50 WeaponsResource::UserCmd_MovementOff() - 0x00000000000deb60 WeaponsResource::SetValidWeapon() - 0x00000000000dedf0 CHudAmmo::Think() - 0x00000000000df0f0 WeaponsResource::SetCurrentWeapon(WEAPON*) - 0x00000000000df160 __CmdFunc_Slot6() - 0x00000000000df1b0 __CmdFunc_Slot7() - 0x00000000000df200 __CmdFunc_Slot8() - 0x00000000000df250 __CmdFunc_Slot9() - 0x00000000000df2a0 __CmdFunc_Slot10() - 0x00000000000df2f0 __CmdFunc_Slot3() - 0x00000000000df600 __CmdFunc_Slot2() - 0x00000000000df8c0 __CmdFunc_Slot5() - 0x00000000000dfb80 __CmdFunc_Slot1() - 0x00000000000dfe40 __CmdFunc_Slot4() - 0x00000000000e0100 WeaponsResource::SelectSlot(int, int, int) - 0x00000000000e0460 CHudAmmo::MsgFunc_AmmoX(char const*, int, void*) - 0x00000000000e04b0 CHudAmmo::MsgFunc_AmmoPickup(char const*, int, void*) - 0x00000000000e0510 CHudAmmo::MsgFunc_WeapPickup(char const*, int, void*) - 0x00000000000e0560 CHudAmmo::MsgFunc_ItemPickup(char const*, int, void*) - 0x00000000000e0600 CHudAmmo::MsgFunc_HideWeapon(char const*, int, void*) - 0x00000000000e0700 CHudAmmo::MsgFunc_CurWeapon(char const*, int, void*) - 0x00000000000e08c0 CHudAmmo::MsgFunc_WeaponList(char const*, int, void*) - 0x00000000000e0aa0 __MsgFunc_WeaponList(char const*, int, void*) - 0x00000000000e0ad0 CHudAmmo::SlotInput(int) - 0x00000000000e0e10 CHudAmmo::UserCmd_Slot1() - 0x00000000000e10d0 CHudAmmo::UserCmd_Slot2() - 0x00000000000e1390 CHudAmmo::UserCmd_Slot3() - 0x00000000000e1650 CHudAmmo::UserCmd_Slot4() - 0x00000000000e1910 CHudAmmo::UserCmd_Slot5() - 0x00000000000e1bd0 CHudAmmo::UserCmd_Slot6() - 0x00000000000e1c20 CHudAmmo::UserCmd_Slot7() - 0x00000000000e1c70 CHudAmmo::UserCmd_Slot8() - 0x00000000000e1cc0 CHudAmmo::UserCmd_Slot9() - 0x00000000000e1d10 CHudAmmo::UserCmd_Slot10() - 0x00000000000e1d60 CHudAmmo::UserCmd_Close() - 0x00000000000e1dc0 CHudAmmo::UserCmd_NextWeapon() - 0x00000000000e1ed0 __CmdFunc_NextWeapon() - 0x00000000000e1ef0 CHudAmmo::UserCmd_PrevWeapon() - 0x00000000000e2010 __CmdFunc_PrevWeapon() - 0x00000000000e2030 CHudAmmo::SetCurrentClip(int) - 0x00000000000e2050 DrawBar(int, int, int, int, float) - 0x00000000000e21c0 DrawAmmoBar(WEAPON*, int, int, int, int) - 0x00000000000e23c0 CHudAmmo::DrawWList(float) - 0x00000000000e2ad0 CHudAmmo::Draw(float) - 0x00000000000e3080 GetSpriteList(client_sprite_s*, char const*, int, int) - *fill* 0x00000000000e30da 0x6 - .text._ZN8CHudBaseD2Ev - 0x00000000000e30e0 0xb release/obj/hl1_client/ammo.o - 0x00000000000e30e0 CHudBase::~CHudBase() - 0x00000000000e30e0 CHudBase::~CHudBase() - *fill* 0x00000000000e30eb 0x5 - .text._ZN8CHudBase4InitEv - 0x00000000000e30f0 0x3 release/obj/hl1_client/ammo.o - 0x00000000000e30f0 CHudBase::Init() - *fill* 0x00000000000e30f3 0xd - .text._ZN8CHudBase7VidInitEv - 0x00000000000e3100 0x3 release/obj/hl1_client/ammo.o - 0x00000000000e3100 CHudBase::VidInit() - *fill* 0x00000000000e3103 0xd - .text._ZN8CHudBase4DrawEf - 0x00000000000e3110 0x3 release/obj/hl1_client/ammo.o - 0x00000000000e3110 CHudBase::Draw(float) - *fill* 0x00000000000e3113 0xd - .text._ZN8CHudBase5ThinkEv - 0x00000000000e3120 0x1 release/obj/hl1_client/ammo.o - 0x00000000000e3120 CHudBase::Think() - *fill* 0x00000000000e3121 0xf - .text._ZN8CHudBase5ResetEv - 0x00000000000e3130 0x1 release/obj/hl1_client/ammo.o - 0x00000000000e3130 CHudBase::Reset() - *fill* 0x00000000000e3131 0xf - .text._ZN8CHudBase11InitHUDDataEv - 0x00000000000e3140 0x1 release/obj/hl1_client/ammo.o - 0x00000000000e3140 CHudBase::InitHUDData() - *fill* 0x00000000000e3141 0xf - .text._ZN8CHudAmmoD2Ev - 0x00000000000e3150 0xb release/obj/hl1_client/ammo.o - 0x00000000000e3150 CHudAmmo::~CHudAmmo() - 0x00000000000e3150 CHudAmmo::~CHudAmmo() - *fill* 0x00000000000e315b 0x5 - .text._ZN8CHudBaseD0Ev - 0x00000000000e3160 0xf release/obj/hl1_client/ammo.o - 0x00000000000e3160 CHudBase::~CHudBase() - *fill* 0x00000000000e316f 0x1 - .text._ZN8CHudAmmoD0Ev - 0x00000000000e3170 0xf release/obj/hl1_client/ammo.o - 0x00000000000e3170 CHudAmmo::~CHudAmmo() - *fill* 0x00000000000e317f 0x1 - .text 0x00000000000e3180 0x53c release/obj/hl1_client/cdll_int.o - 0x00000000000e3180 HUD_ConnectionlessPacket - 0x00000000000e31a0 HUD_PlayerMoveInit - 0x00000000000e31b0 HUD_PlayerMoveTexture - 0x00000000000e31c0 HUD_PlayerMove - 0x00000000000e31d0 HUD_Frame - 0x00000000000e3210 HUD_VoiceStatus - 0x00000000000e3240 HUD_DirectorMessage - 0x00000000000e3270 HUD_GetHullBounds - 0x00000000000e3370 F - 0x00000000000e3580 Initialize - 0x00000000000e35f0 HUD_VidInit - 0x00000000000e3620 HUD_Reset - 0x00000000000e3640 HUD_Init - 0x00000000000e3660 HUD_Redraw - 0x00000000000e3690 HUD_UpdateClientData - *fill* 0x00000000000e36bc 0x4 - .text._ZN14IBaseInterfaceD2Ev - 0x00000000000e36c0 0xb release/obj/hl1_client/cdll_int.o - 0x00000000000e36c0 IBaseInterface::~IBaseInterface() - 0x00000000000e36c0 IBaseInterface::~IBaseInterface() - *fill* 0x00000000000e36cb 0x5 - .text._ZN14CClientExports17GetServerHostNameEv - 0x00000000000e36d0 0x6 release/obj/hl1_client/cdll_int.o - 0x00000000000e36d0 CClientExports::GetServerHostName() - *fill* 0x00000000000e36d6 0xa - .text._ZN18IGameClientExportsD2Ev - 0x00000000000e36e0 0xb release/obj/hl1_client/cdll_int.o - 0x00000000000e36e0 IGameClientExports::~IGameClientExports() - 0x00000000000e36e0 IGameClientExports::~IGameClientExports() - *fill* 0x00000000000e36eb 0x5 - .text._ZN14CClientExportsD2Ev - 0x00000000000e36f0 0xb release/obj/hl1_client/cdll_int.o - 0x00000000000e36f0 CClientExports::~CClientExports() - 0x00000000000e36f0 CClientExports::~CClientExports() - *fill* 0x00000000000e36fb 0x5 - .text._ZN14IBaseInterfaceD0Ev - 0x00000000000e3700 0xf release/obj/hl1_client/cdll_int.o - 0x00000000000e3700 IBaseInterface::~IBaseInterface() - *fill* 0x00000000000e370f 0x1 - .text._ZN18IGameClientExportsD0Ev - 0x00000000000e3710 0xf release/obj/hl1_client/cdll_int.o - 0x00000000000e3710 IGameClientExports::~IGameClientExports() - *fill* 0x00000000000e371f 0x1 - .text._ZN14CClientExportsD0Ev - 0x00000000000e3720 0xf release/obj/hl1_client/cdll_int.o - 0x00000000000e3720 CClientExports::~CClientExports() - *fill* 0x00000000000e372f 0x1 - .text._ZN14CClientExports22IsPlayerGameVoiceMutedEi - 0x00000000000e3730 0x37 release/obj/hl1_client/cdll_int.o - 0x00000000000e3730 CClientExports::IsPlayerGameVoiceMuted(int) - *fill* 0x00000000000e3767 0x9 - .text._ZN14CClientExports19MutePlayerGameVoiceEi - 0x00000000000e3770 0x2e release/obj/hl1_client/cdll_int.o - 0x00000000000e3770 CClientExports::MutePlayerGameVoice(int) - *fill* 0x00000000000e379e 0x2 - .text._ZN14CClientExports21UnmutePlayerGameVoiceEi - 0x00000000000e37a0 0x2b release/obj/hl1_client/cdll_int.o - 0x00000000000e37a0 CClientExports::UnmutePlayerGameVoice(int) - *fill* 0x00000000000e37cb 0x5 - .text 0x00000000000e37d0 0x354 release/obj/hl1_client/ammo_secondary.o - 0x00000000000e37d0 CHudAmmoSecondary::Reset() - 0x00000000000e37e0 CHudAmmoSecondary::VidInit() - 0x00000000000e37f0 CHudAmmoSecondary::Init() - 0x00000000000e3840 CHudAmmoSecondary::Draw(float) - *fill* 0x00000000000e3b24 0xc - .text._ZN17CHudAmmoSecondaryD2Ev - 0x00000000000e3b30 0xb release/obj/hl1_client/ammo_secondary.o - 0x00000000000e3b30 CHudAmmoSecondary::~CHudAmmoSecondary() - 0x00000000000e3b30 CHudAmmoSecondary::~CHudAmmoSecondary() - *fill* 0x00000000000e3b3b 0x5 - .text._ZN17CHudAmmoSecondaryD0Ev - 0x00000000000e3b40 0xf release/obj/hl1_client/ammo_secondary.o - 0x00000000000e3b40 CHudAmmoSecondary::~CHudAmmoSecondary() - *fill* 0x00000000000e3b4f 0x1 - .text 0x00000000000e3b50 0x76d release/obj/hl1_client/ammohistory.o - 0x00000000000e3b50 HistoryResource::AddToHistory(int, int, int) - 0x00000000000e3c20 HistoryResource::AddToHistory(int, char const*, int) - 0x00000000000e3cf0 HistoryResource::CheckClearHistory() - 0x00000000000e3d60 HistoryResource::DrawAmmoHistory(float) - *fill* 0x00000000000e42bd 0x3 - .text 0x00000000000e42c0 0x575 release/obj/hl1_client/battery.o - 0x00000000000e42c0 CHudBattery::Init() - 0x00000000000e4310 CHudBattery::VidInit() - 0x00000000000e4390 __MsgFunc_Battery(char const*, int, void*) - 0x00000000000e43e0 CHudBattery::Draw(float) - 0x00000000000e47f0 CHudBattery::MsgFunc_Battery(char const*, int, void*) - *fill* 0x00000000000e4835 0xb - .text._ZN11CHudBatteryD2Ev - 0x00000000000e4840 0xb release/obj/hl1_client/battery.o - 0x00000000000e4840 CHudBattery::~CHudBattery() - 0x00000000000e4840 CHudBattery::~CHudBattery() - *fill* 0x00000000000e484b 0x5 - .text._ZN11CHudBatteryD0Ev - 0x00000000000e4850 0xf release/obj/hl1_client/battery.o - 0x00000000000e4850 CHudBattery::~CHudBattery() - *fill* 0x00000000000e485f 0x1 - .text 0x00000000000e4860 0x3c1 release/obj/hl1_client/com_weapons.o - 0x00000000000e4860 COM_Log(char*, char*, ...) - 0x00000000000e4910 HUD_SendWeaponAnim(int, int, int) - 0x00000000000e4940 HUD_GetWeaponAnim() - 0x00000000000e4950 HUD_PlaySound(char*, float) - 0x00000000000e4990 HUD_PlaybackEvent(int, edict_s const*, unsigned short, float, float*, float*, float, float, int, int, int, int) - 0x00000000000e4a60 HUD_SetMaxSpeed(edict_s const*, float) - 0x00000000000e4a70 UTIL_WeaponTimeBase() - 0x00000000000e4a80 U_Random() - 0x00000000000e4ab0 U_Srand(unsigned int) - 0x00000000000e4ad0 UTIL_SharedRandomLong(unsigned int, int, int) - 0x00000000000e4b30 UTIL_SharedRandomFloat(unsigned int, float, float) - 0x00000000000e4be0 stub_PrecacheModel(char*) - 0x00000000000e4bf0 stub_PrecacheSound(char*) - 0x00000000000e4c00 stub_PrecacheEvent(int, char const*) - 0x00000000000e4c10 stub_NameForFunction(unsigned int) - 0x00000000000e4c20 stub_SetModel(edict_s*, char const*) - *fill* 0x00000000000e4c21 0xf - .text 0x00000000000e4c30 0xafb release/obj/hl1_client/death.o - 0x00000000000e4c30 CHudDeathNotice::Init() - 0x00000000000e4c90 CHudDeathNotice::VidInit() - 0x00000000000e4cc0 CHudDeathNotice::Draw(float) - 0x00000000000e50e0 CHudDeathNotice::InitHUDData() - 0x00000000000e5130 GetClientColor(int) - 0x00000000000e5150 CHudDeathNotice::MsgFunc_DeathMsg(char const*, int, void*) - 0x00000000000e5700 __MsgFunc_DeathMsg(char const*, int, void*) - *fill* 0x00000000000e572b 0x5 - .text._ZN15CHudDeathNoticeD2Ev - 0x00000000000e5730 0xb release/obj/hl1_client/death.o - 0x00000000000e5730 CHudDeathNotice::~CHudDeathNotice() - 0x00000000000e5730 CHudDeathNotice::~CHudDeathNotice() - *fill* 0x00000000000e573b 0x5 - .text._ZN15CHudDeathNoticeD0Ev - 0x00000000000e5740 0xf release/obj/hl1_client/death.o - 0x00000000000e5740 CHudDeathNotice::~CHudDeathNotice() - *fill* 0x00000000000e574f 0x1 - .text 0x00000000000e5750 0x1593 release/obj/hl1_client/entity.o - 0x00000000000e5750 HUD_AddEntity - 0x00000000000e57d0 HUD_TxferLocalOverrides - 0x00000000000e58b0 HUD_ProcessPlayerState - 0x00000000000e5b50 HUD_TxferPredictionData - 0x00000000000e5db0 HUD_CreateEntities - 0x00000000000e5dd0 HUD_StudioEvent - 0x00000000000e6140 HUD_TempEntUpdate - 0x00000000000e6ce0 HUD_GetUserEntity - *fill* 0x00000000000e6ce3 0xd - .text 0x00000000000e6cf0 0x458 release/obj/hl1_client/ev_common.o - 0x00000000000e6cf0 GetEntity(int) - 0x00000000000e6d00 GetViewEntity() - 0x00000000000e6d10 GetPhysEntity(int) - 0x00000000000e6d20 DoCenterPrint(char*) - 0x00000000000e6d30 EV_CreateTracer(float*, float*) - 0x00000000000e6d40 EV_IsPlayer(int) - 0x00000000000e6d70 EV_IsLocal(int) - 0x00000000000e6db0 EV_IsSpec(int) - 0x00000000000e6de0 EV_GetGunPosition(event_args_s*, float*, float*) - 0x00000000000e6ef0 EV_EjectBrass(float*, float*, float, int, int) - 0x00000000000e6f50 EV_GetDefaultShellInfo(event_args_s*, float*, float*, float*, float*, float*, float*, float*, float, float, float) - 0x00000000000e7130 EV_MuzzleFlash() - *fill* 0x00000000000e7148 0x8 - .text 0x00000000000e7150 0x5 release/obj/hl1_client/events.o - 0x00000000000e7150 EV_HookEvents() - *fill* 0x00000000000e7155 0xb - .text 0x00000000000e7160 0x480 release/obj/hl1_client/flashlight.o - 0x00000000000e7160 __MsgFunc_FlashBat(char const*, int, void*) - 0x00000000000e7170 CHudFlashlight::Init() - 0x00000000000e71c0 CHudFlashlight::Reset() - 0x00000000000e71e0 CHudFlashlight::VidInit() - 0x00000000000e72c0 __MsgFunc_Flashlight(char const*, int, void*) - 0x00000000000e7310 CHudFlashlight::Draw(float) - 0x00000000000e7590 CHudFlashlight::MsgFunc_FlashBat(char const*, int, void*) - 0x00000000000e75a0 CHudFlashlight::MsgFunc_Flashlight(char const*, int, void*) - .text._ZN14CHudFlashlightD2Ev - 0x00000000000e75e0 0xb release/obj/hl1_client/flashlight.o - 0x00000000000e75e0 CHudFlashlight::~CHudFlashlight() - 0x00000000000e75e0 CHudFlashlight::~CHudFlashlight() - *fill* 0x00000000000e75eb 0x5 - .text._ZN14CHudFlashlightD0Ev - 0x00000000000e75f0 0xf release/obj/hl1_client/flashlight.o - 0x00000000000e75f0 CHudFlashlight::~CHudFlashlight() - *fill* 0x00000000000e75ff 0x1 - .text 0x00000000000e7600 0xf1 release/obj/hl1_client/GameStudioModelRenderer.o - 0x00000000000e7600 R_StudioDrawModel(int) - 0x00000000000e7620 R_StudioDrawPlayer(int, entity_state_s*) - 0x00000000000e7650 CGameStudioModelRenderer::CGameStudioModelRenderer() - 0x00000000000e7650 CGameStudioModelRenderer::CGameStudioModelRenderer() - 0x00000000000e7670 R_StudioInit() - 0x00000000000e7690 HUD_GetStudioModelInterface - *fill* 0x00000000000e76f1 0xf - .text._ZN24CGameStudioModelRendererD2Ev - 0x00000000000e7700 0xf release/obj/hl1_client/GameStudioModelRenderer.o - 0x00000000000e7700 CGameStudioModelRenderer::~CGameStudioModelRenderer() - 0x00000000000e7700 CGameStudioModelRenderer::~CGameStudioModelRenderer() - *fill* 0x00000000000e770f 0x1 - .text._ZN24CGameStudioModelRendererD0Ev - 0x00000000000e7710 0x23 release/obj/hl1_client/GameStudioModelRenderer.o - 0x00000000000e7710 CGameStudioModelRenderer::~CGameStudioModelRenderer() - *fill* 0x00000000000e7733 0xd - .text 0x00000000000e7740 0xe5 release/obj/hl1_client/geiger.o - 0x00000000000e7740 CHudGeiger::VidInit() - 0x00000000000e7750 CHudGeiger::Draw(float) - 0x00000000000e7760 CHudGeiger::Init() - 0x00000000000e77b0 __MsgFunc_Geiger(char const*, int, void*) - 0x00000000000e77f0 CHudGeiger::MsgFunc_Geiger(char const*, int, void*) - *fill* 0x00000000000e7825 0xb - .text._ZN10CHudGeigerD2Ev - 0x00000000000e7830 0xb release/obj/hl1_client/geiger.o - 0x00000000000e7830 CHudGeiger::~CHudGeiger() - 0x00000000000e7830 CHudGeiger::~CHudGeiger() - *fill* 0x00000000000e783b 0x5 - .text._ZN10CHudGeigerD0Ev - 0x00000000000e7840 0xf release/obj/hl1_client/geiger.o - 0x00000000000e7840 CHudGeiger::~CHudGeiger() - *fill* 0x00000000000e784f 0x1 - .text 0x00000000000e7850 0x10e8 release/obj/hl1_client/hud.o - 0x00000000000e7850 __CmdFunc_SpecialDummy() - 0x00000000000e7860 __CmdFunc_ClRateDummy() - 0x00000000000e7870 __MsgFunc_ResetHUD(char const*, int, void*) - 0x00000000000e78a0 __MsgFunc_InitHUD(char const*, int, void*) - 0x00000000000e78d0 __MsgFunc_ViewMode(char const*, int, void*) - 0x00000000000e7900 __MsgFunc_TeamNames(char const*, int, void*) - 0x00000000000e7940 __MsgFunc_MOTD(char const*, int, void*) - 0x00000000000e7980 __MsgFunc_ServerName(char const*, int, void*) - 0x00000000000e79c0 __MsgFunc_ScoreInfo(char const*, int, void*) - 0x00000000000e7a00 __MsgFunc_TeamScore(char const*, int, void*) - 0x00000000000e7a40 __MsgFunc_TeamInfo(char const*, int, void*) - 0x00000000000e7a80 __MsgFunc_SetFOV(char const*, int, void*) - 0x00000000000e7b60 CHud::Init() - 0x00000000000e7ff0 CHud::~CHud() - 0x00000000000e7ff0 CHud::~CHud() - 0x00000000000e8100 CHud::GetSpriteIndex(char const*) - 0x00000000000e8160 CHud::VidInit() - 0x00000000000e85b0 COM_FileBase(char const*, char*) - 0x00000000000e86c0 HUD_IsGame(char const*) - 0x00000000000e8750 HUD_GetFOV() - 0x00000000000e87f0 CHud::MsgFunc_SetFOV(char const*, int, void*) - 0x00000000000e88e0 CHud::AddHudElem(CHudBase*) - 0x00000000000e8930 CHud::GetSensitivity() - *fill* 0x00000000000e8938 0x8 - .text._ZN18IVoiceStatusHelperD2Ev - 0x00000000000e8940 0xb release/obj/hl1_client/hud.o - 0x00000000000e8940 IVoiceStatusHelper::~IVoiceStatusHelper() - 0x00000000000e8940 IVoiceStatusHelper::~IVoiceStatusHelper() - *fill* 0x00000000000e894b 0x5 - .text._ZN20CHLVoiceStatusHelper20CanShowSpeakerLabelsEv - 0x00000000000e8950 0x2b release/obj/hl1_client/hud.o - 0x00000000000e8950 CHLVoiceStatusHelper::CanShowSpeakerLabels() - *fill* 0x00000000000e897b 0x5 - .text._ZN20CHLVoiceStatusHelperD2Ev - 0x00000000000e8980 0xb release/obj/hl1_client/hud.o - 0x00000000000e8980 CHLVoiceStatusHelper::~CHLVoiceStatusHelper() - 0x00000000000e8980 CHLVoiceStatusHelper::~CHLVoiceStatusHelper() - *fill* 0x00000000000e898b 0x5 - .text._ZN18IVoiceStatusHelperD0Ev - 0x00000000000e8990 0xf release/obj/hl1_client/hud.o - 0x00000000000e8990 IVoiceStatusHelper::~IVoiceStatusHelper() - *fill* 0x00000000000e899f 0x1 - .text._ZN20CHLVoiceStatusHelperD0Ev - 0x00000000000e89a0 0xf release/obj/hl1_client/hud.o - 0x00000000000e89a0 CHLVoiceStatusHelper::~CHLVoiceStatusHelper() - *fill* 0x00000000000e89af 0x1 - .text._ZN20CHLVoiceStatusHelper17UpdateCursorStateEv - 0x00000000000e89b0 0xe release/obj/hl1_client/hud.o - 0x00000000000e89b0 CHLVoiceStatusHelper::UpdateCursorState() - *fill* 0x00000000000e89be 0x2 - .text._ZN20CHLVoiceStatusHelper16GetAckIconHeightEv - 0x00000000000e89c0 0x1a release/obj/hl1_client/hud.o - 0x00000000000e89c0 CHLVoiceStatusHelper::GetAckIconHeight() - *fill* 0x00000000000e89da 0x6 - .text._ZN20CHLVoiceStatusHelper18GetPlayerTextColorEiPi - 0x00000000000e89e0 0x9f release/obj/hl1_client/hud.o - 0x00000000000e89e0 CHLVoiceStatusHelper::GetPlayerTextColor(int, int*) - *fill* 0x00000000000e8a7f 0x1 - .text 0x00000000000e8a80 0x9a release/obj/hl1_client/hud_msg.o - 0x00000000000e8a80 CHud::MsgFunc_ResetHUD(char const*, int, void*) - 0x00000000000e8ae0 CHud::MsgFunc_ViewMode(char const*, int, void*) - 0x00000000000e8af0 CHud::MsgFunc_InitHUD(char const*, int, void*) - *fill* 0x00000000000e8b1a 0x6 - .text 0x00000000000e8b20 0x996 release/obj/hl1_client/hud_redraw.o - 0x00000000000e8b20 CHud::Think() - 0x00000000000e8c50 CHud::Redraw(float, int) - 0x00000000000e8f50 ScaleColors(int&, int&, int&, int) - 0x00000000000e8fa0 CHud::GetHudStringHeight() - 0x00000000000e8fb0 CHud::GetHudStringWidth(char const*) - 0x00000000000e8fd0 CHud::DrawHudStringCentered(int, int, int, char const*, int, int, int) - 0x00000000000e9080 CHud::DrawHudString(int, int, int, char const*, int, int, int) - 0x00000000000e90c0 CHud::DrawHudNumberString(int, int, int, int, int, int, int) - 0x00000000000e9160 CHud::DrawHudStringReverse(int, int, int, char*, int, int, int) - 0x00000000000e91a0 CHud::DrawHudNumber(int, int, int, int, int, int, int) - 0x00000000000e9470 CHud::GetNumWidth(int, int) - *fill* 0x00000000000e94b6 0xa - .text 0x00000000000e94c0 0x21c5 release/obj/hl1_client/hud_servers.o - 0x00000000000e94c0 RulesResponse(net_response_s*) - 0x00000000000e9500 PlayersResponse(net_response_s*) - 0x00000000000e9540 PingResponse(net_response_s*) - 0x00000000000e95e0 ListResponse(net_response_s*) - 0x00000000000e9680 FnServerCompare(void const*, void const*) - 0x00000000000e9790 CHudServers::ListResponse(net_response_s*) - 0x00000000000e9830 CHudServers::PingResponse(net_response_s*) - 0x00000000000e98c0 CHudServers::RulesResponse(net_response_s*) - 0x00000000000e9900 CHudServers::PlayersResponse(net_response_s*) - 0x00000000000e9940 CHudServers::CompareServers(CHudServers::server_s*, CHudServers::server_s*) - 0x00000000000e99e0 CHudServers::AddServer(CHudServers::server_s**, CHudServers::server_s*) - 0x00000000000e9bb0 CHudServers::ServerResponse(net_response_s*) - 0x00000000000e9d80 ServerResponse(net_response_s*) - 0x00000000000e9da0 CHudServers::Think(double) - 0x00000000000e9f10 CHudServers::QueryThink() - 0x00000000000e9fe0 CHudServers::ServerListSize() - 0x00000000000ea020 CHudServers::FindRequest(int, CHudServers::request_s*) - 0x00000000000ea060 CHudServers::RemoveServerFromList(CHudServers::request_s**, CHudServers::request_s*) - 0x00000000000ea0a0 CHudServers::ClearRequestList(CHudServers::request_s**) - 0x00000000000ea0e0 CHudServers::ClearServerList(CHudServers::server_s**) - 0x00000000000ea130 CompareField(CHudServers::server_s*, CHudServers::server_s*, char const*, int) - 0x00000000000ea240 ServerListCompareFunc(CHudServers::server_s*, CHudServers::server_s*, char const*) - 0x00000000000ea350 CHudServers::SortServers(char const*) - 0x00000000000ea550 CHudServers::GetServer(int) - 0x00000000000ea590 CHudServers::GetServerInfo(int) - 0x00000000000ea5d0 CHudServers::CancelRequest() - 0x00000000000ea600 CHudServers::LoadMasterAddresses(int, int*, netadr_s*) - 0x00000000000eaa50 CHudServers::RequestList() - 0x00000000000eabd0 CHudServers::RequestBroadcastList(int) - 0x00000000000eadd0 CHudServers::ServerPing(int) - 0x00000000000eae60 CHudServers::ServerRules(int) - 0x00000000000eaef0 CHudServers::ServerPlayers(int) - 0x00000000000eaf80 CHudServers::isQuerying() - 0x00000000000eafa0 CHudServers::GetServerCount() - 0x00000000000eafb0 CHudServers::CHudServers() - 0x00000000000eafb0 CHudServers::CHudServers() - 0x00000000000eb020 CHudServers::~CHudServers() - 0x00000000000eb020 CHudServers::~CHudServers() - 0x00000000000eb130 ServersGetCount() - 0x00000000000eb150 ServersIsQuerying() - 0x00000000000eb180 ServersGetInfo(int) - 0x00000000000eb1c0 SortServers(char const*) - 0x00000000000eb1e0 ServersShutdown() - 0x00000000000eb210 ServersInit() - 0x00000000000eb2c0 ServersThink(double) - 0x00000000000eb430 ServersCancel() - 0x00000000000eb470 ServersList() - 0x00000000000eb490 BroadcastServersList(int) - 0x00000000000eb4b0 ServerPing(int) - 0x00000000000eb550 ServerRules(int) - 0x00000000000eb5f0 ServerPlayers(int) - *fill* 0x00000000000eb685 0xb - .text 0x00000000000eb690 0x3382 release/obj/hl1_client/hud_spectator.o - 0x00000000000eb690 CHudSpectator::VidInit() - 0x00000000000eb720 CHudSpectator::Draw(float) - 0x00000000000eb730 CHudSpectator::Init() - 0x00000000000eb9a0 SpectatorHelp() - 0x00000000000eba00 SpectatorMenu() - 0x00000000000eba70 ToggleScores() - 0x00000000000ebab0 SpectatorSpray() - 0x00000000000ebbf0 UTIL_StringToVector(float*, char const*) - 0x00000000000ebd10 UTIL_FindEntityInMap(char*, float*, float*) - 0x00000000000ec1f0 CHudSpectator::Reset() - 0x00000000000ec510 CHudSpectator::SetSpectatorStartPosition() - 0x00000000000ec660 CHudSpectator::IsInOverviewMode() const - 0x00000000000ec690 CHudSpectator::SetOverviewMode(bool) - 0x00000000000ec6a0 CHudSpectator::DrawOverviewMap() - 0x00000000000ece80 CHudSpectator::FindNextPlayer(bool) - 0x00000000000ed0e0 CHudSpectator::HandleButtonsUp(int) - 0x00000000000ed130 CHudSpectator::SetMode(int) - 0x00000000000ed450 SpectatorMode() - 0x00000000000ed4c0 CHudSpectator::DirectorMessage(int, void*) - 0x00000000000ed8e0 CHudSpectator::HandleButtonsDown(int) - 0x00000000000eda90 CHudSpectator::IsActivePlayer(cl_entity_s*) - 0x00000000000edae0 CHudSpectator::ParseOverviewFile() - 0x00000000000edc80 CHudSpectator::LoadMapSprites() - 0x00000000000edcc0 CHudSpectator::DrawOverviewLayer() - 0x00000000000ee290 CHudSpectator::DrawOverviewEntities() - 0x00000000000ee2a0 CHudSpectator::DrawOverview() - 0x00000000000ee2b0 CHudSpectator::CheckOverviewEntities() - 0x00000000000ee3b0 CHudSpectator::AddOverviewEntity(int, cl_entity_s*, char const*) - 0x00000000000ee500 CHudSpectator::DeathMessage(int) - 0x00000000000ee5d0 CHudSpectator::AddOverviewEntityToList(int, cl_entity_s*, double, int, int, float, float, float) - 0x00000000000ee670 CHudSpectator::CheckSettings() - 0x00000000000ee860 CHudSpectator::InitHUDData() - *fill* 0x00000000000eea12 0xe - .text._ZN13CHudSpectatorD2Ev - 0x00000000000eea20 0xb release/obj/hl1_client/hud_spectator.o - 0x00000000000eea20 CHudSpectator::~CHudSpectator() - 0x00000000000eea20 CHudSpectator::~CHudSpectator() - *fill* 0x00000000000eea2b 0x5 - .text._ZN13CHudSpectatorD0Ev - 0x00000000000eea30 0xf release/obj/hl1_client/hud_spectator.o - 0x00000000000eea30 CHudSpectator::~CHudSpectator() - *fill* 0x00000000000eea3f 0x1 - .text 0x00000000000eea40 0x79 release/obj/hl1_client/hud_update.o - 0x00000000000eea40 CHud::UpdateClientData(client_data_s*, float) - *fill* 0x00000000000eeab9 0x7 - .text 0x00000000000eeac0 0x138b release/obj/hl1_client/in_camera.o - 0x00000000000eeac0 CAM_ToFirstPerson() - 0x00000000000eeaf0 CAM_ToggleSnapto() - 0x00000000000eeb20 CAM_EndMouseMove() - 0x00000000000eeb30 CAM_EndDistance() - 0x00000000000eeb50 CAM_PitchUpDown() - 0x00000000000eeb70 CAM_PitchDownDown() - 0x00000000000eeb90 CAM_YawLeftDown() - 0x00000000000eebb0 CAM_YawRightDown() - 0x00000000000eebd0 CAM_InDown() - 0x00000000000eebf0 CAM_OutDown() - 0x00000000000eec10 CAM_PitchUpUp() - 0x00000000000eec30 CAM_PitchDownUp() - 0x00000000000eec50 CAM_YawLeftUp() - 0x00000000000eec70 CAM_YawRightUp() - 0x00000000000eec90 CAM_InUp() - 0x00000000000eecb0 CAM_OutUp() - 0x00000000000eecd0 CAM_ToThirdPerson() - 0x00000000000eed40 CAM_StartMouseMove() - 0x00000000000eee00 CAM_StartDistance() - 0x00000000000eeec0 SDL_GetCursorPos(POINT_s*) - 0x00000000000eeee0 SDL_SetCursorPos(int, int) - 0x00000000000eeef0 MoveToward(float, float, float) - 0x00000000000ef030 CAM_Think - 0x00000000000ef9f0 CAM_Init() - 0x00000000000efd30 CAM_ClearStates() - 0x00000000000efde0 CL_IsThirdPerson - 0x00000000000efe20 CL_CameraOffset - *fill* 0x00000000000efe4b 0x5 - .text 0x00000000000efe50 0x5070 release/obj/hl1_client/input.o - 0x00000000000efe50 IN_DuckToggle() - 0x00000000000efe60 IN_ReloadDown() - 0x00000000000efe90 IN_ReloadUp() - 0x00000000000efeb0 IN_Impulse() - 0x00000000000efee0 IN_SpeedUp() - 0x00000000000eff80 IN_StrafeUp() - 0x00000000000f0020 IN_LeftUp() - 0x00000000000f00c0 IN_UseUp() - 0x00000000000f0160 IN_DuckUp() - 0x00000000000f0200 IN_Alt1Up() - 0x00000000000f02a0 IN_GraphUp() - 0x00000000000f0340 IN_LookupUp() - 0x00000000000f03e0 IN_DownUp() - 0x00000000000f0480 IN_RightUp() - 0x00000000000f0520 IN_JLookUp() - 0x00000000000f05c0 IN_UpUp() - 0x00000000000f0660 IN_KLookUp() - 0x00000000000f0700 IN_BreakUp() - 0x00000000000f07a0 IN_LookdownUp() - 0x00000000000f0840 IN_AttackUp() - 0x00000000000f0900 IN_MLookUp() - 0x00000000000f09d0 IN_BackUp() - 0x00000000000f0a90 IN_MoveleftUp() - 0x00000000000f0b50 IN_JumpUp() - 0x00000000000f0c10 IN_MoverightUp() - 0x00000000000f0cd0 IN_ForwardUp() - 0x00000000000f0d90 IN_ScoreUp() - 0x00000000000f0e40 IN_GraphDown() - 0x00000000000f0ee0 IN_MLookDown() - 0x00000000000f0f80 IN_JLookDown() - 0x00000000000f1020 IN_LeftDown() - 0x00000000000f10c0 IN_KLookDown() - 0x00000000000f1160 IN_StrafeDown() - 0x00000000000f1200 IN_BreakDown() - 0x00000000000f12a0 IN_LookdownDown() - 0x00000000000f1340 IN_Alt1Down() - 0x00000000000f13e0 IN_DownDown() - 0x00000000000f1480 IN_UpDown() - 0x00000000000f1520 IN_LookupDown() - 0x00000000000f15c0 IN_SpeedDown() - 0x00000000000f1660 IN_RightDown() - 0x00000000000f1700 IN_ForwardDown() - 0x00000000000f17c0 IN_JumpDown() - 0x00000000000f1880 IN_BackDown() - 0x00000000000f1940 IN_AttackDown() - 0x00000000000f1a00 IN_UseDown() - 0x00000000000f1ac0 IN_ScoreDown() - 0x00000000000f1b70 IN_MoverightDown() - 0x00000000000f1c30 IN_MoveleftDown() - 0x00000000000f1cf0 IN_DuckDown() - 0x00000000000f1db0 KB_ConvertString(char*, char**) - 0x00000000000f1f80 KB_Find - 0x00000000000f1fd0 KB_Add(char const*, kbutton_s*) - 0x00000000000f2090 KB_Init() - 0x00000000000f2240 KB_Shutdown() - 0x00000000000f2280 KeyDown(kbutton_s*) - 0x00000000000f2330 KeyDownForced(kbutton_s*) - 0x00000000000f2350 KeyUp(kbutton_s*) - 0x00000000000f23e0 KeyUpForced(kbutton_s*) - 0x00000000000f2400 AvHContainsBlockedCommands(char const*) - 0x00000000000f2550 IN_Attack2Down() - 0x00000000000f2580 IN_Attack2Up() - 0x00000000000f25a0 IN_AttackDownForced() - 0x00000000000f25d0 IN_AttackUpForced() - 0x00000000000f25f0 IN_Cancel() - 0x00000000000f2600 CheckInAttack() - 0x00000000000f2620 CheckInAttack2() - 0x00000000000f2630 CL_KeyState(kbutton_s*) - 0x00000000000f2700 CL_AdjustAngles(float, float*) - 0x00000000000f2de0 CL_IsDead() - 0x00000000000f2df0 CL_ButtonBits(int) - 0x00000000000f3070 CL_CreateMove - 0x00000000000f3e50 CL_ResetButtonBits(int) - 0x00000000000f4070 InitInput() - 0x00000000000f4950 ShutdownInput() - 0x00000000000f4990 HUD_Key_Event - 0x00000000000f4e80 HUD_Shutdown - .text._ZNSt6vectorISt4pairIiSsESaIS1_EED2Ev - 0x00000000000f4ec0 0xc7 release/obj/hl1_client/input.o - 0x00000000000f4ec0 std::vector, std::allocator > >::~vector() - 0x00000000000f4ec0 std::vector, std::allocator > >::~vector() - *fill* 0x00000000000f4f87 0x9 - .text._ZNSt6vectorISt4pairIiSsESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000000f4f90 0x346 release/obj/hl1_client/input.o - 0x00000000000f4f90 std::vector, std::allocator > >::_M_insert_aux(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&) - *fill* 0x00000000000f52d6 0xa - .text 0x00000000000f52e0 0x1ab1 release/obj/hl1_client/inputw32.o - 0x00000000000f52e0 Force_CenterView_f() - 0x00000000000f5320 Joy_AdvancedUpdate_f() - 0x00000000000f5580 IN_ActivateMouse - 0x00000000000f55a0 IN_DeactivateMouse - 0x00000000000f55c0 IN_StartupMouse() - 0x00000000000f5600 IN_Shutdown() - 0x00000000000f5620 IN_GetMousePos(int*, int*) - 0x00000000000f5630 IN_ResetMouse() - 0x00000000000f5640 IN_MouseEvent - 0x00000000000f56e0 IN_ScaleMouse(float*, float*) - 0x00000000000f5860 IN_MouseMove(float, usercmd_s*) - 0x00000000000f5b10 IN_Accumulate - 0x00000000000f5b60 IN_ClearStates - 0x00000000000f5b90 IN_StartupJoystick() - 0x00000000000f5c60 RawValuePointer(int) - 0x00000000000f5cf0 IN_Commands() - 0x00000000000f5f10 IN_ReadJoystick() - 0x00000000000f5f30 IN_JoyMove(float, usercmd_s*) - 0x00000000000f6470 IN_Move(float, usercmd_s*) - 0x00000000000f69e0 IN_Init() - *fill* 0x00000000000f6d91 0xf - .text 0x00000000000f6da0 0x6a6 release/obj/hl1_client/menu.o - 0x00000000000f6da0 CHudMenu::InitHUDData() - 0x00000000000f6dc0 CHudMenu::Reset() - 0x00000000000f6de0 CHudMenu::VidInit() - 0x00000000000f6df0 CHudMenu::Init() - 0x00000000000f6e30 CHudMenu::Draw(float) - 0x00000000000f6f70 __MsgFunc_ShowMenu(char const*, int, void*) - 0x00000000000f7190 CHudMenu::SelectMenuItem(int) - 0x00000000000f7230 CHudMenu::MsgFunc_ShowMenu(char const*, int, void*) - *fill* 0x00000000000f7446 0xa - .text._ZN8CHudMenuD2Ev - 0x00000000000f7450 0xb release/obj/hl1_client/menu.o - 0x00000000000f7450 CHudMenu::~CHudMenu() - 0x00000000000f7450 CHudMenu::~CHudMenu() - *fill* 0x00000000000f745b 0x5 - .text._ZN8CHudMenuD0Ev - 0x00000000000f7460 0xf release/obj/hl1_client/menu.o - 0x00000000000f7460 CHudMenu::~CHudMenu() - *fill* 0x00000000000f746f 0x1 - .text 0x00000000000f7470 0x20ae release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000000f7470 SpectatorPanel::~SpectatorPanel() - 0x00000000000f7470 SpectatorPanel::~SpectatorPanel() - 0x00000000000f7480 SpectatorPanel::~SpectatorPanel() - 0x00000000000f7490 SpectatorPanel::SpectatorPanel(int, int, int, int) - 0x00000000000f7490 SpectatorPanel::SpectatorPanel(int, int, int, int) - 0x00000000000f74f0 SpectatorPanel::ActionSignal(int) - 0x00000000000f7590 SpectatorPanel::Initialize() - 0x00000000000f8bb0 SpectatorPanel::ShowMenu(bool) - 0x00000000000f8c00 SpectatorPanel::Update() - 0x00000000000f9200 SpectatorPanel::StateChanged(vgui::CCheckButton2*) - 0x00000000000f92d0 SpectatorPanel::EnableInsetView(bool) - *fill* 0x00000000000f951e 0x2 - .text._ZN13CommandButton10IsNotValidEv - 0x00000000000f9520 0x3 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000000f9520 CommandButton::IsNotValid() - *fill* 0x00000000000f9523 0xd - .text._ZN17CTransparentPanel15paintBackgroundEv - 0x00000000000f9530 0x5d release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000000f9530 CTransparentPanel::paintBackground() - *fill* 0x00000000000f958d 0x3 - .text._ZN11ColorButton15paintBackgroundEv - 0x00000000000f9590 0xe5 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000000f9590 ColorButton::paintBackground() - *fill* 0x00000000000f9675 0xb - .text._ZN25CSpectatorHandler_Command15actionPerformedEPN4vgui5PanelE - 0x00000000000f9680 0x9a release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000000f9680 CSpectatorHandler_Command::actionPerformed(vgui::Panel*) - *fill* 0x00000000000f971a 0x6 - .text._ZN28Spectator_CheckButtonHandler12StateChangedEPN4vgui13CCheckButton2E - 0x00000000000f9720 0xc7 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000000f9720 Spectator_CheckButtonHandler::StateChanged(vgui::CCheckButton2*) - *fill* 0x00000000000f97e7 0x9 - .text._ZN11ColorButton5paintEv - 0x00000000000f97f0 0xce release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000000f97f0 ColorButton::paint() - *fill* 0x00000000000f98be 0x2 - .text 0x00000000000f98c0 0x9cc6 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000000f98c0 CDragNDropHandler::cursorMoved(int, int, vgui::Panel*) - 0x00000000000f9950 CDragNDropHandler::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x00000000000f99e0 CDragNDropHandler::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x00000000000f9ea0 GetVGUITGAName(char const*) - 0x00000000000f9f60 CCommandMenu::AddButton(CommandButton*) - 0x00000000000fa000 CCommandMenu::KeyInput(int) - 0x00000000000fa0f0 CCommandMenu::ClearButtonsOfArmedState() - 0x00000000000fa470 CCommandMenu::RemoveAllButtons() - 0x00000000000fa950 CCommandMenu::FindButtonWithSubmenu(CCommandMenu*) - 0x00000000000fa9a0 CCommandMenu::RecalculateVisibles(int, bool) - 0x00000000000fabf0 CCommandMenu::RecalculatePositions(int) - 0x00000000000facd0 CCommandMenu::MakeVisible(CCommandMenu*) - 0x00000000000fad00 TeamFortressViewport::CreateSubMenu(CommandButton*, CCommandMenu*, int, int) - 0x00000000000fb090 TeamFortressViewport::operator new(unsigned int) - 0x00000000000fb140 TeamFortressViewport::CreateDisguiseSubmenu(CommandButton*, CCommandMenu*, char const*, int, int) - 0x00000000000fb3e0 TeamFortressViewport::CreateCustomButton(char*, char*, int) - 0x00000000000fdea0 TeamFortressViewport::CreateCommandMenu(char*, int, int, bool, float, float, int) - 0x00000000000ff040 TeamFortressViewport::ToggleServerBrowser() - 0x00000000000ff130 TeamFortressViewport::IsScoreBoardVisible() - 0x00000000000ff160 TeamFortressViewport::HideScoreBoard() - 0x00000000000ff1e0 TeamFortressViewport::ShowOptionsMenu() - 0x00000000000ff2a0 TeamFortressViewport::HideOptionsMenu() - 0x00000000000ff370 TeamFortressViewport::IsOptionsMenuVisible() - 0x00000000000ff3a0 TeamFortressViewport::SetCurrentCommandMenu(CCommandMenu*) - 0x00000000000ff420 TeamFortressViewport::UpdateCommandMenu(int) - 0x00000000000ff460 TeamFortressViewport::UpdateSpectatorPanel() - 0x00000000000ff940 TeamFortressViewport::paintBackground() - 0x00000000000ffb00 TeamFortressViewport::CreateScoreBoard() - 0x00000000000ffc50 TeamFortressViewport::CreateOptionsMenu() - 0x00000000000ffdb0 TeamFortressViewport::CreateServerBrowser() - 0x00000000000ffe40 TeamFortressViewport::CreatePlayerMenu() - 0x0000000000100000 TeamFortressViewport::UpdatePlayerMenu() - 0x00000000001003a0 TeamFortressViewport::SetCurrentMenu(CMenuPanel*) - 0x00000000001003f0 TeamFortressViewport::CreateTextWindow(int) - 0x00000000001009e0 TeamFortressViewport::GetTeamName(int) - 0x0000000000100a00 TeamFortressViewport::HideTopMenu() - 0x0000000000100b00 TeamFortressViewport::AllowedToPrintText() - 0x0000000000100b50 TeamFortressViewport::ShowTeamMenu() - 0x0000000000100b90 TeamFortressViewport::CreateTeamMenu() - 0x0000000000100c30 TeamFortressViewport::ShowClassMenu() - 0x0000000000100c70 TeamFortressViewport::CreateClassMenu() - 0x0000000000100d10 TeamFortressViewport::CreateSpectatorMenu() - 0x0000000000100db0 TeamFortressViewport::UpdateOnPlayerInfo() - 0x0000000000100e10 TeamFortressViewport::UpdateCursorState() - 0x0000000000100ea0 TeamFortressViewport::ShowScoreBoard() - 0x0000000000100f20 TeamFortressViewport::HideCommandMenu() - 0x0000000000100fe0 TeamFortressViewport::InputSignalHideCommandMenu() - 0x00000000001010c0 TeamFortressViewport::UpdateHighlights() - 0x0000000000101100 TeamFortressViewport::GetAllPlayersInfo() - 0x0000000000101150 TeamFortressViewport::SlotInput(int) - 0x0000000000101190 TeamFortressViewport::KeyInput(int, int, char const*) - 0x0000000000101730 TeamFortressViewport::GetChatPanel() - 0x0000000000101740 TeamFortressViewport::MsgFunc_TeamNames(char const*, int, void*) - 0x0000000000101b30 TeamFortressViewport::MsgFunc_MOTD(char const*, int, void*) - 0x0000000000101c20 TeamFortressViewport::MsgFunc_ServerName(char const*, int, void*) - 0x0000000000101da0 TeamFortressViewport::MsgFunc_ScoreInfo(char const*, int, void*) - 0x0000000000101ec0 TeamFortressViewport::MsgFunc_TeamScore(char const*, int, void*) - 0x0000000000101fc0 TeamFortressViewport::MsgFunc_TeamInfo(char const*, int, void*) - 0x00000000001020a0 TeamFortressViewport::DeathMsg(int, int) - 0x00000000001020c0 TeamFortressViewport::ShowVGUIMenu(int) - 0x00000000001023c0 TeamFortressViewport::HideVGUIMenu() - 0x00000000001024d0 TeamFortressViewport::Initialize() - 0x0000000000102950 TeamFortressViewport::TeamFortressViewport(int, int, int, int) - 0x0000000000102950 TeamFortressViewport::TeamFortressViewport(int, int, int, int) - 0x00000000001031c0 TeamFortressViewport::ShowCommandMenu(int) - *fill* 0x0000000000103586 0xa - .text._ZN30CMenuHandler_PopupSubMenuInput11cursorMovedEiiPN4vgui5PanelE - 0x0000000000103590 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103590 CMenuHandler_PopupSubMenuInput::cursorMoved(int, int, vgui::Panel*) - *fill* 0x0000000000103591 0xf - .text._ZN30CMenuHandler_PopupSubMenuInput12cursorExitedEPN4vgui5PanelE - 0x00000000001035a0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001035a0 CMenuHandler_PopupSubMenuInput::cursorExited(vgui::Panel*) - *fill* 0x00000000001035a1 0xf - .text._ZN30CMenuHandler_PopupSubMenuInput12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000001035b0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001035b0 CMenuHandler_PopupSubMenuInput::mousePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x00000000001035b1 0xf - .text._ZN30CMenuHandler_PopupSubMenuInput18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000001035c0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001035c0 CMenuHandler_PopupSubMenuInput::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x00000000001035c1 0xf - .text._ZN30CMenuHandler_PopupSubMenuInput13mouseReleasedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000001035d0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001035d0 CMenuHandler_PopupSubMenuInput::mouseReleased(vgui::MouseCode, vgui::Panel*) - *fill* 0x00000000001035d1 0xf - .text._ZN30CMenuHandler_PopupSubMenuInput12mouseWheeledEiPN4vgui5PanelE - 0x00000000001035e0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001035e0 CMenuHandler_PopupSubMenuInput::mouseWheeled(int, vgui::Panel*) - *fill* 0x00000000001035e1 0xf - .text._ZN30CMenuHandler_PopupSubMenuInput10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x00000000001035f0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001035f0 CMenuHandler_PopupSubMenuInput::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x00000000001035f1 0xf - .text._ZN30CMenuHandler_PopupSubMenuInput8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103600 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103600 CMenuHandler_PopupSubMenuInput::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103601 0xf - .text._ZN30CMenuHandler_PopupSubMenuInput11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103610 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103610 CMenuHandler_PopupSubMenuInput::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103611 0xf - .text._ZN30CMenuHandler_PopupSubMenuInput14keyFocusTickedEPN4vgui5PanelE - 0x0000000000103620 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103620 CMenuHandler_PopupSubMenuInput::keyFocusTicked(vgui::Panel*) - *fill* 0x0000000000103621 0xf - .text._ZN17CDragNDropHandler18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103630 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103630 CDragNDropHandler::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000103631 0xf - .text._ZN17CDragNDropHandler13cursorEnteredEPN4vgui5PanelE - 0x0000000000103640 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103640 CDragNDropHandler::cursorEntered(vgui::Panel*) - *fill* 0x0000000000103641 0xf - .text._ZN17CDragNDropHandler12cursorExitedEPN4vgui5PanelE - 0x0000000000103650 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103650 CDragNDropHandler::cursorExited(vgui::Panel*) - *fill* 0x0000000000103651 0xf - .text._ZN17CDragNDropHandler12mouseWheeledEiPN4vgui5PanelE - 0x0000000000103660 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103660 CDragNDropHandler::mouseWheeled(int, vgui::Panel*) - *fill* 0x0000000000103661 0xf - .text._ZN17CDragNDropHandler10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103670 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103670 CDragNDropHandler::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103671 0xf - .text._ZN17CDragNDropHandler8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103680 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103680 CDragNDropHandler::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103681 0xf - .text._ZN17CDragNDropHandler11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103690 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103690 CDragNDropHandler::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103691 0xf - .text._ZN17CDragNDropHandler14keyFocusTickedEPN4vgui5PanelE - 0x00000000001036a0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001036a0 CDragNDropHandler::keyFocusTicked(vgui::Panel*) - *fill* 0x00000000001036a1 0xf - .text._ZN24CHandler_ButtonHighlight13cursorEnteredEPN4vgui5PanelE - 0x00000000001036b0 0x1e release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001036b0 CHandler_ButtonHighlight::cursorEntered(vgui::Panel*) - *fill* 0x00000000001036ce 0x2 - .text._ZN24CHandler_ButtonHighlight12cursorExitedEPN4vgui5PanelE - 0x00000000001036d0 0x1b release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001036d0 CHandler_ButtonHighlight::cursorExited(vgui::Panel*) - *fill* 0x00000000001036eb 0x5 - .text._ZN24CHandler_ButtonHighlight12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000001036f0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001036f0 CHandler_ButtonHighlight::mousePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x00000000001036f1 0xf - .text._ZN24CHandler_ButtonHighlight13mouseReleasedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103700 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103700 CHandler_ButtonHighlight::mouseReleased(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000103701 0xf - .text._ZN24CHandler_ButtonHighlight11cursorMovedEiiPN4vgui5PanelE - 0x0000000000103710 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103710 CHandler_ButtonHighlight::cursorMoved(int, int, vgui::Panel*) - *fill* 0x0000000000103711 0xf - .text._ZN24CHandler_ButtonHighlight18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103720 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103720 CHandler_ButtonHighlight::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000103721 0xf - .text._ZN24CHandler_ButtonHighlight12mouseWheeledEiPN4vgui5PanelE - 0x0000000000103730 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103730 CHandler_ButtonHighlight::mouseWheeled(int, vgui::Panel*) - *fill* 0x0000000000103731 0xf - .text._ZN24CHandler_ButtonHighlight10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103740 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103740 CHandler_ButtonHighlight::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103741 0xf - .text._ZN24CHandler_ButtonHighlight8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103750 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103750 CHandler_ButtonHighlight::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103751 0xf - .text._ZN24CHandler_ButtonHighlight11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103760 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103760 CHandler_ButtonHighlight::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103761 0xf - .text._ZN24CHandler_ButtonHighlight14keyFocusTickedEPN4vgui5PanelE - 0x0000000000103770 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103770 CHandler_ButtonHighlight::keyFocusTicked(vgui::Panel*) - *fill* 0x0000000000103771 0xf - .text._ZN10TeamButton10IsNotValidEv - 0x0000000000103780 0x43 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103780 TeamButton::IsNotValid() - *fill* 0x00000000001037c3 0xd - .text._ZN14SpectateButton10IsNotValidEv - 0x00000000001037d0 0x14 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001037d0 SpectateButton::IsNotValid() - *fill* 0x00000000001037e4 0xc - .text._ZN21TeamOnlyCommandButton10IsNotValidEv - 0x00000000001037f0 0x17 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001037f0 TeamOnlyCommandButton::IsNotValid() - *fill* 0x0000000000103807 0x9 - .text._ZN19ToggleCommandButton12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103810 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103810 ToggleCommandButton::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x0000000000103820 non-virtual thunk to ToggleCommandButton::mousePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x000000000010382a 0x6 - .text._ZN19ToggleCommandButton11cursorMovedEiiPN4vgui5PanelE - 0x0000000000103830 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103830 ToggleCommandButton::cursorMoved(int, int, vgui::Panel*) - 0x0000000000103840 non-virtual thunk to ToggleCommandButton::cursorMoved(int, int, vgui::Panel*) - *fill* 0x000000000010384a 0x6 - .text._ZN19ToggleCommandButton18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103850 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103850 ToggleCommandButton::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - 0x0000000000103860 non-virtual thunk to ToggleCommandButton::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x000000000010386a 0x6 - .text._ZN19ToggleCommandButton13mouseReleasedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103870 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103870 ToggleCommandButton::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x0000000000103880 non-virtual thunk to ToggleCommandButton::mouseReleased(vgui::MouseCode, vgui::Panel*) - *fill* 0x000000000010388a 0x6 - .text._ZN19ToggleCommandButton12mouseWheeledEiPN4vgui5PanelE - 0x0000000000103890 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103890 ToggleCommandButton::mouseWheeled(int, vgui::Panel*) - 0x00000000001038a0 non-virtual thunk to ToggleCommandButton::mouseWheeled(int, vgui::Panel*) - *fill* 0x00000000001038aa 0x6 - .text._ZN19ToggleCommandButton10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x00000000001038b0 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001038b0 ToggleCommandButton::keyPressed(vgui::KeyCode, vgui::Panel*) - 0x00000000001038c0 non-virtual thunk to ToggleCommandButton::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x00000000001038ca 0x6 - .text._ZN19ToggleCommandButton8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x00000000001038d0 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001038d0 ToggleCommandButton::keyTyped(vgui::KeyCode, vgui::Panel*) - 0x00000000001038e0 non-virtual thunk to ToggleCommandButton::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x00000000001038ea 0x6 - .text._ZN19ToggleCommandButton11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x00000000001038f0 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001038f0 ToggleCommandButton::keyReleased(vgui::KeyCode, vgui::Panel*) - 0x0000000000103900 non-virtual thunk to ToggleCommandButton::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x000000000010390a 0x6 - .text._ZN19ToggleCommandButton14keyFocusTickedEPN4vgui5PanelE - 0x0000000000103910 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103910 ToggleCommandButton::keyFocusTicked(vgui::Panel*) - 0x0000000000103920 non-virtual thunk to ToggleCommandButton::keyFocusTicked(vgui::Panel*) - *fill* 0x000000000010392a 0x6 - .text._ZN17SpectToggleButton12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103930 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103930 SpectToggleButton::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x0000000000103940 non-virtual thunk to SpectToggleButton::mousePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x000000000010394a 0x6 - .text._ZN17SpectToggleButton11cursorMovedEiiPN4vgui5PanelE - 0x0000000000103950 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103950 SpectToggleButton::cursorMoved(int, int, vgui::Panel*) - 0x0000000000103960 non-virtual thunk to SpectToggleButton::cursorMoved(int, int, vgui::Panel*) - *fill* 0x000000000010396a 0x6 - .text._ZN17SpectToggleButton18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103970 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103970 SpectToggleButton::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - 0x0000000000103980 non-virtual thunk to SpectToggleButton::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x000000000010398a 0x6 - .text._ZN17SpectToggleButton13mouseReleasedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103990 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103990 SpectToggleButton::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x00000000001039a0 non-virtual thunk to SpectToggleButton::mouseReleased(vgui::MouseCode, vgui::Panel*) - *fill* 0x00000000001039aa 0x6 - .text._ZN17SpectToggleButton12mouseWheeledEiPN4vgui5PanelE - 0x00000000001039b0 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001039b0 SpectToggleButton::mouseWheeled(int, vgui::Panel*) - 0x00000000001039c0 non-virtual thunk to SpectToggleButton::mouseWheeled(int, vgui::Panel*) - *fill* 0x00000000001039ca 0x6 - .text._ZN17SpectToggleButton10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x00000000001039d0 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001039d0 SpectToggleButton::keyPressed(vgui::KeyCode, vgui::Panel*) - 0x00000000001039e0 non-virtual thunk to SpectToggleButton::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x00000000001039ea 0x6 - .text._ZN17SpectToggleButton8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x00000000001039f0 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001039f0 SpectToggleButton::keyTyped(vgui::KeyCode, vgui::Panel*) - 0x0000000000103a00 non-virtual thunk to SpectToggleButton::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103a0a 0x6 - .text._ZN17SpectToggleButton11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103a10 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103a10 SpectToggleButton::keyReleased(vgui::KeyCode, vgui::Panel*) - 0x0000000000103a20 non-virtual thunk to SpectToggleButton::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103a2a 0x6 - .text._ZN17SpectToggleButton14keyFocusTickedEPN4vgui5PanelE - 0x0000000000103a30 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103a30 SpectToggleButton::keyFocusTicked(vgui::Panel*) - 0x0000000000103a40 non-virtual thunk to SpectToggleButton::keyFocusTicked(vgui::Panel*) - *fill* 0x0000000000103a4a 0x6 - .text._ZN21CViewPortInputHandler11cursorMovedEiiPN4vgui5PanelE - 0x0000000000103a50 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103a50 CViewPortInputHandler::cursorMoved(int, int, vgui::Panel*) - *fill* 0x0000000000103a51 0xf - .text._ZN21CViewPortInputHandler13cursorEnteredEPN4vgui5PanelE - 0x0000000000103a60 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103a60 CViewPortInputHandler::cursorEntered(vgui::Panel*) - *fill* 0x0000000000103a61 0xf - .text._ZN21CViewPortInputHandler12cursorExitedEPN4vgui5PanelE - 0x0000000000103a70 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103a70 CViewPortInputHandler::cursorExited(vgui::Panel*) - *fill* 0x0000000000103a71 0xf - .text._ZN21CViewPortInputHandler13mouseReleasedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103a80 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103a80 CViewPortInputHandler::mouseReleased(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000103a81 0xf - .text._ZN21CViewPortInputHandler18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103a90 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103a90 CViewPortInputHandler::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000103a91 0xf - .text._ZN21CViewPortInputHandler12mouseWheeledEiPN4vgui5PanelE - 0x0000000000103aa0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103aa0 CViewPortInputHandler::mouseWheeled(int, vgui::Panel*) - *fill* 0x0000000000103aa1 0xf - .text._ZN21CViewPortInputHandler10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103ab0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103ab0 CViewPortInputHandler::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103ab1 0xf - .text._ZN21CViewPortInputHandler8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103ac0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103ac0 CViewPortInputHandler::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103ac1 0xf - .text._ZN21CViewPortInputHandler11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000103ad0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103ad0 CViewPortInputHandler::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000103ad1 0xf - .text._ZN21CViewPortInputHandler14keyFocusTickedEPN4vgui5PanelE - 0x0000000000103ae0 0x1 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103ae0 CViewPortInputHandler::keyFocusTicked(vgui::Panel*) - *fill* 0x0000000000103ae1 0xf - .text._ZN9MapButton10IsNotValidEv - 0x0000000000103af0 0x39 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103af0 MapButton::IsNotValid() - *fill* 0x0000000000103b29 0x7 - .text._ZN31CHandler_CommandButtonHighlight13cursorEnteredEPN4vgui5PanelE - 0x0000000000103b30 0x10 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103b30 CHandler_CommandButtonHighlight::cursorEntered(vgui::Panel*) - .text._ZN19ToggleCommandButton13cursorEnteredEPN4vgui5PanelE - 0x0000000000103b40 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103b40 ToggleCommandButton::cursorEntered(vgui::Panel*) - 0x0000000000103b50 non-virtual thunk to ToggleCommandButton::cursorEntered(vgui::Panel*) - *fill* 0x0000000000103b5a 0x6 - .text._ZN17SpectToggleButton13cursorEnteredEPN4vgui5PanelE - 0x0000000000103b60 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103b60 SpectToggleButton::cursorEntered(vgui::Panel*) - 0x0000000000103b70 non-virtual thunk to SpectToggleButton::cursorEntered(vgui::Panel*) - *fill* 0x0000000000103b7a 0x6 - .text._ZN31CHandler_CommandButtonHighlight12cursorExitedEPN4vgui5PanelE - 0x0000000000103b80 0x10 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103b80 CHandler_CommandButtonHighlight::cursorExited(vgui::Panel*) - .text._ZN19ToggleCommandButton12cursorExitedEPN4vgui5PanelE - 0x0000000000103b90 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103b90 ToggleCommandButton::cursorExited(vgui::Panel*) - 0x0000000000103ba0 non-virtual thunk to ToggleCommandButton::cursorExited(vgui::Panel*) - *fill* 0x0000000000103baa 0x6 - .text._ZN17SpectToggleButton12cursorExitedEPN4vgui5PanelE - 0x0000000000103bb0 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103bb0 SpectToggleButton::cursorExited(vgui::Panel*) - 0x0000000000103bc0 non-virtual thunk to SpectToggleButton::cursorExited(vgui::Panel*) - *fill* 0x0000000000103bca 0x6 - .text._ZN19ToggleCommandButton5paintEv - 0x0000000000103bd0 0xa0 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103bd0 ToggleCommandButton::paint() - .text._ZN11SpectButton15paintBackgroundEv - 0x0000000000103c70 0x76 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103c70 SpectButton::paintBackground() - *fill* 0x0000000000103ce6 0xa - .text._ZN21TeamOnlyCommandButton15paintBackgroundEv - 0x0000000000103cf0 0x76 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103cf0 TeamOnlyCommandButton::paintBackground() - *fill* 0x0000000000103d66 0xa - .text._ZN17SpectToggleButton15paintBackgroundEv - 0x0000000000103d70 0x76 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103d70 SpectToggleButton::paintBackground() - *fill* 0x0000000000103de6 0xa - .text._ZN12PlayerButton15paintBackgroundEv - 0x0000000000103df0 0x6d release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103df0 PlayerButton::paintBackground() - *fill* 0x0000000000103e5d 0x3 - .text._ZN21CViewPortInputHandler12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000103e60 0x20 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103e60 CViewPortInputHandler::mousePressed(vgui::MouseCode, vgui::Panel*) - .text._ZN14DisguiseButton10IsNotValidEv - 0x0000000000103e80 0x3b release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103e80 DisguiseButton::IsNotValid() - *fill* 0x0000000000103ebb 0x5 - .text._ZN11FeignButton10IsNotValidEv - 0x0000000000103ec0 0x2c release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103ec0 FeignButton::IsNotValid() - *fill* 0x0000000000103eec 0x4 - .text._ZN13DetpackButton10IsNotValidEv - 0x0000000000103ef0 0x2c release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103ef0 DetpackButton::IsNotValid() - *fill* 0x0000000000103f1c 0x4 - .text._ZN11BuildButton10IsNotValidEv - 0x0000000000103f20 0xb2 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103f20 BuildButton::IsNotValid() - *fill* 0x0000000000103fd2 0xe - .text._ZN30CMenuHandler_PopupSubMenuInput13cursorEnteredEPN4vgui5PanelE - 0x0000000000103fe0 0x98 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000103fe0 CMenuHandler_PopupSubMenuInput::cursorEntered(vgui::Panel*) - *fill* 0x0000000000104078 0x8 - .text._ZN23CMenuHandler_ToggleCvar15actionPerformedEPN4vgui5PanelE - 0x0000000000104080 0x34 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000104080 CMenuHandler_ToggleCvar::actionPerformed(vgui::Panel*) - *fill* 0x00000000001040b4 0xc - .text._ZN26CMenuHandler_StringCommand15actionPerformedEPN4vgui5PanelE - 0x00000000001040c0 0x146 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001040c0 CMenuHandler_StringCommand::actionPerformed(vgui::Panel*) - *fill* 0x0000000000104206 0xa - .text._ZN31CMenuHandler_StringCommandWatch15actionPerformedEPN4vgui5PanelE - 0x0000000000104210 0x19d release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000104210 CMenuHandler_StringCommandWatch::actionPerformed(vgui::Panel*) - *fill* 0x00000000001043ad 0x3 - .text._ZN11SpectButton5paintEv - 0x00000000001043b0 0x8f release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001043b0 SpectButton::paint() - *fill* 0x000000000010443f 0x1 - .text._ZN21TeamOnlyCommandButton5paintEv - 0x0000000000104440 0x8f release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000104440 TeamOnlyCommandButton::paint() - *fill* 0x00000000001044cf 0x1 - .text._ZN17SpectToggleButton5paintEv - 0x00000000001044d0 0xf9 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001044d0 SpectToggleButton::paint() - *fill* 0x00000000001045c9 0x7 - .text._ZN12PlayerButton5paintEv - 0x00000000001045d0 0x165 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001045d0 PlayerButton::paint() - *fill* 0x0000000000104735 0xb - .text._ZN23CMenuHandler_TextWindow15actionPerformedEPN4vgui5PanelE - 0x0000000000104740 0x406 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000104740 CMenuHandler_TextWindow::actionPerformed(vgui::Panel*) - *fill* 0x0000000000104b46 0xa - .text 0x0000000000104b50 0x1b1e release/obj/hl1_client/vgui_teammenu.o - 0x0000000000104b50 CTeamMenuPanel::Initialize() - 0x0000000000104b90 CTeamMenuPanel::Open() - 0x0000000000104bd0 CTeamMenuPanel::SetActiveInfo(int) - 0x0000000000104cb0 CTeamMenuPanel::Update() - 0x00000000001054b0 CTeamMenuPanel::SlotInput(int) - 0x0000000000105560 CTeamMenuPanel::paintBackground() - 0x00000000001055e0 CTeamMenuPanel::CTeamMenuPanel(int, int, int, int, int, int) - 0x00000000001055e0 CTeamMenuPanel::CTeamMenuPanel(int, int, int, int, int, int) - *fill* 0x000000000010666e 0x2 - .text._ZN10CMenuPanel5ResetEv - 0x0000000000106670 0x1f release/obj/hl1_client/vgui_teammenu.o - 0x0000000000106670 CMenuPanel::Reset() - *fill* 0x000000000010668f 0x1 - .text._ZN10CMenuPanel4OpenEv - 0x0000000000106690 0x2e release/obj/hl1_client/vgui_teammenu.o - 0x0000000000106690 CMenuPanel::Open() - *fill* 0x00000000001066be 0x2 - .text._ZN10CMenuPanel5CloseEv - 0x00000000001066c0 0x3e release/obj/hl1_client/vgui_teammenu.o - 0x00000000001066c0 CMenuPanel::Close() - *fill* 0x00000000001066fe 0x2 - .text._ZN10CMenuPanel9SlotInputEi - 0x0000000000106700 0x3 release/obj/hl1_client/vgui_teammenu.o - 0x0000000000106700 CMenuPanel::SlotInput(int) - *fill* 0x0000000000106703 0xd - .text._ZN10CMenuPanel13SetActiveInfoEi - 0x0000000000106710 0x1 release/obj/hl1_client/vgui_teammenu.o - 0x0000000000106710 CMenuPanel::SetActiveInfo(int) - *fill* 0x0000000000106711 0xf - .text._ZN14CTeamMenuPanel5ResetEv - 0x0000000000106720 0x27 release/obj/hl1_client/vgui_teammenu.o - 0x0000000000106720 CTeamMenuPanel::Reset() - *fill* 0x0000000000106747 0x9 - .text 0x0000000000106750 0x4718 release/obj/hl1_client/view.o - 0x0000000000106750 V_StartPitchDrift() - 0x00000000001067e0 V_CalcBob(ref_params_s*) - 0x0000000000106960 V_CalcRoll(Vector, Vector, float, float) - 0x00000000001069f0 V_StopPitchDrift() - 0x0000000000106a20 V_DriftPitch(ref_params_s*) - 0x0000000000106c50 V_CalcGunAngle(ref_params_s*) - 0x0000000000106da0 V_AddIdle(ref_params_s*) - 0x0000000000106e30 V_CalcViewRoll(ref_params_s*) - 0x0000000000106f80 V_CalcIntermissionRefdef(ref_params_s*) - 0x0000000000107180 V_CalcNormalRefdef(ref_params_s*) - 0x0000000000107e50 V_CalcTopDownRefdef(ref_params_s*) - 0x0000000000108480 V_SmoothInterpolateAngles(float*, float*, float*, float) - 0x00000000001087b0 V_GetChaseOrigin(float*, float*, float, float*) - 0x0000000000108950 V_GetSingleTargetCam(cl_entity_s*, float*, float*) - 0x0000000000108b10 MaxAngleBetweenAngles(float*, float*) - 0x0000000000108c60 V_GetDoubleTargetsCam(cl_entity_s*, cl_entity_s const*, float*, float*) - 0x0000000000109090 V_GetDirectedChasePosition(cl_entity_s*, cl_entity_s const*, float*, float*) - 0x0000000000109200 V_GetChasePos(int, float*, float*, float*) - 0x0000000000109400 V_ResetChaseCam() - 0x0000000000109410 V_GetInEyePos(int, float*, float*) - 0x0000000000109540 V_GetMapFreePosition(float*, float*, float*) - 0x0000000000109610 V_GetMapChasePosition(int, float*, float*, float*) - 0x00000000001097c0 V_GetMiniMapOriginAndAngle(float*, float*, float*) - 0x0000000000109870 V_FindViewModelByWeaponModel(int, int, int) - 0x0000000000109980 V_CalcSpectatorRefdef(ref_params_s*) - 0x000000000010aa30 V_CalcRefdef - 0x000000000010ac70 V_DropPunchAngle(float, float*) - 0x000000000010acc0 V_PunchAxis(int, float) - 0x000000000010ace0 V_Init() - *fill* 0x000000000010ae68 0x8 - .text 0x000000000010ae70 0x20d6 release/obj/hl1_client/message.o - 0x000000000010ae70 __MsgFunc_GameTitle(char const*, int, void*) - 0x000000000010aec0 CHudMessage::Init() - 0x000000000010af30 CHudMessage::VidInit() - 0x000000000010af80 __MsgFunc_HudText2(char const*, int, void*) - 0x000000000010b050 CHudMessage::Reset() - 0x000000000010b330 CHudMessage::SetPlayerIDPosition() - 0x000000000010b3a0 CHudMessage::FadeBlend(float, float, float, float) - 0x000000000010b410 CHudMessage::XPosition(float, int, int) - 0x000000000010b4f0 CHudMessage::YPosition(float, int) - 0x000000000010b5e0 CHudMessage::MessageScanNextChar() - 0x000000000010b850 CHudMessage::MessageScanStart() - 0x000000000010ba10 CHudMessage::MessageDrawScan(client_textmessage_s*, float) - 0x000000000010c080 CHudMessage::Draw(float) - 0x000000000010c750 CHudMessage::DrawMessage(client_textmessage_s*, float, float) - 0x000000000010c820 CHudMessage::MessageAdd(char const*, float) - 0x000000000010cb60 __MsgFunc_HudText(char const*, int, void*) - 0x000000000010cc20 CHudMessage::MessageAddPlayerID(char const*, bool) - 0x000000000010ccf0 CHudMessage::MessageRemove(char const*) - 0x000000000010cd70 CHudMessage::MsgFunc_HudText(char const*, int, void*) - 0x000000000010ce30 CHudMessage::MsgFunc_HudText2(char const*, int, void*) - 0x000000000010cf00 CHudMessage::MsgFunc_GameTitle(char const*, int, void*) - *fill* 0x000000000010cf46 0xa - .text._ZN11CHudMessageD2Ev - 0x000000000010cf50 0xb release/obj/hl1_client/message.o - 0x000000000010cf50 CHudMessage::~CHudMessage() - 0x000000000010cf50 CHudMessage::~CHudMessage() - *fill* 0x000000000010cf5b 0x5 - .text._ZN11CHudMessageD0Ev - 0x000000000010cf60 0xf release/obj/hl1_client/message.o - 0x000000000010cf60 CHudMessage::~CHudMessage() - *fill* 0x000000000010cf6f 0x1 - .text 0x000000000010cf70 0x351 release/obj/hl1_client/parsemsg.o - 0x000000000010cf70 BEGIN_READ(void*, int) - 0x000000000010cfa0 READ_CHAR() - 0x000000000010cfd0 READ_BYTE() - 0x000000000010d000 READ_SHORT() - 0x000000000010d040 READ_WORD() - 0x000000000010d080 READ_LONG() - 0x000000000010d0e0 READ_FLOAT() - 0x000000000010d130 READ_STRING() - 0x000000000010d190 READ_COORD() - 0x000000000010d200 READ_ANGLE() - 0x000000000010d260 READ_HIRESANGLE() - *fill* 0x000000000010d2c1 0xf - .text 0x000000000010d2d0 0x1269 release/obj/hl1_client/saytext.o - 0x000000000010d2d0 CHudSayText::VidInit() - 0x000000000010d2e0 CHudSayText::Init() - 0x000000000010d370 CHudSayText::InitHUDData() - 0x000000000010d400 CHudSayText::Draw(float) - 0x000000000010d660 ScrollTextUp() - 0x000000000010d710 CHudSayText::EnsureTextFitsInOneLineAndWrapIfHaveTo(int) - 0x000000000010db30 CHudSayText::SayTextPrint(char const*, int, int) - 0x000000000010de40 CHudSayText::MsgFunc_SayText(char const*, int, void*) - 0x000000000010e1c0 __MsgFunc_SayText(char const*, int, void*) - *fill* 0x000000000010e539 0x7 - .text._ZN11CHudSayTextD2Ev - 0x000000000010e540 0xb release/obj/hl1_client/saytext.o - 0x000000000010e540 CHudSayText::~CHudSayText() - 0x000000000010e540 CHudSayText::~CHudSayText() - *fill* 0x000000000010e54b 0x5 - .text._ZN11CHudSayTextD0Ev - 0x000000000010e550 0xf release/obj/hl1_client/saytext.o - 0x000000000010e550 CHudSayText::~CHudSayText() - *fill* 0x000000000010e55f 0x1 - .text 0x000000000010e560 0x67e release/obj/hl1_client/status_icons.o - 0x000000000010e560 CHudStatusIcons::VidInit() - 0x000000000010e570 CHudStatusIcons::Init() - 0x000000000010e5a0 CHudStatusIcons::Reset() - 0x000000000010e680 CHudStatusIcons::Draw(float) - 0x000000000010e860 CHudStatusIcons::EnableIcon(char*, unsigned char, unsigned char, unsigned char) - 0x000000000010eaa0 CHudStatusIcons::DisableIcon(char*) - *fill* 0x000000000010ebde 0x2 - .text._ZN15CHudStatusIconsD2Ev - 0x000000000010ebe0 0xb release/obj/hl1_client/status_icons.o - 0x000000000010ebe0 CHudStatusIcons::~CHudStatusIcons() - 0x000000000010ebe0 CHudStatusIcons::~CHudStatusIcons() - *fill* 0x000000000010ebeb 0x5 - .text._ZN15CHudStatusIconsD0Ev - 0x000000000010ebf0 0xf release/obj/hl1_client/status_icons.o - 0x000000000010ebf0 CHudStatusIcons::~CHudStatusIcons() - *fill* 0x000000000010ebff 0x1 - .text 0x000000000010ec00 0xaf5 release/obj/hl1_client/statusbar.o - 0x000000000010ec00 CHudStatusBar::Init() - 0x000000000010ec70 CHudStatusBar::VidInit() - 0x000000000010ec80 CHudStatusBar::Reset() - 0x000000000010ecc0 CHudStatusBar::GetStatusString() const - 0x000000000010ed60 CHudStatusBar::ParseStatusString(int) - 0x000000000010f120 CHudStatusBar::Draw(float) - 0x000000000010f310 __MsgFunc_StatusValue(char const*, int, void*) - 0x000000000010f3b0 __MsgFunc_StatusText(char const*, int, void*) - 0x000000000010f4e0 CHudStatusBar::ReparseStringIfNeeded() - 0x000000000010f540 CHudStatusBar::MsgFunc_StatusText(char const*, int, void*) - 0x000000000010f660 CHudStatusBar::MsgFunc_StatusValue(char const*, int, void*) - *fill* 0x000000000010f6f5 0xb - .text._ZN13CHudStatusBarD2Ev - 0x000000000010f700 0xb release/obj/hl1_client/statusbar.o - 0x000000000010f700 CHudStatusBar::~CHudStatusBar() - 0x000000000010f700 CHudStatusBar::~CHudStatusBar() - *fill* 0x000000000010f70b 0x5 - .text._ZN13CHudStatusBarD0Ev - 0x000000000010f710 0xf release/obj/hl1_client/statusbar.o - 0x000000000010f710 CHudStatusBar::~CHudStatusBar() - *fill* 0x000000000010f71f 0x1 - .text 0x000000000010f720 0x7b5 release/obj/hl1_client/studio_util.o - 0x000000000010f720 VectorCompare(float const*, float const*) - 0x000000000010f770 CrossProduct(float const*, float const*, float*) - 0x000000000010f7b0 VectorTransform(float const*, float (*) [4], float*) - 0x000000000010f810 ConcatTransforms(float (*) [4], float (*) [4], float (*) [4]) - 0x000000000010f950 AngleQuaternion(float*, float*) - 0x000000000010fa60 QuaternionSlerp(float*, float*, float, float*) - 0x000000000010fd40 QuaternionMatrix(float*, float (*) [4]) - 0x000000000010fe20 MatrixCopy(float (*) [4], float (*) [4]) - *fill* 0x000000000010fed5 0xb - .text 0x000000000010fee0 0x4c44 release/obj/hl1_client/StudioModelRenderer.o - 0x000000000010fee0 CStudioModelRenderer::Init() - 0x000000000010ff70 CStudioModelRenderer::~CStudioModelRenderer() - 0x000000000010ff70 CStudioModelRenderer::~CStudioModelRenderer() - 0x000000000010ff80 CStudioModelRenderer::StudioCalcBoneAdj(float, float*, unsigned char const*, unsigned char const*, unsigned char) - 0x0000000000110210 CStudioModelRenderer::StudioCalcBonePosition(int, float, mstudiobone_t*, mstudioanim_t*, float*, float*) - 0x0000000000110370 CStudioModelRenderer::StudioGetAnim(model_s*, mstudioseqdesc_t*) - 0x0000000000110460 CStudioModelRenderer::StudioPlayerBlend(mstudioseqdesc_t*, int*, float*) - 0x0000000000110530 CStudioModelRenderer::StudioCalcRotations(float (*) [3], float (*) [4], mstudioseqdesc_t*, mstudioanim_t*, float) - 0x0000000000110830 CStudioModelRenderer::StudioEstimateFrame(mstudioseqdesc_t*) - 0x0000000000110940 CStudioModelRenderer::StudioProcessGait(entity_state_s*) - 0x0000000000110cc0 CStudioModelRenderer::StudioRenderModel() - 0x0000000000110da0 CStudioModelRenderer::StudioRenderFinal_Software() - 0x0000000000110ee0 CStudioModelRenderer::StudioRenderFinal_Hardware() - 0x0000000000111070 CStudioModelRenderer::~CStudioModelRenderer() - 0x0000000000111080 CStudioModelRenderer::StudioSlerpBones(float (*) [4], float (*) [3], float (*) [4], float (*) [3], float) - 0x00000000001111d0 CStudioModelRenderer::StudioCalcBoneQuaterion(int, float, mstudiobone_t*, mstudioanim_t*, float*, float*) - 0x00000000001113d0 CStudioModelRenderer::StudioSetUpTransform(int) - 0x00000000001118e0 CStudioModelRenderer::StudioSaveBones() - 0x0000000000111990 CStudioModelRenderer::StudioMergeBones(model_s*) - 0x0000000000111cf0 CStudioModelRenderer::StudioEstimateGait(entity_state_s*) - 0x0000000000112040 CStudioModelRenderer::StudioEstimateInterpolant() - 0x00000000001120a0 CStudioModelRenderer::StudioRenderFinal() - 0x00000000001120e0 CStudioModelRenderer::StudioFxTransform(cl_entity_s*, float (*) [4]) - 0x0000000000112240 CStudioModelRenderer::StudioCalcAttachments() - 0x00000000001122e0 CStudioModelRenderer::StudioSetupBones() - 0x0000000000113180 CStudioModelRenderer::StudioDrawModel(int) - 0x00000000001148f0 CStudioModelRenderer::StudioDrawPlayer(int, entity_state_s*) - 0x00000000001149c0 GetRenderModeForModelName(int, char*) - 0x0000000000114a60 CStudioModelRenderer::CStudioModelRenderer() - 0x0000000000114a60 CStudioModelRenderer::CStudioModelRenderer() - 0x0000000000114af0 GetDoesBoneHaveParent(int, int, mstudiobone_t*) - *fill* 0x0000000000114b24 0xc - .text 0x0000000000114b30 0x88b release/obj/hl1_client/text_message.o - 0x0000000000114b30 CHudTextMessage::Init() - 0x0000000000114b70 CHudTextMessage::LocaliseTextString(char const*, char*, int) - 0x0000000000114c70 CHudTextMessage::BufferedLocaliseTextString(char const*) - 0x0000000000114d80 CHudTextMessage::LookupString(char const*, int*) - 0x0000000000114df0 StripEndNewlineFromString(char*) - 0x0000000000114e30 ConvertCRtoNL(char*) - 0x0000000000114e60 CHudTextMessage::MsgFunc_TextMsg(char const*, int, void*) - 0x0000000000115390 __MsgFunc_TextMsg(char const*, int, void*) - *fill* 0x00000000001153bb 0x5 - .text._ZN15CHudTextMessageD2Ev - 0x00000000001153c0 0xb release/obj/hl1_client/text_message.o - 0x00000000001153c0 CHudTextMessage::~CHudTextMessage() - 0x00000000001153c0 CHudTextMessage::~CHudTextMessage() - *fill* 0x00000000001153cb 0x5 - .text._ZN15CHudTextMessageD0Ev - 0x00000000001153d0 0xf release/obj/hl1_client/text_message.o - 0x00000000001153d0 CHudTextMessage::~CHudTextMessage() - *fill* 0x00000000001153df 0x1 - .text._ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs - 0x00000000001153e0 0x295 release/obj/hl1_client/text_message.o - 0x00000000001153e0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, std::string const&) - *fill* 0x0000000000115675 0xb - .text 0x0000000000115680 0x240 release/obj/hl1_client/train.o - 0x0000000000115680 CHudTrain::Init() - 0x00000000001156c0 CHudTrain::VidInit() - 0x00000000001156e0 CHudTrain::Draw(float) - 0x0000000000115810 __MsgFunc_Train(char const*, int, void*) - 0x0000000000115870 CHudTrain::MsgFunc_Train(char const*, int, void*) - .text._ZN9CHudTrainD2Ev - 0x00000000001158c0 0xb release/obj/hl1_client/train.o - 0x00000000001158c0 CHudTrain::~CHudTrain() - 0x00000000001158c0 CHudTrain::~CHudTrain() - *fill* 0x00000000001158cb 0x5 - .text._ZN9CHudTrainD0Ev - 0x00000000001158d0 0xf release/obj/hl1_client/train.o - 0x00000000001158d0 CHudTrain::~CHudTrain() - *fill* 0x00000000001158df 0x1 - .text 0x00000000001158e0 0x6ee release/obj/hl1_client/tri.o - 0x00000000001158e0 AngleMatrix(Vector, float (*) [4]) - 0x0000000000115a10 VectorRotate(Vector, float const (*) [4], Vector&) - 0x0000000000115a70 HUD_DrawNormalTriangles - 0x0000000000115a90 DrawHitBox(OBBox const&) - 0x0000000000115dd0 DrawHitBoxes() - 0x0000000000115eb0 HUD_DrawTransparentTriangles - *fill* 0x0000000000115fce 0x2 - .text 0x0000000000115fd0 0x156 release/obj/hl1_client/vgui_int.o - 0x0000000000115fd0 VGui_ViewportPaintBackground - 0x0000000000115fe0 VGui_GetPanel - 0x0000000000115ff0 VGui_Startup - 0x00000000001160f0 VGui_Shutdown - *fill* 0x0000000000116126 0xa - .text 0x0000000000116130 0x1d7 release/obj/hl1_client/cl_util.o - 0x0000000000116130 DrawSetTextColor(float, float, float) - 0x0000000000116160 DrawConsoleString(int, int, char const*) - 0x0000000000116250 GetConsoleStringSize(char const*, int*, int*) - 0x00000000001162a0 ConsoleStringLen(char const*) - 0x00000000001162f0 ConsolePrint(char const*) - 0x0000000000116300 CenterPrint(char const*) - *fill* 0x0000000000116307 0x9 - .text 0x0000000000116310 0x33d3 release/obj/hl1_client/ev_hldm.o - 0x0000000000116310 EV_BoltCallback(tempent_s*, float, float) - 0x0000000000116360 EV_HLDM_PlayTextureSound(int, pmtrace_s*, float*, float*, int, int) - 0x0000000000116810 EV_HLDM_DamageDecal(physent_s*) - 0x00000000001168f0 EV_HLDM_GunshotDecalTrace(pmtrace_s*, char*, int) - 0x0000000000116aa0 EV_HLDM_DecalGunshot(pmtrace_s*, int, int) - 0x0000000000116bd0 EV_HLDM_CheckTracer(int, float*, float*, float*, float*, int, int, int*) - 0x0000000000116d20 EV_HLDM_FireBulletsPlayer(int, float*, float*, float*, int, float*, float*, float, int, int, int*, Vector, int) - 0x0000000000117520 EV_SpinGauss - 0x00000000001175a0 EV_StopPreviousGauss(int) - 0x00000000001175e0 EV_FireGauss - 0x0000000000118230 EV_Crowbar - 0x0000000000118370 EV_FireCrossbow2 - 0x0000000000118890 EV_FireCrossbow - 0x0000000000118a20 EV_FireRpg - 0x0000000000118b20 EV_EgonFire - 0x0000000000118ee0 EV_EgonStop - 0x0000000000118fd0 EV_HornetGunFire - 0x0000000000119150 EV_TripmineFire - 0x00000000001192e0 EV_SnarkFire - 0x0000000000119490 EV_TrainPitchAdjust - 0x00000000001196e0 EV_TFC_IsAllyTeam(int, int) - *fill* 0x00000000001196e3 0xd - .text 0x00000000001196f0 0xa43 release/obj/hl1_client/vgui_MOTDWindow.o - 0x00000000001196f0 CMessageWindowPanel::CMessageWindowPanel(char const*, char const*, int, int, int, int, int, int) - 0x00000000001196f0 CMessageWindowPanel::CMessageWindowPanel(char const*, char const*, int, int, int, int, int, int) - 0x000000000011a0d0 CMessageWindowPanel_Create(char const*, char const*, int, int, int, int, int, int) - *fill* 0x000000000011a133 0xd - .text 0x000000000011a140 0x1303 release/obj/hl1_client/vgui_SchemeManager.o - 0x000000000011a180 CSchemeManager::~CSchemeManager() - 0x000000000011a180 CSchemeManager::~CSchemeManager() - 0x000000000011a200 CSchemeManager::~CSchemeManager() - 0x000000000011a290 Scheme_Init() - 0x000000000011a2c0 CSchemeManager::CScheme::CScheme() - 0x000000000011a2c0 CSchemeManager::CScheme::CScheme() - 0x000000000011a2f0 CSchemeManager::CScheme::~CScheme() - 0x000000000011a2f0 CSchemeManager::CScheme::~CScheme() - 0x000000000011a310 CSchemeManager::CSchemeManager(int, int) - 0x000000000011a310 CSchemeManager::CSchemeManager(int, int) - 0x000000000011b0f0 CSchemeManager::getSchemeHandle(char const*) - 0x000000000011b150 CSchemeManager::getSafeScheme(int) - 0x000000000011b180 CSchemeManager::getFont(int) - 0x000000000011b1b0 CSchemeManager::getFgColor(int, int&, int&, int&, int&) - 0x000000000011b210 CSchemeManager::getBgColor(int, int&, int&, int&, int&) - 0x000000000011b270 CSchemeManager::getFgArmedColor(int, int&, int&, int&, int&) - 0x000000000011b2d0 CSchemeManager::getBgArmedColor(int, int&, int&, int&, int&) - 0x000000000011b330 CSchemeManager::getFgMousedownColor(int, int&, int&, int&, int&) - 0x000000000011b390 CSchemeManager::getBgMousedownColor(int, int&, int&, int&, int&) - 0x000000000011b3f0 CSchemeManager::getBorderColor(int, int&, int&, int&, int&) - *fill* 0x000000000011b443 0xd - .text 0x000000000011b450 0x5c7d release/obj/hl1_client/vgui_ScorePanel.o - 0x000000000011b450 ScorePanel::HitTestPanel::internalMousePressed(vgui::MouseCode) - 0x000000000011b4a0 CLabelHeader::paintBackground() - 0x000000000011b7b0 ScorePanel::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x000000000011b830 non-virtual thunk to ScorePanel::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x000000000011b840 ScorePanel::cursorMoved(int, int, vgui::Panel*) - 0x000000000011b960 non-virtual thunk to ScorePanel::cursorMoved(int, int, vgui::Panel*) - 0x000000000011b970 ScorePanel_InitializeDemoPlayback(int, unsigned char*) - 0x000000000011ba10 ScorePanel_InitializeDemoRecording() - 0x000000000011bad0 BuildColor(int, int, int, float) - 0x000000000011bb40 ScorePanel::ScorePanel(int, int, int, int) - 0x000000000011bb40 ScorePanel::ScorePanel(int, int, int, int) - 0x000000000011cc70 ScorePanel::Initialize() - 0x000000000011cce0 HACK_GetPlayerUniqueID(int, char*) - 0x000000000011cd10 ScorePanel::SortPlayers(int, char*, bool) - 0x000000000011cff0 ScorePanel::SortActivePlayers(char*, bool) - 0x000000000011d0a0 ScorePanel::SortTeams() - 0x000000000011db50 ScorePanel::GetIconFrame() - 0x000000000011dbc0 ScorePanel::DeathMsg(int, int) - 0x000000000011dc30 ScorePanel::SetSquelchMode(bool) - 0x000000000011dcb0 ScorePanel::MouseOverCell(int, int) - 0x000000000011dd70 CLabelHeader::calcAlignment(int, int, int&, int&) - 0x000000000011de90 CLabelHeader::paint() - 0x000000000011e150 ScorePanel::FillGrid() - 0x0000000000120520 ScorePanel::Update() - 0x0000000000120ab0 ScorePanel::RebuildTeams() - 0x0000000000121090 ScorePanel::Open() - *fill* 0x00000000001210cd 0x3 - .text._ZN4vgui19CDefaultInputSignal11cursorMovedEiiPNS_5PanelE - 0x00000000001210d0 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001210d0 vgui::CDefaultInputSignal::cursorMoved(int, int, vgui::Panel*) - *fill* 0x00000000001210d1 0xf - .text._ZN4vgui19CDefaultInputSignal13cursorEnteredEPNS_5PanelE - 0x00000000001210e0 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001210e0 vgui::CDefaultInputSignal::cursorEntered(vgui::Panel*) - *fill* 0x00000000001210e1 0xf - .text._ZN4vgui19CDefaultInputSignal12cursorExitedEPNS_5PanelE - 0x00000000001210f0 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001210f0 vgui::CDefaultInputSignal::cursorExited(vgui::Panel*) - *fill* 0x00000000001210f1 0xf - .text._ZN4vgui19CDefaultInputSignal12mousePressedENS_9MouseCodeEPNS_5PanelE - 0x0000000000121100 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121100 vgui::CDefaultInputSignal::mousePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000121101 0xf - .text._ZN4vgui19CDefaultInputSignal18mouseDoublePressedENS_9MouseCodeEPNS_5PanelE - 0x0000000000121110 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121110 vgui::CDefaultInputSignal::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000121111 0xf - .text._ZN4vgui19CDefaultInputSignal13mouseReleasedENS_9MouseCodeEPNS_5PanelE - 0x0000000000121120 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121120 vgui::CDefaultInputSignal::mouseReleased(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000121121 0xf - .text._ZN4vgui19CDefaultInputSignal12mouseWheeledEiPNS_5PanelE - 0x0000000000121130 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121130 vgui::CDefaultInputSignal::mouseWheeled(int, vgui::Panel*) - *fill* 0x0000000000121131 0xf - .text._ZN4vgui19CDefaultInputSignal10keyPressedENS_7KeyCodeEPNS_5PanelE - 0x0000000000121140 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121140 vgui::CDefaultInputSignal::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000121141 0xf - .text._ZN4vgui19CDefaultInputSignal8keyTypedENS_7KeyCodeEPNS_5PanelE - 0x0000000000121150 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121150 vgui::CDefaultInputSignal::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000121151 0xf - .text._ZN4vgui19CDefaultInputSignal11keyReleasedENS_7KeyCodeEPNS_5PanelE - 0x0000000000121160 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121160 vgui::CDefaultInputSignal::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000121161 0xf - .text._ZN4vgui19CDefaultInputSignal14keyFocusTickedEPNS_5PanelE - 0x0000000000121170 0x1 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121170 vgui::CDefaultInputSignal::keyFocusTicked(vgui::Panel*) - *fill* 0x0000000000121171 0xf - .text._ZN11CTextImage27getSizeERiS0_ - 0x0000000000121180 0x7a release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121180 CTextImage2::getSize(int&, int&) - *fill* 0x00000000001211fa 0x6 - .text._ZN11CTextImage27doPaintEPN4vgui5PanelE - 0x0000000000121200 0x3f release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121200 CTextImage2::doPaint(vgui::Panel*) - *fill* 0x000000000012123f 0x1 - .text._ZN11CTextImage26setPosEii - 0x0000000000121240 0xaf release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121240 CTextImage2::setPos(int, int) - *fill* 0x00000000001212ef 0x1 - .text._ZN11CTextImage28setColorEN4vgui5ColorE - 0x00000000001212f0 0x5b release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001212f0 CTextImage2::setColor(vgui::Color) - *fill* 0x000000000012134b 0x5 - .text._ZN12CLabelHeader11getTextSizeERiS0_ - 0x0000000000121350 0x15 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121350 CLabelHeader::getTextSize(int&, int&) - *fill* 0x0000000000121365 0xb - .text._ZN12CLabelHeader7setFontEPN4vgui4FontE - 0x0000000000121370 0x18 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121370 CLabelHeader::setFont(vgui::Font*) - *fill* 0x0000000000121388 0x8 - .text._ZN12CLabelHeader7setTextEiPKc - 0x0000000000121390 0xc5 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121390 CLabelHeader::setText(int, char const*) - *fill* 0x0000000000121455 0xb - .text._ZN12CLabelHeader10setFgColorEiiii - 0x0000000000121460 0x13b release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121460 CLabelHeader::setFgColor(int, int, int, int) - *fill* 0x000000000012159b 0x5 - .text._ZN12CLabelHeader10setFgColorEN4vgui6Scheme11SchemeColorE - 0x00000000001215a0 0x70 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001215a0 CLabelHeader::setFgColor(vgui::Scheme::SchemeColor) - .text._ZN12CLabelHeader7setTextEPKc - 0x0000000000121610 0x152 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121610 CLabelHeader::setText(char const*) - *fill* 0x0000000000121762 0xe - .text._ZNSt6vectorISt4pairIPN4vgui9BitmapTGAESsESaIS4_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS4_S6_EERKS4_ - 0x0000000000121770 0x346 release/obj/hl1_client/vgui_ScorePanel.o - 0x0000000000121770 std::vector, std::allocator > >::_M_insert_aux(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&) - *fill* 0x0000000000121ab6 0xa - .text 0x0000000000121ac0 0x18fd release/obj/hl1_client/vgui_ClassMenu.o - 0x0000000000121ac0 CClassMenuPanel::Open() - 0x0000000000121b00 CClassMenuPanel::Initialize() - 0x0000000000121b40 CClassMenuPanel::SetActiveInfo(int) - 0x0000000000121c20 CClassMenuPanel::Update() - 0x00000000001220e0 CClassMenuPanel::SlotInput(int) - 0x0000000000122190 CClassMenuPanel::CClassMenuPanel(int, int, int, int, int, int) - 0x0000000000122190 CClassMenuPanel::CClassMenuPanel(int, int, int, int, int, int) - *fill* 0x00000000001233bd 0x3 - .text._ZN15CClassMenuPanel5ResetEv - 0x00000000001233c0 0x27 release/obj/hl1_client/vgui_ClassMenu.o - 0x00000000001233c0 CClassMenuPanel::Reset() - *fill* 0x00000000001233e7 0x9 - .text 0x00000000001233f0 0x35c release/obj/hl1_client/vgui_ConsolePanel.o - 0x0000000000123410 ConsolePanel::print(char const*) - 0x0000000000123440 ConsolePanel::vprintf(char const*, char*) - 0x0000000000123460 ConsolePanel::doExecCommand() - 0x00000000001234f0 ConsolePanel::printf(char const*, ...) - 0x0000000000123520 ConsolePanel::ConsolePanel(int, int, int, int) - 0x0000000000123520 ConsolePanel::ConsolePanel(int, int, int, int) - 0x00000000001236a0 ConsolePanel::setSize(int, int) - *fill* 0x000000000012374c 0x4 - .text 0x0000000000123750 0x1080 release/obj/hl1_client/vgui_ControlConfigPanel.o - 0x0000000000123ae0 ControlConfigPanel::ControlConfigPanel(int, int, int, int) - 0x0000000000123ae0 ControlConfigPanel::ControlConfigPanel(int, int, int, int) - 0x00000000001241f0 ControlConfigPanel::AddCVar(char const*, char const*) - 0x00000000001245a0 ControlConfigPanel::GetCVarCount() - 0x00000000001245b0 ControlConfigPanel::GetCVar(int, char*, int, char*, int) - 0x0000000000124660 ControlConfigPanel::GetCVarBind(char const*, char*, int, char*, int) - 0x00000000001246e0 ControlConfigPanel::SetCVarBind(char const*, char const*, char const*) - 0x00000000001246f0 ControlConfigPanel::AddCVarFromInputStream(vgui::InputStream*) - .text 0x00000000001247d0 0x1cf7 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001247d0 CImageLabel::getImageWide() - 0x0000000000124820 CImageLabel::getImageTall() - 0x0000000000124870 CCommandMenu::paintBackground() - 0x00000000001248f0 CTFScrollButton::paintBackground() - 0x0000000000124900 CTFSlider::paintBackground() - 0x0000000000124a90 CHandler_MenuButtonOver::cursorEntered(vgui::Panel*) - 0x0000000000124ad0 CTFScrollButton::paint() - 0x0000000000124ba0 CommandButton::paint() - 0x0000000000124c50 CommandButton::paintBackground() - 0x0000000000124d00 ClassButton::IsNotValid() - 0x0000000000124de0 CMenuHandler_StringCommandClassSelect::actionPerformed(vgui::Panel*) - 0x0000000000124e70 CommandButton::setText(char const*) - 0x0000000000124f80 GetTGANameForRes(char const*) - 0x0000000000125030 LoadTGAForRes(char const*) - 0x0000000000125120 CommandButton::CommandButton(char const*, int, int, int, int, bool) - 0x0000000000125120 CommandButton::CommandButton(char const*, int, int, int, int, bool) - 0x0000000000125300 CommandButton::CommandButton(int, char const*, int, int, int, int, bool) - 0x0000000000125300 CommandButton::CommandButton(int, char const*, int, int, int, int, bool) - 0x00000000001254f0 CommandButton::CommandButton(char const*, int, int, int, int, bool, bool) - 0x00000000001254f0 CommandButton::CommandButton(char const*, int, int, int, int, bool, bool) - 0x00000000001256e0 CommandButton::Init() - 0x0000000000125780 CommandButton::RecalculateText() - 0x0000000000125880 CommandButton::setBoundKey(char) - 0x0000000000125990 CommandButton::getBoundKey() - 0x00000000001259a0 CommandButton::AddSubMenu(CCommandMenu*) - 0x00000000001259d0 CommandButton::UpdateSubMenus(int) - 0x0000000000125a00 CommandButton::cursorEntered() - 0x0000000000125bb0 CommandButton::cursorExited() - 0x0000000000125bf0 CommandButton::getParentMenu() - 0x0000000000125c00 CommandButton::setParentMenu(CCommandMenu*) - 0x0000000000125c10 CImageLabel::CImageLabel(char const*, int, int) - 0x0000000000125c10 CImageLabel::CImageLabel(char const*, int, int) - 0x0000000000125c90 CImageLabel::CImageLabel(char const*, int, int, int, int) - 0x0000000000125c90 CImageLabel::CImageLabel(char const*, int, int, int, int) - 0x0000000000125d10 CImageLabel::LoadImage(char const*) - 0x0000000000125f60 CTFScrollButton::CTFScrollButton(int, char const*, int, int, int, int) - 0x0000000000125f60 CTFScrollButton::CTFScrollButton(int, char const*, int, int, int, int) - 0x00000000001261b0 CTFScrollPanel::CTFScrollPanel(int, int, int, int) - 0x00000000001261b0 CTFScrollPanel::CTFScrollPanel(int, int, int, int) - *fill* 0x00000000001264c7 0x9 - .text._ZN11CImageLabel15paintBackgroundEv - 0x00000000001264d0 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001264d0 CImageLabel::paintBackground() - *fill* 0x00000000001264d1 0xf - .text._ZN23CHandler_MenuButtonOver11cursorMovedEiiPN4vgui5PanelE - 0x00000000001264e0 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001264e0 CHandler_MenuButtonOver::cursorMoved(int, int, vgui::Panel*) - *fill* 0x00000000001264e1 0xf - .text._ZN23CHandler_MenuButtonOver12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000001264f0 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001264f0 CHandler_MenuButtonOver::mousePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x00000000001264f1 0xf - .text._ZN23CHandler_MenuButtonOver13mouseReleasedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000126500 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x0000000000126500 CHandler_MenuButtonOver::mouseReleased(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000126501 0xf - .text._ZN23CHandler_MenuButtonOver18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000126510 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x0000000000126510 CHandler_MenuButtonOver::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000126511 0xf - .text._ZN23CHandler_MenuButtonOver12cursorExitedEPN4vgui5PanelE - 0x0000000000126520 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x0000000000126520 CHandler_MenuButtonOver::cursorExited(vgui::Panel*) - *fill* 0x0000000000126521 0xf - .text._ZN23CHandler_MenuButtonOver12mouseWheeledEiPN4vgui5PanelE - 0x0000000000126530 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x0000000000126530 CHandler_MenuButtonOver::mouseWheeled(int, vgui::Panel*) - *fill* 0x0000000000126531 0xf - .text._ZN23CHandler_MenuButtonOver10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000126540 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x0000000000126540 CHandler_MenuButtonOver::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000126541 0xf - .text._ZN23CHandler_MenuButtonOver8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000126550 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x0000000000126550 CHandler_MenuButtonOver::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000126551 0xf - .text._ZN23CHandler_MenuButtonOver11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000126560 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x0000000000126560 CHandler_MenuButtonOver::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000126561 0xf - .text._ZN23CHandler_MenuButtonOver14keyFocusTickedEPN4vgui5PanelE - 0x0000000000126570 0x1 release/obj/hl1_client/vgui_CustomObjects.o - 0x0000000000126570 CHandler_MenuButtonOver::keyFocusTicked(vgui::Panel*) - *fill* 0x0000000000126571 0xf - .text 0x0000000000126580 0x1501 release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000126700 ServerBrowser::setSize(int, int) - 0x0000000000126f60 ServerBrowser::ServerBrowser(int, int, int, int) - 0x0000000000126f60 ServerBrowser::ServerBrowser(int, int, int, int) - *fill* 0x0000000000127a81 0xf - .text._ZN21LabelSortInputHandler11cursorMovedEiiPN4vgui5PanelE - 0x0000000000127a90 0x1 release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127a90 LabelSortInputHandler::cursorMoved(int, int, vgui::Panel*) - *fill* 0x0000000000127a91 0xf - .text._ZN21LabelSortInputHandler13cursorEnteredEPN4vgui5PanelE - 0x0000000000127aa0 0x1 release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127aa0 LabelSortInputHandler::cursorEntered(vgui::Panel*) - *fill* 0x0000000000127aa1 0xf - .text._ZN21LabelSortInputHandler12cursorExitedEPN4vgui5PanelE - 0x0000000000127ab0 0x1 release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127ab0 LabelSortInputHandler::cursorExited(vgui::Panel*) - *fill* 0x0000000000127ab1 0xf - .text._ZN21LabelSortInputHandler13mouseReleasedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000127ac0 0x1 release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127ac0 LabelSortInputHandler::mouseReleased(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000127ac1 0xf - .text._ZN21LabelSortInputHandler12mouseWheeledEiPN4vgui5PanelE - 0x0000000000127ad0 0x1 release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127ad0 LabelSortInputHandler::mouseWheeled(int, vgui::Panel*) - *fill* 0x0000000000127ad1 0xf - .text._ZN21LabelSortInputHandler10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000127ae0 0x1 release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127ae0 LabelSortInputHandler::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000127ae1 0xf - .text._ZN21LabelSortInputHandler8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000127af0 0x1 release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127af0 LabelSortInputHandler::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000127af1 0xf - .text._ZN21LabelSortInputHandler11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000127b00 0x1 release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127b00 LabelSortInputHandler::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000127b01 0xf - .text._ZN21LabelSortInputHandler14keyFocusTickedEPN4vgui5PanelE - 0x0000000000127b10 0x1 release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127b10 LabelSortInputHandler::keyFocusTicked(vgui::Panel*) - *fill* 0x0000000000127b11 0xf - .text._ZN21LabelSortInputHandler12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000127b20 0xa release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127b20 LabelSortInputHandler::mousePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000127b2a 0x6 - .text._ZN21LabelSortInputHandler18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000127b30 0xa release/obj/hl1_client/vgui_ServerBrowser.o - 0x0000000000127b30 LabelSortInputHandler::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000127b3a 0x6 - .text 0x0000000000127b40 0x601 release/obj/hl1_client/util.o - 0x0000000000127b40 ScreenHeight() - 0x0000000000127b50 ScreenWidth() - 0x0000000000127b60 CreatePickingRay(int, int, Vector&) - 0x0000000000127ca0 FillRGBAClipped(vgui::Panel*, int, int, int, int, int, int, int, int) - 0x0000000000127d90 LoadSprite(char const*) - 0x0000000000127e10 LocalizeString(char const*, std::string&) - *fill* 0x0000000000128141 0xf - .text 0x0000000000128150 0x2187 release/obj/hl1_client/health.o - 0x0000000000128150 CHudHealth::Reset() - 0x00000000001281b0 CHudHealth::Init() - 0x0000000000128300 CHudHealth::VidInit() - 0x0000000000128380 __MsgFunc_Health(char const*, int, void*) - 0x00000000001283d0 CHudHealth::MsgFunc_Health(char const*, int, void*) - 0x0000000000128420 CHudHealth::GetPainColor(int&, int&, int&) - 0x00000000001284a0 CHudHealth::CalcDamageDirection(Vector) - 0x0000000000128820 CHudHealth::DrawPain(float) - 0x0000000000128f20 CHudHealth::DrawDamage(float) - 0x00000000001292f0 CHudHealth::Draw(float) - 0x0000000000129780 CHudHealth::UpdateTiles(float, long) - 0x00000000001299a0 CHudHealth::MsgFunc_Damage(char const*, int, void*) - 0x0000000000129e30 __MsgFunc_Damage(char const*, int, void*) - *fill* 0x000000000012a2d7 0x9 - .text._ZN10CHudHealthD2Ev - 0x000000000012a2e0 0xb release/obj/hl1_client/health.o - 0x000000000012a2e0 CHudHealth::~CHudHealth() - 0x000000000012a2e0 CHudHealth::~CHudHealth() - *fill* 0x000000000012a2eb 0x5 - .text._ZN10CHudHealthD0Ev - 0x000000000012a2f0 0xf release/obj/hl1_client/health.o - 0x000000000012a2f0 CHudHealth::~CHudHealth() - *fill* 0x000000000012a2ff 0x1 - .text 0x000000000012a300 0x846 release/obj/hl1_client/demo.o - 0x000000000012a300 Demo_WriteBuffer(int, int, unsigned char*) - 0x000000000012a3a0 Demo_WriteByte(int, unsigned char) - 0x000000000012a3d0 Demo_WriteVector(int, Vector) - 0x000000000012a420 Demo_WriteFloat(int, float) - 0x000000000012a450 Demo_WriteInt(int, int) - 0x000000000012a480 Demo_ReadBuffer - 0x000000000012a670 GetDataSize(std::string const&) - 0x000000000012a680 LoadData(void*, unsigned char const*, int, int&) - 0x000000000012a750 LoadStringData(std::string&, unsigned char const*, int&) - 0x000000000012a940 LoadVectorData(float*, unsigned char const*, int&) - 0x000000000012a970 SaveData(unsigned char*, void const*, int, int&) - 0x000000000012aa40 SaveStringData(unsigned char*, std::string const&, int&) - 0x000000000012ab20 SaveVectorData(unsigned char*, float*, int&) - *fill* 0x000000000012ab46 0xa - .text 0x000000000012ab50 0x261 release/obj/hl1_client/mod/AvHAcidRocketGun.o - 0x000000000012ab50 AvHAcidRocketGun::Init() - 0x000000000012ab70 AvHAcidRocketGun::FireProjectiles() - 0x000000000012ab80 AvHAcidRocketGun::GetBarrelLength() const - 0x000000000012ab90 AvHAcidRocketGun::GetRateOfFire() const - 0x000000000012aba0 AvHAcidRocketGun::GetDeployAnimation() const - 0x000000000012abd0 AvHAcidRocketGun::GetFiresUnderwater() const - 0x000000000012abe0 AvHAcidRocketGun::GetIsDroppable() const - 0x000000000012abf0 AvHAcidRocketGun::GetMustPressTriggerForEachShot() const - 0x000000000012ac00 AvHAcidRocketGun::GetShootAnimation() const - 0x000000000012ac10 AvHAcidRocketGun::GetViewModel() const - 0x000000000012ac20 AvHAcidRocketGun::GetIdleAnimation() const - 0x000000000012ac60 weapon_acidrocketgun - 0x000000000012acf0 AvHAcidRocketGun::Precache() - 0x000000000012ad50 AvHAcidRocketGun::Spawn() - *fill* 0x000000000012adb1 0xf - .text 0x000000000012adc0 0x65b release/obj/hl1_client/mod/AvHAlienAbilities.o - 0x000000000012adc0 AvHLeap::GetAbilityImpulse() const - 0x000000000012add0 AvHLeap::GetBarrelLength() const - 0x000000000012ade0 AvHLeap::GetDeployAnimation() const - 0x000000000012adf0 AvHLeap::GetDeployTime() const - 0x000000000012ae00 AvHLeap::GetIdleAnimation() const - 0x000000000012ae10 AvHLeap::GetShootAnimation() const - 0x000000000012ae20 AvHLeap::GetFiresUnderwater() const - 0x000000000012ae30 AvHLeap::GetIsDroppable() const - 0x000000000012ae40 AvHLeap::GetRateOfFire() const - 0x000000000012ae50 AvHLeap::UsesAmmo() const - 0x000000000012ae60 AvHLeap::SecondaryAttack() - 0x000000000012ae70 AvHLeap::Init() - 0x000000000012ae80 AvHCharge::GetAbilityImpulse() const - 0x000000000012ae90 AvHCharge::GetBarrelLength() const - 0x000000000012aea0 AvHCharge::GetDeployAnimation() const - 0x000000000012aee0 AvHCharge::GetDeployTime() const - 0x000000000012aef0 AvHCharge::GetFiresUnderwater() const - 0x000000000012af00 AvHCharge::GetIdleAnimation() const - 0x000000000012af10 AvHCharge::GetIsDroppable() const - 0x000000000012af20 AvHCharge::GetShootAnimation() const - 0x000000000012af30 AvHCharge::UsesAmmo() const - 0x000000000012af40 AvHCharge::SecondaryAttack() - 0x000000000012af50 AvHCharge::Init() - 0x000000000012af60 AvHCharge::GetRateOfFire() const - 0x000000000012af70 AvHLeap::Precache() - 0x000000000012b010 AvHCharge::Precache() - 0x000000000012b0a0 AvHLeap::Deploy() - 0x000000000012b140 AvHCharge::Deploy() - 0x000000000012b1e0 AvHLeap::Spawn() - 0x000000000012b250 AvHCharge::Spawn() - 0x000000000012b2c0 AvHCharge::FireProjectiles() - 0x000000000012b2e0 AvHLeap::FireProjectiles() - 0x000000000012b320 weapon_leap - 0x000000000012b3a0 weapon_charge - *fill* 0x000000000012b41b 0x5 - .text._ZN7AvHLeap14GetTakesEnergyEv - 0x000000000012b420 0x3 release/obj/hl1_client/mod/AvHAlienAbilities.o - 0x000000000012b420 AvHLeap::GetTakesEnergy() - *fill* 0x000000000012b423 0xd - .text 0x000000000012b430 0x1909 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - 0x000000000012b430 AvHBasePlayerWeapon::AddToPlayer(CBasePlayer*) - 0x000000000012b440 AvHBasePlayerWeapon::GetActiveViewModel() const - 0x000000000012b450 AvHBasePlayerWeapon::GetAnimationExtension() const - 0x000000000012b470 AvHBasePlayerWeapon::GetClipSize() const - 0x000000000012b4a0 AvHBasePlayerWeapon::GetPrimaryAmmoAmount() const - 0x000000000012b4d0 AvHBasePlayerWeapon::GetDamageType() const - 0x000000000012b4e0 AvHBasePlayerWeapon::GetDeploySound() const - 0x000000000012b4f0 AvHBasePlayerWeapon::GetDeploySoundVolume() const - 0x000000000012b500 AvHBasePlayerWeapon::GetEmptyShootAnimation() const - 0x000000000012b510 AvHBasePlayerWeapon::GetEventOrigin(Vector&) const - 0x000000000012b570 AvHBasePlayerWeapon::GetEventAngles(Vector&) const - 0x000000000012b5a0 AvHBasePlayerWeapon::GetFiresUnderwater() const - 0x000000000012b5b0 AvHBasePlayerWeapon::GetIsFiring() const - 0x000000000012b5c0 AvHBasePlayerWeapon::GetHasMuzzleFlash() const - 0x000000000012b5d0 AvHBasePlayerWeapon::GetIsCapableOfFiring() const - 0x000000000012b600 AvHBasePlayerWeapon::GetDeployAnimation() const - 0x000000000012b610 AvHBasePlayerWeapon::GetProjectileSpread() const - 0x000000000012b630 AvHBasePlayerWeapon::ComputeAttackInterval() const - 0x000000000012b640 AvHBasePlayerWeapon::GetRateOfFire() const - 0x000000000012b650 AvHBasePlayerWeapon::GetShootAnimation() const - 0x000000000012b660 AvHBasePlayerWeapon::GetShotsInClip() const - 0x000000000012b690 AvHBasePlayerWeapon::GetIsDroppable() const - 0x000000000012b6a0 AvHBasePlayerWeapon::GetIsPlayerMoving() const - 0x000000000012b6b0 AvHBasePlayerWeapon::GetMaxClipsCouldReceive() - 0x000000000012b720 AvHBasePlayerWeapon::GetRange() const - 0x000000000012b730 AvHBasePlayerWeapon::GetWorldBarrelPoint() const - 0x000000000012b7c0 AvHBasePlayerWeapon::GetPlayerModel() const - 0x000000000012b7d0 AvHBasePlayerWeapon::GetPrimeSound() const - 0x000000000012b7e0 AvHBasePlayerWeapon::GetPrimeSoundVolume() const - 0x000000000012b7f0 AvHBasePlayerWeapon::GetViewModel() const - 0x000000000012b800 AvHBasePlayerWeapon::GetWorldModel() const - 0x000000000012b810 AvHBasePlayerWeapon::GetTimePassedThisTick() const - 0x000000000012b830 AvHBasePlayerWeapon::Precache() - 0x000000000012b8e0 AvHBasePlayerWeapon::GetIsGunPositionValid() const - 0x000000000012b8f0 AvHBasePlayerWeapon::DeductCostForShot() - 0x000000000012b900 AvHBasePlayerWeapon::GetReloadTime() const - 0x000000000012b910 AvHBasePlayerWeapon::GetReloadAnimation() const - 0x000000000012b920 AvHBasePlayerWeapon::GetPrimeAnimation() const - 0x000000000012b930 AvHBasePlayerWeapon::GetWeaponPrimeTime() const - 0x000000000012b940 AvHBasePlayerWeapon::Reload() - 0x000000000012b9b0 AvHBasePlayerWeapon::SecondaryAttack() - 0x000000000012b9c0 AvHBasePlayerWeapon::UseDecrement() - 0x000000000012b9d0 AvHBasePlayerWeapon::UsesAmmo() const - 0x000000000012b9e0 AvHBasePlayerWeapon::PrintWeaponToClient(CBaseEntity*) - 0x000000000012bab0 AvHBasePlayerWeapon::Deploy() - 0x000000000012bb80 AvHBasePlayerWeapon::GetIsWeaponPrimed() const - 0x000000000012bbd0 AvHBasePlayerWeapon::GetIsWeaponPriming() const - 0x000000000012bc20 AvHBasePlayerWeapon::SetNextAttack() - 0x000000000012bc70 AvHBasePlayerWeapon::SetNextIdle() - 0x000000000012bcc0 AvHBasePlayerWeapon::ProcessValidAttack() - 0x000000000012be70 AvHBasePlayerWeapon::DefaultDeploy(char*, char*, int, char*, int, int) - 0x000000000012bf80 AvHBasePlayerWeapon::DefaultReload(int, int, float, int) - 0x000000000012c0c0 AvHBasePlayerWeapon::GetIdleAnimation() const - 0x000000000012c100 AvHBasePlayerWeapon::GetPreviousWeaponID() const - 0x000000000012c150 AvHBasePlayerWeapon::Holster(int) - 0x000000000012c160 AvHBasePlayerWeapon::ItemPostFrame() - 0x000000000012c1c0 AvHBasePlayerWeapon::FireProjectiles() - 0x000000000012c350 AvHBasePlayerWeapon::PrimeWeapon() - 0x000000000012c440 AvHBasePlayerWeapon::Spawn() - 0x000000000012c4e0 AvHBasePlayerWeapon::GetEnabledState() const - 0x000000000012c530 AvHBasePlayerWeapon::PrimaryAttack() - 0x000000000012c620 AvHBasePlayerWeapon::GetCanBeResupplied() const - 0x000000000012c670 AvHBasePlayerWeapon::SendWeaponAnim(int, int, int) - 0x000000000012c6c0 AvHBasePlayerWeapon::SetAnimationAndSound() - 0x000000000012c730 AvHBasePlayerWeapon::WeaponIdle() - 0x000000000012c830 AvHBasePlayerWeapon::PlaybackEvent(unsigned short, int, int) const - 0x000000000012c940 AvHBasePlayerWeapon::Resupply() - 0x000000000012c9f0 UTIL_GetRandomSpreadDir(unsigned int, int, Vector const&, Vector const&, Vector const&, Vector const&) - 0x000000000012cb00 UTIL_GetRandomSpreadDirFrom(unsigned int, int, Vector const&, Vector const&, Vector const&, Vector const&, Vector const&) - 0x000000000012ccc0 AvHBasePlayerWeapon::AvHBasePlayerWeapon() - 0x000000000012ccc0 AvHBasePlayerWeapon::AvHBasePlayerWeapon() - *fill* 0x000000000012cd39 0x7 - .text 0x000000000012cd40 0x201 release/obj/hl1_client/mod/AvHBileBombGun.o - 0x000000000012cd40 AvHBileBombGun::Init() - 0x000000000012cd60 AvHBileBombGun::FireProjectiles() - 0x000000000012cd70 AvHBileBombGun::GetBarrelLength() const - 0x000000000012cd80 AvHBileBombGun::GetRateOfFire() const - 0x000000000012cd90 AvHBileBombGun::GetDeployAnimation() const - 0x000000000012cdc0 AvHBileBombGun::GetShootAnimation() const - 0x000000000012cdd0 AvHBileBombGun::GetDamageType() const - 0x000000000012cde0 AvHBileBombGun::GetViewModel() const - 0x000000000012cdf0 weapon_bilebombgun - 0x000000000012ce80 AvHBileBombGun::Precache() - 0x000000000012cee0 AvHBileBombGun::Spawn() - *fill* 0x000000000012cf41 0xf - .text 0x000000000012cf50 0x2e1 release/obj/hl1_client/mod/AvHBite.o - 0x000000000012cf50 AvHBite::Init() - 0x000000000012cf70 AvHBite::GetBarrelLength() const - 0x000000000012cf80 AvHBite::GetIsGunPositionValid() const - 0x000000000012cf90 AvHBite::GetRateOfFire() const - 0x000000000012cfa0 AvHBite::GetBiteSound() const - 0x000000000012cfb0 AvHBite::GetDeployAnimation() const - 0x000000000012d000 AvHBite::GetShootAnimation() const - 0x000000000012d010 AvHBite::GetViewModel() const - 0x000000000012d020 AvHBite::FireProjectiles() - 0x000000000012d030 AvHBite::GetFiresUnderwater() const - 0x000000000012d040 AvHBite::GetIsDroppable() const - 0x000000000012d050 AvHBite::UsesAmmo() const - 0x000000000012d060 AvHBite::UseDecrement() - 0x000000000012d070 AvHBite::GetIdleAnimation() const - 0x000000000012d0c0 weapon_bitegun - 0x000000000012d150 AvHBite::Precache() - 0x000000000012d1d0 AvHBite::Spawn() - *fill* 0x000000000012d231 0xf - .text._ZNK7AvHBite30GetMustPressTriggerForEachShotEv - 0x000000000012d240 0x3 release/obj/hl1_client/mod/AvHBite.o - 0x000000000012d240 AvHBite::GetMustPressTriggerForEachShot() const - *fill* 0x000000000012d243 0xd - .text 0x000000000012d250 0x22e release/obj/hl1_client/mod/AvHBite2.o - 0x000000000012d250 AvHBite2::Init() - 0x000000000012d270 AvHBite2::GetIsGunPositionValid() const - 0x000000000012d280 AvHBite2::GetBarrelLength() const - 0x000000000012d290 AvHBite2::GetRateOfFire() const - 0x000000000012d2a0 AvHBite2::GetDeployAnimation() const - 0x000000000012d2e0 AvHBite2::GetDeployTime() const - 0x000000000012d2f0 AvHBite2::GetIdleAnimation() const - 0x000000000012d300 AvHBite2::GetShootAnimation() const - 0x000000000012d310 AvHBite2::GetViewModel() const - 0x000000000012d320 AvHBite2::GetDamageType() const - 0x000000000012d330 AvHBite2::Precache() - 0x000000000012d370 AvHBite2::Spawn() - 0x000000000012d3e0 weapon_bite2gun - *fill* 0x000000000012d47e 0x2 - .text 0x000000000012d480 0x313 release/obj/hl1_client/mod/AvHBlink.o - 0x000000000012d480 AvHBlinkGun::Init() - 0x000000000012d4a0 AvHBlinkGun::GetBarrelLength() const - 0x000000000012d4b0 AvHBlinkGun::GetRateOfFire() const - 0x000000000012d4c0 AvHBlinkGun::GetDeployAnimation() const - 0x000000000012d4f0 AvHBlinkGun::GetShootAnimation() const - 0x000000000012d500 AvHBlinkGun::GetFiresUnderwater() const - 0x000000000012d510 AvHBlinkGun::GetIsDroppable() const - 0x000000000012d520 AvHBlinkGun::GetAbilityImpulse() const - 0x000000000012d530 AvHBlinkGun::SecondaryAttack() - 0x000000000012d540 AvHBlinkGun::GetMustPressTriggerForEachShot() const - 0x000000000012d550 AvHBlinkGun::GetViewModel() const - 0x000000000012d560 AvHBlinkGun::UsesAmmo() const - 0x000000000012d570 AvHBlinkGun::Precache() - 0x000000000012d5c0 AvHBlinkGun::Deploy() - 0x000000000012d5d0 AvHBlinkGun::ItemPostFrame() - 0x000000000012d610 AvHBlinkGun::GetIdleAnimation() const - 0x000000000012d650 AvHBlinkGun::Spawn() - 0x000000000012d6c0 AvHBlinkGun::FireProjectiles() - 0x000000000012d700 weapon_blink - *fill* 0x000000000012d793 0xd - .text._ZN11AvHBlinkGun14GetTakesEnergyEv - 0x000000000012d7a0 0x3 release/obj/hl1_client/mod/AvHBlink.o - 0x000000000012d7a0 AvHBlinkGun::GetTakesEnergy() - *fill* 0x000000000012d7a3 0xd - .text 0x000000000012d7b0 0x2a1 release/obj/hl1_client/mod/AvHClaws.o - 0x000000000012d7b0 AvHClaws::GetBarrelLength() const - 0x000000000012d7c0 AvHClaws::GetIsGunPositionValid() const - 0x000000000012d7d0 AvHClaws::GetRateOfFire() const - 0x000000000012d7e0 AvHClaws::GetDeployAnimation() const - 0x000000000012d820 AvHClaws::GetDeployTime() const - 0x000000000012d830 AvHClaws::GetIdleAnimation() const - 0x000000000012d840 AvHClaws::GetShootAnimation() const - 0x000000000012d850 AvHClaws::GetFiresUnderwater() const - 0x000000000012d860 AvHClaws::GetIsDroppable() const - 0x000000000012d870 AvHClaws::Init() - 0x000000000012d890 AvHClaws::GetDamageType() const - 0x000000000012d8a0 AvHClaws::GetViewModel() const - 0x000000000012d8b0 AvHClaws::UsesAmmo() const - 0x000000000012d8c0 AvHClaws::UseDecrement() - 0x000000000012d8d0 AvHClaws::FireProjectiles() - 0x000000000012d8e0 weapon_claws - 0x000000000012d970 AvHClaws::Precache() - 0x000000000012d9f0 AvHClaws::Spawn() - *fill* 0x000000000012da51 0xf - .text._ZNK8AvHClaws30GetMustPressTriggerForEachShotEv - 0x000000000012da60 0x3 release/obj/hl1_client/mod/AvHClaws.o - 0x000000000012da60 AvHClaws::GetMustPressTriggerForEachShot() const - *fill* 0x000000000012da63 0xd - .text 0x000000000012da70 0x321 release/obj/hl1_client/mod/AvHDevour.o - 0x000000000012da70 AvHDevour::CanHolster() - 0x000000000012da80 AvHDevour::Init() - 0x000000000012da90 AvHDevour::GetBarrelLength() const - 0x000000000012daa0 AvHDevour::GetRateOfFire() const - 0x000000000012dab0 AvHDevour::GetDeployAnimation() const - 0x000000000012daf0 AvHDevour::GetDeployTime() const - 0x000000000012db00 AvHDevour::GetFiresUnderwater() const - 0x000000000012db10 AvHDevour::GetIsDroppable() const - 0x000000000012db20 AvHDevour::GetShootAnimation() const - 0x000000000012db30 AvHDevour::GetViewModel() const - 0x000000000012db40 AvHDevour::UsesAmmo() const - 0x000000000012db50 AvHDevour::GetIsCapableOfFiring() const - 0x000000000012db80 AvHDevour::GetIdleAnimation() const - 0x000000000012dbc0 AvHDevour::FireProjectiles() - 0x000000000012dbf0 weapon_devour - 0x000000000012dc80 AvHDevour::Precache() - 0x000000000012dcf0 AvHDevour::ProcessValidAttack() - 0x000000000012dd30 AvHDevour::Spawn() - *fill* 0x000000000012dd91 0xf - .text 0x000000000012dda0 0x821 release/obj/hl1_client/mod/AvHGrenade.o - 0x000000000012dda0 AvHGrenade::GetBarrelLength() const - 0x000000000012ddb0 AvHGrenade::GetRateOfFire() const - 0x000000000012ddc0 AvHGrenade::GetCanBeResupplied() const - 0x000000000012ddd0 AvHGrenade::Init() - 0x000000000012ddf0 AvHGrenade::GetDeployAnimation() const - 0x000000000012de00 AvHGrenade::GetDeploySound() const - 0x000000000012de10 AvHGrenade::GetDeployTime() const - 0x000000000012de20 AvHGrenade::GetFiresUnderwater() const - 0x000000000012de30 AvHGrenade::GetHeavyViewModel() const - 0x000000000012de40 AvHGrenade::GetIsDroppable() const - 0x000000000012de50 AvHGrenade::GetIsWeaponPrimed() const - 0x000000000012de60 AvHGrenade::GetIsWeaponPriming() const - 0x000000000012de70 AvHGrenade::GetMustPressTriggerForEachShot() const - 0x000000000012de80 AvHGrenade::GetShootAnimation() const - 0x000000000012dec0 AvHGrenade::GetPlayerModel() const - 0x000000000012ded0 AvHGrenade::GetPrimeAnimation() const - 0x000000000012df10 AvHGrenade::GetPrimeSound() const - 0x000000000012df20 AvHGrenade::GetViewModel() const - 0x000000000012df30 AvHGrenade::GetWorldModel() const - 0x000000000012df40 AvHGrenade::IsUseable() - 0x000000000012df50 AvHGrenade::FireProjectiles() - 0x000000000012df60 AvHGrenade::GetEmptyShootAnimation() const - 0x000000000012df70 AvHGrenade::GetWeaponPrimeTime() const - 0x000000000012df80 AvHGrenade::PlayEmptySound() - 0x000000000012df90 AvHGrenade::Resupply() - 0x000000000012dfa0 AvHGrenade::UsesAmmo() const - 0x000000000012dfb0 AvHGrenade::UseDecrement() - 0x000000000012dfc0 AvHGrenade::Deploy() - 0x000000000012dfe0 AvHGrenade::GetIdleAnimation() const - 0x000000000012e040 AvHGrenade::Holster(int) - 0x000000000012e0f0 AvHGrenade::PrimaryAttack() - 0x000000000012e210 AvHGrenade::Precache() - 0x000000000012e280 AvHGrenade::Spawn() - 0x000000000012e2f0 AvHGrenade::ItemPostFrame() - 0x000000000012e340 AvHGrenade::SetNextIdle() - 0x000000000012e380 AvHGrenade::WeaponIdle() - 0x000000000012e500 weapon_grenade - 0x000000000012e590 AvHGrenade::ShouldRollGrenade() const - 0x000000000012e5c0 AvHGrenade::CreateProjectile() - *fill* 0x000000000012e5c1 0xf - .text 0x000000000012e5d0 0x251 release/obj/hl1_client/mod/AvHDivineWind.o - 0x000000000012e5d0 AvHDivineWind::CanHolster() - 0x000000000012e5e0 AvHDivineWind::Init() - 0x000000000012e600 AvHDivineWind::GetBarrelLength() const - 0x000000000012e610 AvHDivineWind::GetRateOfFire() const - 0x000000000012e620 AvHDivineWind::GetDeployAnimation() const - 0x000000000012e630 AvHDivineWind::GetFiresUnderwater() const - 0x000000000012e640 AvHDivineWind::GetIsDroppable() const - 0x000000000012e650 AvHDivineWind::GetShootAnimation() const - 0x000000000012e660 AvHDivineWind::FireProjectiles() - 0x000000000012e670 AvHDivineWind::GetViewModel() const - 0x000000000012e680 AvHDivineWind::UsesAmmo() const - 0x000000000012e690 weapon_divinewind - 0x000000000012e730 AvHDivineWind::Explode() - 0x000000000012e740 AvHDivineWind::IsUseable() - 0x000000000012e770 AvHDivineWind::Precache() - 0x000000000012e7c0 AvHDivineWind::Spawn() - *fill* 0x000000000012e821 0xf - .text 0x000000000012e830 0x40b release/obj/hl1_client/mod/AvHGrenadeGun.o - 0x000000000012e830 AvHGrenadeGun::Init() - 0x000000000012e850 AvHGrenadeGun::GetBarrelLength() const - 0x000000000012e860 AvHGrenadeGun::GetRateOfFire() const - 0x000000000012e870 AvHGrenadeGun::GetDeployAnimation() const - 0x000000000012e8a0 AvHGrenadeGun::GetDeploySound() const - 0x000000000012e8b0 AvHGrenadeGun::GetReloadTime() const - 0x000000000012e8f0 AvHGrenadeGun::GetHasMuzzleFlash() const - 0x000000000012e900 AvHGrenadeGun::GetEventOrigin(Vector&) const - 0x000000000012e950 AvHGrenadeGun::GetHeavyViewModel() const - 0x000000000012e960 AvHGrenadeGun::GetIdleAnimation() const - 0x000000000012e990 AvHGrenadeGun::GetPlayerModel() const - 0x000000000012e9a0 AvHGrenadeGun::GetReloadAnimation() const - 0x000000000012e9d0 AvHGrenadeGun::GetEmptyShootAnimation() const - 0x000000000012e9e0 AvHGrenadeGun::GetShootAnimation() const - 0x000000000012ea10 AvHGrenadeGun::GetViewModel() const - 0x000000000012ea20 AvHGrenadeGun::GetWorldModel() const - 0x000000000012ea30 AvHGrenadeGun::FireProjectiles() - 0x000000000012ea40 AvHGrenadeGun::GetEventAngles(Vector&) const - 0x000000000012eab0 AvHGrenadeGun::Precache() - 0x000000000012eb40 AvHGrenadeGun::Spawn() - 0x000000000012ebb0 weapon_grenadegun - *fill* 0x000000000012ec3b 0x5 - .text 0x000000000012ec40 0x1f1 release/obj/hl1_client/mod/AvHHealingSpray.o - 0x000000000012ec40 AvHHealingSpray::Init() - 0x000000000012ec60 AvHHealingSpray::GetBarrelLength() const - 0x000000000012ec70 AvHHealingSpray::GetRateOfFire() const - 0x000000000012ec80 AvHHealingSpray::GetDamageType() const - 0x000000000012ec90 AvHHealingSpray::GetDeployAnimation() const - 0x000000000012ecc0 AvHHealingSpray::GetIdleAnimation() const - 0x000000000012ecd0 AvHHealingSpray::GetShootAnimation() const - 0x000000000012ece0 AvHHealingSpray::GetViewModel() const - 0x000000000012ecf0 AvHHealingSpray::FireProjectiles() - 0x000000000012ed00 weapon_healingspray - 0x000000000012ed90 AvHHealingSpray::Precache() - 0x000000000012edd0 AvHHealingSpray::Spawn() - *fill* 0x000000000012ee31 0xf - .text 0x000000000012ee40 0x30b release/obj/hl1_client/mod/AvHHeavyMachineGun.o - 0x000000000012ee40 AvHHeavyMachineGun::Init() - 0x000000000012ee60 AvHHeavyMachineGun::GetBarrelLength() const - 0x000000000012ee70 AvHHeavyMachineGun::GetRateOfFire() const - 0x000000000012ee80 AvHHeavyMachineGun::GetDeployAnimation() const - 0x000000000012ee90 AvHHeavyMachineGun::GetDeploySound() const - 0x000000000012eea0 AvHHeavyMachineGun::GetDeployTime() const - 0x000000000012eeb0 AvHHeavyMachineGun::GetDamageType() const - 0x000000000012eec0 AvHHeavyMachineGun::GetHasMuzzleFlash() const - 0x000000000012eed0 AvHHeavyMachineGun::GetHeavyViewModel() const - 0x000000000012eee0 AvHHeavyMachineGun::GetPlayerModel() const - 0x000000000012eef0 AvHHeavyMachineGun::GetProjectileSpread() const - 0x000000000012ef10 AvHHeavyMachineGun::GetViewModel() const - 0x000000000012ef20 AvHHeavyMachineGun::GetWorldModel() const - 0x000000000012ef30 AvHHeavyMachineGun::GetReloadAnimation() const - 0x000000000012ef40 AvHHeavyMachineGun::GetReloadTime() const - 0x000000000012ef50 AvHHeavyMachineGun::GetShootAnimation() const - 0x000000000012ef70 AvHHeavyMachineGun::GetEmptyShootAnimation() const - 0x000000000012ef80 AvHHeavyMachineGun::GetIdleAnimation() const - 0x000000000012efd0 AvHHeavyMachineGun::FireProjectiles() - 0x000000000012efe0 AvHHeavyMachineGun::Precache() - 0x000000000012f040 AvHHeavyMachineGun::ProcessValidAttack() - 0x000000000012f050 AvHHeavyMachineGun::Spawn() - 0x000000000012f0c0 weapon_heavymachinegun - *fill* 0x000000000012f14b 0x5 - .text 0x000000000012f150 0xef6 release/obj/hl1_client/mod/AvHItemInfo.o - 0x000000000012f150 AvHKnife::GetItemInfo(ItemInfo*) const - 0x000000000012f1c0 AvHKnife::iItemSlot() - 0x000000000012f1d0 AvHMine::GetItemInfo(ItemInfo*) const - 0x000000000012f240 AvHMine::iItemSlot() - 0x000000000012f250 AvHWelder::GetItemInfo(ItemInfo*) const - 0x000000000012f2c0 AvHWelder::iItemSlot() - 0x000000000012f2d0 AvHMachineGun::GetItemInfo(ItemInfo*) const - 0x000000000012f340 AvHMachineGun::iItemSlot() - 0x000000000012f350 AvHPistol::GetItemInfo(ItemInfo*) const - 0x000000000012f3c0 AvHPistol::iItemSlot() - 0x000000000012f3d0 AvHSonicGun::GetItemInfo(ItemInfo*) const - 0x000000000012f440 AvHSonicGun::iItemSlot() - 0x000000000012f450 AvHHeavyMachineGun::GetItemInfo(ItemInfo*) const - 0x000000000012f4c0 AvHHeavyMachineGun::iItemSlot() - 0x000000000012f4d0 AvHGrenadeGun::GetItemInfo(ItemInfo*) const - 0x000000000012f540 AvHGrenadeGun::iItemSlot() - 0x000000000012f550 AvHHealingSpray::GetItemInfo(ItemInfo*) const - 0x000000000012f5c0 AvHHealingSpray::iItemSlot() - 0x000000000012f5d0 AvHSpikeGun::GetItemInfo(ItemInfo*) const - 0x000000000012f640 AvHSpikeGun::iItemSlot() - 0x000000000012f650 AvHUmbraGun::GetItemInfo(ItemInfo*) const - 0x000000000012f6c0 AvHUmbraGun::iItemSlot() - 0x000000000012f6d0 AvHBileBombGun::GetItemInfo(ItemInfo*) const - 0x000000000012f740 AvHBileBombGun::iItemSlot() - 0x000000000012f750 AvHSwipe::GetItemInfo(ItemInfo*) const - 0x000000000012f7c0 AvHSwipe::iItemSlot() - 0x000000000012f7d0 AvHClaws::GetItemInfo(ItemInfo*) const - 0x000000000012f840 AvHClaws::iItemSlot() - 0x000000000012f850 AvHBite::GetItemInfo(ItemInfo*) const - 0x000000000012f8c0 AvHBite::iItemSlot() - 0x000000000012f8d0 AvHBite2::GetItemInfo(ItemInfo*) const - 0x000000000012f940 AvHBite2::iItemSlot() - 0x000000000012f950 AvHSpitGun::GetItemInfo(ItemInfo*) const - 0x000000000012f9c0 AvHSpitGun::iItemSlot() - 0x000000000012f9d0 AvHSpore::GetItemInfo(ItemInfo*) const - 0x000000000012fa40 AvHSpore::iItemSlot() - 0x000000000012fa50 AvHParasiteGun::GetItemInfo(ItemInfo*) const - 0x000000000012fac0 AvHParasiteGun::iItemSlot() - 0x000000000012fad0 AvHGrenade::GetItemInfo(ItemInfo*) const - 0x000000000012fb40 AvHGrenade::iItemSlot() - 0x000000000012fb50 AvHWebSpinner::GetItemInfo(ItemInfo*) const - 0x000000000012fbc0 AvHWebSpinner::iItemSlot() - 0x000000000012fbd0 AvHLeap::GetItemInfo(ItemInfo*) const - 0x000000000012fc40 AvHLeap::iItemSlot() - 0x000000000012fc50 AvHPrimalScream::GetItemInfo(ItemInfo*) const - 0x000000000012fcc0 AvHPrimalScream::iItemSlot() - 0x000000000012fcd0 AvHMetabolize::GetItemInfo(ItemInfo*) const - 0x000000000012fd40 AvHMetabolize::iItemSlot() - 0x000000000012fd50 AvHAcidRocketGun::GetItemInfo(ItemInfo*) const - 0x000000000012fdc0 AvHAcidRocketGun::iItemSlot() - 0x000000000012fdd0 AvHBlinkGun::GetItemInfo(ItemInfo*) const - 0x000000000012fe40 AvHBlinkGun::iItemSlot() - 0x000000000012fe50 AvHDivineWind::GetItemInfo(ItemInfo*) const - 0x000000000012fec0 AvHDivineWind::iItemSlot() - 0x000000000012fed0 AvHCharge::GetItemInfo(ItemInfo*) const - 0x000000000012ff40 AvHCharge::iItemSlot() - 0x000000000012ff50 AvHStomp::GetItemInfo(ItemInfo*) const - 0x000000000012ffc0 AvHStomp::iItemSlot() - 0x000000000012ffd0 AvHDevour::GetItemInfo(ItemInfo*) const - 0x0000000000130040 AvHDevour::iItemSlot() - *fill* 0x0000000000130046 0xa - .text 0x0000000000130050 0x32b release/obj/hl1_client/mod/AvHKnife.o - 0x0000000000130050 AvHKnife::GetDeployAnimation() const - 0x0000000000130060 AvHKnife::GetDeployTime() const - 0x0000000000130070 AvHKnife::GetDeploySound() const - 0x0000000000130080 AvHKnife::GetHeavyViewModel() const - 0x0000000000130090 AvHKnife::GetMustPressTriggerForEachShot() const - 0x00000000001300a0 AvHKnife::GetPlayerModel() const - 0x00000000001300b0 AvHKnife::GetViewModel() const - 0x00000000001300c0 AvHKnife::GetWorldModel() const - 0x00000000001300d0 AvHKnife::Init() - 0x00000000001300f0 AvHKnife::FireProjectiles() - 0x0000000000130100 AvHKnife::GetBarrelLength() const - 0x0000000000130110 AvHKnife::GetRateOfFire() const - 0x0000000000130120 AvHKnife::GetFiresUnderwater() const - 0x0000000000130130 AvHKnife::GetIsDroppable() const - 0x0000000000130140 AvHKnife::IsUseable() - 0x0000000000130150 AvHKnife::UsesAmmo() const - 0x0000000000130160 AvHKnife::UseDecrement() - 0x0000000000130170 AvHKnife::GetIdleAnimation() const - 0x00000000001301c0 AvHKnife::GetShootAnimation() const - 0x0000000000130200 AvHKnife::Precache() - 0x0000000000130280 AvHKnife::Spawn() - 0x00000000001302f0 weapon_knife - *fill* 0x000000000013037b 0x5 - .text 0x0000000000130380 0x25b release/obj/hl1_client/mod/AvHMachineGun.o - 0x0000000000130380 AvHMachineGun::Init() - 0x00000000001303a0 AvHMachineGun::GetBarrelLength() const - 0x00000000001303b0 AvHMachineGun::GetRateOfFire() const - 0x00000000001303c0 AvHMachineGun::GetDamageType() const - 0x00000000001303d0 AvHMachineGun::GetDeploySound() const - 0x00000000001303e0 AvHMachineGun::GetDeployTime() const - 0x00000000001303f0 AvHMachineGun::GetHasMuzzleFlash() const - 0x0000000000130400 AvHMachineGun::GetHeavyViewModel() const - 0x0000000000130410 AvHMachineGun::GetPlayerModel() const - 0x0000000000130420 AvHMachineGun::GetViewModel() const - 0x0000000000130430 AvHMachineGun::GetWorldModel() const - 0x0000000000130440 AvHMachineGun::GetReloadTime() const - 0x0000000000130450 AvHMachineGun::GetProjectileSpread() const - 0x0000000000130470 AvHMachineGun::Precache() - 0x00000000001304e0 AvHMachineGun::Spawn() - 0x0000000000130550 weapon_machinegun - *fill* 0x00000000001305db 0x5 - .text 0x00000000001305e0 0x555 release/obj/hl1_client/mod/AvHMarineWeapon.o - 0x00000000001305e0 AvHMarineWeapon::GetAllowedForUser3(AvHUser3) - 0x00000000001305f0 AvHMarineWeapon::GetDeploySoundVolume() const - 0x0000000000130600 AvHMarineWeapon::GetHeavyViewModel() const - 0x0000000000130610 AvHReloadableMarineWeapon::DefaultReload(int, int, float) - 0x0000000000130620 AvHReloadableMarineWeapon::Init() - 0x0000000000130640 AvHMarineWeapon::ComputeAttackInterval() const - 0x0000000000130690 AvHMarineWeapon::GetActiveViewModel() const - 0x0000000000130710 AvHReloadableMarineWeapon::DeductCostForShot() - 0x0000000000130740 AvHReloadableMarineWeapon::Holster(int) - 0x0000000000130770 AvHReloadableMarineWeapon::Reload() - 0x00000000001309b0 AvHReloadableMarineWeapon::WeaponIdle() - 0x0000000000130b00 AvHMarineWeapon::Precache() - *fill* 0x0000000000130b35 0xb - .text 0x0000000000130b40 0x2f5 release/obj/hl1_client/mod/AvHMetabolize.o - 0x0000000000130b40 AvHMetabolize::Init() - 0x0000000000130b50 AvHMetabolize::GetBarrelLength() const - 0x0000000000130b60 AvHMetabolize::GetRateOfFire() const - 0x0000000000130b70 AvHMetabolize::GetDeployAnimation() const - 0x0000000000130ba0 AvHMetabolize::GetViewModel() const - 0x0000000000130bb0 AvHMetabolize::FireProjectiles() - 0x0000000000130bc0 AvHMetabolize::GetIdleAnimation() const - 0x0000000000130c00 AvHMetabolize::GetShootAnimation() const - 0x0000000000130c40 weapon_metabolize - 0x0000000000130cd0 AvHMetabolize::Deploy() - 0x0000000000130ce0 AvHMetabolize::ItemPostFrame() - 0x0000000000130cf0 AvHMetabolize::Precache() - 0x0000000000130d50 AvHMetabolize::Spawn() - 0x0000000000130dc0 AvHMetabolize::DeductCostForShot() - 0x0000000000130e30 AvHMetabolize::SetAnimationAndSound() - *fill* 0x0000000000130e35 0xb - .text 0x0000000000130e40 0x2fb release/obj/hl1_client/mod/AvHMine.o - 0x0000000000130e40 AvHMine::GetCanBeResupplied() const - 0x0000000000130e50 AvHMine::GetDeployAnimation() const - 0x0000000000130e60 AvHMine::GetHeavyViewModel() const - 0x0000000000130e70 AvHMine::GetPlayerModel() const - 0x0000000000130e80 AvHMine::GetWorldModel() const - 0x0000000000130e90 AvHMine::GetViewModel() const - 0x0000000000130ea0 AvHMine::GetShootAnimation() const - 0x0000000000130eb0 AvHMine::Init() - 0x0000000000130ed0 AvHMine::FireProjectiles() - 0x0000000000130ee0 AvHMine::GetBarrelLength() const - 0x0000000000130ef0 AvHMine::GetRateOfFire() const - 0x0000000000130f00 AvHMine::GetFiresUnderwater() const - 0x0000000000130f10 AvHMine::PlayEmptySound() - 0x0000000000130f20 AvHMine::Resupply() - 0x0000000000130f30 AvHMine::UsesAmmo() const - 0x0000000000130f40 AvHMine::UseDecrement() - 0x0000000000130f50 AvHMine::Holster(int) - 0x0000000000130fa0 AvHMine::ProcessValidAttack() - 0x0000000000130fb0 AvHMine::Precache() - 0x0000000000130ff0 AvHMine::Spawn() - 0x0000000000131060 AvHMine::DeductCostForShot() - 0x00000000001310b0 weapon_mine - *fill* 0x000000000013113b 0x5 - .text 0x0000000000131140 0x211 release/obj/hl1_client/mod/AvHParasiteGun.o - 0x0000000000131140 AvHParasiteGun::Init() - 0x0000000000131160 AvHParasiteGun::GetBarrelLength() const - 0x0000000000131170 AvHParasiteGun::GetRateOfFire() const - 0x0000000000131180 AvHParasiteGun::GetDamageType() const - 0x0000000000131190 AvHParasiteGun::GetDeployAnimation() const - 0x00000000001311a0 AvHParasiteGun::GetFiresUnderwater() const - 0x00000000001311b0 AvHParasiteGun::GetIsDroppable() const - 0x00000000001311c0 AvHParasiteGun::GetShootAnimation() const - 0x00000000001311d0 AvHParasiteGun::FireProjectiles() - 0x00000000001311e0 AvHParasiteGun::GetViewModel() const - 0x00000000001311f0 AvHParasiteGun::UsesAmmo() const - 0x0000000000131200 weapon_parasite - 0x0000000000131290 AvHParasiteGun::Precache() - 0x00000000001312f0 AvHParasiteGun::Spawn() - *fill* 0x0000000000131351 0xf - .text 0x0000000000131360 0x2ab release/obj/hl1_client/mod/AvHPistol.o - 0x0000000000131360 AvHPistol::Init() - 0x0000000000131380 AvHPistol::GetBarrelLength() const - 0x0000000000131390 AvHPistol::GetRateOfFire() const - 0x00000000001313a0 AvHPistol::GetDeployAnimation() const - 0x00000000001313b0 AvHPistol::GetDeploySound() const - 0x00000000001313c0 AvHPistol::GetDeployTime() const - 0x00000000001313d0 AvHPistol::GetEmptyShootAnimation() const - 0x00000000001313e0 AvHPistol::GetHeavyViewModel() const - 0x00000000001313f0 AvHPistol::GetPlayerModel() const - 0x0000000000131400 AvHPistol::GetProjectileSpread() const - 0x0000000000131420 AvHPistol::GetViewModel() const - 0x0000000000131430 AvHPistol::GetWorldModel() const - 0x0000000000131440 AvHPistol::GetReloadAnimation() const - 0x0000000000131460 AvHPistol::GetShootAnimation() const - 0x0000000000131470 AvHPistol::GetHasMuzzleFlash() const - 0x0000000000131480 AvHPistol::GetMustPressTriggerForEachShot() const - 0x0000000000131490 AvHPistol::GetReloadTime() const - 0x00000000001314a0 AvHPistol::Precache() - 0x0000000000131510 AvHPistol::Spawn() - 0x0000000000131580 weapon_pistol - *fill* 0x000000000013160b 0x5 - .text 0x0000000000131610 0x221 release/obj/hl1_client/mod/AvHPrimalScream.o - 0x0000000000131610 AvHPrimalScream::GetBarrelLength() const - 0x0000000000131620 AvHPrimalScream::GetRateOfFire() const - 0x0000000000131630 AvHPrimalScream::GetFiresUnderwater() const - 0x0000000000131640 AvHPrimalScream::GetDeployAnimation() const - 0x0000000000131680 AvHPrimalScream::GetDeployTime() const - 0x0000000000131690 AvHPrimalScream::GetIdleAnimation() const - 0x00000000001316a0 AvHPrimalScream::GetShootAnimation() const - 0x00000000001316b0 AvHPrimalScream::GetIsDroppable() const - 0x00000000001316c0 AvHPrimalScream::Init() - 0x00000000001316d0 AvHPrimalScream::GetViewModel() const - 0x00000000001316e0 AvHPrimalScream::UsesAmmo() const - 0x00000000001316f0 AvHPrimalScream::FireProjectiles() - 0x0000000000131700 weapon_primalscream - 0x0000000000131790 AvHPrimalScream::Precache() - 0x00000000001317d0 AvHPrimalScream::Spawn() - *fill* 0x0000000000131831 0xf - .text 0x0000000000131840 0x4bb release/obj/hl1_client/mod/AvHSonicGun.o - 0x0000000000131840 AvHSonicGun::Init() - 0x0000000000131860 AvHSonicGun::GetBarrelLength() const - 0x0000000000131870 AvHSonicGun::GetRateOfFire() const - 0x0000000000131880 AvHSonicGun::GetDamageType() const - 0x0000000000131890 AvHSonicGun::GetDeployAnimation() const - 0x00000000001318a0 AvHSonicGun::GetDeploySound() const - 0x00000000001318b0 AvHSonicGun::GetDeployTime() const - 0x00000000001318c0 AvHSonicGun::GetEmptyShootAnimation() const - 0x00000000001318d0 AvHSonicGun::GetGotoReloadAnimation() const - 0x00000000001318e0 AvHSonicGun::GetGotoReloadAnimationTime() const - 0x00000000001318f0 AvHSonicGun::GetShellReloadAnimation() const - 0x0000000000131900 AvHSonicGun::GetShellReloadAnimationTime() const - 0x0000000000131910 AvHSonicGun::GetEndReloadAnimation() const - 0x0000000000131920 AvHSonicGun::GetEndReloadAnimationTime() const - 0x0000000000131930 AvHSonicGun::GetHeavyViewModel() const - 0x0000000000131940 AvHSonicGun::GetPlayerModel() const - 0x0000000000131950 AvHSonicGun::GetViewModel() const - 0x0000000000131960 AvHSonicGun::GetWorldModel() const - 0x0000000000131970 AvHSonicGun::GetProjectileSpread() const - 0x0000000000131990 AvHSonicGun::GetHasMuzzleFlash() const - 0x00000000001319a0 AvHSonicGun::GetReloadAnimation() const - 0x00000000001319b0 AvHSonicGun::GetReloadTime() const - 0x00000000001319c0 AvHSonicGun::GetShootAnimation() const - 0x00000000001319d0 AvHSonicGun::FireProjectiles() - 0x0000000000131b40 AvHSonicGun::GetIdleAnimation() const - 0x0000000000131b80 AvHSonicGun::Precache() - 0x0000000000131c00 AvHSonicGun::Spawn() - 0x0000000000131c70 weapon_shotgun - *fill* 0x0000000000131cfb 0x5 - .text 0x0000000000131d00 0x3a1 release/obj/hl1_client/mod/AvHSpikeGun.o - 0x0000000000131d00 AvHSpikeGun::Init() - 0x0000000000131d20 AvHSpikeGun::GetBarrelLength() const - 0x0000000000131d30 AvHSpikeGun::GetRateOfFire() const - 0x0000000000131d40 AvHSpikeGun::GetDamageType() const - 0x0000000000131d50 AvHSpikeGun::GetDeployAnimation() const - 0x0000000000131db0 AvHSpikeGun::GetDeployTime() const - 0x0000000000131dc0 AvHSpikeGun::GetFiresUnderwater() const - 0x0000000000131dd0 AvHSpikeGun::GetIdleAnimation() const - 0x0000000000131de0 AvHSpikeGun::GetIsDroppable() const - 0x0000000000131df0 AvHSpikeGun::GetShootAnimation() const - 0x0000000000131e00 AvHSpikeGun::GetViewModel() const - 0x0000000000131e10 AvHSpikeGun::FireProjectiles() - 0x0000000000131f50 weapon_spikegun - 0x0000000000131fe0 AvHSpikeGun::Precache() - 0x0000000000132040 AvHSpikeGun::Spawn() - *fill* 0x00000000001320a1 0xf - .text 0x00000000001320b0 0x251 release/obj/hl1_client/mod/AvHSpitGun.o - 0x00000000001320b0 AvHSpitGun::Init() - 0x00000000001320d0 AvHSpitGun::GetBarrelLength() const - 0x00000000001320e0 AvHSpitGun::GetRateOfFire() const - 0x00000000001320f0 AvHSpitGun::GetDamageType() const - 0x0000000000132100 AvHSpitGun::GetDeployAnimation() const - 0x0000000000132130 AvHSpitGun::GetFiresUnderwater() const - 0x0000000000132140 AvHSpitGun::GetIsDroppable() const - 0x0000000000132150 AvHSpitGun::GetShootAnimation() const - 0x0000000000132160 AvHSpitGun::FireProjectiles() - 0x0000000000132170 AvHSpitGun::GetViewModel() const - 0x0000000000132180 AvHSpitGun::UsesAmmo() const - 0x0000000000132190 weapon_spit - 0x0000000000132220 AvHSpitGun::Precache() - 0x00000000001322a0 AvHSpitGun::Spawn() - *fill* 0x0000000000132301 0xf - .text 0x0000000000132310 0x251 release/obj/hl1_client/mod/AvHSpores.o - 0x0000000000132310 AvHSpore::GetBarrelLength() const - 0x0000000000132320 AvHSpore::GetRateOfFire() const - 0x0000000000132330 AvHSpore::GetFiresUnderwater() const - 0x0000000000132340 AvHSpore::GetIsDroppable() const - 0x0000000000132350 AvHSpore::Init() - 0x0000000000132370 AvHSpore::GetDamageType() const - 0x0000000000132380 AvHSpore::GetIdleAnimation() const - 0x0000000000132390 AvHSpore::GetShootAnimation() const - 0x00000000001323a0 AvHSpore::GetDeployAnimation() const - 0x00000000001323e0 AvHSpore::GetDeployTime() const - 0x00000000001323f0 AvHSpore::GetViewModel() const - 0x0000000000132400 AvHSpore::UsesAmmo() const - 0x0000000000132410 AvHSpore::FireProjectiles() - 0x0000000000132420 weapon_spore - 0x00000000001324b0 AvHSpore::Precache() - 0x0000000000132500 AvHSpore::Spawn() - *fill* 0x0000000000132561 0xf - .text 0x0000000000132570 0x371 release/obj/hl1_client/mod/AvHStomp.o - 0x0000000000132570 AvHStomp::CanHolster() - 0x0000000000132580 AvHStomp::Init() - 0x0000000000132590 AvHStomp::GetBarrelLength() const - 0x00000000001325a0 AvHStomp::GetRateOfFire() const - 0x00000000001325b0 AvHStomp::GetDeployAnimation() const - 0x00000000001325f0 AvHStomp::GetDeployTime() const - 0x0000000000132600 AvHStomp::GetEventOrigin(Vector&) const - 0x0000000000132610 AvHStomp::GetFiresUnderwater() const - 0x0000000000132620 AvHStomp::GetIsDroppable() const - 0x0000000000132630 AvHStomp::GetShootAnimation() const - 0x0000000000132640 AvHStomp::FireProjectiles() - 0x0000000000132650 AvHStomp::GetStompOrigin(Vector&) const - 0x00000000001326b0 AvHStomp::GetViewModel() const - 0x00000000001326c0 AvHStomp::UsesAmmo() const - 0x00000000001326d0 AvHStomp::GetStompVelocity(Vector&) const - 0x0000000000132750 weapon_stomp - 0x00000000001327e0 AvHStomp::IsUseable() - 0x0000000000132820 AvHStomp::GetEventAngles(Vector&) const - 0x0000000000132830 AvHStomp::Precache() - 0x0000000000132880 AvHStomp::Spawn() - *fill* 0x00000000001328e1 0xf - .text 0x00000000001328f0 0x301 release/obj/hl1_client/mod/AvHSwipe.o - 0x00000000001328f0 AvHSwipe::GetBarrelLength() const - 0x0000000000132900 AvHSwipe::GetIsGunPositionValid() const - 0x0000000000132910 AvHSwipe::GetRateOfFire() const - 0x0000000000132920 AvHSwipe::GetFiresUnderwater() const - 0x0000000000132930 AvHSwipe::GetIsDroppable() const - 0x0000000000132940 AvHSwipe::GetDeployAnimation() const - 0x0000000000132970 AvHSwipe::Init() - 0x0000000000132990 AvHSwipe::GetDamageType() const - 0x00000000001329a0 AvHSwipe::GetViewModel() const - 0x00000000001329b0 AvHSwipe::UsesAmmo() const - 0x00000000001329c0 AvHSwipe::UseDecrement() - 0x00000000001329d0 AvHSwipe::FireProjectiles() - 0x00000000001329e0 AvHSwipe::GetIdleAnimation() const - 0x0000000000132a30 AvHSwipe::GetShootAnimation() const - 0x0000000000132a70 weapon_swipe - 0x0000000000132b00 AvHSwipe::Precache() - 0x0000000000132b90 AvHSwipe::Spawn() - *fill* 0x0000000000132bf1 0xf - .text._ZNK8AvHSwipe30GetMustPressTriggerForEachShotEv - 0x0000000000132c00 0x3 release/obj/hl1_client/mod/AvHSwipe.o - 0x0000000000132c00 AvHSwipe::GetMustPressTriggerForEachShot() const - *fill* 0x0000000000132c03 0xd - .text 0x0000000000132c10 0x251 release/obj/hl1_client/mod/AvHUmbraGun.o - 0x0000000000132c10 AvHUmbraGun::Init() - 0x0000000000132c30 AvHUmbraGun::GetBarrelLength() const - 0x0000000000132c40 AvHUmbraGun::GetRateOfFire() const - 0x0000000000132c50 AvHUmbraGun::GetDeployAnimation() const - 0x0000000000132c90 AvHUmbraGun::GetIdleAnimation() const - 0x0000000000132ca0 AvHUmbraGun::GetShootAnimation() const - 0x0000000000132cb0 AvHUmbraGun::GetFiresUnderwater() const - 0x0000000000132cc0 AvHUmbraGun::GetIsDroppable() const - 0x0000000000132cd0 AvHUmbraGun::FireProjectiles() - 0x0000000000132ce0 AvHUmbraGun::GetViewModel() const - 0x0000000000132cf0 AvHUmbraGun::UsesAmmo() const - 0x0000000000132d00 weapon_umbra - 0x0000000000132d90 AvHUmbraGun::Precache() - 0x0000000000132e00 AvHUmbraGun::Spawn() - *fill* 0x0000000000132e61 0xf - .text 0x0000000000132e70 0x231 release/obj/hl1_client/mod/AvHWebSpinner.o - 0x0000000000132e70 AvHWebSpinner::GetBarrelLength() const - 0x0000000000132e80 AvHWebSpinner::GetRateOfFire() const - 0x0000000000132e90 AvHWebSpinner::GetDeployAnimation() const - 0x0000000000132ec0 AvHWebSpinner::GetDeployTime() const - 0x0000000000132ed0 AvHWebSpinner::GetIdleAnimation() const - 0x0000000000132ee0 AvHWebSpinner::GetShootAnimation() const - 0x0000000000132ef0 AvHWebSpinner::GetFiresUnderwater() const - 0x0000000000132f00 AvHWebSpinner::GetIsDroppable() const - 0x0000000000132f10 AvHWebSpinner::Init() - 0x0000000000132f20 AvHWebSpinner::GetViewModel() const - 0x0000000000132f30 AvHWebSpinner::UsesAmmo() const - 0x0000000000132f40 AvHWebSpinner::FireProjectiles() - 0x0000000000132f50 weapon_webspinner - 0x0000000000132fe0 AvHWebSpinner::Deploy() - 0x0000000000132ff0 AvHWebSpinner::Precache() - 0x0000000000133040 AvHWebSpinner::Spawn() - *fill* 0x00000000001330a1 0xf - .text 0x00000000001330b0 0x2c1 release/obj/hl1_client/mod/AvHWelder.o - 0x00000000001330b0 AvHWelder::GetDeployAnimation() const - 0x00000000001330c0 AvHWelder::GetDeployTime() const - 0x00000000001330d0 AvHWelder::GetHeavyViewModel() const - 0x00000000001330e0 AvHWelder::GetPlayerModel() const - 0x00000000001330f0 AvHWelder::GetShootAnimation() const - 0x0000000000133100 AvHWelder::GetViewModel() const - 0x0000000000133110 AvHWelder::GetWorldModel() const - 0x0000000000133120 AvHWelder::FireProjectiles() - 0x0000000000133130 AvHWelder::GetBarrelLength() const - 0x0000000000133140 AvHWelder::GetRateOfFire() const - 0x0000000000133150 AvHWelder::Init() - 0x0000000000133170 AvHWelder::IsUseable() - 0x0000000000133180 AvHWelder::UsesAmmo() const - 0x0000000000133190 AvHWelder::WelderThink() - 0x00000000001331a0 AvHWelder::Holster(int) - 0x0000000000133250 AvHWelder::WeaponIdle() - 0x0000000000133260 AvHWelder::Precache() - 0x0000000000133310 AvHWelder::Spawn() - *fill* 0x0000000000133371 0xf - .text 0x0000000000133380 0x183f release/obj/hl1_client/mod/AnimationUtil.o - 0x0000000000133380 NS_AngleMatrix(float const*, float (*) [4]) - 0x00000000001334b0 NS_GetEntityAnimationData(int, NS_AnimationData&) - 0x0000000000133650 NS_AngleQuaternion(float*, float*) - 0x0000000000133760 NS_QuaternionSlerp(float*, float*, float, float*) - 0x0000000000133a20 NS_QuaternionMatrix(float*, float (*) [4]) - 0x0000000000133af0 NS_ConcatTransforms(float const (*) [4], float const (*) [4], float (*) [4]) - 0x0000000000133c30 NS_CalcBonePosition(int, float, mstudiobone_t*, mstudioanim_t*, float*, float*) - 0x0000000000133d80 NS_CalcBoneAngles(int, float, mstudiobone_t*, mstudioanim_t*, float*, float*) - 0x0000000000134180 NS_StudioEstimateFrame(mstudioseqdesc_t*, NS_AnimationData const&, float, float) - 0x0000000000134280 NS_GetAnimation(studiohdr_t*, mstudioseqdesc_t*) - 0x00000000001342c0 NS_GetBoneMatrices(NS_AnimationData const&, float, float (*) [3][4]) - *fill* 0x0000000000134bbf 0x1 - .text 0x0000000000134bc0 0x2077 release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000134bc0 ActionButton::paintBackground() - 0x0000000000134bd0 AvHActionButtons::paint() - 0x0000000000134be0 AvHActionButtons::paintBackground() - 0x0000000000134bf0 AvHUIActionButtons::GetComponentPointer() - 0x0000000000134c00 AvHUIActionButtons::GetType() const - 0x0000000000134c10 ActionButton::paint() - 0x0000000000134c30 AvHActionButtons::setPos(int, int) - 0x0000000000134c40 ActionButton::getPos(int&, int&) - 0x0000000000134cb0 AvHActionButtons::setVisible(bool) - 0x0000000000134d00 AvHActionButtons::addInputSignal(vgui::InputSignal*) - 0x0000000000134d50 AvHActionButtons::setBgColor(int, int, int, int) - 0x0000000000134dd0 AvHActionButtons::setFgColor(int, int, int, int) - 0x0000000000134e50 AvHUIActionButtons::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x0000000000134fa0 ActionButton::ActionButton(char const*, int, int) - 0x0000000000134fa0 ActionButton::ActionButton(char const*, int, int) - 0x0000000000135030 ActionButton::cursorEntered() - 0x0000000000135040 ActionButton::cursorExited() - 0x0000000000135050 ActionButton::GetBusy() const - 0x0000000000135060 ActionButton::GetMouseOver() const - 0x0000000000135070 ActionButton::GetCostMet() const - 0x0000000000135080 ActionButton::GetHelpText() const - 0x00000000001350b0 ActionButton::GetTechEnabled() const - 0x00000000001350c0 ActionButton::GetMessageID() const - 0x00000000001350d0 ActionButton::GetLabelForMessage(AvHMessageID, std::string&) - 0x0000000000135220 ActionButton::UpdateEnabledAndResearchState(AvHTechTree const&) - 0x00000000001352b0 ActionButton::Localize(AvHTechTree const&) - 0x0000000000135bd0 ActionButton::SetBusy(bool) - 0x0000000000135be0 ActionButton::SetButtonIndex(int) - 0x0000000000135bf0 ActionButton::SetEnabledState(bool) - 0x0000000000135c00 ActionButton::SetMessageID(AvHMessageID) - 0x0000000000135c10 ActionButton::UpdateEnabledState(int, int) - 0x0000000000135c60 AvHActionButtons::AvHActionButtons() - 0x0000000000135c60 AvHActionButtons::AvHActionButtons() - 0x0000000000135f10 AvHUIActionButtons::AllocateComponent(TRDescription const&) - 0x0000000000135f40 AvHActionButtons::ClearButtons() - 0x0000000000136010 AvHActionButtons::GetHotKeyAKA() - 0x0000000000136040 AvHActionButtons::ButtonIndexToHotKey(int, int, char&) - 0x00000000001360a0 AvHActionButtons::HotKeyToButtonIndex(char, int&, int&) - 0x0000000000136250 AvHActionButtons::GetNumCols() const - 0x0000000000136260 AvHActionButtons::GetNumRows() const - 0x0000000000136270 AvHActionButtons::GetActionButtonAtPos(int, int) - 0x0000000000136290 AvHActionButtons::SetButton(int, AvHMessageID) - 0x00000000001362c0 AvHActionButtons::SetTechNodes(AvHTechTree const&) - 0x0000000000136350 AvHActionButtons::SetEnergy(int) - 0x0000000000136360 AvHActionButtons::SetResources(int) - 0x0000000000136370 AvHActionButtons::UpdateEnabledState() - 0x00000000001363d0 AvHActionButtons::UpdateEnabledAndResearchState() - 0x0000000000136490 AvHActionButtons::setFont(vgui::Font*) - 0x00000000001364e0 AvHActionButtons::setFont(vgui::Scheme::SchemeFont) - 0x0000000000136520 AvHActionButtons::SetButtonsToGrid() - 0x0000000000136600 AvHActionButtons::setSize(int, int) - 0x0000000000136630 AvHActionButtons::Localize() - 0x0000000000136680 AvHActionButtons::SetBusy(bool) - 0x0000000000136750 AvHActionButtons::SetEnabledState(int, bool) - 0x0000000000136780 AvHUIActionButtons::AvHUIActionButtons() - 0x0000000000136780 AvHUIActionButtons::AvHUIActionButtons() - 0x00000000001367f0 AvHActionButtons::~AvHActionButtons() - 0x00000000001367f0 AvHActionButtons::~AvHActionButtons() - 0x00000000001368f0 AvHUIActionButtons::~AvHUIActionButtons() - 0x00000000001368f0 AvHUIActionButtons::~AvHUIActionButtons() - 0x0000000000136a90 AvHUIActionButtons::~AvHUIActionButtons() - *fill* 0x0000000000136c37 0x9 - .text._ZN11StaticLabel7setSizeEii - 0x0000000000136c40 0x5 release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000136c40 StaticLabel::setSize(int, int) - *fill* 0x0000000000136c45 0xb - .text 0x0000000000136c50 0x430 release/obj/hl1_client/mod/AvHAlienWeapon.o - 0x0000000000136c50 AvHAlienWeapon::Drop() - 0x0000000000136c60 AvHAlienWeapon::GetAllowedForUser3(AvHUser3) - 0x0000000000136c70 AvHAlienWeapon::GetDamageType() const - 0x0000000000136c80 AvHAlienWeapon::GetDeployTime() const - 0x0000000000136c90 AvHAlienWeapon::GetFiresUnderwater() const - 0x0000000000136ca0 AvHAlienWeapon::GetGroundLifetime() const - 0x0000000000136cb0 AvHAlienWeapon::GetIsDroppable() const - 0x0000000000136cc0 AvHAlienWeapon::UsesAmmo() const - 0x0000000000136cd0 AvHAlienWeapon::UseDecrement() - 0x0000000000136ce0 AvHAlienWeapon::GetEnergyForAttack() const - 0x0000000000136d10 AvHAlienWeapon::GetIsGunPositionValid() const - 0x0000000000136de0 AvHAlienWeapon::ComputeAttackInterval() const - 0x0000000000136ea0 AvHAlienWeapon::IsUseable() - 0x0000000000136fa0 AvHAlienWeapon::AvHAlienWeapon() - 0x0000000000136fa0 AvHAlienWeapon::AvHAlienWeapon() - 0x0000000000136fc0 AvHAlienWeapon::GetEnergyLevel() - 0x0000000000136fd0 AvHAlienWeapon::ProcessValidAttack() - 0x0000000000137000 AvHAlienWeapon::DeductCostForShot() - 0x0000000000137050 AvHAlienWeapon::Precache() - 0x0000000000137060 AvHAlienWeapon::Spawn() - .text 0x0000000000137080 0x478 release/obj/hl1_client/mod/AvHAmbientSound.o - 0x0000000000137080 AvHAmbientSound::AvHAmbientSound(std::string const&, int, int, bool, Vector const&, int, float) - 0x0000000000137080 AvHAmbientSound::AvHAmbientSound(std::string const&, int, int, bool, Vector const&, int, float) - 0x00000000001372d0 AvHAmbientSound::AvHAmbientSound(AvHAmbientSound const&) - 0x00000000001372d0 AvHAmbientSound::AvHAmbientSound(AvHAmbientSound const&) - 0x0000000000137350 AvHAmbientSound::ClearData() - 0x0000000000137380 AvHAmbientSound::GetEntityIndex() const - 0x0000000000137390 AvHAmbientSound::SetPosition(Vector const&) - 0x00000000001373c0 AvHAmbientSound::StartPlayingIfNot() - 0x0000000000137420 AvHAmbientSound::UpdateVolume(Vector const&) - .text 0x00000000001374f8 0x0 release/obj/hl1_client/mod/AvHAssert.o - *fill* 0x00000000001374f8 0x8 - .text 0x0000000000137500 0x1b2 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - 0x0000000000137500 AvHBaseInfoLocation::AvHBaseInfoLocation() - 0x0000000000137500 AvHBaseInfoLocation::AvHBaseInfoLocation() - 0x0000000000137530 AvHBaseInfoLocation::AvHBaseInfoLocation(std::string const&, Vector const&, Vector const&) - 0x0000000000137530 AvHBaseInfoLocation::AvHBaseInfoLocation(std::string const&, Vector const&, Vector const&) - 0x00000000001375a0 AvHBaseInfoLocation::GetIsPointInRegion(Vector const&) const - 0x0000000000137610 AvHBaseInfoLocation::GetLocationName() const - 0x0000000000137640 AvHBaseInfoLocation::GetMaxExtent() const - 0x0000000000137680 AvHBaseInfoLocation::GetMinExtent() const - *fill* 0x00000000001376b2 0xe - .text 0x00000000001376c0 0x36b release/obj/hl1_client/mod/AvHClientUtil.o - 0x00000000001376c0 AvHCUGetIconHeightForPlayer(AvHUser3) - 0x00000000001376e0 AvHCUGetViewAngles(cl_entity_s*, float*) - 0x00000000001377a0 AvHCUGetViewOrigin(cl_entity_s*, float*) - 0x00000000001377f0 AvHCUWorldToScreen(float*, float*) - 0x0000000000137870 AvHCUGetIsEntityInPVSAndVisible(int) - 0x00000000001378c0 AvHCUTrimExtraneousLocationText(std::string&) - *fill* 0x0000000000137a2b 0x5 - .text 0x0000000000137a30 0x2217 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - 0x0000000000137a30 AvHCommanderModeHandler::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - 0x0000000000137a40 AvHCommanderModeHandler::mouseWheeled(int, vgui::Panel*) - 0x0000000000137a50 AvHCommanderModeHandler::keyPressed(vgui::KeyCode, vgui::Panel*) - 0x0000000000137a60 AvHCommanderModeHandler::keyTyped(vgui::KeyCode, vgui::Panel*) - 0x0000000000137a70 AvHCommanderModeHandler::keyReleased(vgui::KeyCode, vgui::Panel*) - 0x0000000000137a80 AvHCommanderModeHandler::keyFocusTicked(vgui::Panel*) - 0x0000000000137a90 AvHCommanderModeHandler::cursorEntered(vgui::Panel*) - 0x0000000000137af0 AvHCommanderModeHandler::cursorExited(vgui::Panel*) - 0x0000000000137b50 AvHCommanderModeHandler::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x0000000000137ce0 AvHCommanderModeHandler::cursorMoved(int, int, vgui::Panel*) - 0x0000000000137f10 AvHCommanderModeHandler::AvHCommanderModeHandler() - 0x0000000000137f10 AvHCommanderModeHandler::AvHCommanderModeHandler() - 0x0000000000137fc0 AvHCommanderModeHandler::Init() - 0x0000000000138040 AvHCommanderModeHandler::CancelHit() - 0x0000000000138050 AvHCommanderModeHandler::ClearDefaultOrderPosition() - 0x0000000000138060 AvHCommanderModeHandler::ClearMoveToPosition() - 0x0000000000138070 AvHCommanderModeHandler::GetAndClearTechNodePressed(AvHMessageID&, bool) - 0x00000000001380a0 AvHCommanderModeHandler::GetDisplayMenuMessageID() const - 0x00000000001380b0 AvHCommanderModeHandler::GetDefaultOrderPosition(float&, float&) const - 0x00000000001380e0 AvHCommanderModeHandler::GetMoveToWorldPosition(float&, float&) const - 0x0000000000138110 AvHCommanderModeHandler::GetMouseOneDown() const - 0x0000000000138120 AvHCommanderModeHandler::GetBuildResearchText() const - 0x0000000000138150 AvHCommanderModeHandler::GetTechHelpText() const - 0x0000000000138180 AvHCommanderModeHandler::DefaultOrderToLastMousePosition(AvHTeamHierarchy*) - 0x00000000001381c0 AvHCommanderModeHandler::MoveToLastMousePosition(AvHTeamHierarchy*) - 0x0000000000138240 AvHCommanderModeHandler::RecalculateBuildResearchText() - 0x0000000000138860 AvHCommanderModeHandler::GetIsSelectionAllPlayers(int*) const - 0x0000000000138900 AvHCommanderModeHandler::SetResearchingMenu() - 0x0000000000138a80 AvHCommanderModeHandler::SetMenuFromTechSlots(AvHTechSlots const&, int, int, float) - 0x0000000000139020 AvHCommanderModeHandler::SetMenuFromUserVariables(int, int, float) - 0x0000000000139090 AvHCommanderModeHandler::RecalculateMenus() - 0x0000000000139230 AvHCommanderModeHandler::Reset() - 0x00000000001392c0 AvHCommanderModeHandler::SetSelectedUnits(std::vector > const&) - 0x0000000000139600 AvHCommanderModeHandler::GetIsPointInPanel(vgui::Panel*, int, int) const - 0x0000000000139660 AvHCommanderModeHandler::Update(AvHTechTree const&, int) - 0x0000000000139890 AvHCommanderModeHandler::ActionButtonActivated(ActionButton*) - 0x00000000001399a0 AvHCommanderModeHandler::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x0000000000139af0 AvHCommanderModeHandler::HotKeyHit(char) - *fill* 0x0000000000139c47 0x9 - .text 0x0000000000139c50 0x16 release/obj/hl1_client/mod/AvHConstants.o - 0x0000000000139c50 getModDirectory() - 0x0000000000139c60 getModName() - *fill* 0x0000000000139c66 0xa - .text 0x0000000000139c70 0x4f6 release/obj/hl1_client/mod/AvHEntityHierarchy.o - 0x0000000000139c70 AvHEntityHierarchy::operator!=(AvHEntityHierarchy const&) const - 0x0000000000139d80 AvHEntityHierarchy::operator==(AvHEntityHierarchy const&) const - 0x0000000000139e90 AvHEntityHierarchy::GetNumSensory() const - 0x0000000000139ea0 AvHEntityHierarchy::GetNumMovement() const - 0x0000000000139eb0 AvHEntityHierarchy::GetNumDefense() const - 0x0000000000139ec0 AvHEntityHierarchy::DeleteEntity(int) - 0x0000000000139f40 AvHEntityHierarchy::AvHEntityHierarchy() - 0x0000000000139f40 AvHEntityHierarchy::AvHEntityHierarchy() - 0x0000000000139fb0 AvHEntityHierarchy::Clear() - 0x000000000013a020 AvHEntityHierarchy::GetEntityInfoList(std::map, std::allocator > >&) const - 0x000000000013a0b0 AvHEntityHierarchy::InsertEntity(int, MapEntity const&) - *fill* 0x000000000013a166 0xa - .text._ZNSt8_Rb_treeIiSt4pairIKi9MapEntityESt10_Select1stIS3_ESt4lessIiESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x000000000013a170 0x1aa release/obj/hl1_client/mod/AvHEntityHierarchy.o - 0x000000000013a170 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x000000000013a31a 0x6 - .text._ZNSt8_Rb_treeIiSt4pairIKi9MapEntityESt10_Select1stIS3_ESt4lessIiESaIS3_EE7_M_copyEPKSt13_Rb_tree_nodeIS3_EPSB_ - 0x000000000013a320 0xfe release/obj/hl1_client/mod/AvHEntityHierarchy.o - 0x000000000013a320 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy(std::_Rb_tree_node > const*, std::_Rb_tree_node >*) - *fill* 0x000000000013a41e 0x2 - .text._ZNSt8_Rb_treeIiSt4pairIKi9MapEntityESt10_Select1stIS3_ESt4lessIiESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x000000000013a420 0x27b release/obj/hl1_client/mod/AvHEntityHierarchy.o - 0x000000000013a420 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x000000000013a69b 0x5 - .text 0x000000000013a6a0 0x686e release/obj/hl1_client/mod/AvHEvents.o - 0x000000000013a6a0 RemoveBody(tempent_s*, float, float) - 0x000000000013a6f0 HitBody(tempent_s*, pmtrace_s*) - 0x000000000013a710 EV_SiegeHit - 0x000000000013a7d0 EV_AlienSightOn - 0x000000000013a840 EV_AlienSightOff - 0x000000000013a8b0 EV_BlinkSuccess - 0x000000000013a920 EV_StopScream - 0x000000000013a950 EV_EmptySound - 0x000000000013a9a0 EV_InvalidAction - 0x000000000013a9f0 EV_DistressBeacon - 0x000000000013ab00 EV_WelderConst - 0x000000000013ac10 EV_WelderStart - 0x000000000013aca0 EV_Regeneration - 0x000000000013ad40 EV_StartCloak - 0x000000000013ade0 EV_EndCloak - 0x000000000013ae80 EV_Flight - 0x000000000013af10 EV_Knife - 0x000000000013b000 EV_Metabolize - 0x000000000013b0d0 EV_Grenade - 0x000000000013b230 EV_SiegeViewHit - 0x000000000013b2b0 EV_BuildGun - 0x000000000013b3d0 EV_SpikeGun - 0x000000000013b5f0 EV_MachineGun - 0x000000000013b960 EV_Pistol - 0x000000000013bcd0 EV_HeavyMachineGun - 0x000000000013c050 EV_GrenadeGun - 0x000000000013c1e0 EV_SpinWeb - 0x000000000013c4a0 EV_SonicGun - 0x000000000013c810 EV_OffenseChamber - 0x000000000013ca20 EV_BileBomb - 0x000000000013cc70 EV_AcidRocket - 0x000000000013ceb0 EV_WelderEnd - 0x000000000013cef0 EV_DivineWind - 0x000000000013cfa0 EV_LevelUp - 0x000000000013d070 EV_Leap - 0x000000000013d180 EV_ParasiteGun - 0x000000000013d210 EV_Devour - 0x000000000013d2b0 EV_Charge - 0x000000000013d350 EV_MetabolizeSuccess - 0x000000000013d3f0 EV_PrimalScream - 0x000000000013d4a0 EV_WeaponAnimation - 0x000000000013d4e0 EV_Ability - 0x000000000013d510 EV_NumericalInfo - 0x000000000013d560 EV_CommandPoints - 0x000000000013d600 EV_Particle - 0x000000000013d6d0 EV_Jetpack - 0x000000000013d800 BileBombHit(tempent_s*, pmtrace_s*) - 0x000000000013d910 AcidRocketHit(tempent_s*, pmtrace_s*) - 0x000000000013da20 EV_UmbraCloud - 0x000000000013db30 EV_SporeCloud - 0x000000000013dc50 EV_Teleport - 0x000000000013dda0 SpikeHit(tempent_s*, pmtrace_s*) - 0x000000000013def0 EV_PhaseIn - 0x000000000013e090 EV_HealingSpray - 0x000000000013e290 EV_Stomp - 0x000000000013e5c0 EV_SpitGun - 0x000000000013e950 UpdateStomp(tempent_s*, float, float) - 0x000000000013eac0 Game_HookEvents() - 0x000000000013efd0 GetUpgradeState(int) - 0x000000000013eff0 RemoveAllDecals() - 0x000000000013f070 CreateCorpse(Vector, Vector, char const*, float, int, int) - 0x000000000013f1b0 PlayMeleeHitEffects(event_args_s*, int, std::string const&) - 0x000000000013f3e0 EV_Claws - 0x000000000013f570 EV_Swipe - 0x000000000013f700 EV_Bite - 0x000000000013f8e0 EV_Bite2 - 0x000000000013fac0 GrenadeHit(tempent_s*, pmtrace_s*) - 0x000000000013fb30 CreateDecal(pmtrace_s*) - 0x000000000013fc10 WebHit(tempent_s*, pmtrace_s*) - 0x000000000013fcc0 SpitHit(tempent_s*, pmtrace_s*) - 0x000000000013fe30 ShootCloud(event_args_s*, char const*) - 0x0000000000140070 EV_UmbraGun - 0x0000000000140090 EV_SporeShoot - 0x0000000000140160 ParticleCallback(particle_s*, float) - 0x0000000000140190 EndJetpackEffects(int) - 0x00000000001402a0 EV_EndJetpack(event_args_s*) - 0x00000000001402b0 DrawCircleOnGroundAtPoint(Vector, int, int, int, float, float, float, float, bool, float) - 0x0000000000140610 DrawMarineLight(pVector const&, Vector&, Vector&) - 0x0000000000140640 DrawMarineLights(pVector const&) - 0x0000000000140840 EV_WelderGeneralEffects(event_args_s*, Vector const&) - 0x0000000000140a30 EV_WelderHitEffects(event_args_s*, Vector const&) - 0x0000000000140c80 EV_Welder - 0x0000000000140ef0 TeleportCallback(tempent_s*, float, float) - 0x0000000000140f00 EV_Select - *fill* 0x0000000000140f0e 0x2 - .text._ZNSt6vectorI9LightTypeSaIS0_EED2Ev - 0x0000000000140f10 0x19 release/obj/hl1_client/mod/AvHEvents.o - 0x0000000000140f10 std::vector >::~vector() - 0x0000000000140f10 std::vector >::~vector() - *fill* 0x0000000000140f29 0x7 - .text._ZN18AvHSelectionHelperD2Ev - 0x0000000000140f30 0x65 release/obj/hl1_client/mod/AvHEvents.o - 0x0000000000140f30 AvHSelectionHelper::~AvHSelectionHelper() - 0x0000000000140f30 AvHSelectionHelper::~AvHSelectionHelper() - *fill* 0x0000000000140f95 0xb - .text 0x0000000000140fa0 0x677 release/obj/hl1_client/mod/AvHFont.o - 0x0000000000140fa0 AvHFont::AvHFont() - 0x0000000000140fa0 AvHFont::AvHFont() - 0x0000000000140fc0 AvHFont::Load(char const*) - 0x0000000000141220 AvHFont::GetStringWidth(char const*) const - 0x0000000000141280 AvHFont::GetCharacterWidth(char) const - 0x00000000001412a0 AvHFont::GetStringHeight() const - 0x00000000001412b0 AvHFont::DrawString(int, int, char const*, int, int, int, int) const - 0x0000000000141490 AvHFont::DrawStringReverse(int, int, char const*, int, int, int, int) const - *fill* 0x0000000000141617 0x9 - .text 0x0000000000141620 0xbaf release/obj/hl1_client/mod/AvHHelp.o - 0x0000000000141620 AvHHud::ProcessEntityHelp() - 0x0000000000141ba0 AvHHud::ProcessGeneralHelp() - 0x0000000000141d50 AvHHud::ProcessWeaponsHelp() - 0x0000000000141e10 AvHHud::ProcessAlienHelp() - 0x0000000000141fa0 AvHHud::ProcessOrderHelp() - 0x0000000000141fb0 AvHHud::UpdateHelpText() - *fill* 0x00000000001421cf 0x1 - .text 0x00000000001421d0 0x14c25 release/obj/hl1_client/mod/AvHHud.o - 0x00000000001421d0 DummyFunction() - 0x00000000001421e0 AvHHud::HideCommandMenu() - 0x0000000000142200 AvHHud::PlayRandomSongHook() - 0x0000000000142220 __MsgFunc_Countdown(char const*, int, void*) - 0x0000000000142270 __MsgFunc_MiniMap(char const*, int, void*) - 0x00000000001422a0 __MsgFunc_Progress(char const*, int, void*) - 0x00000000001422e0 __MsgFunc_SetGmma(char const*, int, void*) - 0x0000000000142310 __MsgFunc_DelEntHier(char const*, int, void*) - 0x0000000000142340 __MsgFunc_EditPS(char const*, int, void*) - 0x0000000000142380 __MsgFunc_AlienInfo(char const*, int, void*) - 0x00000000001423c0 AvHHud::ShowCommandMenu() - 0x00000000001423e0 AvHHud::StopStream() - 0x0000000000142400 __MsgFunc_TechSlots(char const*, int, void*) - 0x0000000000142460 CLinkGhostBuildingCallback(tempent_s*, float, float) - 0x0000000000142530 __MsgFunc_SetTech(char const*, int, void*) - 0x0000000000142590 __MsgFunc_SetUpgrades(char const*, int, void*) - 0x0000000000142620 __MsgFunc_Fog(char const*, int, void*) - 0x00000000001426d0 __MsgFunc_GameStatus(char const*, int, void*) - 0x00000000001427d0 __MsgFunc_SetTopDown(char const*, int, void*) - 0x00000000001428f0 __MsgFunc_ListPS(char const*, int, void*) - 0x0000000000142990 AvHHud::HideMap() - 0x0000000000142a90 __MsgFunc_BalanceVar(char const*, int, void*) - 0x0000000000142c30 AvHHud::ResetComponentsForUser3() - 0x00000000001437e0 GetMapExtents() - 0x00000000001437f0 NumericalInfoEffect::NumericalInfoEffect(float*, float, int, float) - 0x00000000001437f0 NumericalInfoEffect::NumericalInfoEffect(float*, float, int, float) - 0x0000000000143840 NumericalInfoEffect::GetPosition(float*) const - 0x0000000000143870 NumericalInfoEffect::GetNumber() const - 0x0000000000143880 NumericalInfoEffect::GetEventType() const - 0x0000000000143890 NumericalInfoEffect::GetTimeCreated() const - 0x00000000001438a0 NumericalInfoEffect::SetPosition(float*) - 0x00000000001438d0 AvHHud::OnActivateSteamUI() - 0x00000000001438e0 AvHHud::OnDeactivateSteamUI() - 0x0000000000143910 AvHHud::OnLostFocus() - 0x0000000000143920 AvHHud::OnKeyEvent(int, int, bool) - 0x0000000000143a10 AvHHud::GetGameTime() const - 0x0000000000143a40 AvHHud::GetGameTimeLimit() const - 0x0000000000143a50 AvHHud::GetCombatAttackingTeamNumber() const - 0x0000000000143a60 AvHHud::GetShowingMap() - 0x0000000000143a70 AvHHud::GetGameStarted() const - 0x0000000000143aa0 AvHHud::GetIsAlive(bool) const - 0x0000000000143b40 GetIsWithinRegion(float, float, float, float, float, float) - 0x0000000000143bb0 AvHHud::GetIsRegionBlockedByUI(float, float) - 0x00000000001440d0 AvHHud::GetIsShowingMap() const - 0x00000000001440e0 AvHHud::ClearSelection() - 0x0000000000144110 AvHHud::Cancel() - 0x0000000000144120 AvHHud::AddCommands() - 0x00000000001443c0 LookupAndTranslate(AvHMessageID) - 0x0000000000144520 AvHHud::DisplayMessage(char const*) - 0x0000000000144570 AvHHud::GetFrameForOrderType(AvHOrderType) const - 0x0000000000144590 AvHHud::GetPlayMode() const - 0x00000000001445e0 AvHHud::GetHUDPlayMode() const - 0x0000000000144660 AvHHud::GetVisiblePlayer() const - 0x00000000001446a0 AvHHud::GetLocalUpgrades() const - 0x0000000000144700 AvHHud::GetInTopDownMode() const - 0x0000000000144710 AvHHud::GetIsSelecting() const - 0x0000000000144720 AvHHud::GetOrderList() const - 0x0000000000144850 AvHHud::GetCenterPositionForGroup(int, Vector&) const - 0x0000000000144960 AvHHud::GetMousePos(int&, int&) const - 0x0000000000144a00 AvHHud::GetAndClearTopDownScrollAmount(int&, int&, int&) - 0x0000000000144da0 AvHHud::GetAndClearSelectionEvent(Vector&, AvHMessageID&) - 0x0000000000144f60 AvHHud::GetSelected() const - 0x0000000000145020 AvHHud::GetTechSlotManager() const - 0x0000000000145030 AvHHud::GetAndClearAlienAbility(AvHMessageID&) - 0x0000000000145060 AvHHud::GetAndClearGroupEvent(AvHMessageID&) - 0x0000000000145090 AvHHud::GetTrackingEntity() const - 0x00000000001450a0 AvHHud::ClearTrackingEntity() - 0x00000000001450b0 AvHHud::GetUIMode() const - 0x00000000001450c0 AvHHud::SwitchUIMode(UIMode) - 0x0000000000145500 AvHHud::GetAndClearTechEvent(AvHMessageID&) - 0x0000000000145530 AvHHud::GetLastHotkeySelectionEvent(AvHMessageID&) - 0x0000000000145550 AvHHud::SetLastHotkeySelectionEvent(AvHMessageID) - 0x0000000000145580 AvHHud::GetIsAlien() const - 0x00000000001455a0 AvHHud::GetIsBeingDigested() const - 0x0000000000145620 AvHHud::GetIsEnsnared() const - 0x0000000000145650 AvHHud::GetIsStunned() const - 0x0000000000145680 AvHHud::GetIsDigesting() const - 0x0000000000145700 AvHHud::GetIsNotInControl() const - 0x0000000000145780 AvHHud::GetIsInTopDownMode() const - 0x00000000001457b0 AvHHud::GetCommanderIndex() const - 0x00000000001457e0 AvHHud::GetHasJetpack() const - 0x0000000000145820 AvHHud::GetHasAlienUpgradesAvailable() const - 0x00000000001459f0 AvHHud::GetIsMarine() const - 0x0000000000145a10 AvHHud::GetIsRelevant() const - 0x0000000000145ab0 AvHHud::GetVisualOrigin() const - 0x0000000000145af0 AvHHud::HotKeyHit(char) - 0x0000000000145b10 AvHHud::GetGammaSlope() const - 0x0000000000145b20 AvHHud::GetMapName(bool) const - 0x0000000000145d60 AvHHud::ShowMap() - 0x0000000000145f10 AvHHud::GetNumActiveHives() const - 0x0000000000145f60 AvHHud::GetMaxAlienResources() const - 0x0000000000145f80 AvHHud::SetGamma(float) - 0x0000000000145f90 AvHHud::SlotInput(int) - 0x0000000000145fe0 AvHHud::ResetGammaAtExit() - 0x0000000000145ff0 AvHHud::ResetGammaAtExitForOnExit() - 0x0000000000146000 AvHHud::ResetGammaAtExit(int) - 0x0000000000146010 AvHHud::ResetTopDownUI() - 0x00000000001460f0 AvHHud::SetSelectingWeaponID(int, int, int, int) - 0x0000000000146180 AvHHud::SetTechHelpText(std::string const&) - 0x00000000001461a0 AvHHud::MsgFunc_Countdown(char const*, int, void*) - 0x00000000001461f0 AvHHud::GetAmbientSoundNameFromIndex(std::string&, int) const - 0x0000000000146230 AvHHud::SetCenterText(char const*) - 0x0000000000146270 AvHHud::ClearCenterText() - 0x00000000001462b0 AvHHud::MsgFunc_BalanceVar(char const*, int, void*) - 0x0000000000146450 AvHHud::MsgFunc_GameStatus(char const*, int, void*) - 0x0000000000146550 AvHHud::MsgFunc_MiniMap(char const*, int, void*) - 0x0000000000146580 AvHHud::MsgFunc_Progress(char const*, int, void*) - 0x00000000001465d0 AvHHud::MsgFunc_SetGmma(char const*, int, void*) - 0x0000000000146600 AvHHud::MsgFunc_BlipList(char const*, int, void*) - 0x00000000001466e0 __MsgFunc_BlipList(char const*, int, void*) - 0x0000000000146710 AvHHud::MsgFunc_ClScript(char const*, int, void*) - 0x00000000001468e0 __MsgFunc_ClScript(char const*, int, void*) - 0x0000000000146910 AvHHud::MsgFunc_Particles(char const*, int, void*) - 0x0000000000146ad0 __MsgFunc_Particles(char const*, int, void*) - 0x0000000000146b00 AvHHud::MsgFunc_SetTopDown(char const*, int, void*) - 0x0000000000146c20 AvHHud::MsgFunc_DelEntHier(char const*, int, void*) - 0x0000000000146c50 AvHHud::MsgFunc_EditPS(char const*, int, void*) - 0x0000000000146c90 AvHHud::MsgFunc_Fog(char const*, int, void*) - 0x0000000000146d40 AvHHud::MsgFunc_SetUpgrades(char const*, int, void*) - 0x0000000000146dd0 AvHHud::MsgFunc_ListPS(char const*, int, void*) - 0x0000000000146e70 AvHHud::MsgFunc_AlienInfo(char const*, int, void*) - 0x0000000000146eb0 AvHHud::PlayHUDSound(char const*, float, float) - 0x0000000000146f70 AvHHud::PlayHUDSound(int, float, float) - 0x0000000000146fd0 AvHHud::PlayHUDSound(AvHHUDSound) - 0x0000000000147df0 AvHHud::OrderNotification(AvHOrder const&) - 0x0000000000147fc0 AvHHud::MsgFunc_SetOrder(char const*, int, void*) - 0x00000000001480a0 __MsgFunc_SetOrder(char const*, int, void*) - 0x0000000000148170 AvHHud::MsgFunc_SetTech(char const*, int, void*) - 0x00000000001481d0 AvHHud::MsgFunc_TechSlots(char const*, int, void*) - 0x0000000000148230 AvHHud::MsgFunc_DebugCSP(char const*, int, void*) - 0x00000000001483d0 __MsgFunc_DebugCSP(char const*, int, void*) - 0x0000000000148400 AvHHud::GetEnemyBlipList() - 0x0000000000148410 AvHHud::GetEntityHierarchy() - 0x0000000000148420 AvHHud::GetFriendlyBlipList() - 0x0000000000148430 AvHHud::GetMouseOneDown() const - 0x0000000000148440 AvHHud::GetMouseTwoDown() const - 0x0000000000148450 AvHHud::HideProgressStatus() - 0x0000000000148460 AvHHud::HideResearchProgressStatus() - 0x00000000001484a0 AvHHud::ComponentJustPainted(vgui::Panel*) - 0x0000000000148510 AvHHud::SetCursor(AvHOrderType) - 0x00000000001485d0 AvHHud::GetCursor(int&, int&) - 0x0000000000148620 AvHHud::SetHelpMessage(std::string const&, bool, float, float) - 0x0000000000148900 AvHHud::SetActionButtonHelpMessage(std::string const&) - 0x0000000000148a10 AvHHud::SetReticleMessage(std::string const&) - 0x0000000000148c20 AvHHud::SetCurrentUseableEnergyLevel(float) - 0x0000000000148c40 AvHHud::GetMapExtents() - 0x0000000000148c50 AvHHud::InitCommanderMode() - 0x0000000000149090 AvHHud::InitializeDemoRecording() - 0x0000000000149970 AvHHud::InitializeWeaponInfoPlayback(int, unsigned char*) - 0x0000000000149a20 AvHHud::InitMenu(std::string const&) - 0x0000000000149ab0 AvHHud::PostUIInit() - 0x000000000014a090 AvHHud::GetGhostBuilding() const - 0x000000000014a0a0 AvHHud::SetGhostBuildingMode(AvHMessageID) - 0x000000000014a0c0 AvHHud::SetClientDebugCSP(weapon_data_s*, float) - 0x000000000014a260 AvHHud::SetCurrentWeaponData(int, bool) - 0x000000000014a280 AvHHud::GetCurrentWeaponID() - 0x000000000014a290 AvHHud::SetAlienAbility(AvHMessageID) - 0x000000000014a2a0 AvHHud::SetProgressStatus(float, int) - 0x000000000014a2d0 AvHHud::SetReinforcements(int) - 0x000000000014a510 AvHHud::SetResearchProgressStatus(float) - 0x000000000014a620 AvHHud::UpdateDemoRecordPlayback() - 0x000000000014a680 AvHHud::UpdateSpectating() - 0x000000000014a740 RemoveAlias(char*) - 0x000000000014a7d0 ForceCvar(char*, cvar_s*, float) - 0x000000000014a8a0 AvHHud::InitExploitPrevention() - 0x000000000014ac30 AvHHud::UpdateExploitPrevention() - 0x000000000014aec0 AvHHud::UpdateAlienUI(float) - 0x000000000014b0d0 AvHHud::GetCommanderLabelText(std::string&) const - 0x000000000014b880 AvHHud::UpdateMarineUI(float) - 0x000000000014baf0 AvHHud::UpdateHierarchy() - 0x000000000014bc00 AvHHud::GetNameOfLocation(Vector) const - 0x000000000014bc60 AvHHud::UpdateInfoLocation() - 0x000000000014bdd0 AvHHud::GetIsCombatMode() const - 0x000000000014bde0 AvHHud::GetIsNSMode() const - 0x000000000014bdf0 AvHHud::GetIsMouseInRegion(int, int, int, int) - 0x000000000014bee0 AvHHud::TraceEntityID(int&) - 0x000000000014c040 AvHHud::GetAlienHelpForMessage(int, std::string&, int&) const - 0x000000000014c2c0 AvHHud::GetDoesPlayerHaveOrder() const - 0x000000000014c320 AvHHud::GetHelpForMessage(int, std::string&) const - 0x000000000014c810 AvHHud::UpdatePieMenuControl() - 0x000000000014c940 AvHHud::GetMenuTechSlots() const - 0x000000000014c950 AvHHud::GetTechNodes() const - 0x000000000014c960 AvHHud::GetTooltipDrawingInfo(float&, float&) const - 0x000000000014ca00 AvHHud::GetRankTitle(bool) const - 0x000000000014cc00 AvHHud::DisplayCombatUpgradeMenu(bool) - 0x000000000014d210 AvHHud::UpdateDataFromVuser4(float) - 0x000000000014d340 AvHHud::GetReticleTextDrawingInfo(float&, float&, bool&) const - 0x000000000014d4c0 AvHHud::UpdateStructureNotification(float) - 0x000000000014d570 AvHHud::GetTimeOfLastUpdate() const - 0x000000000014d580 AvHHud::UpdateProgressBar() - 0x000000000014d840 AvHHud::GhostBuildingCallback(tempent_s*, float, float) - 0x000000000014d910 AvHHud::UpdateBuildingPlacement() - 0x000000000014ddc0 AvHHud::CancelBuilding() - 0x000000000014dde0 AvHHud::UpdateBuildResearchText() - 0x000000000014e090 AvHHud::UpdateTechNodes() - 0x000000000014e480 AvHHud::UpdateAmbientSounds() - 0x000000000014e530 AvHHud::UpdateViewModelEffects() - 0x000000000014e6f0 AvHHud::UpdateResources(float) - 0x000000000014ea10 AvHHud::GetParticlesVisible() const - 0x000000000014ea60 AvHHud::GetSafeForSpriteDrawing() const - 0x000000000014eba0 AvHHud::GetShouldDisplayUser3(AvHUser3) const - 0x000000000014ebd0 AvHHud::GetTranslatedUser3Name(AvHUser3, std::string&) const - 0x000000000014ec90 AvHHud::GetTranslatedUser3Description(AvHUser3, bool, std::string&) const - 0x000000000014ef00 AvHHud::GetEntityInfoString(int, std::string&, bool&) - 0x000000000014f470 AvHHud::UpdateUpgradeCosts() - 0x000000000014f530 AvHHud::UpdateCommonUI() - 0x000000000014f630 AvHHud::AddMiniMapAlert(float, float) - 0x000000000014f650 AvHHud::UpdateEnableState(PieMenu*) - 0x000000000014f6d0 AvHHud::GetSpriteForUser3(AvHUser3, int&, int&, int&) - 0x000000000014fb30 AvHHud::GetCurrentSquad() const - 0x000000000014fb40 AvHHud::GetOverviewMap() - 0x000000000014fb50 AvHHud::ShowCrosshair() - 0x000000000014fbd0 AvHHud::HideCrosshair() - 0x000000000014fc40 AvHHud::SetCurrentCrosshair(int, rect_s, int, int, int) - 0x000000000014fd20 AvHHud::SetViewport(int const*) - 0x000000000014fdd0 AvHHud::GetViewport(int*) const - 0x000000000014fe00 AvHHud::GetSmallFont() const - 0x000000000014fe10 AvHHud::GetServerVariableFloat(char const*) const - 0x000000000014ff40 AvHHud::MsgFunc_SetSelect(char const*, int, void*) - 0x0000000000150090 __MsgFunc_SetSelect(char const*, int, void*) - 0x00000000001501b0 AvHHud::MsgFunc_EntHier(char const*, int, void*) - 0x00000000001502a0 __MsgFunc_EntHier(char const*, int, void*) - 0x00000000001503a0 AvHHud::AddNumericalInfoMessage(float*, float, int) - 0x0000000000150450 AvHHud::InitializeDemoPlayback2(int, unsigned char*) - 0x0000000000150a00 AvHHud::MsgFunc_SoundNames(char const*, int, void*) - 0x0000000000150b90 __MsgFunc_SoundNames(char const*, int, void*) - 0x0000000000150d40 AvHHud::UpdateEntityID(float) - 0x0000000000151630 AvHHud::GetDrawPlayerOrders() const - 0x0000000000151860 AvHHud::SetSelectionEffects(std::vector >&) - 0x0000000000151900 AvHHud::UpdateSelection() - 0x0000000000151e90 AvHHud::ModifyAmbientSoundEntryIfChanged(bool, int, int, float, int, int, int, Vector) - 0x0000000000152140 AvHHud::ClientProcessEntity(entity_state_s*) - 0x00000000001523c0 AvHHud::MsgFunc_IssueOrder(char const*, int, void*) - 0x00000000001526e0 __MsgFunc_IssueOrder(char const*, int, void*) - 0x0000000000152710 AvHHud::MsgFunc_SetupMap(char const*, int, void*) - 0x0000000000152a10 __MsgFunc_SetupMap(char const*, int, void*) - 0x0000000000152d10 AvHHud::MsgFunc_PlayHUDNot(char const*, int, void*) - 0x0000000000152fa0 __MsgFunc_PlayHUDNot(char const*, int, void*) - 0x0000000000153210 AvHHud::UpdateFromEntities(float) - 0x00000000001534b0 AvHHud::AddTooltip(char const*, bool, float) - 0x0000000000153840 AvHHud::AddTooltipOnce(char const*, bool) - 0x0000000000153980 AvHHud::UpdateCountdown(float) - 0x0000000000153a40 AvHHud::PlayStream() - 0x0000000000153d00 AvHHud::UpdateTooltips(float) - 0x0000000000154210 AvHHud::MsgFunc_SetRequest(char const*, int, void*) - 0x00000000001542c0 __MsgFunc_SetRequest(char const*, int, void*) - 0x0000000000154360 AvHHud::MsgFunc_ServerVar(char const*, int, void*) - 0x0000000000154500 __MsgFunc_ServerVar(char const*, int, void*) - 0x0000000000154530 AvHHud::ClearData() - 0x0000000000154850 AvHHud::AvHHud(std::string const&, UIFactory*) - 0x0000000000154850 AvHHud::AvHHud(std::string const&, UIFactory*) - 0x0000000000154c10 AvHHud::ResetGame(bool) - 0x00000000001553c0 AvHHud::MsgFunc_DelParts(char const*, int, void*) - 0x00000000001553f0 __MsgFunc_DelParts(char const*, int, void*) - 0x0000000000155420 AvHHud::InitializeDemoPlayback(int, unsigned char*) - 0x00000000001557b0 AvHHud::~AvHHud() - 0x00000000001557b0 AvHHud::~AvHHud() - 0x0000000000155e20 AvHHud::~AvHHud() - 0x0000000000155e40 AvHHud::Update(float, std::string&) - 0x00000000001566f0 AvHHud::Redraw(float, int) - 0x0000000000156760 AvHHud::Init() - 0x0000000000156ce0 AvHHud::UpdateMusic(float) - *fill* 0x0000000000156df5 0xb - .text._ZN23AvHCommanderModeHandlerD2Ev - 0x0000000000156e00 0xb8 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000156e00 AvHCommanderModeHandler::~AvHCommanderModeHandler() - 0x0000000000156e00 AvHCommanderModeHandler::~AvHCommanderModeHandler() - *fill* 0x0000000000156eb8 0x8 - .text._ZNSt6vectorIiSaIiEEaSERKS1_ - 0x0000000000156ec0 0x1d5 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000156ec0 std::vector >::operator=(std::vector > const&) - *fill* 0x0000000000157095 0xb - .text._ZNSt8_Rb_treeI12AvHMessageIDSt4pairIKS0_iESt10_Select1stIS3_ESt4lessIS0_ESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x00000000001570a0 0x1aa release/obj/hl1_client/mod/AvHHud.o - 0x00000000001570a0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x000000000015724a 0x6 - .text._ZNSt8_Rb_treeIiSt4pairIKiS0_IifEESt10_Select1stIS3_ESt4lessIiESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x0000000000157250 0x1aa release/obj/hl1_client/mod/AvHHud.o - 0x0000000000157250 std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_erase(std::_Rb_tree_node > >*) - *fill* 0x00000000001573fa 0x6 - .text._ZNSt8_Rb_treeIiSt4pairIKiiESt10_Select1stIS2_ESt4lessIiESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x0000000000157400 0x1aa release/obj/hl1_client/mod/AvHHud.o - 0x0000000000157400 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x00000000001575aa 0x6 - .text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x00000000001575b0 0x4ae release/obj/hl1_client/mod/AvHHud.o - 0x00000000001575b0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x0000000000157a5e 0x2 - .text._ZNSt6vectorI19NumericalInfoEffectSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000157a60 0x247 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000157a60 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, NumericalInfoEffect const&) - *fill* 0x0000000000157ca7 0x9 - .text._ZN10AvHTooltipC2ERKS_ - 0x0000000000157cb0 0x182 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000157cb0 AvHTooltip::AvHTooltip(AvHTooltip const&) - 0x0000000000157cb0 AvHTooltip::AvHTooltip(AvHTooltip const&) - *fill* 0x0000000000157e32 0xe - .text._ZSt6__findIN9__gnu_cxx17__normal_iteratorIPSsSt6vectorISsSaISsEEEESsET_S7_S7_RKT0_St26random_access_iterator_tag - 0x0000000000157e40 0x1e5 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000157e40 __gnu_cxx::__normal_iterator > > std::__find<__gnu_cxx::__normal_iterator > >, std::string>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, std::string const&, std::random_access_iterator_tag) - *fill* 0x0000000000158025 0xb - .text._ZNSt6vectorI15SelectionEffectSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000158030 0x1d0 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000158030 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, SelectionEffect const&) - .text._ZNSt6vectorI15AvHAmbientSoundSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000158200 0x3b5 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000158200 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHAmbientSound const&) - *fill* 0x00000000001585b5 0xb - .text._ZNSt8_Rb_treeIiSt4pairIKiS0_IifEESt10_Select1stIS3_ESt4lessIiESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x00000000001585c0 0x27b release/obj/hl1_client/mod/AvHHud.o - 0x00000000001585c0 std::_Rb_tree >, std::_Select1st > >, std::less, std::allocator > > >::_M_insert_unique_(std::_Rb_tree_const_iterator > >, std::pair > const&) - *fill* 0x000000000015883b 0x5 - .text._ZNSt6vectorI19AvHBaseInfoLocationSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000158840 0x50f release/obj/hl1_client/mod/AvHHud.o - 0x0000000000158840 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHBaseInfoLocation const&) - *fill* 0x0000000000158d4f 0x1 - .text._ZNSt6vectorIN6AvHHud19HUDNotificationTypeESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x0000000000158d50 0x305 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000158d50 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHHud::HUDNotificationType const&) - *fill* 0x0000000000159055 0xb - .text._ZNSt6vectorI11AvHHiveInfoSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000159060 0x249 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000159060 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHHiveInfo const&) - *fill* 0x00000000001592a9 0x7 - .text._ZNSt6vectorISt4pairI6VectoriESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - 0x00000000001592b0 0x223 release/obj/hl1_client/mod/AvHHud.o - 0x00000000001592b0 std::vector, std::allocator > >::_M_insert_aux(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&) - *fill* 0x00000000001594d3 0xd - .text._ZNSt6vectorISsSaISsEEaSERKS1_ - 0x00000000001594e0 0x31f release/obj/hl1_client/mod/AvHHud.o - 0x00000000001594e0 std::vector >::operator=(std::vector > const&) - *fill* 0x00000000001597ff 0x1 - .text._ZNSt6vectorI10AvHTooltipSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000159800 0xb39 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000159800 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHTooltip const&) - *fill* 0x000000000015a339 0x7 - .text._ZNSt8_Rb_treeI12AvHMessageIDSt4pairIKS0_iESt10_Select1stIS3_ESt4lessIS0_ESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x000000000015a340 0x26f release/obj/hl1_client/mod/AvHHud.o - 0x000000000015a340 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x000000000015a5af 0x1 - .text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE24_M_get_insert_unique_posERS1_ - 0x000000000015a5b0 0x113 release/obj/hl1_client/mod/AvHHud.o - 0x000000000015a5b0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(std::string const&) - *fill* 0x000000000015a6c3 0xd - .text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_ - 0x000000000015a6d0 0x2ea release/obj/hl1_client/mod/AvHHud.o - 0x000000000015a6d0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x000000000015a9ba 0x6 - .text 0x000000000015a9c0 0xf55c release/obj/hl1_client/mod/AvHHudRender.o - 0x000000000015ad90 GetViewOrigin() - 0x000000000015adf0 BuildLerpedPoint(float, float, Vector const&, Vector const&, Vector const&, Vector&) - 0x000000000015aeb0 CalculatePlaneInfo(Vector const&, Vector const&, Vector const&, float&, Vector&) - 0x000000000015c080 CalculatePointOnPlane(int, int, Vector const&, Vector const&, float, Vector&) - 0x000000000015c120 ProjectPointFromViewOrigin(int, int, int, Vector&) - 0x000000000015c1c0 AvHHud::DrawTranslatedString(int, int, char const*, bool, bool, bool, float) - 0x000000000015c4f0 SetWarpHUDSprites(bool, float, float, float, float) - 0x000000000015c540 DrawScaledHUDSprite(int, int, int, int, int, int, int, int, float, float, float, float, float, bool) - 0x000000000015d280 DrawVariableScaledHUDSprite(float, int, int, int, int, int, int) - 0x000000000015d340 DrawSpriteOnGroundAtPoint(Vector, int, int, int, int, float) - 0x000000000015db70 AvHHud::DrawReticleInfo() - 0x000000000015db80 AvHHud::DrawToolTips() - 0x000000000015dc20 AvHHud::DrawWorldSprite(int, int, Vector, int, float, float) - 0x000000000015ded0 AvHHud::DrawOrderIcon(AvHOrder const&) - 0x000000000015e0b0 AvHHud::DrawOrderText(AvHOrder const&) - 0x000000000015eaf0 AvHHud::DrawCenterText() - 0x000000000015ecb0 AvHHud::SetDisplayOrder(int, int, std::string, std::string, std::string) - 0x000000000015ed40 AvHHud::DrawDisplayOrder() - 0x000000000015f230 AvHHud::GetOrderDirection(Vector, int) - 0x000000000015f360 AvHHud::DrawTeammateOrders() - 0x000000000015f6d0 AvHHud::GetHelpIconFrameFromUser3(AvHUser3) - 0x000000000015f6f0 AvHHud::GetHelpSprite() const - 0x000000000015f700 AvHHud::DrawHelpIcons() - 0x000000000015f7c0 AvHHud::DrawInfoLocationText() - 0x0000000000160450 AvHHud::DrawMouseCursor(int, int) - 0x00000000001607a0 AvHHud::DrawTopDownBG() - 0x0000000000160d80 AvHHud::GetHUDExperience() const - 0x0000000000160df0 AvHHud::GetHUDExperienceLevel() const - 0x0000000000160e50 AvHHud::GetHUDHandicap() const - 0x0000000000160f00 AvHHud::GetHUDUser3() const - 0x0000000000160f60 AvHHud::GetHUDTeam() const - 0x0000000000160f90 AvHHud::GetHUDUpgrades() const - 0x0000000000160fc0 AvHHud::GetHUDMaxArmor() const - 0x0000000000161040 AvHHud::GetHUDMaxHealth() const - 0x0000000000161150 AvHHud::GetPrimaryHudColor(int&, int&, int&, bool, bool) const - 0x0000000000161210 AvHHud::HandleFog() - 0x0000000000161290 AvHHud::PreRenderFrame() - 0x0000000000161330 AvHHud::PostRenderFrame() - 0x0000000000161340 AvHHud::DrawBuildHealthEffectsForEntity(int, float) - 0x00000000001613a0 AvHHud::DrawHUDNumber(int, int, int, int) - 0x0000000000161450 AvHHud::DrawSelectionAndBuildEffects() - 0x0000000000161720 AvHHud::RenderProgressBar(char*) - 0x00000000001619d0 AvHHud::RenderMiniMap(int, int, int, int) - 0x0000000000161b20 AvHHud::RenderMarineUI() - 0x00000000001629e0 AvHHud::RenderStructureRange(Vector, int, int, int, int, float, float, float, float) - 0x0000000000162bb0 AvHHud::RenderStructureRanges() - 0x0000000000163070 AvHHud::RenderAlienUI() - 0x0000000000164bb0 AvHHud::DrawWarpedOverlaySprite(int, int, int, float, float, float, float) - 0x0000000000164f40 AvHHud::InitHUDData() - 0x0000000000164f60 AvHHud::DrawPlayerNames() - 0x00000000001653c0 AvHHud::DrawOrders() - 0x00000000001655b0 AvHHud::GetTechTreeSprite(AvHMessageID) - 0x0000000000165d00 AvHHud::DrawHUDStructureNotification() - 0x0000000000165f40 AvHHud::RenderCommonUI() - 0x0000000000167c60 AvHHud::DrawActionButtons() - 0x0000000000167f20 AvHHud::DrawHotgroups() - 0x00000000001682a0 AvHHud::DrawPendingRequests() - 0x0000000000168640 AvHHud::RenderCommanderUI() - 0x0000000000168d70 AvHHud::Render() - 0x00000000001690c0 AvHHud::RenderNoZBuffering() - 0x00000000001691b0 AvHHud::PostModelRender(char*) - 0x0000000000169210 AvHHud::DrawTechTreeSprite(AvHMessageID, int, int, int, int, int) - 0x00000000001693e0 AvHHud::VidInit() - *fill* 0x0000000000169f1c 0x4 - .text._ZNSt8_Rb_treeIiSt4pairIKiiESt10_Select1stIS2_ESt4lessIiESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_ - 0x0000000000169f20 0x26b release/obj/hl1_client/mod/AvHHudRender.o - 0x0000000000169f20 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x000000000016a18b 0x5 - .text 0x000000000016a190 0x211 release/obj/hl1_client/mod/AvHLogoutComponent.o - 0x000000000016a190 AvHUILogoutComponent::GetComponentPointer() - 0x000000000016a1a0 AvHUILogoutComponent::AllocateComponent(TRDescription const&) - 0x000000000016a290 AvHUILogoutComponent::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - *fill* 0x000000000016a3a1 0xf - .text._ZNK13UIStaticLabel7GetTypeEv - 0x000000000016a3b0 0x8 release/obj/hl1_client/mod/AvHLogoutComponent.o - 0x000000000016a3b0 UIStaticLabel::GetType() const - *fill* 0x000000000016a3b8 0x8 - .text._ZN20AvHUILogoutComponentD2Ev - 0x000000000016a3c0 0x5d release/obj/hl1_client/mod/AvHLogoutComponent.o - 0x000000000016a3c0 AvHUILogoutComponent::~AvHUILogoutComponent() - 0x000000000016a3c0 AvHUILogoutComponent::~AvHUILogoutComponent() - *fill* 0x000000000016a41d 0x3 - .text._ZN20AvHUILogoutComponentD0Ev - 0x000000000016a420 0x65 release/obj/hl1_client/mod/AvHLogoutComponent.o - 0x000000000016a420 AvHUILogoutComponent::~AvHUILogoutComponent() - *fill* 0x000000000016a485 0xb - .text 0x000000000016a490 0x17c release/obj/hl1_client/mod/AvHMapExtents.o - 0x000000000016a490 AvHMapExtents::AvHMapExtents() - 0x000000000016a490 AvHMapExtents::AvHMapExtents() - 0x000000000016a4c0 AvHMapExtents::ResetMapExtents() - 0x000000000016a4f0 AvHMapExtents::GetMinViewHeight() const - 0x000000000016a500 AvHMapExtents::GetMaxViewHeight() const - 0x000000000016a510 AvHMapExtents::SetMinViewHeight(float) - 0x000000000016a520 AvHMapExtents::SetMaxViewHeight(float) - 0x000000000016a530 AvHMapExtents::GetMinMapX() const - 0x000000000016a540 AvHMapExtents::GetMaxMapX() const - 0x000000000016a550 AvHMapExtents::SetMinMapX(float) - 0x000000000016a570 AvHMapExtents::SetMaxMapX(float) - 0x000000000016a590 AvHMapExtents::GetMinMapY() const - 0x000000000016a5a0 AvHMapExtents::GetMaxMapY() const - 0x000000000016a5b0 AvHMapExtents::SetMinMapY(float) - 0x000000000016a5d0 AvHMapExtents::SetMaxMapY(float) - 0x000000000016a5f0 AvHMapExtents::GetDrawMapBG() const - 0x000000000016a600 AvHMapExtents::SetDrawMapBG(bool) - *fill* 0x000000000016a60c 0x4 - .text 0x000000000016a610 0x1574 release/obj/hl1_client/mod/AvHMiniMap.o - 0x000000000016a610 AvHMiniMap::~AvHMiniMap() - 0x000000000016a610 AvHMiniMap::~AvHMiniMap() - 0x000000000016a680 AvHMiniMap::~AvHMiniMap() - 0x000000000016a710 SafeWrite(_IO_FILE*, void*, int) - 0x000000000016a740 AvHMiniMap::AvHMiniMap() - 0x000000000016a740 AvHMiniMap::AvHMiniMap() - 0x000000000016a7a0 AvHMiniMap::GetIsProcessing(float*) const - 0x000000000016a800 AvHMiniMap::GetSpriteNameFromMap(int, std::string const&, int) - 0x000000000016ac00 AvHMiniMap::InitializePalette() - 0x000000000016adb0 AvHMiniMap::ReceiveFromNetworkStream(void*, int) - 0x000000000016ae20 AvHMiniMap::WriteMapToSprite(_IO_FILE*) - 0x000000000016b100 AvHMiniMap::WriteMapToSprite() - 0x000000000016b440 AvHMiniMap::WriteSpritesIfJustFinished() - 0x000000000016b8b0 AvHMiniMap::DrawEdges(unsigned char*, int, int) - *fill* 0x000000000016bb84 0xc - .text 0x000000000016bb90 0x33d release/obj/hl1_client/mod/AvHMovementUtil.o - 0x000000000016bb90 AvHMUGetHull(bool, int) - 0x000000000016bbd0 AvHMUGetOriginOffsetForUser3(AvHUser3) - 0x000000000016bbf0 AvHMUGetOriginOffsetForMessageID(AvHMessageID) - 0x000000000016bc10 AvHMUGetCanDuck(int) - 0x000000000016bc30 AvHMUDeductAlienEnergy(float&, float) - 0x000000000016bc80 AvHMUGiveAlienEnergy(float&, float) - 0x000000000016bce0 AvHMUGetEnergyCost(AvHWeaponID, float&) - 0x000000000016bd20 AvHMUGetWalkSpeedFactor(AvHUser3) - 0x000000000016bd40 AvHMUHasEnoughAlienEnergy(float&, float, float) - 0x000000000016bd70 AvHMUUpdateAlienEnergy(float, int, int, float&) - 0x000000000016be80 AvHMUUpdateJetpackEnergy(bool, float, float&) - *fill* 0x000000000016becd 0x3 - .text 0x000000000016bed0 0x297f release/obj/hl1_client/mod/AvHNetworkMessages.o - 0x000000000016bed0 NetMsg_AmmoPickup(void*, int, int&, int&) - 0x000000000016bf10 NetMsg_AmmoX(void*, int, int&, int&) - 0x000000000016bf50 NetMsg_Battery(void*, int, int&) - 0x000000000016bf80 NetMsg_CurWeapon(void*, int, int&, int&, int&) - 0x000000000016bfc0 NetMsg_Damage(void*, int, int&, int&, long&, float*) - 0x000000000016c020 NetMsg_DeathMsg(void*, int, int&, int&, std::string&) - 0x000000000016c090 NetMsg_Fade(void*, int, ScreenFade&) - 0x000000000016c0f0 NetMsg_Flashlight(void*, int, int&, int&) - 0x000000000016c130 NetMsg_GeigerRange(void*, int, int&) - 0x000000000016c160 NetMsg_Health(void*, int, int&) - 0x000000000016c190 NetMsg_HideWeapon(void*, int, int&) - 0x000000000016c1c0 NetMsg_HudText(void*, int, std::string&) - 0x000000000016c210 NetMsg_HudText2(void*, int, std::string&, int&) - 0x000000000016c260 NetMsg_InitHUD(void*, int) - 0x000000000016c270 NetMsg_ItemPickup(void*, int, std::string&) - 0x000000000016c2c0 NetMsg_MOTD(void*, int, bool&, std::string&) - 0x000000000016c320 NetMsg_ResetHUD(void*, int) - 0x000000000016c330 NetMsg_SayText(void*, int, int&, std::string&, std::string&) - 0x000000000016c3c0 NetMsg_ScoreInfo(void*, int, ScoreInfo_s&) - 0x000000000016c4c0 NetMsg_ServerName(void*, int, std::string&) - 0x000000000016c510 NetMsg_SetFOV(void*, int, int&) - 0x000000000016c540 NetMsg_Shake(void*, int, ScreenShake&) - 0x000000000016c580 NetMsg_ShowGameTitle(void*, int) - 0x000000000016c590 NetMsg_ShowMenu(void*, int, int&, int&, int&, std::string&) - 0x000000000016c610 NetMsg_StatusText(void*, int, int&, std::string&) - 0x000000000016c670 NetMsg_StatusValue(void*, int, int&, int&) - 0x000000000016c6b0 NetMsg_TeamInfo(void*, int, int&, std::string&) - 0x000000000016c710 NetMsg_TeamScore(void*, int, std::string&, int&, int&) - 0x000000000016c770 NetMsg_Train(void*, int, int&) - 0x000000000016c7a0 NetMsg_WeaponList(void*, int, WeaponList_s&) - 0x000000000016c830 NetMsg_WeapPickup(void*, int, int&) - 0x000000000016c860 NetMsg_BalanceVar(void*, int, std::string&, BalanceMessageAction&, int&, float&, std::string&) - 0x000000000016c9b0 NetMsg_BlipList(void*, int, bool&, AvHVisibleBlipList&) - 0x000000000016ca90 NetMsg_BuildMiniMap(void*, int, std::string&, int&, int&, int&, int&, unsigned char**, bool&) - 0x000000000016cbb0 NetMsg_DebugCSP(void*, int, weapon_data_s&, float&) - 0x000000000016cc00 NetMsg_EditPS(void*, int, int&) - 0x000000000016cc30 NetMsg_Fog(void*, int, bool&, int&, int&, int&, float&, float&) - 0x000000000016cca0 NetMsg_GameStatus(void*, int, int&, AvHMapMode&, int&, int&, int&) - 0x000000000016cd20 NetMsg_ListPS(void*, int, std::string&) - 0x000000000016cd70 NetMsg_HUDSetUpgrades(void*, int, int&) - 0x000000000016cda0 NetMsg_PlayHUDNotification(void*, int, int&, int&, float&, float&) - 0x000000000016cdf0 NetMsg_ProgressBar(void*, int, int&, int&, int&) - 0x000000000016ce40 NetMsg_ServerVar(void*, int, std::string&, int&) - 0x000000000016ce90 NetMsg_SetGammaRamp(void*, int, float&) - 0x000000000016ced0 NetMsg_SetOrder(void*, int, AvHOrder&) - 0x000000000016cfb0 NetMsg_DelParts(void*, int) - 0x000000000016cfd0 NetMsg_SetParticleTemplate(void*, int, int&, AvHParticleTemplate&) - 0x000000000016d290 NetMsg_SetRequest(void*, int, int&, int&) - 0x000000000016d2d0 NetMsg_SetSoundNames(void*, int, bool&, std::string&) - 0x000000000016d350 NetMsg_SetTechNode(void*, int, AvHTechNode*&) - 0x000000000016d440 NetMsg_SetTechSlots(void*, int, AvHTechSlots&) - 0x000000000016d490 NetMsg_SetTopDown(void*, int, bool&, bool&, float*, int&) - 0x000000000016d500 NetMsg_SetupMap(void*, int, bool&, std::string&, float*, float*, bool&) - 0x000000000016d5e0 NetMsg_UpdateCountdown(void*, int, int&) - 0x000000000016d610 NetMsg_DelEntityHierarchy(void*, int) - 0x000000000016d620 UnpackageCoord(int) - 0x000000000016d630 NetMsg_IssueOrder(void*, int, int&, int&, int&) - 0x000000000016d670 NetMsg_TeamNames(void*, int, std::vector >&) - 0x000000000016d8f0 NetMsg_ClientScripts(void*, int, std::vector >&) - 0x000000000016dbc0 NetMsg_TextMsg(void*, int, int&, std::vector >&) - 0x000000000016e030 NetMsg_AlienInfo(void*, int, bool&, std::vector >&, std::vector >&) - 0x000000000016e270 ReadEntHier(std::map, std::allocator > >&, std::vector >&, int, int) - 0x000000000016e4a0 NetMsg_SetSelect(void*, int, Selection_s&) - 0x000000000016e580 NetMsg_UpdateEntityHierarchy(void*, int, std::map, std::allocator > >&, std::vector >&) - *fill* 0x000000000016e84f 0x1 - .text._ZNSt6vectorI23AvHAlienUpgradeCategorySaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x000000000016e850 0x195 release/obj/hl1_client/mod/AvHNetworkMessages.o - 0x000000000016e850 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHAlienUpgradeCategory const&) - *fill* 0x000000000016e9e5 0xb - .text 0x000000000016e9f0 0x53 release/obj/hl1_client/mod/AvHNexusClient.o - 0x000000000016e9f0 AvHNexus::send(unsigned char const*, unsigned int) - 0x000000000016ea00 AvHNexus::recv(unsigned char const*, unsigned int) - 0x000000000016ea10 AvHNexus::startup() - 0x000000000016ea20 AvHNexus::shutdown() - 0x000000000016ea30 AvHNexus::login(std::string const&, std::string const&) - 0x000000000016ea40 AvHNexus::logout() - .text 0x000000000016ea43 0x0 release/obj/hl1_client/mod/AvHNexusTunnelToServer.o - *fill* 0x000000000016ea43 0xd - .text 0x000000000016ea50 0x862 release/obj/hl1_client/mod/AvHOrder.o - 0x000000000016ea50 AvHOrder::operator==(AvHOrder const&) const - 0x000000000016ead0 AvHOrder::operator!=(AvHOrder const&) const - 0x000000000016eb50 AvHOrder::operator=(AvHOrder const&) - 0x000000000016eb90 AvHOrder::SetReceiver(int const&) - 0x000000000016eba0 AvHOrder::AvHOrder() - 0x000000000016eba0 AvHOrder::AvHOrder() - 0x000000000016ebd0 AvHOrder::ClearReceiver() - 0x000000000016ebe0 AvHOrder::GetTargetIndex() const - 0x000000000016ebf0 AvHOrder::GetOrderType() const - 0x000000000016ec00 AvHOrder::GetOrderTargetType() const - 0x000000000016ec10 AvHOrder::SetOrderTargetType(AvHOrderTargetType) - 0x000000000016ec20 AvHOrder::GetTargetUser3Type() const - 0x000000000016ec30 AvHOrder::GetHasReceiver(int) const - 0x000000000016ec40 AvHOrder::GetReceiver() const - 0x000000000016ec50 AvHOrder::GetLocation(Vector&) const - 0x000000000016ece0 AvHOrder::GetOrderColor(float&, float&, float&, float&) const - 0x000000000016edd0 AvHOrder::RemovePlayerFromReceivers(int) - 0x000000000016edf0 AvHOrder::SetTargetIndex(int) - 0x000000000016ee00 AvHOrder::SetOrderType(AvHOrderType) - 0x000000000016ee30 AvHOrder::SetUser3TargetType(AvHUser3) - 0x000000000016ee40 AvHOrder::SetLocation(Vector const&) - 0x000000000016ee70 AvHOrder::GetOrderActive() const - 0x000000000016ee80 AvHOrder::GetOrderCancelled() const - 0x000000000016ee90 AvHOrder::GetOrderStatus() const - 0x000000000016eea0 AvHOrder::SetOrderStatus(int) - 0x000000000016eeb0 AvHOrder::GetOrderCompleted() const - 0x000000000016eec0 AvHOrder::SetOrderCompleted(bool) - 0x000000000016eed0 AvHGetDefaultOrderType(AvHTeamNumber, Vector const&, Vector const&, int&, Vector&, AvHUser3&, AvHOrderTargetType&) - 0x000000000016f1a0 AvHChangeOrder(std::vector >&, AvHOrder const&) - *fill* 0x000000000016f2b2 0xe - .text._ZNSt6vectorI8AvHOrderSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x000000000016f2c0 0x3ab release/obj/hl1_client/mod/AvHOrder.o - 0x000000000016f2c0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHOrder const&) - *fill* 0x000000000016f66b 0x5 - .text 0x000000000016f670 0x646 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016f670 AvHOverviewControl::AvHOverviewControl() - 0x000000000016f670 AvHOverviewControl::AvHOverviewControl() - 0x000000000016f6c0 AvHOverviewControl::GetDrawInfo(AvHOverviewMap::DrawInfo&) - 0x000000000016f830 AvHOverviewControl::paint() - 0x000000000016fba0 AvHOverviewControl::HandleMouseClick(int, int) - *fill* 0x000000000016fcb6 0xa - .text._ZN22AvHOverviewInputSignal11cursorMovedEiiPN4vgui5PanelE - 0x000000000016fcc0 0x13 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fcc0 AvHOverviewInputSignal::cursorMoved(int, int, vgui::Panel*) - *fill* 0x000000000016fcd3 0xd - .text._ZN22AvHOverviewInputSignal13cursorEnteredEPN4vgui5PanelE - 0x000000000016fce0 0x1 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fce0 AvHOverviewInputSignal::cursorEntered(vgui::Panel*) - *fill* 0x000000000016fce1 0xf - .text._ZN22AvHOverviewInputSignal12cursorExitedEPN4vgui5PanelE - 0x000000000016fcf0 0x1 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fcf0 AvHOverviewInputSignal::cursorExited(vgui::Panel*) - *fill* 0x000000000016fcf1 0xf - .text._ZN22AvHOverviewInputSignal13mouseReleasedEN4vgui9MouseCodeEPNS0_5PanelE - 0x000000000016fd00 0x1 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fd00 AvHOverviewInputSignal::mouseReleased(vgui::MouseCode, vgui::Panel*) - *fill* 0x000000000016fd01 0xf - .text._ZN22AvHOverviewInputSignal12mouseWheeledEiPN4vgui5PanelE - 0x000000000016fd10 0x1 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fd10 AvHOverviewInputSignal::mouseWheeled(int, vgui::Panel*) - *fill* 0x000000000016fd11 0xf - .text._ZN22AvHOverviewInputSignal10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x000000000016fd20 0x1 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fd20 AvHOverviewInputSignal::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x000000000016fd21 0xf - .text._ZN22AvHOverviewInputSignal8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x000000000016fd30 0x1 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fd30 AvHOverviewInputSignal::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x000000000016fd31 0xf - .text._ZN22AvHOverviewInputSignal11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x000000000016fd40 0x1 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fd40 AvHOverviewInputSignal::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x000000000016fd41 0xf - .text._ZN22AvHOverviewInputSignal14keyFocusTickedEPN4vgui5PanelE - 0x000000000016fd50 0x1 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fd50 AvHOverviewInputSignal::keyFocusTicked(vgui::Panel*) - *fill* 0x000000000016fd51 0xf - .text._ZN22AvHOverviewInputSignal12mousePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x000000000016fd60 0x1e release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fd60 AvHOverviewInputSignal::mousePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x000000000016fd7e 0x2 - .text._ZN22AvHOverviewInputSignal18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x000000000016fd80 0x1e release/obj/hl1_client/mod/AvHOverviewControl.o - 0x000000000016fd80 AvHOverviewInputSignal::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x000000000016fd9e 0x2 - .text 0x000000000016fda0 0x3626 release/obj/hl1_client/mod/AvHOverviewMap.o - 0x000000000016fda0 AvHOverviewMap::AvHOverviewMap() - 0x000000000016fda0 AvHOverviewMap::AvHOverviewMap() - 0x000000000016fe50 AvHOverviewMap::Init() - 0x000000000016fec0 AvHOverviewMap::Clear() - 0x000000000016ff30 getIsStructure(int) - 0x000000000016ff80 getIsOnCommMinimap(int) - 0x000000000016ffe0 AvHOverviewMap::GetSpriteForEntity(DrawableEntity const&, int&, int&, int&, bool) - 0x0000000000170170 AvHOverviewMap::GetColorForEntity(DrawableEntity const&, float&, float&, float&) - 0x00000000001704f0 AvHOverviewMap::DrawMiniMapEntity(AvHOverviewMap::DrawInfo const&, DrawableEntity const&) - 0x0000000000170e70 AvHOverviewMap::GetHasData() const - 0x0000000000170e90 AvHOverviewMap::GetWorldPosFromMouse(AvHOverviewMap::DrawInfo const&, int, int, float&, float&) - 0x0000000000170ed0 AvHOverviewMap::KillOldAlerts(float) - 0x0000000000170f50 AvHOverviewMap::DrawMiniMap(AvHOverviewMap::DrawInfo const&) - 0x0000000000171340 AvHOverviewMap::WorldToMiniMapCoords(AvHOverviewMap::DrawInfo const&, float&, float&) - 0x0000000000171380 AvHOverviewMap::DrawAlerts(AvHOverviewMap::DrawInfo const&) - 0x0000000000171640 AvHOverviewMap::GetEntityAtWorldPosition(float, float, float) const - 0x00000000001716f0 AvHOverviewMap::SetMapExtents(std::string const&, AvHMapExtents const&) - 0x00000000001717b0 AvHOverviewMap::GetMapExtents(AvHMapExtents&) - 0x0000000000171860 AvHOverviewMap::SetUser3(AvHUser3) - 0x0000000000171870 AvHOverviewMap::SetWorldPosition(float, float) - 0x0000000000171890 AvHOverviewMap::GetWorldPosition(float&, float&) - 0x00000000001718b0 AvHOverviewMap::VidInit() - 0x00000000001718f0 AvHOverviewMap::AddAlert(float, float) - 0x0000000000171980 AvHOverviewMap::Draw(AvHOverviewMap::DrawInfo const&) - 0x0000000000172810 AvHOverviewMap::UpdateOrders(std::vector > const&, std::vector > const&) - 0x0000000000172fd0 AvHOverviewMap::UpdateDrawData(float) - 0x0000000000173340 AvHOverviewMap::Update(float) - *fill* 0x00000000001733c6 0xa - .text._ZNSt6vectorIN14AvHOverviewMap8MapAlertESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000001733d0 0x1fd release/obj/hl1_client/mod/AvHOverviewMap.o - 0x00000000001733d0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHOverviewMap::MapAlert const&) - *fill* 0x00000000001735cd 0x3 - .text._ZNSt6vectorI14DrawableEntitySaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000001735d0 0x249 release/obj/hl1_client/mod/AvHOverviewMap.o - 0x00000000001735d0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, DrawableEntity const&) - *fill* 0x0000000000173819 0x7 - .text._ZNSt6vectorIN14AvHOverviewMap8MapOrderESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x0000000000173820 0x1bd release/obj/hl1_client/mod/AvHOverviewMap.o - 0x0000000000173820 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHOverviewMap::MapOrder const&) - *fill* 0x00000000001739dd 0x3 - .text._ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIP14DrawableEntitySt6vectorIS2_SaIS2_EEEE16DrawingOrderSortEvT_T0_ - 0x00000000001739e0 0xbc release/obj/hl1_client/mod/AvHOverviewMap.o - 0x00000000001739e0 void std::__unguarded_linear_insert<__gnu_cxx::__normal_iterator > >, DrawingOrderSort>(__gnu_cxx::__normal_iterator > >, DrawingOrderSort) - *fill* 0x0000000000173a9c 0x4 - .text._ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIP14DrawableEntitySt6vectorIS2_SaIS2_EEEE16DrawingOrderSortEvT_S9_T0_ - 0x0000000000173aa0 0x106 release/obj/hl1_client/mod/AvHOverviewMap.o - 0x0000000000173aa0 void std::__insertion_sort<__gnu_cxx::__normal_iterator > >, DrawingOrderSort>(__gnu_cxx::__normal_iterator > >, __gnu_cxx::__normal_iterator > >, DrawingOrderSort) - *fill* 0x0000000000173ba6 0xa - .text._ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIP14DrawableEntitySt6vectorIS2_SaIS2_EEEEiS2_16DrawingOrderSortEvT_T0_SA_T1_T2_ - 0x0000000000173bb0 0x307 release/obj/hl1_client/mod/AvHOverviewMap.o - 0x0000000000173bb0 void std::__adjust_heap<__gnu_cxx::__normal_iterator > >, int, DrawableEntity, DrawingOrderSort>(__gnu_cxx::__normal_iterator > >, int, int, DrawableEntity, DrawingOrderSort) - *fill* 0x0000000000173eb7 0x9 - .text 0x0000000000173ec0 0x2046 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000173ec0 AvHParticleEditorHandler::cursorMoved(int, int, vgui::Panel*) - 0x0000000000173ed0 AvHParticleEditorHandler::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x0000000000173ee0 AvHParticleEditorHandler::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x0000000000173ef0 AvHParticleEditorHandler::mouseWheeled(int, vgui::Panel*) - 0x0000000000173f00 AvHGenVelToggleHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x0000000000173f20 AvHGenVelToggleHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x0000000000173f60 AvHGenVelParamNumHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x0000000000173f70 AvHGenVelParamNumHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x0000000000173f80 AvHSliderHandler::Init() - 0x0000000000173fc0 AvHSliderHandler::intChanged(int, vgui::Panel*) - 0x0000000000174060 AvHSizeHandler::GetTextFromValue(int) - 0x0000000000174100 AvHScaleHandler::GetTextFromValue(int) - 0x0000000000174190 AvHGenerationRateHandler::GetTextFromValue(int) - 0x0000000000174230 AvHParticleLifetimeHandler::GetTextFromValue(int) - 0x00000000001742c0 AvHParticleSystemLifetimeHandler::GetTextFromValue(int) - 0x0000000000174380 AvHMaxParticlesHandler::GetTextFromValue(int) - 0x0000000000174410 AvHGenVelParamNumHandler::GetTextFromValue(int) - 0x00000000001744e0 AvHSizeHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x0000000000174500 AvHSizeHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x0000000000174560 AvHScaleHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x0000000000174580 AvHScaleHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x00000000001745e0 AvHGenerationRateHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x0000000000174610 AvHGenerationRateHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x0000000000174660 AvHParticleLifetimeHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x0000000000174680 AvHParticleLifetimeHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x00000000001746e0 AvHParticleSystemLifetimeHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x0000000000174760 AvHMaxParticlesHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x0000000000174780 AvHMaxParticlesHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x00000000001747d0 AvHDrawModeHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x00000000001747f0 AvHDrawModeHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x0000000000174840 AvHGenVelParamsHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x00000000001748a0 AvHGenVelParamsHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x0000000000174910 AvHParticleSystemLifetimeHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x0000000000174950 AvHGenVelShapeHandler::ChangeTemplateFromValue(AvHParticleTemplate*, int) - 0x00000000001749c0 AvHGenVelToggleHandler::GetTextFromValue(int) - 0x0000000000174a10 AvHGenVelShapeHandler::GetTextFromValue(int) - 0x0000000000174b20 AvHDrawModeHandler::GetTextFromValue(int) - 0x0000000000174c80 AvHSliderHandler::Setup() - 0x0000000000174d00 AvHSliderHandler::GetValue(int&) - 0x0000000000174d80 AvHSliderHandler::SetValue(int) - 0x0000000000174e00 AvHGenVelParamsHandler::GetTextFromValue(int) - 0x0000000000174f60 AvHSliderHandler::SetText(int) - 0x0000000000175040 AvHSliderHandler::GetSliderDebugInfo() const - 0x00000000001751d0 AvHGenVelParamNumHandler::RecomputeDependencies(AvHParticleTemplate*) - 0x0000000000175240 AvHGenVelShapeHandler::InitFromTemplate(AvHParticleTemplate const*) - 0x0000000000175370 AvHGenVelToggleHandler::RecomputeDependencies(AvHParticleTemplate*) - 0x00000000001754f0 GetEdittedParticleTemplate() - 0x0000000000175510 AvHParticleEditorHandler::AvHParticleEditorHandler() - 0x0000000000175510 AvHParticleEditorHandler::AvHParticleEditorHandler() - 0x0000000000175520 AvHParticleEditorHandler::InitHandlers() - 0x0000000000175710 AvHParticleEditorHandler::GetEditIndex() - 0x0000000000175720 AvHParticleEditorHandler::GetInEditMode() - 0x0000000000175730 AvHParticleEditorHandler::SetEditIndex(unsigned int) - 0x0000000000175930 AvHParticleEditorHandler::Setup() - 0x0000000000175d90 AvHSliderHandler::AvHSliderHandler(std::string const&, std::string const&) - 0x0000000000175d90 AvHSliderHandler::AvHSliderHandler(std::string const&, std::string const&) - 0x0000000000175df0 AvHGenVelToggleHandler::GetGenVelMode() const - 0x0000000000175e00 AvHGenVelShapeHandler::GetUsingEntity() const - 0x0000000000175e10 AvHGenVelParamNumHandler::GetCurrentParamNum() const - 0x0000000000175e20 AvHParticleEditorHandler::ToggleEdit() - *fill* 0x0000000000175f06 0xa - .text._ZN24AvHParticleEditorHandler13cursorEnteredEPN4vgui5PanelE - 0x0000000000175f10 0x1 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000175f10 AvHParticleEditorHandler::cursorEntered(vgui::Panel*) - *fill* 0x0000000000175f11 0xf - .text._ZN24AvHParticleEditorHandler12cursorExitedEPN4vgui5PanelE - 0x0000000000175f20 0x1 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000175f20 AvHParticleEditorHandler::cursorExited(vgui::Panel*) - *fill* 0x0000000000175f21 0xf - .text._ZN24AvHParticleEditorHandler18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x0000000000175f30 0x1 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000175f30 AvHParticleEditorHandler::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x0000000000175f31 0xf - .text._ZN24AvHParticleEditorHandler10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000175f40 0x1 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000175f40 AvHParticleEditorHandler::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000175f41 0xf - .text._ZN24AvHParticleEditorHandler8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000175f50 0x1 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000175f50 AvHParticleEditorHandler::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000175f51 0xf - .text._ZN24AvHParticleEditorHandler11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x0000000000175f60 0x1 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000175f60 AvHParticleEditorHandler::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x0000000000175f61 0xf - .text._ZN24AvHParticleEditorHandler14keyFocusTickedEPN4vgui5PanelE - 0x0000000000175f70 0x1 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000175f70 AvHParticleEditorHandler::keyFocusTicked(vgui::Panel*) - *fill* 0x0000000000175f71 0xf - .text._ZN16AvHSliderHandler21RecomputeDependenciesEP19AvHParticleTemplate - 0x0000000000175f80 0x1 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000175f80 AvHSliderHandler::RecomputeDependencies(AvHParticleTemplate*) - *fill* 0x0000000000175f81 0xf - .text._ZN21AvHGenVelShapeHandlerD2Ev - 0x0000000000175f90 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000175f90 AvHGenVelShapeHandler::~AvHGenVelShapeHandler() - 0x0000000000175f90 AvHGenVelShapeHandler::~AvHGenVelShapeHandler() - *fill* 0x0000000000176039 0x7 - .text._ZN32AvHParticleSystemLifetimeHandlerD2Ev - 0x0000000000176040 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000176040 AvHParticleSystemLifetimeHandler::~AvHParticleSystemLifetimeHandler() - 0x0000000000176040 AvHParticleSystemLifetimeHandler::~AvHParticleSystemLifetimeHandler() - *fill* 0x00000000001760e9 0x7 - .text._ZN18AvHDrawModeHandlerD2Ev - 0x00000000001760f0 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x00000000001760f0 AvHDrawModeHandler::~AvHDrawModeHandler() - 0x00000000001760f0 AvHDrawModeHandler::~AvHDrawModeHandler() - *fill* 0x0000000000176199 0x7 - .text._ZN24AvHGenerationRateHandlerD2Ev - 0x00000000001761a0 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x00000000001761a0 AvHGenerationRateHandler::~AvHGenerationRateHandler() - 0x00000000001761a0 AvHGenerationRateHandler::~AvHGenerationRateHandler() - *fill* 0x0000000000176249 0x7 - .text._ZN15AvHScaleHandlerD2Ev - 0x0000000000176250 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000176250 AvHScaleHandler::~AvHScaleHandler() - 0x0000000000176250 AvHScaleHandler::~AvHScaleHandler() - *fill* 0x00000000001762f9 0x7 - .text._ZN22AvHGenVelParamsHandlerD2Ev - 0x0000000000176300 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000176300 AvHGenVelParamsHandler::~AvHGenVelParamsHandler() - 0x0000000000176300 AvHGenVelParamsHandler::~AvHGenVelParamsHandler() - *fill* 0x00000000001763a9 0x7 - .text._ZN24AvHGenVelParamNumHandlerD2Ev - 0x00000000001763b0 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x00000000001763b0 AvHGenVelParamNumHandler::~AvHGenVelParamNumHandler() - 0x00000000001763b0 AvHGenVelParamNumHandler::~AvHGenVelParamNumHandler() - *fill* 0x0000000000176459 0x7 - .text._ZN14AvHSizeHandlerD2Ev - 0x0000000000176460 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000176460 AvHSizeHandler::~AvHSizeHandler() - 0x0000000000176460 AvHSizeHandler::~AvHSizeHandler() - *fill* 0x0000000000176509 0x7 - .text._ZN26AvHParticleLifetimeHandlerD2Ev - 0x0000000000176510 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000176510 AvHParticleLifetimeHandler::~AvHParticleLifetimeHandler() - 0x0000000000176510 AvHParticleLifetimeHandler::~AvHParticleLifetimeHandler() - *fill* 0x00000000001765b9 0x7 - .text._ZN22AvHGenVelToggleHandlerD2Ev - 0x00000000001765c0 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x00000000001765c0 AvHGenVelToggleHandler::~AvHGenVelToggleHandler() - 0x00000000001765c0 AvHGenVelToggleHandler::~AvHGenVelToggleHandler() - *fill* 0x0000000000176669 0x7 - .text._ZN22AvHMaxParticlesHandlerD2Ev - 0x0000000000176670 0xa9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000176670 AvHMaxParticlesHandler::~AvHMaxParticlesHandler() - 0x0000000000176670 AvHMaxParticlesHandler::~AvHMaxParticlesHandler() - *fill* 0x0000000000176719 0x7 - .text 0x0000000000176720 0x97b release/obj/hl1_client/mod/AvHPieMenuHandler.o - 0x0000000000176720 AvHPieMenuHandler::cursorMoved(int, int, vgui::Panel*) - 0x0000000000176730 AvHPieMenuHandler::cursorExited(vgui::Panel*) - 0x0000000000176740 AvHPieMenuHandler::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x0000000000176750 AvHPieMenuHandler::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - 0x0000000000176760 AvHPieMenuHandler::mouseWheeled(int, vgui::Panel*) - 0x0000000000176770 AvHPieMenuHandler::keyPressed(vgui::KeyCode, vgui::Panel*) - 0x0000000000176780 AvHPieMenuHandler::keyTyped(vgui::KeyCode, vgui::Panel*) - 0x0000000000176790 AvHPieMenuHandler::keyReleased(vgui::KeyCode, vgui::Panel*) - 0x00000000001767a0 AvHPieMenuHandler::keyFocusTicked(vgui::Panel*) - 0x00000000001767b0 AvHPieMenuHandler::cursorEntered(vgui::Panel*) - 0x0000000000176960 AvHPieMenuHandler::GetIsPieMenuOpen() - 0x0000000000176970 AvHPieMenuHandler::GetActivePieMenu() - 0x00000000001769d0 AvHPieMenuHandler::InternalClosePieMenu() - 0x0000000000176a90 AvHPieMenuHandler::ClosePieMenu() - 0x0000000000176c00 AvHPieMenuHandler::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x0000000000176dd0 AvHPieMenuHandler::OpenPieMenu() - 0x0000000000176ee0 AvHPieMenuHandler::NodeCancelled() - 0x0000000000176fa0 AvHPieMenuHandler::NodeChosen(std::string const&, int) - 0x0000000000177040 AvHPieMenuHandler::NodeActivated(std::string const&) - 0x0000000000177050 AvHPieMenuHandler::GetPieMenuControl() - 0x0000000000177080 AvHPieMenuHandler::SetPieMenuControl(std::string const&) - *fill* 0x000000000017709b 0x5 - .text 0x00000000001770a0 0xaec release/obj/hl1_client/mod/AvHPlayerUpgrade.o - 0x00000000001770a0 AvHPlayerUpgrade::GetAlienMeleeDamageUpgrade(int, bool) - 0x0000000000177130 AvHPlayerUpgrade::GetAlienRangedDamageUpgrade(int) - 0x0000000000177160 AvHPlayerUpgrade::GetFocusDamageUpgrade(int) - 0x00000000001771a0 AvHPlayerUpgrade::GetArmorValue(int) - 0x00000000001771c0 AvHPlayerUpgrade::GetArmorAbsorption(AvHUser3, int, int) - 0x0000000000177230 AvHPlayerUpgrade::GetMaxHealth(int, AvHUser3, int) - 0x0000000000177250 AvHPlayerUpgrade::GetMaxArmorLevel(int, AvHUser3) - 0x00000000001774d0 AvHPlayerUpgrade::GetArmorUpgrade(AvHUser3, int, float*) - 0x0000000000177660 AvHPlayerUpgrade::GetWeaponUpgrade(int, int, float*, int*, float*) - 0x0000000000177790 AvHPlayerUpgrade::GetSilenceVolumeLevel(AvHUser3, int) - 0x00000000001777e0 AvHPlayerUpgrade::CalculateDamageLessArmor(AvHUser3, int, float, float&, int, int) - 0x0000000000177970 AvHPlayerUpgrade::GetExperienceForLevel(int) - 0x00000000001779c0 AvHPlayerUpgrade::GetPlayerLevel(float) - 0x0000000000177a40 AvHPlayerUpgrade::GetPercentToNextLevel(float) - *fill* 0x0000000000177b8c 0x4 - .text 0x0000000000177b90 0x1 release/obj/hl1_client/mod/AvHScriptClient.o - 0x0000000000177b90 AvHScriptInstance::InitClient() - *fill* 0x0000000000177b91 0xf - .text 0x0000000000177ba0 0x13bf release/obj/hl1_client/mod/AvHScriptManager.o - 0x0000000000177ba0 AvHScriptInstance::AvHScriptInstance(std::string) - 0x0000000000177ba0 AvHScriptInstance::AvHScriptInstance(std::string) - 0x0000000000177be0 AvHScriptInstance::CallbacksPending() const - 0x0000000000177c10 AvHScriptInstance::CallSimpleFunction(std::string const&) - 0x0000000000177c20 AvHScriptInstance::Cleanup() - 0x0000000000177c30 AvHScriptInstance::Init() - 0x0000000000177c40 AvHScriptInstance::Reset() - 0x0000000000177dd0 AvHScriptInstance::Run() - 0x0000000000177de0 AvHScriptManager::Instance() - 0x0000000000177e20 AvHScriptManager::Reset() - 0x0000000000178260 AvHScriptManager::ClientUpdate(float) - 0x0000000000178270 AvHScriptManager::DrawNormal() - 0x0000000000178360 AvHScriptManager::DrawTransparent() - 0x0000000000178450 AvHScriptManager::DrawNoZBuffering() - 0x0000000000178540 AvHScriptManager::GetClientMove(int&, int&) - 0x0000000000178550 AvHScriptInstance::Update(float) - 0x00000000001787d0 AvHScriptInstance::AddCallback(std::string&, float) - 0x00000000001788b0 AvHScriptManager::Update(float) - 0x0000000000178b50 AvHScriptManager::RunScript(std::string const&) - *fill* 0x0000000000178f5f 0x1 - .text._ZNSt6vectorISt4pairISsfESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x0000000000178f60 0x312 release/obj/hl1_client/mod/AvHScriptManager.o - 0x0000000000178f60 std::vector, std::allocator > >::_M_insert_aux(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&) - *fill* 0x0000000000179272 0xe - .text._ZNSt6vectorISt4pairISsfESaIS1_EEaSERKS3_ - 0x0000000000179280 0x31c release/obj/hl1_client/mod/AvHScriptManager.o - 0x0000000000179280 std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&) - *fill* 0x000000000017959c 0x4 - .text._ZNSt6vectorI17AvHScriptInstanceSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000001795a0 0xda7 release/obj/hl1_client/mod/AvHScriptManager.o - 0x00000000001795a0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHScriptInstance const&) - .text 0x000000000017a347 0x0 release/obj/hl1_client/mod/AvHScriptShared.o - *fill* 0x000000000017a347 0x9 - .text 0x000000000017a350 0x568 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x000000000017a350 AvHScrollHandler::keyPressed(vgui::KeyCode, vgui::Panel*) - 0x000000000017a360 AvHScrollHandler::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x000000000017a390 AvHScrollHandler::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x000000000017a3c0 AvHScrollHandler::mouseWheeled(int, vgui::Panel*) - 0x000000000017a5f0 AvHScrollHandler::cursorMoved(int, int, vgui::Panel*) - 0x000000000017a620 AvHScrollHandler::AvHScrollHandler() - 0x000000000017a620 AvHScrollHandler::AvHScrollHandler() - 0x000000000017a640 AvHScrollHandler::GetMouseOneDown() const - 0x000000000017a650 AvHScrollHandler::GetMouseTwoDown() const - 0x000000000017a660 AvHScrollHandler::GetMouseX() const - 0x000000000017a670 AvHScrollHandler::GetMouseY() const - 0x000000000017a680 AvHScrollHandler::GetXScroll() const - 0x000000000017a6b0 AvHScrollHandler::GetYScroll() const - 0x000000000017a6e0 AvHScrollHandler::GetZScroll() const - 0x000000000017a6f0 AvHScrollHandler::ClearScrollHeight() - 0x000000000017a700 AvHScrollHandler::KeyScrollLeft() - 0x000000000017a730 AvHScrollHandler::KeyScrollRight() - 0x000000000017a760 AvHScrollHandler::KeyScrollUp() - 0x000000000017a790 AvHScrollHandler::KeyScrollDown() - 0x000000000017a7c0 AvHScrollHandler::KeyScrollUpStop() - 0x000000000017a7e0 AvHScrollHandler::KeyScrollDownStop() - 0x000000000017a800 AvHScrollHandler::KeyScrollLeftStop() - 0x000000000017a820 AvHScrollHandler::KeyScrollRightStop() - 0x000000000017a840 AvHScrollHandler::ScrollLeft() - 0x000000000017a850 AvHScrollHandler::ScrollRight() - 0x000000000017a860 AvHScrollHandler::ScrollUp() - 0x000000000017a870 AvHScrollHandler::ScrollDown() - 0x000000000017a880 AvHScrollHandler::ScrollHeightUp() - 0x000000000017a890 AvHScrollHandler::ScrollHeightDown() - 0x000000000017a8a0 AvHScrollHandler::StopScroll() - *fill* 0x000000000017a8b8 0x8 - .text._ZN16AvHScrollHandler13cursorEnteredEPN4vgui5PanelE - 0x000000000017a8c0 0x1 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x000000000017a8c0 AvHScrollHandler::cursorEntered(vgui::Panel*) - *fill* 0x000000000017a8c1 0xf - .text._ZN16AvHScrollHandler12cursorExitedEPN4vgui5PanelE - 0x000000000017a8d0 0x1 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x000000000017a8d0 AvHScrollHandler::cursorExited(vgui::Panel*) - *fill* 0x000000000017a8d1 0xf - .text._ZN16AvHScrollHandler18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x000000000017a8e0 0x1 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x000000000017a8e0 AvHScrollHandler::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x000000000017a8e1 0xf - .text._ZN16AvHScrollHandler8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x000000000017a8f0 0x1 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x000000000017a8f0 AvHScrollHandler::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x000000000017a8f1 0xf - .text._ZN16AvHScrollHandler11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x000000000017a900 0x1 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x000000000017a900 AvHScrollHandler::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x000000000017a901 0xf - .text._ZN16AvHScrollHandler14keyFocusTickedEPN4vgui5PanelE - 0x000000000017a910 0x1 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x000000000017a910 AvHScrollHandler::keyFocusTicked(vgui::Panel*) - *fill* 0x000000000017a911 0xf - .text 0x000000000017a920 0x75 release/obj/hl1_client/mod/AvHScrollPanel.o - 0x000000000017a920 AvHUIScrollPanel::GetComponentPointer() - 0x000000000017a930 AvHUIScrollPanel::AllocateComponent(TRDescription const&) - 0x000000000017a960 AvHScrollPanel::AvHScrollPanel() - 0x000000000017a960 AvHScrollPanel::AvHScrollPanel() - 0x000000000017a980 AvHScrollPanel::paint() - 0x000000000017a990 AvHScrollPanel::paintBackground() - *fill* 0x000000000017a995 0xb - .text._ZNK14UIColoredPanel7GetTypeEv - 0x000000000017a9a0 0x8 release/obj/hl1_client/mod/AvHScrollPanel.o - 0x000000000017a9a0 UIColoredPanel::GetType() const - *fill* 0x000000000017a9a8 0x8 - .text._ZN16AvHUIScrollPanelD2Ev - 0x000000000017a9b0 0x45 release/obj/hl1_client/mod/AvHScrollPanel.o - 0x000000000017a9b0 AvHUIScrollPanel::~AvHUIScrollPanel() - 0x000000000017a9b0 AvHUIScrollPanel::~AvHUIScrollPanel() - *fill* 0x000000000017a9f5 0xb - .text._ZN16AvHUIScrollPanelD0Ev - 0x000000000017aa00 0x4d release/obj/hl1_client/mod/AvHScrollPanel.o - 0x000000000017aa00 AvHUIScrollPanel::~AvHUIScrollPanel() - *fill* 0x000000000017aa4d 0x3 - .text 0x000000000017aa50 0x245 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - 0x000000000017aa50 AvHPlayerMovementInfo::AvHPlayerMovementInfo() - 0x000000000017aa50 AvHPlayerMovementInfo::AvHPlayerMovementInfo() - 0x000000000017aa60 AvHSharedMovementInfo::Instance() - 0x000000000017aab0 AvHSharedMovementInfo::GetBlinkStartInfo(int, float*, float*, float&) - 0x000000000017aba0 AvHSharedMovementInfo::SetBlinkStartInfo(int, float const*, float const*, float) - *fill* 0x000000000017ac95 0xb - .text._ZNSt8_Rb_treeIiSt4pairIKi21AvHPlayerMovementInfoESt10_Select1stIS3_ESt4lessIiESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x000000000017aca0 0x2bb release/obj/hl1_client/mod/AvHSharedMovementInfo.o - 0x000000000017aca0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x000000000017af5b 0x5 - .text 0x000000000017af60 0x5321 release/obj/hl1_client/mod/AvHSharedUtil.o - 0x000000000017af60 AvHSHUGetClassNameFromUser3(AvHUser3) - 0x000000000017af80 AvHSHUGetEntityLocation(int, Vector&) - 0x000000000017b080 AvHSHUGetEntityIUser3(int, AvHUser3&) - 0x000000000017b0e0 AvHSHUGetEntityIUser4(int, int&) - 0x000000000017b120 AvHSHUGetRealLocation(Vector const&, Vector const&, Vector const&) - 0x000000000017b1e0 AvHSHUGetDrawRangeForUser3(AvHUser3) - 0x000000000017b200 AvHSHUGetDrawRangeForMessageID(AvHMessageID) - 0x000000000017b230 AvHSHUGetDrawRingsForUser3(AvHUser3, float&) - 0x000000000017b270 AvHSHUGetIsDroppableOnRTs(AvHMessageID) - 0x000000000017b2a0 AvHSHUGetIsMarineStructure(AvHMessageID) - 0x000000000017b2c0 AvHSHUGetIsMarineStructure(AvHUser3) - 0x000000000017b2e0 AvHSHUGetBuildTechClassName(AvHMessageID, char*&) - 0x000000000017b500 AvHSHUGetResearchTechName(AvHMessageID, char*&) - 0x000000000017b650 AvHSHUGetCenterPositionForGroup(int, float*, float*) - 0x000000000017b6a0 AvHSHUGetIsBuilding(AvHMessageID) - 0x000000000017b6d0 AvHSHUGetIsBuildTech(AvHMessageID) - 0x000000000017b700 AvHSHUGetIsWeaponFocusable(AvHWeaponID) - 0x000000000017b720 AvHSHUGetDoesTechCostEnergy(AvHMessageID) - 0x000000000017b730 AvHSHUGetIsCombatModeTech(AvHMessageID) - 0x000000000017b750 AvHSHUGetIsResearchTech(AvHMessageID) - 0x000000000017b780 AvHSHUGetIsGroupMessage(AvHMessageID) - 0x000000000017b790 AvHSHUGetSizeForTech(AvHMessageID, Vector&, Vector&, bool) - 0x000000000017ba10 AvHSHUGetSizeForPlayerUser3(AvHUser3, Vector&, Vector&, bool) - 0x000000000017bb20 AvHSHUGetSizeForUser3(AvHUser3, Vector&, Vector&) - 0x000000000017be40 AvHSHUUser3ToMessageID(AvHUser3, AvHMessageID&) - 0x000000000017be70 AvHSHUMessageIDToUser3(AvHMessageID, AvHUser3&) - 0x000000000017bea0 AvHSHUGetTime() - 0x000000000017beb0 AvHSHUGetBuildTechModelName(AvHMessageID) - 0x000000000017bed0 AvHSHUGetBuildTechRange(AvHMessageID, float&) - 0x000000000017bee0 AvHSHUTraceLineIsAreaFree(Vector&, Vector&, edict_s*, bool) - 0x000000000017bef0 AvHTraceLineAgainstWorld(Vector&, Vector&) - 0x000000000017c150 AvHSHUGetCanBeBuiltOnPlayers(AvHMessageID) - 0x000000000017c180 AvHSHUGetPointContents(Vector) - 0x000000000017c1f0 AvHSHUGetIsVolumeContentNonsolid(Vector, Vector&, Vector&, edict_s*, bool) - 0x000000000017c320 AvHSHUMakeViewFriendlyKillerName(std::string&) - 0x000000000017c4d0 AvHSHUGetCanDropItem(Vector&, Vector&, Vector&, float, int, bool) - 0x000000000017c770 AvHSHUGetMapExtents() - 0x000000000017c790 AvHSHUClientGetFirstNonSolidPoint(Vector const&, Vector const&, Vector&) - 0x000000000017c990 AvHSHUGetEntityAtRay(Vector const&, Vector const&, int&) - 0x000000000017cb60 AvHSHUClientTraceWaypoint(Vector const&, Vector const&, Vector*, WaypointReturnCode*) - 0x000000000017d420 AvHSUClientTraceTangible(Vector const&, Vector const&, int&, Vector&, AvHTeamNumber&, bool&, int&, int&) - 0x000000000017d810 AvHSHUGetFirstNonSolidPoint(float*, float*, float*) - 0x000000000017da40 AvHSHUGetFirstNonSolidPoint(Vector const&, Vector const&, Vector&) - 0x000000000017dc40 AvHSHUTraceTangible(Vector const&, Vector const&, int&, Vector&, AvHTeamNumber&, bool&, int&, int&) - 0x000000000017dc60 AvHSHUTraceTangible(Vector const&, Vector const&, int*, Vector*, AvHTeamNumber*, bool*) - 0x000000000017ddb0 AvHSHUTraceVerticalTangible(float, float, float, int&, float&) - 0x000000000017de70 AvHSHUGetCommonSoundName(bool, WeaponHUDSound) - 0x000000000017def0 AvHSHUGetBuildResearchState(int, int, float, bool&, bool&, float&) - 0x000000000017e080 AvHSHUSetEnergyState(int, float&, float) - 0x000000000017e0a0 AvHSHUSetBuildResearchState(int, int, float&, bool, float) - 0x000000000017e0f0 AvHSHUBuildExecutableScriptName(std::string const&, std::string const&) - 0x000000000017e530 AvHSHUGetTimeDateString() - 0x000000000017e650 AvHSHUGetNameOfLocation(std::vector > const&, Vector, std::string&) - 0x000000000017e710 AvHSHUGetForceHUDSound(AvHHUDSound) - 0x000000000017e740 AvHSHUGetEntities(int, std::vector >&) - 0x000000000017e8a0 AvHSHUGetMinBuildRadiusViolations(AvHMessageID, Vector&, std::vector >&) - 0x000000000017ed90 AvHSHUGetBuildRegions(AvHMessageID, std::vector >&, std::vector >&, float&, bool&) - 0x000000000017f0f0 AvHSHUGetAreSpecialBuildingRequirementsMet(AvHMessageID, Vector&) - 0x000000000017f6a0 AvHSHUGetIsSiteValidForBuild(AvHMessageID, Vector*, int) - 0x000000000017fbb0 AvHSHUTraceAndGetIsSiteValidForBuild(AvHMessageID, Vector const&, Vector const&, Vector*) - 0x000000000017fcf0 AvHSHUGetEntitiesBlocking(Vector&, Vector&, Vector&, edict_s*, bool) - 0x0000000000180100 AvHSHUGetIsAreaFree(Vector, Vector&, Vector&, edict_s*, bool) - *fill* 0x0000000000180281 0xf - .text._ZNSt6vectorI8AvHUser3SaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000180290 0x195 release/obj/hl1_client/mod/AvHSharedUtil.o - 0x0000000000180290 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHUser3 const&) - *fill* 0x0000000000180425 0xb - .text._ZNSt6vectorISt4pairIi6VectorESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - 0x0000000000180430 0x27c release/obj/hl1_client/mod/AvHSharedUtil.o - 0x0000000000180430 std::vector, std::allocator > >::_M_insert_aux(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&) - *fill* 0x00000000001806ac 0x4 - .text 0x00000000001806b0 0x11d7 release/obj/hl1_client/mod/AvHSpecials.o - 0x00000000001806b0 InitializeBuildable(int&, int&, float&, int) - 0x00000000001806d0 ClearUpgradeMask(int*, AvHUpgradeMask) - 0x00000000001806e0 GetHasUpgrade(int, AvHUpgradeMask) - 0x00000000001806f0 SetUpgradeMask(int*, AvHUpgradeMask, bool) - 0x0000000000180720 ProcessGenericUpgrade(int&, AvHMessageID, bool) - 0x00000000001809d0 AvHGetAlienUpgradeCategory(AvHMessageID, AvHAlienUpgradeCategory&) - 0x0000000000180a30 AvHGetAlienUpgradeCategoryFromMask(AvHUpgradeMask, AvHAlienUpgradeCategory&) - 0x0000000000180ac0 AvHGetAlienUpgradeLevel(int, AvHUpgradeMask) - 0x0000000000180b70 AvHGetAlienUpgradeMask(AvHMessageID, AvHUpgradeMask&) - 0x0000000000180c30 AvHGetHasFreeUpgradeCategory(AvHAlienUpgradeCategory, std::vector > const&, int, int*) - 0x0000000000180d70 AvHGetHasUpgradeChoiceInCategory(AvHAlienUpgradeCategory, std::vector > const&, int) - 0x0000000000180e60 AvHGetIsAlien(int) - 0x0000000000180e80 AvHGetNumUpgradesInCategory(AvHAlienUpgradeCategory, int) - 0x0000000000180f40 AvHGetNumUpgradesInCategoryInList(std::vector > const&, AvHAlienUpgradeCategory) - 0x0000000000180f80 AvHAddHigherLevelUpgrades(std::vector > const&, int&) - 0x0000000000181120 AvHRemoveExcessUpgrades(std::vector > const&, int&) - 0x0000000000181310 AvHAddUpgradeInCategory(AvHAlienUpgradeCategory, int&) - 0x0000000000181420 AvHRemoveUpgradeInCategory(AvHAlienUpgradeCategory, int&) - 0x0000000000181540 AvHRemoveUpgradeCategory(AvHAlienUpgradeCategory, std::vector >&) - 0x0000000000181680 AvHRemoveIrrelevantUpgrades(std::vector >&) - 0x0000000000181700 AvHGetTechSlotEnabled(int, int) - 0x00000000001817a0 AvHSetTechSlotEnabledState(int, int*, bool) - *fill* 0x0000000000181887 0x9 - .text 0x0000000000181890 0x1163 release/obj/hl1_client/mod/AvHSpriteAPI.o - 0x0000000000181890 AvHSpriteBeginFrame() - 0x0000000000181b50 AvHSpriteEndFrame() - 0x0000000000181b90 AvHSpriteSetViewport(float, float, float, float) - 0x0000000000181c00 AvHSpriteClearViewport() - 0x0000000000181c20 AvHSpriteEnableClippingRect(bool) - 0x0000000000181c30 AvHSpriteSetClippingRect(float, float, float, float) - 0x0000000000181c70 AvHSpriteSetRenderMode(int) - 0x0000000000181c80 AvHSpriteSetDrawMode(AvHSpriteDrawMode) - 0x0000000000181c90 AvHSpriteSetRotation(float, float, float) - 0x0000000000181d20 AvHSpriteSetColor(float, float, float, float) - 0x0000000000181d50 AvHSpriteSetDepthOffset(float) - 0x0000000000181d60 ClipPolygon(Vertex*, int&, float, float, float) - 0x00000000001820a0 AvHSpriteDraw(int, int, float, float, float, float, float, float, float, float) - 0x0000000000182810 AvHSpriteDrawTiles(int, int, int, float, float, float, float, float, float, float, float) - 0x00000000001829d0 AvHSpriteEnableVGUI(bool) - 0x00000000001829e0 AvHSpriteSetVGUIOffset(int, int) - *fill* 0x00000000001829f3 0xd - .text 0x0000000000182a00 0x8fc release/obj/hl1_client/mod/AvHTeamHierarchy.o - 0x0000000000182a00 AvHTeamHierarchy::paintBackground() - 0x0000000000182a10 AvHUITeamHierarchy::GetComponentPointer() - 0x0000000000182a20 AvHUITeamHierarchy::GetType() const - 0x0000000000182a30 AvHUITeamHierarchy::AllocateComponent(TRDescription const&) - 0x0000000000182b20 AvHUITeamHierarchy::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x0000000000182c50 AvHUITeamHierarchy::~AvHUITeamHierarchy() - 0x0000000000182c50 AvHUITeamHierarchy::~AvHUITeamHierarchy() - 0x0000000000182d10 AvHUITeamHierarchy::~AvHUITeamHierarchy() - 0x0000000000182de0 AvHTeamHierarchy::AvHTeamHierarchy(int, int) - 0x0000000000182de0 AvHTeamHierarchy::AvHTeamHierarchy(int, int) - 0x0000000000182e50 AvHTeamHierarchy::SetFullScreen(bool) - 0x0000000000182e60 AvHTeamHierarchy::GetDrawInfo(AvHOverviewMap::DrawInfo&) - 0x0000000000183040 AvHTeamHierarchy::GetWorldPosFromMouse(int, int, float&, float&) - 0x00000000001830a0 AvHTeamHierarchy::paint() - 0x0000000000183240 AvHUITeamHierarchy::AvHUITeamHierarchy() - 0x0000000000183240 AvHUITeamHierarchy::AvHUITeamHierarchy() - *fill* 0x00000000001832fc 0x4 - .text 0x0000000000183300 0x8dd release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000183300 AvHUITechImpulsePanel::GetComponentPointer() - 0x0000000000183310 AvHUITechImpulsePanel::AllocateComponent(TRDescription const&) - 0x0000000000183480 AvHUITechImpulsePanel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x0000000000183650 AvHTechImpulsePanel::paintBackground() - 0x0000000000183780 AvHTechImpulsePanel::paint() - 0x0000000000183930 AvHTechImpulsePanel::AvHTechImpulsePanel() - 0x0000000000183930 AvHTechImpulsePanel::AvHTechImpulsePanel() - 0x00000000001839e0 AvHTechImpulsePanel::AvHTechImpulsePanel(int, int, int, int) - 0x00000000001839e0 AvHTechImpulsePanel::AvHTechImpulsePanel(int, int, int, int) - 0x0000000000183a50 AvHTechImpulsePanel::GetMessageID() const - 0x0000000000183a60 AvHTechImpulsePanel::SetDrawNumberRange(int) - 0x0000000000183a70 AvHTechImpulsePanel::SetMessageID(AvHMessageID) - 0x0000000000183a80 AvHTechImpulsePanel::SetVisualNumber(int) - 0x0000000000183a90 AvHTechImpulsePanel::GetTextExtents(int&, int&) - 0x0000000000183b60 AvHTechImpulsePanel::setFont(vgui::Scheme::SchemeFont) - 0x0000000000183ba0 AvHTechImpulsePanel::setFont(vgui::Font*) - *fill* 0x0000000000183bdd 0x3 - .text._ZNK7UILabel7GetTypeEv - 0x0000000000183be0 0x8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000183be0 UILabel::GetType() const - *fill* 0x0000000000183be8 0x8 - .text._ZN21AvHUITechImpulsePanelD2Ev - 0x0000000000183bf0 0x45 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000183bf0 AvHUITechImpulsePanel::~AvHUITechImpulsePanel() - 0x0000000000183bf0 AvHUITechImpulsePanel::~AvHUITechImpulsePanel() - *fill* 0x0000000000183c35 0xb - .text._ZN21AvHUITechImpulsePanelD0Ev - 0x0000000000183c40 0x4d release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000183c40 AvHUITechImpulsePanel::~AvHUITechImpulsePanel() - *fill* 0x0000000000183c8d 0x3 - .text._ZN13FakeTextImage7setFontEN4vgui6Scheme10SchemeFontE - 0x0000000000183c90 0x5 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000183c90 FakeTextImage::setFont(vgui::Scheme::SchemeFont) - *fill* 0x0000000000183c95 0xb - .text._ZN13FakeTextImage7setFontEPN4vgui4FontE - 0x0000000000183ca0 0x5 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000183ca0 FakeTextImage::setFont(vgui::Font*) - *fill* 0x0000000000183ca5 0xb - .text 0x0000000000183cb0 0x40c release/obj/hl1_client/mod/AvHTechNode.o - 0x0000000000183cb0 AvHTechNode::~AvHTechNode() - 0x0000000000183cb0 AvHTechNode::~AvHTechNode() - 0x0000000000183cc0 AvHTechNode::swap(AvHTechNode&) - 0x0000000000183d40 AvHTechNode::operator==(AvHTechNode const&) const - 0x0000000000183da0 AvHTechNode::~AvHTechNode() - 0x0000000000183db0 AvHTechNode::clone() const - 0x0000000000183e10 AvHTechNode::AvHTechNode(AvHMessageID) - 0x0000000000183e10 AvHTechNode::AvHTechNode(AvHMessageID) - 0x0000000000183e60 AvHTechNode::AvHTechNode(AvHTechNode const&) - 0x0000000000183e60 AvHTechNode::AvHTechNode(AvHTechNode const&) - 0x0000000000183eb0 AvHTechNode::AvHTechNode(AvHMessageID, AvHTechID, AvHTechID, AvHTechID, int, int, bool) - 0x0000000000183eb0 AvHTechNode::AvHTechNode(AvHMessageID, AvHTechID, AvHTechID, AvHTechID, int, int, bool) - 0x0000000000183f10 AvHTechNode::getMessageID() const - 0x0000000000183f20 AvHTechNode::getTechID() const - 0x0000000000183f30 AvHTechNode::getPrereqTechID1() const - 0x0000000000183f40 AvHTechNode::getPrereqTechID2() const - 0x0000000000183f50 AvHTechNode::getBuildTime() const - 0x0000000000183f60 AvHTechNode::getCost() const - 0x0000000000183f70 AvHTechNode::getIsResearchable() const - 0x0000000000183f80 AvHTechNode::getIsResearched() const - 0x0000000000183f90 AvHTechNode::getAllowMultiples() const - 0x0000000000183fa0 AvHTechNode::setTechID(AvHTechID) - 0x0000000000183fb0 AvHTechNode::setPrereqTechID1(AvHTechID) - 0x0000000000183fc0 AvHTechNode::setPrereqTechID2(AvHTechID) - 0x0000000000183fd0 AvHTechNode::setBuildTime(int) - 0x0000000000183fe0 AvHTechNode::setCost(int) - 0x0000000000183ff0 AvHTechNode::setResearchable(bool) - 0x0000000000184000 AvHTechNode::setResearchState(bool) - 0x0000000000184020 AvHTechNode::operator!=(AvHTechNode const&) const - 0x0000000000184040 AvHTechNode::operator=(AvHTechNode const&) - 0x00000000001840b0 AvHTechNode::setAllowMultiples(bool) - *fill* 0x00000000001840bc 0x4 - .text 0x00000000001840c0 0x4d4 release/obj/hl1_client/mod/AvHTechSlotManager.o - 0x00000000001840c0 AvHTechSlots::AvHTechSlots() - 0x00000000001840c0 AvHTechSlots::AvHTechSlots() - 0x00000000001841b0 AvHTechSlots::AvHTechSlots(AvHUser3, AvHMessageID, AvHMessageID, AvHMessageID, AvHMessageID, AvHMessageID, AvHMessageID, AvHMessageID, AvHMessageID, bool) - 0x00000000001841b0 AvHTechSlots::AvHTechSlots(AvHUser3, AvHMessageID, AvHMessageID, AvHMessageID, AvHMessageID, AvHMessageID, AvHMessageID, AvHMessageID, AvHMessageID, bool) - 0x0000000000184200 AvHTechSlots::operator==(AvHTechSlots const&) const - 0x0000000000184240 AvHTechSlots::operator!=(AvHTechSlots const&) const - 0x0000000000184280 AvHTechSlots::operator=(AvHTechSlots const&) - 0x0000000000184340 AvHTechSlotManager::Clear() - 0x0000000000184350 AvHTechSlotManager::GetTechSlotList() const - 0x0000000000184360 AvHTechSlotManager::GetTechSlotList() - 0x0000000000184370 AvHTechSlotManager::GetTechSlotList(AvHUser3, AvHTechSlots&) const - 0x0000000000184430 AvHTechSlotManager::AddTechSlots(AvHTechSlots) - *fill* 0x0000000000184594 0xc - .text._ZNSt6vectorI12AvHTechSlotsSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000001845a0 0x33e release/obj/hl1_client/mod/AvHTechSlotManager.o - 0x00000000001845a0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHTechSlots const&) - *fill* 0x00000000001848de 0x2 - .text 0x00000000001848e0 0x1fb1 release/obj/hl1_client/mod/AvHTechTree.o - 0x00000000001848e0 AvHTechTree::AvHTechTree() - 0x00000000001848e0 AvHTechTree::AvHTechTree() - 0x0000000000184940 AvHTechTree::Init() - 0x0000000000184950 AvHTechTree::GetNode(AvHMessageID) - 0x00000000001849b0 AvHTechTree::GetNode(AvHMessageID) const - 0x0000000000184a10 AvHTechTree::GetSize() const - 0x0000000000184a20 AvHTechTree::GetAllowMultiples(AvHMessageID) const - 0x0000000000184a80 AvHTechTree::GetIsMessageInTechTree(AvHMessageID) const - 0x0000000000184ae0 AvHTechTree::GetTechForMessage(AvHMessageID, AvHTechID&) const - 0x0000000000184b50 AvHTechTree::GetPrequisitesForMessage(AvHMessageID, AvHTechID&, AvHTechID&) const - 0x0000000000184bd0 AvHTechTree::GetResearchInfo(AvHMessageID, bool&, int&, float&) const - 0x0000000000184c80 AvHTechTree::SetIsResearchable(AvHMessageID, bool) - 0x0000000000184cf0 AvHTechTree::SetResearchDone(AvHMessageID, bool) - 0x0000000000184d60 AvHTechTree::operator!=(AvHTechTree const&) const - 0x0000000000184e10 AvHTechTree::operator==(AvHTechTree const&) const - 0x0000000000184ec0 AvHTechTree::RemoveNode(AvHMessageID) - 0x00000000001850d0 AvHTechTree::Clear() - 0x0000000000185170 AvHTechTree::~AvHTechTree() - 0x0000000000185170 AvHTechTree::~AvHTechTree() - 0x0000000000185230 AvHTechTree::~AvHTechTree() - 0x00000000001852f0 AvHTechTree::GetDelta(AvHTechTree const&, std::vector >&) const - 0x0000000000185540 AvHTechTree::GetResearchNodesDependentOn(AvHTechID, std::map, std::allocator > >&) const - 0x0000000000185670 AvHTechTree::InsertNode(AvHTechNode const*) - 0x0000000000185710 AvHTechTree::AvHTechTree(AvHTechTree const&) - 0x0000000000185710 AvHTechTree::AvHTechTree(AvHTechTree const&) - 0x0000000000185820 AvHTechTree::swap(AvHTechTree&) - 0x0000000000185b10 AvHTechTree::operator=(AvHTechTree const&) - 0x0000000000185c00 AvHTechTree::GetNodeByTech(AvHTechID) - 0x0000000000185d10 AvHTechTree::GetNodeByTech(AvHTechID) const - 0x0000000000185e20 AvHTechTree::GetIsMessageAvailable(AvHMessageID) const - 0x0000000000185f20 AvHTechTree::GetIsMessageAvailableForSelection(AvHMessageID, std::vector > const&) const - 0x0000000000186020 AvHTechTree::SetFirstNodeWithTechResearchState(AvHTechID, bool) - 0x0000000000186140 AvHTechTree::TriggerRemoveTech(AvHTechID) - 0x0000000000186250 AvHTechTree::TriggerAddTech(AvHTechID) - 0x0000000000186360 AvHTechTree::GetMessageForTech(AvHTechID, AvHMessageID&) const - 0x0000000000186480 AvHTechTree::GetIsTechResearched(AvHTechID) const - 0x0000000000186590 AvHTechTree::GetNextMessageNeededFor(AvHMessageID) const - *fill* 0x0000000000186891 0xf - .text._ZNSt8_Rb_treeI12AvHMessageIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE8_M_eraseEPSt13_Rb_tree_nodeIS5_E - 0x00000000001868a0 0x1aa release/obj/hl1_client/mod/AvHTechTree.o - 0x00000000001868a0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x0000000000186a4a 0x6 - .text._ZNSt8_Rb_treeI9AvHTechIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE8_M_eraseEPSt13_Rb_tree_nodeIS5_E - 0x0000000000186a50 0x1aa release/obj/hl1_client/mod/AvHTechTree.o - 0x0000000000186a50 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x0000000000186bfa 0x6 - .text._ZNSt6vectorIPK11AvHTechNodeSaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - 0x0000000000186c00 0x195 release/obj/hl1_client/mod/AvHTechTree.o - 0x0000000000186c00 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHTechNode const* const&) - *fill* 0x0000000000186d95 0xb - .text._ZNSt6vectorI12AvHMessageIDSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000186da0 0x195 release/obj/hl1_client/mod/AvHTechTree.o - 0x0000000000186da0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHMessageID const&) - *fill* 0x0000000000186f35 0xb - .text._ZNSt8_Rb_treeI12AvHMessageIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS5_ERKS5_ - 0x0000000000186f40 0x26f release/obj/hl1_client/mod/AvHTechTree.o - 0x0000000000186f40 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x00000000001871af 0x1 - .text._ZNSt8_Rb_treeI12AvHMessageIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE7_M_copyEPKSt13_Rb_tree_nodeIS5_EPSD_ - 0x00000000001871b0 0xd8 release/obj/hl1_client/mod/AvHTechTree.o - 0x00000000001871b0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy(std::_Rb_tree_node > const*, std::_Rb_tree_node >*) - *fill* 0x0000000000187288 0x8 - .text._ZNSt8_Rb_treeI9AvHTechIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE7_M_copyEPKSt13_Rb_tree_nodeIS5_EPSD_ - 0x0000000000187290 0xd8 release/obj/hl1_client/mod/AvHTechTree.o - 0x0000000000187290 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_copy(std::_Rb_tree_node > const*, std::_Rb_tree_node >*) - *fill* 0x0000000000187368 0x8 - .text._ZNSt8_Rb_treeI9AvHTechIDSt4pairIKS0_P11AvHTechNodeESt10_Select1stIS5_ESt4lessIS0_ESaIS5_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS5_ERKS5_ - 0x0000000000187370 0x26f release/obj/hl1_client/mod/AvHTechTree.o - 0x0000000000187370 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x00000000001875df 0x1 - .text 0x00000000001875e0 0x1122 release/obj/hl1_client/mod/AvHTooltip.o - 0x00000000001875e0 AvHTooltip::~AvHTooltip() - 0x00000000001875e0 AvHTooltip::~AvHTooltip() - 0x0000000000187730 AvHTooltip::~AvHTooltip() - 0x0000000000187750 AvHTooltip::AvHTooltip() - 0x0000000000187750 AvHTooltip::AvHTooltip() - 0x0000000000187820 AvHTooltip::AvHTooltip(std::string&, float, float, bool) - 0x0000000000187820 AvHTooltip::AvHTooltip(std::string&, float, float, bool) - 0x0000000000187890 AvHTooltip::ChopStringOfMaxScreenWidth(int, std::string&, std::string&) - 0x0000000000187ad0 AvHTooltip::FadeText(float, bool) - 0x0000000000187bc0 AvHTooltip::GetA() const - 0x0000000000187bd0 AvHTooltip::GetNormalizedScreenX() const - 0x0000000000187be0 AvHTooltip::GetNormalizedScreenY() const - 0x0000000000187bf0 AvHTooltip::GetScreenWidth() const - 0x0000000000187c00 AvHTooltip::GetScreenHeight() const - 0x0000000000187c10 AvHTooltip::SetCentered(bool) - 0x0000000000187c20 AvHTooltip::SetDrawBorder(bool) - 0x0000000000187c30 AvHTooltip::SetFadeDownSpeed(int) - 0x0000000000187c40 AvHTooltip::SetFadeUpSpeed(int) - 0x0000000000187c50 AvHTooltip::SetIgnoreFadeForLifetime(bool) - 0x0000000000187c60 AvHTooltip::SetText(std::string const&) - 0x0000000000187c90 AvHTooltip::GetNormalizedMaxWidth() const - 0x0000000000187ca0 AvHTooltip::SetNormalizedMaxWidth(float) - 0x0000000000187cb0 AvHTooltip::SetNormalizedScreenX(float) - 0x0000000000187cc0 AvHTooltip::SetNormalizedScreenY(float) - 0x0000000000187cd0 AvHTooltip::SetRGB(int, int, int) - 0x0000000000187cf0 AvHTooltip::SetR(int) - 0x0000000000187d00 AvHTooltip::SetG(int) - 0x0000000000187d10 AvHTooltip::SetB(int) - 0x0000000000187d20 AvHTooltip::SetA(int) - 0x0000000000187d70 AvHTooltip::SetBoldR(int) - 0x0000000000187d80 AvHTooltip::SetBoldG(int) - 0x0000000000187d90 AvHTooltip::SetBoldB(int) - 0x0000000000187da0 AvHTooltip::SetBackgroundR(int) - 0x0000000000187db0 AvHTooltip::SetBackgroundG(int) - 0x0000000000187dc0 AvHTooltip::SetBackgroundB(int) - 0x0000000000187dd0 AvHTooltip::SetBackgroundA(int) - 0x0000000000187de0 AvHTooltip::RecomputeTextAndDimensions() - 0x0000000000188360 AvHTooltip::RecomputeIfNeccessary() - 0x0000000000188380 AvHTooltip::Draw() - *fill* 0x0000000000188702 0xe - .text 0x0000000000188710 0x37d release/obj/hl1_client/mod/AvHUIFactory.o - 0x0000000000188710 AvHUIFactory::BuildComponent(TRDescription const&, CSchemeManager*) - *fill* 0x0000000000188a8d 0x3 - .text 0x0000000000188a90 0x10bc release/obj/hl1_client/mod/AvHVisibleBlipList.o - 0x0000000000188a90 AvHVisibleBlipList::Draw(pVector const&, int) - 0x0000000000189320 AvHVisibleBlipList::AvHVisibleBlipList() - 0x0000000000189320 AvHVisibleBlipList::AvHVisibleBlipList() - 0x0000000000189550 AvHVisibleBlipList::AddBlip(float, float, float, signed char, signed char) - 0x00000000001895b0 AvHVisibleBlipList::AddBlipList(AvHVisibleBlipList const&) - 0x0000000000189640 AvHVisibleBlipList::Clear() - 0x0000000000189870 AvHVisibleBlipList::SetTimeBlipsReceived(float) - 0x0000000000189890 AvHVisibleBlipList::VidInit() - 0x0000000000189970 AvHVisibleBlipList::operator==(AvHVisibleBlipList const&) - 0x0000000000189a60 AvHVisibleBlipList::operator!=(AvHVisibleBlipList const&) - *fill* 0x0000000000189b4c 0x4 - .text 0x0000000000189b50 0x5def release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000189b50 CollisionChecker::CollisionChecker(playermove_s const*) - 0x0000000000189b50 CollisionChecker::CollisionChecker(playermove_s const*) - 0x0000000000189b90 CollisionChecker::CollisionChecker(playermove_s const*, int, int, bool, int, int) - 0x0000000000189b90 CollisionChecker::CollisionChecker(playermove_s const*, int, int, bool, int, int) - 0x0000000000189c40 CollisionChecker::SetHullNumber(int) - 0x0000000000189ca0 CollisionChecker::SetHullTypeMask(int) - 0x0000000000189cb0 CollisionChecker::SetEntityToIgnore(int) - 0x0000000000189cc0 CollisionChecker::ClearEntityToIgnore() - 0x0000000000189cd0 CollisionChecker::SetIgnorePlayers(bool) - 0x0000000000189ce0 CollisionChecker::SetIgnoreEntityClass(int) - 0x0000000000189cf0 CollisionChecker::CombineContents(int, int) const - 0x0000000000189d20 CollisionChecker::UpdateNumEntities() const - 0x0000000000189d70 CollisionChecker::GetPhysentForIndex(int) const - 0x0000000000189de0 CollisionChecker::GetHullContent(hull_s const*, int, CollisionTest const*) const - 0x0000000000189fd0 CollisionChecker::GetSingleEntityContents(CollisionTest const*, int) const - 0x000000000018a260 CollisionChecker::GetAllEntityContentsAtPoint(float const (&) [3]) const - 0x000000000018a610 CollisionChecker::GetAllEntityContentsInCylinder(float const (&) [3], float, float) const - 0x000000000018ac30 CollisionChecker::GetAllEntityContentsInAABB(float const (&) [3], float const (&) [3]) const - 0x000000000018b350 CollisionChecker::GetWorldContentsAtPoint(float const (&) [3]) const - 0x000000000018b6a0 CollisionChecker::GetSingleEntityContentsAtPoint(float const (&) [3], int) const - 0x000000000018ba10 CollisionChecker::GetWorldContentsInAABB(float const (&) [3], float const (&) [3]) const - 0x000000000018bfe0 CollisionChecker::GetSingleEntityContentsInAABB(float const (&) [3], float const (&) [3], int) const - 0x000000000018c5d0 CollisionChecker::GetSingleEntityContentsInCylinder(float const (&) [3], float, float, int) const - 0x000000000018cc10 CollisionChecker::GetWorldContentsInCylinder(float const (&) [3], float, float) const - 0x000000000018d230 CollisionChecker::GetContentsAtPoint(float const (&) [3]) const - 0x000000000018d8f0 CollisionChecker::GetAllEntityContents(CollisionTest const*) const - 0x000000000018dc70 CollisionChecker::GetContents(CollisionTest const*) const - 0x000000000018e020 CollisionChecker::GetContentsInCylinder(float const (&) [3], float, float) const - 0x000000000018ebe0 CollisionChecker::GetContentsInAABB(float const (&) [3], float const (&) [3]) const - *fill* 0x000000000018f93f 0x1 - .text._ZN13CollisionTestD2Ev - 0x000000000018f940 0xb release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018f940 CollisionTest::~CollisionTest() - 0x000000000018f940 CollisionTest::~CollisionTest() - *fill* 0x000000000018f94b 0x5 - .text._ZNK18PointCollisionTest25GetPlanarIntersectionTypeEPK8mplane_s - 0x000000000018f950 0x55 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018f950 PointCollisionTest::GetPlanarIntersectionType(mplane_s const*) const - *fill* 0x000000000018f9a5 0xb - .text._ZNK18PointCollisionTest19GetAABBIntersectionERA3_KfS2_ - 0x000000000018f9b0 0x73 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018f9b0 PointCollisionTest::GetAABBIntersection(float const (&) [3], float const (&) [3]) const - *fill* 0x000000000018fa23 0xd - .text._ZNK18PointCollisionTest14RotateAndShiftERA3_KfS2_S2_S2_ - 0x000000000018fa30 0x3e release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fa30 PointCollisionTest::RotateAndShift(float const (&) [3], float const (&) [3], float const (&) [3], float const (&) [3]) const - *fill* 0x000000000018fa6e 0x2 - .text._ZNK16OBBCollisionTest19GetAABBIntersectionERA3_KfS2_ - 0x000000000018fa70 0xd4 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fa70 OBBCollisionTest::GetAABBIntersection(float const (&) [3], float const (&) [3]) const - *fill* 0x000000000018fb44 0xc - .text._ZNK17AABBCollisionTest19GetAABBIntersectionERA3_KfS2_ - 0x000000000018fb50 0x63 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fb50 AABBCollisionTest::GetAABBIntersection(float const (&) [3], float const (&) [3]) const - *fill* 0x000000000018fbb3 0xd - .text._ZN17AABBCollisionTestD2Ev - 0x000000000018fbc0 0x12 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fbc0 AABBCollisionTest::~AABBCollisionTest() - 0x000000000018fbc0 AABBCollisionTest::~AABBCollisionTest() - *fill* 0x000000000018fbd2 0xe - .text._ZN16OBBCollisionTestD2Ev - 0x000000000018fbe0 0x16 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fbe0 OBBCollisionTest::~OBBCollisionTest() - 0x000000000018fbe0 OBBCollisionTest::~OBBCollisionTest() - *fill* 0x000000000018fbf6 0xa - .text._ZN21CylinderCollisionTestD2Ev - 0x000000000018fc00 0x12 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fc00 CylinderCollisionTest::~CylinderCollisionTest() - 0x000000000018fc00 CylinderCollisionTest::~CylinderCollisionTest() - *fill* 0x000000000018fc12 0xe - .text._ZN18PointCollisionTestD2Ev - 0x000000000018fc20 0xb release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fc20 PointCollisionTest::~PointCollisionTest() - 0x000000000018fc20 PointCollisionTest::~PointCollisionTest() - *fill* 0x000000000018fc2b 0x5 - .text._ZN13CollisionTestD0Ev - 0x000000000018fc30 0xf release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fc30 CollisionTest::~CollisionTest() - *fill* 0x000000000018fc3f 0x1 - .text._ZN17AABBCollisionTestD0Ev - 0x000000000018fc40 0x16 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fc40 AABBCollisionTest::~AABBCollisionTest() - *fill* 0x000000000018fc56 0xa - .text._ZN16OBBCollisionTestD0Ev - 0x000000000018fc60 0x1a release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fc60 OBBCollisionTest::~OBBCollisionTest() - *fill* 0x000000000018fc7a 0x6 - .text._ZN21CylinderCollisionTestD0Ev - 0x000000000018fc80 0x16 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fc80 CylinderCollisionTest::~CylinderCollisionTest() - *fill* 0x000000000018fc96 0xa - .text._ZN18PointCollisionTestD0Ev - 0x000000000018fca0 0xf release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fca0 PointCollisionTest::~PointCollisionTest() - *fill* 0x000000000018fcaf 0x1 - .text._ZNK18PointCollisionTest5ShiftERA3_Kf - 0x000000000018fcb0 0x5f release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fcb0 PointCollisionTest::Shift(float const (&) [3]) const - *fill* 0x000000000018fd0f 0x1 - .text._ZNK17AABBCollisionTest5ShiftERA3_Kf - 0x000000000018fd10 0xa3 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fd10 AABBCollisionTest::Shift(float const (&) [3]) const - *fill* 0x000000000018fdb3 0xd - .text._ZNK21CylinderCollisionTest19GetAABBIntersectionERA3_KfS2_ - 0x000000000018fdc0 0xad release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fdc0 CylinderCollisionTest::GetAABBIntersection(float const (&) [3], float const (&) [3]) const - *fill* 0x000000000018fe6d 0x3 - .text._ZNK21CylinderCollisionTest5ShiftERA3_Kf - 0x000000000018fe70 0xfd release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018fe70 CylinderCollisionTest::Shift(float const (&) [3]) const - *fill* 0x000000000018ff6d 0x3 - .text._ZNK21CylinderCollisionTest14RotateAndShiftERA3_KfS2_S2_S2_ - 0x000000000018ff70 0x105 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000018ff70 CylinderCollisionTest::RotateAndShift(float const (&) [3], float const (&) [3], float const (&) [3], float const (&) [3]) const - *fill* 0x0000000000190075 0xb - .text._ZNK16OBBCollisionTest25GetPlanarIntersectionTypeEPK8mplane_s - 0x0000000000190080 0xa0 release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000190080 OBBCollisionTest::GetPlanarIntersectionType(mplane_s const*) const - .text._ZNK17AABBCollisionTest25GetPlanarIntersectionTypeEPK8mplane_s - 0x0000000000190120 0x1a0 release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000190120 AABBCollisionTest::GetPlanarIntersectionType(mplane_s const*) const - .text._ZNK16OBBCollisionTest5ShiftERA3_Kf - 0x00000000001902c0 0x222 release/obj/hl1_client/mod/CollisionChecker.o - 0x00000000001902c0 OBBCollisionTest::Shift(float const (&) [3]) const - *fill* 0x00000000001904e2 0xe - .text._ZNK16OBBCollisionTest14RotateAndShiftERA3_KfS2_S2_S2_ - 0x00000000001904f0 0x226 release/obj/hl1_client/mod/CollisionChecker.o - 0x00000000001904f0 OBBCollisionTest::RotateAndShift(float const (&) [3], float const (&) [3], float const (&) [3], float const (&) [3]) const - *fill* 0x0000000000190716 0xa - .text._ZNK17AABBCollisionTest14RotateAndShiftERA3_KfS2_S2_S2_ - 0x0000000000190720 0x2a4 release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000190720 AABBCollisionTest::RotateAndShift(float const (&) [3], float const (&) [3], float const (&) [3], float const (&) [3]) const - *fill* 0x00000000001909c4 0xc - .text._ZNK21CylinderCollisionTest25GetPlanarIntersectionTypeEPK8mplane_s - 0x00000000001909d0 0x282 release/obj/hl1_client/mod/CollisionChecker.o - 0x00000000001909d0 CylinderCollisionTest::GetPlanarIntersectionType(mplane_s const*) const - *fill* 0x0000000000190c52 0xe - .text 0x0000000000190c60 0x316e release/obj/hl1_client/mod/CollisionUtil.o - 0x0000000000190c60 NS_PointToPlaneDistance(float const*, mplane_s const*) - 0x0000000000190ca0 NS_PointToPointDistanceSquared(float const*, float const*) - 0x0000000000190cd0 NS_PointToSurfaceEdgeDistance(model_s const*, glmsurface_s const*, float const*) - 0x0000000000190ea0 NS_PointOnSurface(model_s const*, glmsurface_s const*, float const*) - 0x0000000000191020 NS_CircleSurfaceIntersectionArea(model_s const*, glmsurface_s const*, float const*, float) - 0x0000000000191030 NS_IsSoftwareModel(model_s const*) - 0x0000000000191070 NS_GetAverageNormalInsideSphere(model_s const*, glmnode_s const*, float const*, float, float*) - 0x0000000000191330 NS_GetAverageNormalInsideSphere(model_s const*, float const*, float, float*) - 0x0000000000191610 NS_UpdateNodeContent(int, int) - 0x0000000000191640 NS_SphereContents(hull_s const*, int, float*, float) - 0x0000000000191db0 NS_BoxPlaneIntersectionType(float*, float*, mplane_s*) - 0x0000000000191f30 NS_BoxContents(hull_s const*, int, float*, float*) - 0x00000000001927a0 NS_PointContents(hull_s const*, int, float*) - 0x0000000000192830 NS_TraceLine(hull_s const*, int, float, float, float*, float*, trace_t*) - 0x0000000000192e00 NS_TraceLine(hull_s const*, float*, float*, trace_t*) - 0x0000000000192fc0 NS_TraceLine(float*, float*, float*, float*, trace_t*) - 0x0000000000193440 NS_BoxesOverlap(float*, float*, float*, float*) - 0x00000000001934a0 NS_GetHitBoxesForEntity(int, int, OBBox*, int&, float) - 0x0000000000193700 NS_GetIntersection(OBBox const&, float const*, float const*) - 0x00000000001939f0 NS_TraceLineAgainstEntity(int, float, float const*, float const*) - 0x0000000000193d90 NS_GetValveHull(int) - *fill* 0x0000000000193dce 0x2 - .text 0x0000000000193dd0 0x217a release/obj/hl1_client/mod/AvHParticleSystem.o - 0x0000000000193dd0 AvHParticleSystem::Collide(float) - 0x0000000000194020 AvHParticleSystem::DrawGroup(pVector const&) - 0x0000000000194c10 AvHParticleSystem::Draw(pVector const&) - 0x0000000000194cf0 AvHParticleSystem::GetLastTimeVisibilityLastSetTrue() const - 0x0000000000194d00 AvHParticleSystem::GetHandle() const - 0x0000000000194d10 AvHParticleSystem::GetHasGeneratedParticles() const - 0x0000000000194d20 AvHParticleSystem::GetIsMarkedForDeletion() const - 0x0000000000194d30 AvHParticleSystem::GetIsVisible() const - 0x0000000000194d40 AvHParticleSystem::GetNumberOfParticles() const - 0x0000000000194d60 AvHParticleSystem::GetParticleSystemLifetime() const - 0x0000000000194d70 AvHParticleSystem::GetParticleLifetime() const - 0x0000000000194d90 AvHParticleSystem::GetTemplateIndex() const - 0x0000000000194da0 AvHParticleSystem::GetTimeCreated() const - 0x0000000000194db0 AvHParticleSystem::Kill() - 0x0000000000194dd0 AvHParticleSystem::LoadFromTemplate(AvHParticleTemplate*) - 0x0000000000194e70 AvHParticleSystem::LoadSpriteIfNeeded(AvHParticleTemplate*) - 0x0000000000194fc0 AvHParticleSystem::AvHParticleSystem(AvHParticleTemplate*, unsigned int) - 0x0000000000194fc0 AvHParticleSystem::AvHParticleSystem(AvHParticleTemplate*, unsigned int) - 0x0000000000195210 AvHParticleSystem::GetGenerationEntity(int&) const - 0x0000000000195230 AvHParticleSystem::SetHandle(unsigned int) - 0x0000000000195240 AvHParticleSystem::SetIsMarkedForDeletion() - 0x0000000000195250 AvHParticleSystem::SetIsVisible(bool, float) - 0x00000000001952f0 AvHParticleSystem::SetNormal(Vector const&) - 0x0000000000195330 AvHParticleSystem::SetParticleSystemLifetime(float) - 0x0000000000195340 AvHParticleSystem::SetParticleLifetime(float) - 0x0000000000195350 AvHParticleSystem::SetPosition(Vector) - 0x0000000000195380 AvHParticleSystem::SetTimeCreated(float) - 0x00000000001953a0 AvHParticleSystem::GenerateParticles(int) - 0x0000000000195830 AvHParticleSystem::GetParticleScale() const - 0x0000000000195850 AvHParticleSystem::SetCustomData(unsigned short) - 0x0000000000195870 AvHParticleSystem::SetGenerationEntityExtents(Vector&, Vector&) - 0x0000000000195920 AvHParticleSystem::SetStartingVelocity() - 0x00000000001959a0 AvHParticleSystem::UpdateFirst() - 0x0000000000195d00 AvHParticleSystem::Update(float) - *fill* 0x0000000000195f4a 0x6 - .text 0x0000000000195f50 0x13ee release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x0000000000195f50 AvHParticleSystemManager::Instance() - 0x0000000000195ff0 AvHParticleSystemManager::Init() - 0x0000000000196010 AvHParticleSystemManager::AvHParticleSystemManager() - 0x0000000000196010 AvHParticleSystemManager::AvHParticleSystemManager() - 0x0000000000196080 AvHParticleSystemManager::Draw(pVector const&) - 0x00000000001960c0 AvHParticleSystemManager::GetParticleSystem(unsigned int) - 0x0000000000196110 AvHParticleSystemManager::GetNumberParticleSystems() - 0x0000000000196130 AvHParticleSystemManager::GetNumberVisibleParticleSystems() - 0x0000000000196180 AvHParticleSystemManager::GetTime() const - 0x0000000000196190 AvHParticleSystemManager::ReloadFromTemplates() - 0x00000000001961a0 AvHParticleSystemManager::Reset() - 0x0000000000196200 AvHParticleSystemManager::SetParticleSystemCustomData(unsigned short, unsigned int) - 0x0000000000196260 AvHParticleSystemManager::MarkParticleSystemForDeletion(int, unsigned int) - 0x0000000000196310 AvHParticleSystemManager::GetNumVisibleParticleSystems() const - 0x0000000000196360 AvHParticleSystemManager::SetParticleSystemGenerationEntityExtents(Vector&, Vector&, unsigned int) - 0x00000000001963d0 AvHParticleSystemManager::SetParticleSystemPosition(Vector&, unsigned int) - 0x0000000000196450 AvHParticleSystemManager::SetParticleSystemVisibility(bool, unsigned int) - 0x00000000001964b0 AvHParticleSystemManager::Start() - 0x00000000001964d0 AvHParticleSystemManager::InternalDestroyParticleSystem(unsigned int) - 0x0000000000196540 AvHParticleSystemManager::DestroyParticleSystem(unsigned int) - 0x00000000001965a0 AvHParticleSystemManager::DestroyParticleSystemIfNotDestroyed(int, unsigned int) - 0x0000000000196670 AvHParticleSystemManager::CreateParticleSystem(unsigned int, Vector, Vector*) - 0x00000000001967d0 AvHParticleSystemManager::QueueParticleSystem(QueuedParticleSystem const&) - 0x0000000000196880 AvHParticleSystemManager::CreateParticleSystem(unsigned int, int, unsigned int) - 0x0000000000196980 AvHParticleSystemManager::CreateParticleSystem(std::string const&, Vector, Vector*) - 0x0000000000196b40 AvHParticleSystemManager::CreateParticleSystemIfNotCreated(int, int, int) - 0x0000000000196bd0 AvHParticleSystemManager::InternalCreateParticleSystem(QueuedParticleSystem const&) - 0x0000000000196fa0 AvHParticleSystemManager::ProcessQueuedList() - 0x0000000000197150 AvHParticleSystemManager::Update(double) - *fill* 0x000000000019733e 0x2 - .text._ZNSt6vectorI17AvHParticleSystemSaIS0_EE5eraseEN9__gnu_cxx17__normal_iteratorIPS0_S2_EE - 0x0000000000197340 0x2ed release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x0000000000197340 std::vector >::erase(__gnu_cxx::__normal_iterator > >) - *fill* 0x000000000019762d 0x3 - .text._ZNSt8_Rb_treeIiSt4pairIKi19AvHParticleTemplateESt10_Select1stIS3_ESt4lessIiESaIS3_EE8_M_eraseEPSt13_Rb_tree_nodeIS3_E - 0x0000000000197630 0x18d release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x0000000000197630 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x00000000001977bd 0x3 - .text._ZN29AvHParticleTemplateListClientD2Ev - 0x00000000001977c0 0x24 release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x00000000001977c0 AvHParticleTemplateListClient::~AvHParticleTemplateListClient() - 0x00000000001977c0 AvHParticleTemplateListClient::~AvHParticleTemplateListClient() - *fill* 0x00000000001977e4 0xc - .text._ZNSt6vectorI20QueuedParticleSystemSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000001977f0 0x498 release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x00000000001977f0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, QueuedParticleSystem const&) - *fill* 0x0000000000197c88 0x8 - .text._ZNSt6vectorI17AvHParticleSystemSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x0000000000197c90 0x13a7 release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x0000000000197c90 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, AvHParticleSystem const&) - *fill* 0x0000000000199037 0x9 - .text 0x0000000000199040 0x25e2 release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x0000000000199040 AvHParticleTemplate::operator=(AvHParticleTemplate const&) - 0x0000000000199420 AvHParticleTemplate::AvHParticleTemplate() - 0x0000000000199420 AvHParticleTemplate::AvHParticleTemplate() - 0x00000000001998b0 AvHParticleTemplate::GetFadeIn() const - 0x00000000001998d0 AvHParticleTemplate::GetFadeOut() const - 0x00000000001998f0 AvHParticleTemplate::GetUseDensity() const - 0x0000000000199910 AvHParticleTemplate::GetUseWorldGravity() const - 0x0000000000199930 AvHParticleTemplate::GetUseTrisNotQuads() const - 0x0000000000199950 AvHParticleTemplate::GetMinimizeEdges() const - 0x0000000000199970 AvHParticleTemplate::GetConstrainPitch() const - 0x0000000000199990 AvHParticleTemplate::GetCollide() const - 0x00000000001999b0 AvHParticleTemplate::GetHighDetailOnly() const - 0x00000000001999d0 AvHParticleTemplate::GetFaceUp() const - 0x00000000001999f0 AvHParticleTemplate::GetFlags() const - 0x0000000000199a00 AvHParticleTemplate::SetFlags(int) - 0x0000000000199a10 AvHParticleTemplate::GetName() const - 0x0000000000199a20 AvHParticleTemplate::SetName(std::string const&) - 0x0000000000199a30 AvHParticleTemplate::GetMaxParticles() const - 0x0000000000199a40 AvHParticleTemplate::GetParticleSize() const - 0x0000000000199a50 AvHParticleTemplate::GetParticleSystemLifetime() const - 0x0000000000199a60 AvHParticleTemplate::SetParticleSystemLifetime(float) - 0x0000000000199a70 AvHParticleTemplate::GetParticleLifetime() const - 0x0000000000199a80 AvHParticleTemplate::SetParticleLifetime(float) - 0x0000000000199a90 AvHParticleTemplate::SetMaxParticles(unsigned int) - 0x0000000000199aa0 AvHParticleTemplate::SetParticleSize(float) - 0x0000000000199ab0 AvHParticleTemplate::GetSprite() const - 0x0000000000199ae0 AvHParticleTemplate::SetSprite(std::string) - 0x0000000000199af0 AvHParticleTemplate::GetGenerationShape() const - 0x0000000000199b00 AvHParticleTemplate::SetGenerationShape(char) - 0x0000000000199b10 AvHParticleTemplate::GetGenerationEntityName() const - 0x0000000000199b40 AvHParticleTemplate::SetGenerationEntityName(std::string const&) - 0x0000000000199b50 AvHParticleTemplate::GetParticleSystemToGenerate() const - 0x0000000000199b80 AvHParticleTemplate::SetParticleSystemToGenerate(std::string const&) - 0x0000000000199ba0 AvHParticleTemplate::GetParticleSystemIndexToGenerate() const - 0x0000000000199bb0 AvHParticleTemplate::SetParticleSystemIndexToGenerate(int) - 0x0000000000199bc0 AvHParticleTemplate::GetGenerationEntityIndex() const - 0x0000000000199bd0 AvHParticleTemplate::SetGenerationEntityIndex(int) - 0x0000000000199be0 AvHParticleTemplate::GetGenerationEntityParameter() const - 0x0000000000199bf0 AvHParticleTemplate::SetGenerationEntityParameter(float) - 0x0000000000199c00 AvHParticleTemplate::GetGenerationParams(int (&) [8]) const - 0x0000000000199cb0 AvHParticleTemplate::SetGenerationParams(int const (&) [8]) - 0x0000000000199d60 AvHParticleTemplate::GetGenerationRate() const - 0x0000000000199d70 AvHParticleTemplate::SetGenerationRate(unsigned int) - 0x0000000000199d80 AvHParticleTemplate::GetGravity(float (&) [3]) const - 0x0000000000199da0 AvHParticleTemplate::SetGravity(float const (&) [3]) - 0x0000000000199dc0 AvHParticleTemplate::GetAnimationSpeed() const - 0x0000000000199dd0 AvHParticleTemplate::SetAnimationSpeed(float) - 0x0000000000199df0 AvHParticleTemplate::GetNumSpriteFrames() const - 0x0000000000199e00 AvHParticleTemplate::SetNumSpriteFrames(int) - 0x0000000000199e10 AvHParticleTemplate::GetMaxAlpha() const - 0x0000000000199e20 AvHParticleTemplate::SetMaxAlpha(float) - 0x0000000000199e60 AvHParticleTemplate::GetParticleScaling() const - 0x0000000000199e70 AvHParticleTemplate::SetParticleScaling(float) - 0x0000000000199e90 AvHParticleTemplate::GetRenderMode() const - 0x0000000000199ea0 AvHParticleTemplate::SetRenderMode(int) - 0x0000000000199eb0 AvHParticleTemplate::GetStartingVelocityShape() const - 0x0000000000199ec0 AvHParticleTemplate::SetStartingVelocityShape(char) - 0x0000000000199ed0 AvHParticleTemplate::GetStartingVelocityParams(int (&) [8]) const - 0x0000000000199f80 AvHParticleTemplate::SetStartingVelocityParams(int const (&) [8]) - 0x000000000019a030 AvHParticleTemplateList::AvHParticleTemplateList() - 0x000000000019a030 AvHParticleTemplateList::AvHParticleTemplateList() - 0x000000000019a060 AvHParticleTemplateList::GetTemplateAtIndex(unsigned int) const - 0x000000000019a0b0 AvHParticleTemplateList::GetTemplateIndexWithName(std::string const&, unsigned int&) const - 0x000000000019a130 AvHParticleTemplateList::GetNumberTemplates() const - 0x000000000019a140 AvHParticleTemplate::operator==(AvHParticleTemplate const&) const - 0x000000000019a220 AvHParticleTemplateList::Clear() - 0x000000000019a270 AvHParticleTemplateList::GetTemplateAtIndex(unsigned int) - 0x000000000019a2b0 AvHParticleTemplateList::CreateTemplateFromIndex(int) - *fill* 0x000000000019b622 0xe - .text._ZSteqIcEN9__gnu_cxx11__enable_ifIXsrSt9__is_charIT_E7__valueEbE6__typeERKSbIS3_St11char_traitsIS3_ESaIS3_EESC_ - 0x000000000019b630 0x3a release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x000000000019b630 __gnu_cxx::__enable_if::__value, bool>::__type std::operator==(std::basic_string, std::allocator > const&, std::basic_string, std::allocator > const&) - *fill* 0x000000000019b66a 0x6 - .text._ZNSt8_Rb_treeIiSt4pairIKi19AvHParticleTemplateESt10_Select1stIS3_ESt4lessIiESaIS3_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS3_ERKS3_ - 0x000000000019b670 0x444 release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x000000000019b670 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x000000000019bab4 0xc - .text._ZNSt3mapIi19AvHParticleTemplateSt4lessIiESaISt4pairIKiS0_EEEixERS4_ - 0x000000000019bac0 0x71d release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x000000000019bac0 std::map, std::allocator > >::operator[](int const&) - *fill* 0x000000000019c1dd 0x3 - .text 0x000000000019c1e0 0x14b4 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - 0x000000000019c1e0 AvHParticleTemplateListClient::InitializeDemoRecording() const - 0x000000000019c820 AvHParticleTemplateListClient::Insert(AvHParticleTemplate const&, int) - 0x000000000019c850 AvHParticleTemplateListClient::InitializeDemoPlayback(int, unsigned char*, int) - *fill* 0x000000000019d694 0xc - .text 0x000000000019d6a0 0xd86 release/obj/hl1_client/mod/AvHSelectionHelper.o - 0x000000000019d6a0 AvHSelectionHelper::AvHSelectionHelper() - 0x000000000019d6a0 AvHSelectionHelper::AvHSelectionHelper() - 0x000000000019d720 AvHSelectionHelper::ClearSelection() - 0x000000000019d730 AvHSelectionHelper::GetAndClearSelection(std::vector >&) - 0x000000000019d920 AvHSelectionHelper::QueueSelection(Vector const&, Vector const&, Vector const&, AvHTeamNumber) - 0x000000000019d980 AvHSelectionHelper::SelectionResultsWaiting() - 0x000000000019d990 AvHSelectionHelper::IsPositionInRegion(Vector const&, Vector const&, Vector const&, Vector const&) - 0x000000000019d9f0 AvHSelectionHelper::ProcessEntityForSelection(Vector const&, Vector const&, Vector const&, Vector const&, int, bool, bool, bool, bool) - 0x000000000019db30 AvHSelectionHelper::SelectUnitsInRegion(Vector const&, Vector const&, Vector const&, AvHTeamNumber, std::vector >&) - 0x000000000019e010 AvHSelectionHelper::SelectUnits(Vector const&, Vector const&, Vector const&, AvHTeamNumber, std::vector >&) - 0x000000000019e210 AvHSelectionHelper::ProcessPendingSelections() - *fill* 0x000000000019e426 0xa - .text 0x000000000019e430 0x1c4 release/obj/hl1_client/common/interface.o - 0x000000000019e430 CreateInterface - 0x000000000019e4a0 InterfaceReg::InterfaceReg(IBaseInterface* (*)(), char const*) - 0x000000000019e4a0 InterfaceReg::InterfaceReg(IBaseInterface* (*)(), char const*) - 0x000000000019e4c0 Sys_LoadModule(char const*) - 0x000000000019e5a0 Sys_FreeModule(HInterfaceModule_t*) - 0x000000000019e5c0 Sys_GetFactoryThis() - 0x000000000019e5d0 Sys_GetFactory(HInterfaceModule_t*) - *fill* 0x000000000019e5f4 0xc - .text 0x000000000019e600 0x786 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - 0x000000000019e600 vgui::CCheckButton2::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x000000000019e610 non-virtual thunk to vgui::CCheckButton2::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x000000000019e620 vgui::CCheckButton2::GetCheckboxLeft() - 0x000000000019e630 vgui::CCheckButton2::SetHandler(vgui::ICheckButton2Handler*) - 0x000000000019e640 vgui::CCheckButton2::IsChecked() - 0x000000000019e650 vgui::CCheckButton2::CCheckButton2() - 0x000000000019e650 vgui::CCheckButton2::CCheckButton2() - 0x000000000019e780 vgui::CCheckButton2::SetTextColor(int, int, int, int) - 0x000000000019e7d0 vgui::CCheckButton2::setFont(vgui::Font*) - 0x000000000019e7f0 vgui::CCheckButton2::SetupControls() - 0x000000000019e950 vgui::CCheckButton2::DeleteImages() - 0x000000000019e9b0 vgui::CCheckButton2::SetCheckboxLeft(bool) - 0x000000000019e9d0 vgui::CCheckButton2::SetText(char const*, ...) - 0x000000000019ea70 vgui::CCheckButton2::SetChecked(bool) - 0x000000000019ea90 vgui::CCheckButton2::internalMousePressed(vgui::MouseCode) - 0x000000000019ead0 vgui::CCheckButton2::SetImages(vgui::Image*, vgui::Image*) - 0x000000000019eb60 vgui::CCheckButton2::SetImages(char const*, char const*) - 0x000000000019ec10 vgui::CCheckButton2::~CCheckButton2() - 0x000000000019ec10 vgui::CCheckButton2::~CCheckButton2() - *fill* 0x000000000019ed86 0xa - .text 0x000000000019ed90 0x1005 release/obj/hl1_client/game_shared/vgui_grid.o - 0x000000000019ed90 vgui::CGrid::~CGrid() - 0x000000000019ed90 vgui::CGrid::~CGrid() - 0x000000000019edf0 vgui::CGrid::~CGrid() - 0x000000000019ee60 vgui::CGrid::CGridEntry::CGridEntry() - 0x000000000019ee60 vgui::CGrid::CGridEntry::CGridEntry() - 0x000000000019ee70 vgui::CGrid::CGridEntry::~CGridEntry() - 0x000000000019ee70 vgui::CGrid::CGridEntry::~CGridEntry() - 0x000000000019ee80 vgui::CGrid::CGrid() - 0x000000000019ee80 vgui::CGrid::CGrid() - 0x000000000019eee0 vgui::CGrid::SetDimensions(int, int) - 0x000000000019f0f0 vgui::CGrid::Term() - 0x000000000019f150 vgui::CGrid::GetEntry(int, int) - 0x000000000019f1b0 vgui::CGrid::SetEntry(int, int, vgui::Panel*) - 0x000000000019f270 vgui::CGrid::GetXSpacing() - 0x000000000019f280 vgui::CGrid::GetYSpacing() - 0x000000000019f290 vgui::CGrid::SetSpacing(int, int) - 0x000000000019f350 vgui::CGrid::SetColumnWidth(int, int) - 0x000000000019f3f0 vgui::CGrid::SetRowHeight(int, int) - 0x000000000019f490 vgui::CGrid::GetColumnWidth(int) - 0x000000000019f4c0 vgui::CGrid::GetRowHeight(int) - 0x000000000019f4f0 vgui::CGrid::CalcFitColumnWidth(int) - 0x000000000019f590 vgui::CGrid::CalcFitRowHeight(int) - 0x000000000019f620 vgui::CGrid::AutoSetRowHeights() - 0x000000000019f770 vgui::CGrid::GetEntryBox(int, int, int&, int&, int&, int&) - 0x000000000019f7f0 vgui::CGrid::CopyColumnWidths(vgui::CGrid*) - 0x000000000019f8b0 vgui::CGrid::RepositionContents() - 0x000000000019f9a0 vgui::CGrid::CalcDrawHeight() - 0x000000000019f9e0 vgui::CGrid::SetRowUnderline(int, bool, int, int, int, int, int) - 0x000000000019fa60 vgui::CGrid::Clear() - 0x000000000019fa90 vgui::CGrid::GridEntry(int, int) - 0x000000000019fae0 vgui::CGrid::CalcColOffsets(int) - 0x000000000019fb50 vgui::CGrid::CalcRowOffsets(int) - 0x000000000019fbb0 vgui::CGrid::getCellAtPoint(int, int, int&, int&) - 0x000000000019fc70 vgui::CGrid::paint() - 0x000000000019fd90 vgui::CGrid::paintBackground() - *fill* 0x000000000019fd95 0xb - .text 0x000000000019fda0 0x19e release/obj/hl1_client/game_shared/vgui_helpers.o - 0x000000000019fda0 AlignPanel(vgui::Panel*, vgui::Panel*, int) - *fill* 0x000000000019ff3e 0x2 - .text 0x000000000019ff40 0x7d9 release/obj/hl1_client/game_shared/vgui_listbox.o - 0x000000000019ff40 vgui::CListBox::paintBackground() - 0x000000000019ff50 vgui::CListBox::~CListBox() - 0x000000000019ff50 vgui::CListBox::~CListBox() - 0x000000000019ffc0 vgui::CListBox::Init() - 0x00000000001a0020 vgui::CListBox::Term() - 0x00000000001a0080 vgui::CListBox::GetNumItems() - 0x00000000001a00b0 vgui::CListBox::GetItemWidth() - 0x00000000001a00e0 vgui::CListBox::GetScrollPos() - 0x00000000001a00f0 vgui::CListBox::InternalLayout() - 0x00000000001a02f0 vgui::CListBox::SetScrollPos(int) - 0x00000000001a0380 vgui::CListBox::GetScrollMax() - 0x00000000001a03c0 vgui::CListBox::CListBox() - 0x00000000001a03c0 vgui::CListBox::CListBox() - 0x00000000001a0550 vgui::CListBox::AddItem(vgui::Panel*) - 0x00000000001a0650 vgui::CListBox::SetScrollRange(int) - 0x00000000001a0690 vgui::CListBox::setPos(int, int) - 0x00000000001a06c0 vgui::CListBox::setSize(int, int) - 0x00000000001a06f0 vgui::CListBox::setPixelScroll(int) - *fill* 0x00000000001a0719 0x7 - .text._ZN4vgui8CListBox13ListBoxSignal10intChangedEiPNS_5PanelE - 0x00000000001a0720 0x19 release/obj/hl1_client/game_shared/vgui_listbox.o - 0x00000000001a0720 vgui::CListBox::ListBoxSignal::intChanged(int, vgui::Panel*) - *fill* 0x00000000001a0739 0x7 - .text 0x00000000001a0740 0x124 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x00000000001a0740 vgui_LoadTGANoInvertAlpha(char const*) - 0x00000000001a07d0 vgui_LoadTGA(char const*, bool) - *fill* 0x00000000001a0864 0xc - .text._ZN18MemoryInputStream29seekStartERb - 0x00000000001a0870 0x13 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x00000000001a0870 MemoryInputStream2::seekStart(bool&) - *fill* 0x00000000001a0883 0xd - .text._ZN18MemoryInputStream212seekRelativeEiRb - 0x00000000001a0890 0x13 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x00000000001a0890 MemoryInputStream2::seekRelative(int, bool&) - *fill* 0x00000000001a08a3 0xd - .text._ZN18MemoryInputStream27seekEndERb - 0x00000000001a08b0 0x12 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x00000000001a08b0 MemoryInputStream2::seekEnd(bool&) - *fill* 0x00000000001a08c2 0xe - .text._ZN18MemoryInputStream212getAvailableERb - 0x00000000001a08d0 0xa release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x00000000001a08d0 MemoryInputStream2::getAvailable(bool&) - *fill* 0x00000000001a08da 0x6 - .text._ZN18MemoryInputStream29readUCharEPhiRb - 0x00000000001a08e0 0x3d release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x00000000001a08e0 MemoryInputStream2::readUChar(unsigned char*, int, bool&) - *fill* 0x00000000001a091d 0x3 - .text._ZN18MemoryInputStream25closeERb - 0x00000000001a0920 0x1a release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x00000000001a0920 MemoryInputStream2::close(bool&) - *fill* 0x00000000001a093a 0x6 - .text._ZN18MemoryInputStream29readUCharERb - 0x00000000001a0940 0x38 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x00000000001a0940 MemoryInputStream2::readUChar(bool&) - *fill* 0x00000000001a0978 0x8 - .text 0x00000000001a0980 0x10e6 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0x00000000001a09c0 vgui::ScrollBar2::performLayout() - 0x00000000001a09d0 vgui::ScrollBar2::setValue(int) - 0x00000000001a09f0 vgui::ScrollBar2::getValue() - 0x00000000001a0a10 vgui::ScrollBar2::setRange(int, int) - 0x00000000001a0a30 vgui::ScrollBar2::fireIntChangeSignal() - 0x00000000001a0a90 vgui::ScrollBar2::isVertical() - 0x00000000001a0ab0 vgui::ScrollBar2::hasFullRange() - 0x00000000001a0ad0 vgui::ScrollBar2::getButton(int) - 0x00000000001a0ae0 vgui::ScrollBar2::getSlider() - 0x00000000001a0af0 vgui::ScrollBar2::setButtonPressedScrollValue(int) - 0x00000000001a0b00 vgui::ScrollBar2::setRangeWindow(int) - 0x00000000001a0b20 vgui::ScrollBar2::setRangeWindowEnabled(bool) - 0x00000000001a0b50 vgui::ScrollBar2::validate() - 0x00000000001a0c30 vgui::ScrollBar2::setSlider(vgui::Slider2*) - 0x00000000001a0cb0 vgui::ScrollBar2::setButton(vgui::Button*, int) - 0x00000000001a0d50 vgui::ScrollBar2::addIntChangeSignal(vgui::IntChangeSignal*) - 0x00000000001a0f90 vgui::ScrollBar2::setSize(int, int) - 0x00000000001a1120 vgui::ScrollBar2::doButtonPressed(int) - 0x00000000001a1190 vgui::ScrollBar2::ScrollBar2(int, int, int, int, bool) - 0x00000000001a1190 vgui::ScrollBar2::ScrollBar2(int, int, int, int, bool) - *fill* 0x00000000001a1a66 0xa - .text._ZN15ScrollBarButton15paintBackgroundEv - 0x00000000001a1a70 0x72 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0x00000000001a1a70 ScrollBarButton::paintBackground() - *fill* 0x00000000001a1ae2 0xe - .text 0x00000000001a1af0 0xf92 release/obj/hl1_client/game_shared/vgui_slider2.o - 0x00000000001a1bd0 vgui::Slider2::isVertical() - 0x00000000001a1be0 vgui::Slider2::getValue() - 0x00000000001a1bf0 vgui::Slider2::recomputeNobPosFromValue() - 0x00000000001a1d50 vgui::Slider2::recomputeValueFromNobPos() - 0x00000000001a1e50 vgui::Slider2::hasFullRange() - 0x00000000001a1f10 vgui::Slider2::fireIntChangeSignal() - 0x00000000001a1f70 vgui::Slider2::paintBackground() - 0x00000000001a2230 vgui::Slider2::setRange(int, int) - 0x00000000001a2250 vgui::Slider2::getRange(int&, int&) - 0x00000000001a2270 vgui::Slider2::privateCursorMoved(int, int, vgui::Panel*) - 0x00000000001a23c0 vgui::Slider2::privateMousePressed(vgui::MouseCode, vgui::Panel*) - 0x00000000001a24b0 vgui::Slider2::privateMouseReleased(vgui::MouseCode, vgui::Panel*) - 0x00000000001a24e0 vgui::Slider2::getNobPos(int&, int&) - 0x00000000001a2500 vgui::Slider2::setRangeWindow(int) - 0x00000000001a2510 vgui::Slider2::setRangeWindowEnabled(bool) - 0x00000000001a2520 vgui::Slider2::setButtonOffset(int) - 0x00000000001a2530 vgui::Slider2::addIntChangeSignal(vgui::IntChangeSignal*) - 0x00000000001a2740 vgui::Slider2::setValue(int) - 0x00000000001a27c0 vgui::Slider2::Slider2(int, int, int, int, bool) - 0x00000000001a27c0 vgui::Slider2::Slider2(int, int, int, int, bool) - 0x00000000001a2a50 vgui::Slider2::setSize(int, int) - *fill* 0x00000000001a2a82 0xe - .text 0x00000000001a2a90 0x80f release/obj/hl1_client/game_shared/voice_banmgr.o - 0x00000000001a2a90 HashPlayerID(char const*) - 0x00000000001a2ad0 CVoiceBanMgr::CVoiceBanMgr() - 0x00000000001a2ad0 CVoiceBanMgr::CVoiceBanMgr() - 0x00000000001a2af0 CVoiceBanMgr::~CVoiceBanMgr() - 0x00000000001a2af0 CVoiceBanMgr::~CVoiceBanMgr() - 0x00000000001a2b60 CVoiceBanMgr::Init(char const*) - 0x00000000001a2d90 CVoiceBanMgr::Term() - 0x00000000001a2e00 CVoiceBanMgr::SaveState(char const*) - 0x00000000001a2f20 CVoiceBanMgr::GetPlayerBan(char const*) - 0x00000000001a2fb0 CVoiceBanMgr::SetPlayerBan(char const*, bool) - 0x00000000001a3120 CVoiceBanMgr::ForEachBannedPlayer(void (*)(char*)) - 0x00000000001a3170 CVoiceBanMgr::Clear() - 0x00000000001a3190 CVoiceBanMgr::InternalFindPlayerSquelch(char const*) - 0x00000000001a3220 CVoiceBanMgr::AddBannedPlayer(char const*) - *fill* 0x00000000001a329f 0x1 - .text 0x00000000001a32a0 0x2c1b release/obj/hl1_client/game_shared/voice_status.o - 0x00000000001a32a0 ForEachBannedPlayer(char*) - 0x00000000001a3430 ShowBannedCallback() - 0x00000000001a3480 CVoiceStatus::Init(IVoiceStatusHelper*, vgui::Panel**) - 0x00000000001a3ac0 __MsgFunc_ReqState(char const*, int, void*) - 0x00000000001a3b70 __MsgFunc_VoiceMask(char const*, int, void*) - 0x00000000001a3c90 GetClientVoiceMgr() - 0x00000000001a3ca0 CVoiceStatus::CVoiceStatus() - 0x00000000001a3ca0 CVoiceStatus::CVoiceStatus() - 0x00000000001a3e00 CVoiceStatus::Frame(double) - 0x00000000001a4100 CVoiceStatus::CreateEntities() - 0x00000000001a4370 CVoiceStatus::UpdateServerState(bool) - 0x00000000001a43f0 CVoiceStatus::UpdateSpeakerImage(vgui::Label*, int) - 0x00000000001a4610 CVoiceStatus::UpdateBanButton(int) - 0x00000000001a4830 CVoiceStatus::HandleVoiceMaskMsg(int, void*) - 0x00000000001a4950 CVoiceStatus::HandleReqStateMsg(int, void*) - 0x00000000001a49e0 CVoiceStatus::StartSquelchMode() - 0x00000000001a4a10 CVoiceStatus::StopSquelchMode() - 0x00000000001a4a30 CVoiceStatus::IsInSquelchMode() - 0x00000000001a4a40 CVoiceStatus::FindVoiceLabel(int) - 0x00000000001a4af0 CVoiceStatus::GetFreeVoiceLabel() - 0x00000000001a4bb0 CVoiceStatus::RepositionLabels() - 0x00000000001a5050 CVoiceStatus::UpdateSpeakerStatus(int, int) - 0x00000000001a54f0 CVoiceStatus::FreeBitmaps() - 0x00000000001a5620 CVoiceStatus::~CVoiceStatus() - 0x00000000001a5620 CVoiceStatus::~CVoiceStatus() - 0x00000000001a5710 CVoiceStatus::VidInit() - 0x00000000001a5b60 CVoiceStatus::~CVoiceStatus() - 0x00000000001a5c50 CVoiceStatus::IsPlayerBlocked(int) - 0x00000000001a5cc0 CVoiceStatus::IsPlayerAudible(int) - 0x00000000001a5ce0 CVoiceStatus::SetPlayerBlockedState(int, bool) - *fill* 0x00000000001a5ebb 0x5 - .text 0x00000000001a5ec0 0xae6 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x00000000001a5ec0 CVoiceVGUITweakDlg::~CVoiceVGUITweakDlg() - 0x00000000001a5ec0 CVoiceVGUITweakDlg::~CVoiceVGUITweakDlg() - 0x00000000001a5ef0 CVoiceVGUITweakDlg::StateChanged(vgui::CCheckButton2*) - 0x00000000001a5f50 non-virtual thunk to CVoiceVGUITweakDlg::StateChanged(vgui::CCheckButton2*) - 0x00000000001a5f60 CVoiceVGUITweakDlg::Close() - 0x00000000001a5fb0 IsTweakDlgOpen() - 0x00000000001a5fc0 GetVoiceTweakDlg() - 0x00000000001a5fd0 TweakScroller::TweakScroller() - 0x00000000001a5fd0 TweakScroller::TweakScroller() - 0x00000000001a6050 TweakScroller::Init(vgui::Panel*, char*, int) - 0x00000000001a6250 TweakScroller::GetValue() - 0x00000000001a6280 CVoiceVGUITweakDlg::paintBackground() - 0x00000000001a63b0 TweakScroller::SetValue(float) - 0x00000000001a63e0 CVoiceVGUITweakDlg::Open() - 0x00000000001a67c0 CVoiceVGUITweakDlg::CVoiceVGUITweakDlg() - 0x00000000001a67c0 CVoiceVGUITweakDlg::CVoiceVGUITweakDlg() - *fill* 0x00000000001a69a6 0xa - .text._ZN19CVoiceTweakOKButton15actionPerformedEPN4vgui5PanelE - 0x00000000001a69b0 0xe release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x00000000001a69b0 CVoiceTweakOKButton::actionPerformed(vgui::Panel*) - *fill* 0x00000000001a69be 0x2 - .text 0x00000000001a69c0 0xe53 release/obj/hl1_client/server/hl_wpn_glock.o - 0x00000000001a69c0 CGlock::Precache() - 0x00000000001a6a90 CGlock::Deploy() - 0x00000000001a6ae0 CGlock::Spawn() - 0x00000000001a6b50 CGlock::WeaponIdle() - 0x00000000001a6c60 CGlock::Reload() - 0x00000000001a6d00 CGlock::SecondaryAttack() - 0x00000000001a6fc0 CGlock::PrimaryAttack() - 0x00000000001a72e0 weapon_glock - 0x00000000001a7350 weapon_9mmhandgun - 0x00000000001a73c0 CGlock::GetItemInfo(ItemInfo*) - 0x00000000001a7440 CGlock::GlockFire(float, float, int) - 0x00000000001a7740 ammo_glockclip - 0x00000000001a77b0 ammo_9mmclip - *fill* 0x00000000001a7813 0xd - .text._ZN6CGlock9iItemSlotEv - 0x00000000001a7820 0x6 release/obj/hl1_client/server/hl_wpn_glock.o - 0x00000000001a7820 CGlock::iItemSlot() - *fill* 0x00000000001a7826 0xa - .text._ZN6CGlock12UseDecrementEv - 0x00000000001a7830 0x6 release/obj/hl1_client/server/hl_wpn_glock.o - 0x00000000001a7830 CGlock::UseDecrement() - *fill* 0x00000000001a7836 0xa - .text._ZN10CGlockAmmo8PrecacheEv - 0x00000000001a7840 0x23 release/obj/hl1_client/server/hl_wpn_glock.o - 0x00000000001a7840 CGlockAmmo::Precache() - *fill* 0x00000000001a7863 0xd - .text._ZN10CGlockAmmo5SpawnEv - 0x00000000001a7870 0x38 release/obj/hl1_client/server/hl_wpn_glock.o - 0x00000000001a7870 CGlockAmmo::Spawn() - *fill* 0x00000000001a78a8 0x8 - .text._ZN10CGlockAmmo7AddAmmoEP11CBaseEntity - 0x00000000001a78b0 0x80 release/obj/hl1_client/server/hl_wpn_glock.o - 0x00000000001a78b0 CGlockAmmo::AddAmmo(CBaseEntity*) - .text 0x00000000001a7930 0x17bc release/obj/hl1_client/pm_shared/pm_debug.o - 0x00000000001a7930 PM_ShowClipBox() - 0x00000000001a7940 PM_ParticleLine(float*, float*, int, float, float) - 0x00000000001a7a10 PM_DrawRectangle(float*, float*, float*, float*, int, float) - 0x00000000001a7d40 PM_DrawPhysEntBBox(int, int, float) - 0x00000000001a8be0 PM_DrawBBox(float*, float*, float*, int, float) - 0x00000000001a9010 PM_ViewEntity() - *fill* 0x00000000001a90ec 0x4 - .text 0x00000000001a90f0 0x1310e release/obj/hl1_client/pm_shared/pm_shared.o - 0x00000000001a94d0 PM_NSPlaySound(int, char const*, float, float, int, int) - 0x00000000001a95a0 PM_GetIsBlinking() - 0x00000000001a9620 PM_GetIsLeaping() - 0x00000000001a96a0 PM_GetIsCharging() - 0x00000000001a9700 PM_InitBoxHull() - 0x00000000001a97f0 PM_HullForBox(float*, float*) - 0x00000000001a9910 NS_DrawBoundingBox(float const*, float const*, float const*, float const*) - 0x00000000001a9920 NS_DrawBoundingBox(OBBox const&) - 0x00000000001a9970 NS_HullForBox(float*, float*, float*, float*) - 0x00000000001a9b10 NS_GetCollisionSizeForUser3(AvHUser3, float*, float*) - 0x00000000001a9d20 NS_GetClosestPlaneNormal(float*, mplane_s*, int, float*) - 0x00000000001a9db0 NS_TraceLine(float*, float*, int, int, int, bool, trace_t&) - 0x00000000001aa650 NS_PlayerTrace(playermove_s*, float*, float*, int, int) - 0x00000000001ab130 NS_TestPlayerPosition(playermove_s*, float*, pmtrace_s*) - 0x00000000001ab8d0 PM_DebugLocations(int) - 0x00000000001ab8f0 PM_GetWishVelocity(float (&) [3]) - 0x00000000001ab990 NS_CheckOffsetFromOrigin(float, float, float, float (&) [3]) - 0x00000000001abf70 NS_GetWallstickingAngles(float const*, float const*, float*) - 0x00000000001ac040 NS_FixWallstickingAngles(float*) - 0x00000000001ac0f0 PM_ParticleAxes(float*, float*) - 0x00000000001ac230 NS_UpdateWallsticking() - 0x00000000001ac730 NS_GetStepsize(int) - 0x00000000001ac740 PM_SwapTextures(int, int) - 0x00000000001ac8a0 PM_SortTextures() - 0x00000000001aca80 PM_InitTextureTypes() - 0x00000000001ace90 PM_FindTextureType(char*) - 0x00000000001acf20 PM_GetDesiredTopDownCameraHeight(int&) - 0x00000000001acf30 NS_GetIsPlayerAlien(std::string&, float*) - 0x00000000001ad030 NS_PlayStepSound(int, int, float) - 0x00000000001ad570 PM_PlayStepSound(int, float) - 0x00000000001ad660 PM_MapTextureTypeStepType(char) - 0x00000000001ad680 PM_CatagorizeTextureType() - 0x00000000001ad7e0 PM_GetSpeeds(float&, float&) - 0x00000000001ad7f0 PM_SetStepInterval() - 0x00000000001ad940 PM_SetHulls() - 0x00000000001adb20 PM_UpdateStepSound() - 0x00000000001ade10 PM_AddToTouched(pmtrace_s, float*) - 0x00000000001adf20 PM_CheckVelocity() - 0x00000000001ae050 PM_ClipVelocity(float*, float*, float*, float) - 0x00000000001ae150 PM_GetHorizontalSpeed() - 0x00000000001ae190 PM_AddCorrectGravity() - 0x00000000001ae3b0 PM_FixupGravityVelocity() - 0x00000000001ae4a0 PM_FlyMove() - 0x00000000001af1e0 PM_Accelerate(float*, float, float) - 0x00000000001af2a0 PM_WalkMove() - 0x00000000001afb70 PM_Friction() - 0x00000000001afdc0 PM_AirAccelerate(float*, float, float) - 0x00000000001afeb0 PM_WaterMove() - 0x00000000001b0210 PM_InWater() - 0x00000000001b0230 PM_CheckWater() - 0x00000000001b0400 PM_CategorizePosition() - 0x00000000001b1260 PM_GetRandomStuckOffsets(int, int, float*) - 0x00000000001b12e0 PM_ResetStuckOffsets(int, int) - 0x00000000001b1300 PM_CheckStuck() - 0x00000000001b1ee0 PM_SpectatorMove() - 0x00000000001b2270 PM_SplineFraction(float, float) - 0x00000000001b2290 PM_FixPlayerCrouchStuck(int) - 0x00000000001b2a30 PM_UnDuck() - 0x00000000001b3740 PM_Duck() - 0x00000000001b4160 PM_FlapMove() - 0x00000000001b4180 PM_ChargeMove() - 0x00000000001b4400 PM_LadderMove(physent_s*) - 0x00000000001b4800 PM_Ladder() - 0x00000000001b48e0 PM_WaterJump() - 0x00000000001b4970 PM_AddGravity() - 0x00000000001b49b0 PM_PushEntity(float*) - 0x00000000001b4b50 PM_Physics_Toss() - 0x00000000001b5d30 PM_NoClip() - 0x00000000001b5df0 PM_PlaybackEvent(int) - 0x00000000001b5e60 PM_GetCelerityLevel() - 0x00000000001b5ee0 PM_PreventMegaCrazyLerkPancakage() - 0x00000000001b6060 PM_AirMove() - 0x00000000001b62c0 PM_PreventMegaBunnyJumping(bool) - 0x00000000001b6390 PM_Jump() - 0x00000000001b6cf0 PM_LeapMove() - 0x00000000001b6e10 PM_AlienAbilities() - 0x00000000001b72a0 PM_BlinkMove() - 0x00000000001b73e0 PM_CheckWaterJump() - 0x00000000001b8190 PM_CheckFalling() - 0x00000000001b85d0 PM_PlayWaterSounds() - 0x00000000001b88c0 PM_CalcRoll(float*, float*, float, float) - 0x00000000001b8940 PM_DropPunchAngle(float*) - 0x00000000001b8990 PM_CheckParamters() - 0x00000000001b8d00 PM_ReduceTimers() - 0x00000000001b8db0 PM_CanFlap() - 0x00000000001b8e10 PM_CanGlide() - 0x00000000001b8e40 PM_CanWalljump() - 0x00000000001b9590 PM_Overwatch() - 0x00000000001b95a0 PM_TopDown() - 0x00000000001b9ba0 PM_Jetpack() - 0x00000000001b9e80 PM_PlayerMove(int) - 0x00000000001ba830 PM_CreateStuckTable() - 0x00000000001baeb0 PM_Move(playermove_s*, int) - 0x00000000001bb3f0 PM_GetVisEntInfo(int) - 0x00000000001bb430 PM_GetPhysEntInfo(int) - 0x00000000001bb470 PM_Init(playermove_s*) - 0x00000000001bb580 PM_ViewTraceEntity(float, float, float, float, float, float, int&) - 0x00000000001bb690 GetIsEntityAPlayer(int) - 0x00000000001bb6f0 PM_ViewTracePlayer(float, float, float, float, float, float, int&) - *fill* 0x00000000001bc1fe 0x2 - .text 0x00000000001bc200 0xa1b release/obj/hl1_client/pm_shared/pm_math.o - 0x00000000001bc200 anglemod(float) - 0x00000000001bc240 AngleVectors(float const*, float*, float*, float*) - 0x00000000001bc3a0 AngleVectorsTranspose(float const*, float*, float*, float*) - 0x00000000001bc510 NormalizeAngles(float*) - 0x00000000001bc5f0 InterpolateAngles(float*, float*, float*, float) - 0x00000000001bc980 AngleBetweenVectors(float const*, float const*) - 0x00000000001bca30 _DotProduct(float*, float*) - 0x00000000001bca50 _VectorSubtract(float*, float*, float*) - 0x00000000001bca80 _VectorAdd(float*, float*, float*) - 0x00000000001bcab0 _VectorCopy(float*, float*) - 0x00000000001bcae0 Distance(float const*, float const*) - 0x00000000001bcb20 Q_log2(int) - 0x00000000001bcb40 VectorMatrix(float*, float*, float*) - *fill* 0x00000000001bcc1b 0x5 - .text 0x00000000001bcc20 0x110 release/obj/hl1_client/ui/bitmappng.o - 0x00000000001bcc20 BitmapPNG::~BitmapPNG() - 0x00000000001bcc20 BitmapPNG::~BitmapPNG() - 0x00000000001bcc30 BitmapPNG::~BitmapPNG() - 0x00000000001bcc40 BitmapPNG::BitmapPNG(int, int, unsigned char*) - 0x00000000001bcc40 BitmapPNG::BitmapPNG(int, int, unsigned char*) - .text 0x00000000001bcd30 0x81b release/obj/hl1_client/ui/ChatPanel.o - 0x00000000001bcd30 ChatPanel::paintBackground() - 0x00000000001bcdb0 ChatPanel::paint() - 0x00000000001bcf40 ChatPanel::ChatPanel(int, int, int, int) - 0x00000000001bcf40 ChatPanel::ChatPanel(int, int, int, int) - 0x00000000001bd060 ChatPanel::SetChatMode(std::string) - 0x00000000001bd080 ChatPanel::CancelChat() - 0x00000000001bd180 ChatPanel::KeyDown(int, int) - 0x00000000001bd530 ChatPanel::WasKeyPushed(int) const - *fill* 0x00000000001bd54b 0x5 - .text 0x00000000001bd550 0x1ac release/obj/hl1_client/ui/ColoredPanel.o - 0x00000000001bd550 ColoredPanel::ColoredPanel() - 0x00000000001bd550 ColoredPanel::ColoredPanel() - 0x00000000001bd570 ColoredPanel::ColoredPanel(int, int, int, int) - 0x00000000001bd570 ColoredPanel::ColoredPanel(int, int, int, int) - 0x00000000001bd5b0 ColoredPanel::paint() - 0x00000000001bd5c0 ColoredPanel::paintBackground() - *fill* 0x00000000001bd6fc 0x4 - .text 0x00000000001bd700 0x2b release/obj/hl1_client/ui/DummyPanel.o - 0x00000000001bd700 DummyPanel::paintBackground() - 0x00000000001bd710 DummyPanel::paint() - *fill* 0x00000000001bd72b 0x5 - .text 0x00000000001bd730 0x1312 release/obj/hl1_client/ui/FadingImageLabel.o - 0x00000000001bd730 FadingImageLabel::GetDrawHighlighted() const - 0x00000000001bd740 FadingImageLabel::GetEnabled() const - 0x00000000001bd750 FadingImageLabel::GetFadeState() const - 0x00000000001bd760 FadingImageLabel::GetValveAlpha() const - 0x00000000001bd770 FadingImageLabel::GetVisibleSize(int&, int&) - 0x00000000001bd790 FadingImageLabel::paintBackground() - 0x00000000001bd7a0 FadingImageLabel::SetSizeKeepCenter(int, int) - 0x00000000001bd870 FadingImageLabel::SetVisibleSize(int, int) - 0x00000000001bd8e0 FadingImageLabel::VidInit() - 0x00000000001bd900 non-virtual thunk to FadingImageLabel::VidInit() - 0x00000000001bd910 FadingImageLabel::SetSpriteName(std::string const&) - 0x00000000001bd930 FadingImageLabel::getTextSize(int&, int&) - 0x00000000001bd970 FadingImageLabel::RecalculateTextPosition() - 0x00000000001bda40 FadingImageLabel::DoPaint() - 0x00000000001bdeb0 FadingImageLabel::getContentSize(int&, int&) - 0x00000000001bdef0 FadingImageLabel::SetFadeState(bool) - 0x00000000001bdf90 FadingImageLabel::Update(float) - 0x00000000001be040 FadingImageLabel::paint() - 0x00000000001be240 FadingImageLabel::~FadingImageLabel() - 0x00000000001be240 FadingImageLabel::~FadingImageLabel() - 0x00000000001be300 FadingImageLabel::~FadingImageLabel() - 0x00000000001be3d0 FadingImageLabel::setText(char const*) - 0x00000000001be640 FadingImageLabel::FadingImageLabel(int, int) - 0x00000000001be640 FadingImageLabel::FadingImageLabel(int, int) - 0x00000000001be730 FadingImageLabel::Init() - 0x00000000001be7d0 FadingImageLabel::SetAlwaysDrawText(bool) - 0x00000000001be7e0 FadingImageLabel::SetBaseFadeTime(float) - 0x00000000001be800 FadingImageLabel::setFont(vgui::Scheme::SchemeFont) - 0x00000000001be820 FadingImageLabel::setFont(vgui::Font*) - 0x00000000001be850 FadingImageLabel::FadedIn() - 0x00000000001be870 FadingImageLabel::FadedOut() - 0x00000000001be890 FadingImageLabel::setVisible(bool) - 0x00000000001be8d0 FadingImageLabel::setVisibleWithoutFading(bool) - 0x00000000001be900 FadingImageLabel::getBgColor(int&, int&, int&, int&) - 0x00000000001be950 FadingImageLabel::getBgColor(vgui::Color&) - 0x00000000001be9d0 FadingImageLabel::setPos(int, int) - 0x00000000001bea10 FadingImageLabel::setSize(int, int) - *fill* 0x00000000001bea42 0xe - .text 0x00000000001bea50 0x48c release/obj/hl1_client/ui/loadpng.o - 0x00000000001bea50 png_read_vgui_stream(png_struct_def*, unsigned char*, unsigned int) - 0x00000000001bea90 LoadPNG(vgui::InputStream&) - 0x00000000001bed00 convertToUChar(png_info_struct*, unsigned char**, unsigned char*) - 0x00000000001bee00 LoadPNG(char const*) - 0x00000000001bee90 LoadPNG(unsigned char*, int) - *fill* 0x00000000001beedc 0x4 - .text 0x00000000001beee0 0x440 release/obj/hl1_client/ui/MarqueeComponent.o - 0x00000000001beee0 MarqueeComponent::NotifyGammaChange(float) - 0x00000000001bef00 non-virtual thunk to MarqueeComponent::NotifyGammaChange(float) - 0x00000000001bef10 MarqueeComponent::paintBackground() - 0x00000000001beff0 MarqueeComponent::paint() - 0x00000000001bf0d0 MarqueeComponent::MarqueeComponent() - 0x00000000001bf0d0 MarqueeComponent::MarqueeComponent() - 0x00000000001bf170 MarqueeComponent::ResetDimensions() - 0x00000000001bf200 MarqueeComponent::SetStartPos(int, int) - 0x00000000001bf290 MarqueeComponent::SetEndPos(int, int) - .text 0x00000000001bf320 0x2d0 release/obj/hl1_client/ui/MemoryInputStream.o - 0x00000000001bf320 MemoryInputStream::~MemoryInputStream() - 0x00000000001bf320 MemoryInputStream::~MemoryInputStream() - 0x00000000001bf330 MemoryInputStream::setSource(unsigned char*, int) - 0x00000000001bf350 MemoryInputStream::seekStart(bool&) - 0x00000000001bf370 MemoryInputStream::seekRelative(int, bool&) - 0x00000000001bf3a0 MemoryInputStream::seekEnd(bool&) - 0x00000000001bf3c0 MemoryInputStream::getAvailable(bool&) - 0x00000000001bf400 MemoryInputStream::close(bool&) - 0x00000000001bf430 MemoryInputStream::~MemoryInputStream() - 0x00000000001bf440 MemoryInputStream::readUChar(unsigned char*, int, bool&) - 0x00000000001bf570 MemoryInputStream::readUChar(bool&) - 0x00000000001bf5b0 MemoryInputStream::MemoryInputStream() - 0x00000000001bf5b0 MemoryInputStream::MemoryInputStream() - 0x00000000001bf5d0 MemoryInputStream::MemoryInputStream(unsigned char*, int) - 0x00000000001bf5d0 MemoryInputStream::MemoryInputStream(unsigned char*, int) - .text 0x00000000001bf5f0 0x669 release/obj/hl1_client/ui/PieMenu.o - 0x00000000001bf5f0 PieMenu::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x00000000001bf600 PieMenu::paintBackground() - 0x00000000001bf610 PieMenu::SetFadeState(bool) - 0x00000000001bf630 PieMenu::NotifyGammaChange(float) - 0x00000000001bf670 non-virtual thunk to PieMenu::NotifyGammaChange(float) - 0x00000000001bf680 PieMenu::VidInit() - 0x00000000001bf6a0 non-virtual thunk to PieMenu::VidInit() - 0x00000000001bf6b0 PieMenu::~PieMenu() - 0x00000000001bf6b0 PieMenu::~PieMenu() - 0x00000000001bf740 PieMenu::~PieMenu() - 0x00000000001bf7e0 PieMenu::PieMenu(std::string const&, int, int, int, int) - 0x00000000001bf7e0 PieMenu::PieMenu(std::string const&, int, int, int, int) - 0x00000000001bf8a0 PieMenu::AddInputSignalForNodes(vgui::InputSignal*) - 0x00000000001bf8e0 PieMenu::AddNode(std::string const&) - 0x00000000001bf9a0 PieMenu::ChangeNode(int, int, std::string const&) - 0x00000000001bf9c0 PieMenu::DisableNodesWhoseChildrenAreDisabled() - 0x00000000001bf9e0 PieMenu::GetRootNode() - 0x00000000001bfa00 PieMenu::GetSelectedNode(PieNode*&) - 0x00000000001bfa20 PieMenu::RecomputeVisibleSize() - 0x00000000001bfa40 PieMenu::ResetToDefaults() - 0x00000000001bfa60 PieMenu::SetConnectorName(std::string const&) - 0x00000000001bfa80 PieMenu::SetConstructionComplete() - 0x00000000001bfaa0 PieMenu::SetDefaultImage(std::string const&) - 0x00000000001bfaf0 PieMenu::SetFont(vgui::Font*) - 0x00000000001bfb00 PieMenu::SetNodeDistance(float, float) - 0x00000000001bfb20 PieMenu::Update(float) - 0x00000000001bfb40 PieMenu::UpdateMenuFromTech(AvHTechTree const&, int) - 0x00000000001bfb60 PieMenu::setPos(int, int) - 0x00000000001bfbe0 PieMenu::setSize(int, int) - *fill* 0x00000000001bfc59 0x7 - .text 0x00000000001bfc60 0x59aa release/obj/hl1_client/ui/PieNode.o - 0x00000000001bfc60 PieNode::GetDrawHighlighted() const - 0x00000000001bfc70 PieNode::GetDrawSelected() const - 0x00000000001bfc80 PieNode::GetEnabled() const - 0x00000000001bfc90 PieNode::GetHasChild(PieNode const*) const - 0x00000000001bfcf0 PieNode::HasChildren() const - 0x00000000001bfd60 PieNode::IsAdjacentTo(PieNode const*) - 0x00000000001bfdd0 PieNode::IsChildOf(PieNode const*) - 0x00000000001bfe00 PieNodeList::~PieNodeList() - 0x00000000001bfe00 PieNodeList::~PieNodeList() - 0x00000000001bfe30 PieNodeList::SetSizeKeepCenter(int, int) - 0x00000000001bfe50 PieNodeList::~PieNodeList() - 0x00000000001bfe80 PieNode::getBgColor(int&, int&, int&, int&) - 0x00000000001bff20 PieNode::GetSelectedNode(PieNode*&) - 0x00000000001bff80 PieNode::~PieNode() - 0x00000000001bff80 PieNode::~PieNode() - 0x00000000001c01b0 PieNode::~PieNode() - 0x00000000001c01d0 PieNode::AddInputSignalForNodes(vgui::InputSignal*) - 0x00000000001c03e0 PieNode::AttachNode(PieNode*, int, float, float) - 0x00000000001c04d0 PieNode::ComputeAndSetLocalizedText() - 0x00000000001c0620 PieNode::ChangeNode(int, std::string const&) - 0x00000000001c0690 PieNode::PieNode(std::string const&, int) - 0x00000000001c0690 PieNode::PieNode(std::string const&, int) - 0x00000000001c08b0 PieNode::ChangeNode(int, int, std::string const&) - 0x00000000001c0d80 PieNode::DisableNodesNotInMessageList(std::vector > const&) - 0x00000000001c0ee0 PieNode::DisableNodesWhoseChildrenAreDisabled() - 0x00000000001c12b0 PieNode::GetIsAbove(PieNode const*) const - 0x00000000001c12f0 PieNode::GetMessageID() const - 0x00000000001c1300 PieNode::GetNodeAtAngularOffset(int) - 0x00000000001c1320 PieNode::GetNodeName() const - 0x00000000001c1330 PieNode::GetPointCost() const - 0x00000000001c1340 PieNode::GetRoot() - 0x00000000001c1360 PieNode::ComputeRelativeConnectorCoordinates(PieNode*, int&, int&, int&, int&) - 0x00000000001c1670 PieNode::GetCenteredCoordinatesFromQuadrant(int, int&, int&) - 0x00000000001c1780 PieNode::GetMaxTextSize(int&, int&) - 0x00000000001c1e60 PieNode::HasSelectedNodeAbove() const - 0x00000000001c1ea0 PieNode::HasSelectedNodeBelow() const - 0x00000000001c2110 PieNode::paintBackground() - 0x00000000001c25c0 PieNode::MoveTree(int, int) - 0x00000000001c2a00 PieNode::ResetToDefaults() - 0x00000000001c2a40 PieNode::SetColorBias(float) - 0x00000000001c2d30 PieNode::SetConnectorName(std::string const&) - 0x00000000001c3740 PieNode::SetDefaultImage(std::string const&) - 0x00000000001c3790 PieNode::SetDrawSelected(bool) - 0x00000000001c37b0 PieNode::SetNodeAndAllChildrenFadeState(bool) - 0x00000000001c39f0 PieNode::HighlightNode() - 0x00000000001c3ac0 PieNodeList::SetFadeState(bool) - 0x00000000001c3b40 PieNode::SetNodeDistance(float, float) - 0x00000000001c3c10 PieNode::SetPosFromOffset(int, float, float) - 0x00000000001c3cd0 PieNode::SetNodeAndAdjacentChildrenFadeState(bool) - 0x00000000001c3d20 PieNode::SetNodeAndChildrenVisible(bool) - 0x00000000001c3f40 PieNode::UpdateMenuFromTech(AvHTechTree const&, int) - 0x00000000001c41b0 PieNodeList::PieNodeList(std::string const&, float) - 0x00000000001c41b0 PieNodeList::PieNodeList(std::string const&, float) - 0x00000000001c4420 PieNodeList::AddInputSignalForNodes(vgui::InputSignal*) - 0x00000000001c4470 PieNodeList::ChangeNode(int, int, std::string const&) - 0x00000000001c44f0 PieNodeList::DisableNodesNotInMessageList(std::vector > const&) - 0x00000000001c4500 PieNodeList::DisableNodesWhoseChildrenAreDisabled() - 0x00000000001c4570 PieNodeList::GetRoot() - 0x00000000001c4580 PieNodeList::GetSelectedNode(PieNode*&) - 0x00000000001c45a0 PieNodeList::RecomputeVisibleSize() - 0x00000000001c4600 PieNodeList::ResetToDefaults() - 0x00000000001c4640 PieNodeList::SetBasePosition(int, int, int, int) - 0x00000000001c46e0 PieNodeList::SetConnectorName(std::string const&) - 0x00000000001c47d0 PieNodeList::SetConstructionComplete() - 0x00000000001c47e0 PieNodeList::setParent(vgui::Panel*) - 0x00000000001c4800 PieNodeList::SetNodeDistance(float, float) - 0x00000000001c48f0 PieNodeList::Update(float) - 0x00000000001c4910 PieNodeList::UpdateMenuFromTech(AvHTechTree const&, int) - 0x00000000001c4920 PieNodeList::VidInit() - 0x00000000001c4940 PieNodeList::AddNode(std::string const&, vgui::Font*, vgui::Color const&, vgui::Color const&, std::string const&) - 0x00000000001c52c0 PieNode::getBgColor(vgui::Color&) - 0x00000000001c5470 PieNode::isVisible() - 0x00000000001c5480 PieNode::DoPaint() - 0x00000000001c5490 PieNode::SetSizeKeepCenter(int, int) - 0x00000000001c54f0 PieNode::SetFadeState(bool) - 0x00000000001c5500 PieNode::SetVisibleSize(int, int) - 0x00000000001c5560 PieNode::Update(float) - 0x00000000001c55b0 PieNode::VidInit() - 0x00000000001c5600 non-virtual thunk to PieNode::VidInit() - *fill* 0x00000000001c560a 0x6 - .text 0x00000000001c5610 0xb5d release/obj/hl1_client/ui/ScoreboardIcon.o - 0x00000000001c5610 ScoreboardIcon::~ScoreboardIcon() - 0x00000000001c5610 ScoreboardIcon::~ScoreboardIcon() - 0x00000000001c5670 ScoreboardIcon::getColor() const - 0x00000000001c5690 ScoreboardIcon::getIconColor() const - 0x00000000001c56a0 ScoreboardIcon::getIconNumber() const - 0x00000000001c56b0 ScoreboardIcon::getImage(int) const - 0x00000000001c5730 ScoreboardIcon::updateColor(int, float) - 0x00000000001c5870 ScoreboardIcon::updateColor(float) - 0x00000000001c5930 uncompressColor(int) - 0x00000000001c59a0 gammaAdjustColor(vgui::Color&, float) - 0x00000000001c5a30 loadImages(int, std::vector >&) - 0x00000000001c6000 ScoreboardIcon::ScoreboardIcon(int, int) - 0x00000000001c6000 ScoreboardIcon::ScoreboardIcon(int, int) - *fill* 0x00000000001c616d 0x3 - .text._ZNSt6vectorIPN4vgui9BitmapTGAESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_ - 0x00000000001c6170 0x195 release/obj/hl1_client/ui/ScoreboardIcon.o - 0x00000000001c6170 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, vgui::BitmapTGA* const&) - *fill* 0x00000000001c6305 0xb - .text 0x00000000001c6310 0x715 release/obj/hl1_client/ui/SliderPlus.o - 0x00000000001c6310 SliderPlus::fireIntChangeSignal() - 0x00000000001c6320 SliderPlus::getNobPos(int&, int&) - 0x00000000001c6340 SliderPlus::getRange(int&, int&) - 0x00000000001c6360 SliderPlus::getRangeWindow() - 0x00000000001c6370 SliderPlus::getValue() - 0x00000000001c6380 SliderPlus::hasFullRange() - 0x00000000001c6390 SliderPlus::isVertical() - 0x00000000001c63a0 SliderPlus::cursorMoved(int, int, vgui::Panel*) - 0x00000000001c6420 non-virtual thunk to SliderPlus::cursorMoved(int, int, vgui::Panel*) - 0x00000000001c6430 SliderPlus::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x00000000001c6450 non-virtual thunk to SliderPlus::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x00000000001c6460 SliderPlus::mouseWheeled(int, vgui::Panel*) - 0x00000000001c6470 non-virtual thunk to SliderPlus::mouseWheeled(int, vgui::Panel*) - 0x00000000001c6480 SliderPlus::recomputeNobPosFromValue() - 0x00000000001c6510 SliderPlus::recomputeValueFromNobPos() - 0x00000000001c6590 SliderPlus::setRange(int, int) - 0x00000000001c65c0 SliderPlus::setRangeWindow(int) - 0x00000000001c65d0 SliderPlus::setValue(int) - 0x00000000001c6600 SliderPlus::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x00000000001c66c0 non-virtual thunk to SliderPlus::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x00000000001c66d0 SliderPlus::SliderPlus(int, int, int, int, bool) - 0x00000000001c66d0 SliderPlus::SliderPlus(int, int, int, int, bool) - 0x00000000001c67b0 SliderPlus::computeNobBox(int&, int&, int&, int&) - 0x00000000001c6860 SliderPlus::paintBackground() - 0x00000000001c6a20 SliderPlus::setSize(int, int) - *fill* 0x00000000001c6a25 0xb - .text._ZN10SliderPlus13cursorEnteredEPN4vgui5PanelE - 0x00000000001c6a30 0x1a release/obj/hl1_client/ui/SliderPlus.o - 0x00000000001c6a30 SliderPlus::cursorEntered(vgui::Panel*) - 0x00000000001c6a40 non-virtual thunk to SliderPlus::cursorEntered(vgui::Panel*) - *fill* 0x00000000001c6a4a 0x6 - .text._ZN10SliderPlus12cursorExitedEPN4vgui5PanelE - 0x00000000001c6a50 0x1a release/obj/hl1_client/ui/SliderPlus.o - 0x00000000001c6a50 SliderPlus::cursorExited(vgui::Panel*) - 0x00000000001c6a60 non-virtual thunk to SliderPlus::cursorExited(vgui::Panel*) - *fill* 0x00000000001c6a6a 0x6 - .text._ZN10SliderPlus18mouseDoublePressedEN4vgui9MouseCodeEPNS0_5PanelE - 0x00000000001c6a70 0x1a release/obj/hl1_client/ui/SliderPlus.o - 0x00000000001c6a70 SliderPlus::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - 0x00000000001c6a80 non-virtual thunk to SliderPlus::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - *fill* 0x00000000001c6a8a 0x6 - .text._ZN10SliderPlus10keyPressedEN4vgui7KeyCodeEPNS0_5PanelE - 0x00000000001c6a90 0x1a release/obj/hl1_client/ui/SliderPlus.o - 0x00000000001c6a90 SliderPlus::keyPressed(vgui::KeyCode, vgui::Panel*) - 0x00000000001c6aa0 non-virtual thunk to SliderPlus::keyPressed(vgui::KeyCode, vgui::Panel*) - *fill* 0x00000000001c6aaa 0x6 - .text._ZN10SliderPlus8keyTypedEN4vgui7KeyCodeEPNS0_5PanelE - 0x00000000001c6ab0 0x1a release/obj/hl1_client/ui/SliderPlus.o - 0x00000000001c6ab0 SliderPlus::keyTyped(vgui::KeyCode, vgui::Panel*) - 0x00000000001c6ac0 non-virtual thunk to SliderPlus::keyTyped(vgui::KeyCode, vgui::Panel*) - *fill* 0x00000000001c6aca 0x6 - .text._ZN10SliderPlus11keyReleasedEN4vgui7KeyCodeEPNS0_5PanelE - 0x00000000001c6ad0 0x1a release/obj/hl1_client/ui/SliderPlus.o - 0x00000000001c6ad0 SliderPlus::keyReleased(vgui::KeyCode, vgui::Panel*) - 0x00000000001c6ae0 non-virtual thunk to SliderPlus::keyReleased(vgui::KeyCode, vgui::Panel*) - *fill* 0x00000000001c6aea 0x6 - .text._ZN10SliderPlus14keyFocusTickedEPN4vgui5PanelE - 0x00000000001c6af0 0x1a release/obj/hl1_client/ui/SliderPlus.o - 0x00000000001c6af0 SliderPlus::keyFocusTicked(vgui::Panel*) - 0x00000000001c6b00 non-virtual thunk to SliderPlus::keyFocusTicked(vgui::Panel*) - *fill* 0x00000000001c6b0a 0x6 - .text 0x00000000001c6b10 0x5b4 release/obj/hl1_client/ui/SpritePanel.o - 0x00000000001c6b10 SpritePanel::NotifyGammaChange(float) - 0x00000000001c6b30 non-virtual thunk to SpritePanel::NotifyGammaChange(float) - 0x00000000001c6b40 SpritePanel::paintBackground() - 0x00000000001c6b50 SpritePanel::VidInit() - 0x00000000001c6b60 non-virtual thunk to SpritePanel::VidInit() - 0x00000000001c6b70 SpritePanel::SetVAlignment(std::string const&) - 0x00000000001c6b90 SpritePanel::paint() - 0x00000000001c6f80 SpritePanel::SpritePanel(std::string const&, std::string const&) - 0x00000000001c6f80 SpritePanel::SpritePanel(std::string const&, std::string const&) - 0x00000000001c7010 SpritePanel::GetNumSpritesAcross() - 0x00000000001c7070 SpritePanel::GetNumSpritesDown() - *fill* 0x00000000001c70c4 0xc - .text 0x00000000001c70d0 0x416 release/obj/hl1_client/ui/UIComponent.o - 0x00000000001c70d0 UIComponent::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c70e0 UIComponent::Update(float) - 0x00000000001c70f0 UIComponent::~UIComponent() - 0x00000000001c70f0 UIComponent::~UIComponent() - 0x00000000001c73c0 UIComponent::~UIComponent() - 0x00000000001c73e0 UIComponent::UIComponent() - 0x00000000001c73e0 UIComponent::UIComponent() - 0x00000000001c7420 UIComponent::GetDescription() - 0x00000000001c7430 UIComponent::GetDescription() const - 0x00000000001c7440 UIComponent::GetName() const - 0x00000000001c7450 UIComponent::SetName(std::string const&) - 0x00000000001c7460 UIComponent::AllocateAndSetProperties(TRDescription const&, CSchemeManager*) - *fill* 0x00000000001c74e6 0xa - .text._ZNSt6vectorISt4pairISsSsESaIS1_EEaSERKS3_ - 0x00000000001c74f0 0x45c release/obj/hl1_client/ui/UIComponent.o - 0x00000000001c74f0 std::vector, std::allocator > >::operator=(std::vector, std::allocator > > const&) - *fill* 0x00000000001c794c 0x4 - .text 0x00000000001c7950 0x28c5 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001c7950 UIPanel::AllocateComponent(TRDescription const&) - 0x00000000001c7980 UIProgressBar::AllocateComponent(TRDescription const&) - 0x00000000001c79e0 UIConfigWizard::AllocateComponent(TRDescription const&) - 0x00000000001c7aa0 UIMenu::AllocateComponent(TRDescription const&) - 0x00000000001c7b60 UIPopupMenu::AllocateComponent(TRDescription const&) - 0x00000000001c7c20 UIImagePanel::AllocateComponent(TRDescription const&) - 0x00000000001c7c50 UIMarqueeComponent::AllocateComponent(TRDescription const&) - 0x00000000001c7cc0 UIColoredPanel::AllocateComponent(TRDescription const&) - 0x00000000001c7e10 UIInvisiblePanel::AllocateComponent(TRDescription const&) - 0x00000000001c7e40 UISlider::AllocateComponent(TRDescription const&) - 0x00000000001c7f90 UISlider2::AllocateComponent(TRDescription const&) - 0x00000000001c80e0 UIDummyPanel::AllocateComponent(TRDescription const&) - 0x00000000001c8110 UISliderPlus::AllocateComponent(TRDescription const&) - 0x00000000001c8260 UITreeFolder::AllocateComponent(TRDescription const&) - 0x00000000001c8310 UILabel::AllocateComponent(TRDescription const&) - 0x00000000001c8410 UIFadingImageLabel::AllocateComponent(TRDescription const&) - 0x00000000001c8510 UIImageLabel::AllocateComponent(TRDescription const&) - 0x00000000001c8650 UISpritePanel::AllocateComponent(TRDescription const&) - 0x00000000001c8800 UIButton::AllocateComponent(TRDescription const&) - 0x00000000001c8990 UIStaticLabel::AllocateComponent(TRDescription const&) - 0x00000000001c8bd0 UIPanel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9070 UILabel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9360 UIProgressBar::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9370 UIConfigWizard::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9380 UITreeFolder::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9390 UIMenu::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c93a0 UIPopupMenu::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c93b0 UIImagePanel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c93c0 UIFadingImageLabel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c93d0 UIMarqueeComponent::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c93e0 UIColoredPanel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c93f0 UIInvisiblePanel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9400 UISlider::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9540 UISlider2::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9680 UISpritePanel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9690 UIDummyPanel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c96a0 UISliderPlus::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c97d0 UIImageLabel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9ac0 UIStaticLabel::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001c9db0 UIButton::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001ca0a0 UIPanel::Update(float) - 0x00000000001ca0b0 UILabel::Update(float) - 0x00000000001ca0c0 UIImageLabel::Update(float) - 0x00000000001ca0d0 UIButton::Update(float) - 0x00000000001ca0e0 UIStaticLabel::Update(float) - 0x00000000001ca0f0 UIProgressBar::Update(float) - 0x00000000001ca100 UIConfigWizard::Update(float) - 0x00000000001ca110 UITreeFolder::Update(float) - 0x00000000001ca120 UIMenu::Update(float) - 0x00000000001ca130 UIPopupMenu::Update(float) - 0x00000000001ca140 UIImagePanel::Update(float) - 0x00000000001ca150 UIFadingImageLabel::Update(float) - 0x00000000001ca1a0 UIMarqueeComponent::Update(float) - 0x00000000001ca1b0 UIColoredPanel::Update(float) - 0x00000000001ca1c0 UIInvisiblePanel::Update(float) - 0x00000000001ca1d0 UISlider::Update(float) - 0x00000000001ca1e0 UISlider2::Update(float) - 0x00000000001ca1f0 UISpritePanel::Update(float) - 0x00000000001ca200 UIDummyPanel::Update(float) - 0x00000000001ca210 UISliderPlus::Update(float) - *fill* 0x00000000001ca215 0xb - .text._ZN7UIPanel19GetComponentPointerEv - 0x00000000001ca220 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca220 UIPanel::GetComponentPointer() - *fill* 0x00000000001ca228 0x8 - .text._ZNK7UIPanel7GetTypeEv - 0x00000000001ca230 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca230 UIPanel::GetType() const - *fill* 0x00000000001ca238 0x8 - .text._ZN7UILabel19GetComponentPointerEv - 0x00000000001ca240 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca240 UILabel::GetComponentPointer() - *fill* 0x00000000001ca248 0x8 - .text._ZN12UIImageLabel19GetComponentPointerEv - 0x00000000001ca250 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca250 UIImageLabel::GetComponentPointer() - *fill* 0x00000000001ca258 0x8 - .text._ZNK12UIImageLabel7GetTypeEv - 0x00000000001ca260 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca260 UIImageLabel::GetType() const - *fill* 0x00000000001ca268 0x8 - .text._ZN13UIProgressBar19GetComponentPointerEv - 0x00000000001ca270 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca270 UIProgressBar::GetComponentPointer() - *fill* 0x00000000001ca278 0x8 - .text._ZNK13UIProgressBar7GetTypeEv - 0x00000000001ca280 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca280 UIProgressBar::GetType() const - *fill* 0x00000000001ca288 0x8 - .text._ZN14UIConfigWizard19GetComponentPointerEv - 0x00000000001ca290 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca290 UIConfigWizard::GetComponentPointer() - *fill* 0x00000000001ca298 0x8 - .text._ZNK14UIConfigWizard7GetTypeEv - 0x00000000001ca2a0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca2a0 UIConfigWizard::GetType() const - *fill* 0x00000000001ca2a8 0x8 - .text._ZN12UITreeFolder19GetComponentPointerEv - 0x00000000001ca2b0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca2b0 UITreeFolder::GetComponentPointer() - *fill* 0x00000000001ca2b8 0x8 - .text._ZNK12UITreeFolder7GetTypeEv - 0x00000000001ca2c0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca2c0 UITreeFolder::GetType() const - *fill* 0x00000000001ca2c8 0x8 - .text._ZN6UIMenu19GetComponentPointerEv - 0x00000000001ca2d0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca2d0 UIMenu::GetComponentPointer() - *fill* 0x00000000001ca2d8 0x8 - .text._ZNK6UIMenu7GetTypeEv - 0x00000000001ca2e0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca2e0 UIMenu::GetType() const - *fill* 0x00000000001ca2e8 0x8 - .text._ZN11UIPopupMenu19GetComponentPointerEv - 0x00000000001ca2f0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca2f0 UIPopupMenu::GetComponentPointer() - *fill* 0x00000000001ca2f8 0x8 - .text._ZNK11UIPopupMenu7GetTypeEv - 0x00000000001ca300 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca300 UIPopupMenu::GetType() const - *fill* 0x00000000001ca308 0x8 - .text._ZN12UIImagePanel19GetComponentPointerEv - 0x00000000001ca310 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca310 UIImagePanel::GetComponentPointer() - *fill* 0x00000000001ca318 0x8 - .text._ZNK12UIImagePanel7GetTypeEv - 0x00000000001ca320 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca320 UIImagePanel::GetType() const - *fill* 0x00000000001ca328 0x8 - .text._ZN8UIButton19GetComponentPointerEv - 0x00000000001ca330 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca330 UIButton::GetComponentPointer() - *fill* 0x00000000001ca338 0x8 - .text._ZNK8UIButton7GetTypeEv - 0x00000000001ca340 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca340 UIButton::GetType() const - *fill* 0x00000000001ca348 0x8 - .text._ZN18UIFadingImageLabel19GetComponentPointerEv - 0x00000000001ca350 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca350 UIFadingImageLabel::GetComponentPointer() - *fill* 0x00000000001ca358 0x8 - .text._ZNK18UIFadingImageLabel7GetTypeEv - 0x00000000001ca360 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca360 UIFadingImageLabel::GetType() const - *fill* 0x00000000001ca368 0x8 - .text._ZN18UIMarqueeComponent19GetComponentPointerEv - 0x00000000001ca370 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca370 UIMarqueeComponent::GetComponentPointer() - *fill* 0x00000000001ca378 0x8 - .text._ZNK18UIMarqueeComponent7GetTypeEv - 0x00000000001ca380 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca380 UIMarqueeComponent::GetType() const - *fill* 0x00000000001ca388 0x8 - .text._ZN14UIColoredPanel19GetComponentPointerEv - 0x00000000001ca390 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca390 UIColoredPanel::GetComponentPointer() - *fill* 0x00000000001ca398 0x8 - .text._ZN16UIInvisiblePanel19GetComponentPointerEv - 0x00000000001ca3a0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca3a0 UIInvisiblePanel::GetComponentPointer() - *fill* 0x00000000001ca3a8 0x8 - .text._ZNK16UIInvisiblePanel7GetTypeEv - 0x00000000001ca3b0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca3b0 UIInvisiblePanel::GetType() const - *fill* 0x00000000001ca3b8 0x8 - .text._ZN8UISlider19GetComponentPointerEv - 0x00000000001ca3c0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca3c0 UISlider::GetComponentPointer() - *fill* 0x00000000001ca3c8 0x8 - .text._ZNK8UISlider7GetTypeEv - 0x00000000001ca3d0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca3d0 UISlider::GetType() const - *fill* 0x00000000001ca3d8 0x8 - .text._ZN9UISlider219GetComponentPointerEv - 0x00000000001ca3e0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca3e0 UISlider2::GetComponentPointer() - *fill* 0x00000000001ca3e8 0x8 - .text._ZNK9UISlider27GetTypeEv - 0x00000000001ca3f0 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca3f0 UISlider2::GetType() const - *fill* 0x00000000001ca3f8 0x8 - .text._ZN12UISliderPlus19GetComponentPointerEv - 0x00000000001ca400 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca400 UISliderPlus::GetComponentPointer() - *fill* 0x00000000001ca408 0x8 - .text._ZNK12UISliderPlus7GetTypeEv - 0x00000000001ca410 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca410 UISliderPlus::GetType() const - *fill* 0x00000000001ca418 0x8 - .text._ZN13UIStaticLabel19GetComponentPointerEv - 0x00000000001ca420 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca420 UIStaticLabel::GetComponentPointer() - *fill* 0x00000000001ca428 0x8 - .text._ZN13UISpritePanel19GetComponentPointerEv - 0x00000000001ca430 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca430 UISpritePanel::GetComponentPointer() - *fill* 0x00000000001ca438 0x8 - .text._ZNK13UISpritePanel7GetTypeEv - 0x00000000001ca440 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca440 UISpritePanel::GetType() const - *fill* 0x00000000001ca448 0x8 - .text._ZN12UIDummyPanel19GetComponentPointerEv - 0x00000000001ca450 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca450 UIDummyPanel::GetComponentPointer() - *fill* 0x00000000001ca458 0x8 - .text._ZNK12UIDummyPanel7GetTypeEv - 0x00000000001ca460 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca460 UIDummyPanel::GetType() const - *fill* 0x00000000001ca468 0x8 - .text._ZN7UIPanelD2Ev - 0x00000000001ca470 0x2d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca470 UIPanel::~UIPanel() - 0x00000000001ca470 UIPanel::~UIPanel() - *fill* 0x00000000001ca49d 0x3 - .text._ZN7UIPanelD0Ev - 0x00000000001ca4a0 0x35 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca4a0 UIPanel::~UIPanel() - *fill* 0x00000000001ca4d5 0xb - .text._ZN7UILabelD2Ev - 0x00000000001ca4e0 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca4e0 UILabel::~UILabel() - 0x00000000001ca4e0 UILabel::~UILabel() - *fill* 0x00000000001ca525 0xb - .text._ZN13UIProgressBarD2Ev - 0x00000000001ca530 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca530 UIProgressBar::~UIProgressBar() - 0x00000000001ca530 UIProgressBar::~UIProgressBar() - *fill* 0x00000000001ca575 0xb - .text._ZN14UIConfigWizardD2Ev - 0x00000000001ca580 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca580 UIConfigWizard::~UIConfigWizard() - 0x00000000001ca580 UIConfigWizard::~UIConfigWizard() - *fill* 0x00000000001ca5c5 0xb - .text._ZN12UITreeFolderD2Ev - 0x00000000001ca5d0 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca5d0 UITreeFolder::~UITreeFolder() - 0x00000000001ca5d0 UITreeFolder::~UITreeFolder() - *fill* 0x00000000001ca615 0xb - .text._ZN6UIMenuD2Ev - 0x00000000001ca620 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca620 UIMenu::~UIMenu() - 0x00000000001ca620 UIMenu::~UIMenu() - *fill* 0x00000000001ca665 0xb - .text._ZN12UIImagePanelD2Ev - 0x00000000001ca670 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca670 UIImagePanel::~UIImagePanel() - 0x00000000001ca670 UIImagePanel::~UIImagePanel() - *fill* 0x00000000001ca6b5 0xb - .text._ZN18UIMarqueeComponentD2Ev - 0x00000000001ca6c0 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca6c0 UIMarqueeComponent::~UIMarqueeComponent() - 0x00000000001ca6c0 UIMarqueeComponent::~UIMarqueeComponent() - *fill* 0x00000000001ca705 0xb - .text._ZN14UIColoredPanelD2Ev - 0x00000000001ca710 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca710 UIColoredPanel::~UIColoredPanel() - 0x00000000001ca710 UIColoredPanel::~UIColoredPanel() - *fill* 0x00000000001ca755 0xb - .text._ZN16UIInvisiblePanelD2Ev - 0x00000000001ca760 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca760 UIInvisiblePanel::~UIInvisiblePanel() - 0x00000000001ca760 UIInvisiblePanel::~UIInvisiblePanel() - *fill* 0x00000000001ca7a5 0xb - .text._ZN8UISliderD2Ev - 0x00000000001ca7b0 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca7b0 UISlider::~UISlider() - 0x00000000001ca7b0 UISlider::~UISlider() - *fill* 0x00000000001ca7f5 0xb - .text._ZN9UISlider2D2Ev - 0x00000000001ca800 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca800 UISlider2::~UISlider2() - 0x00000000001ca800 UISlider2::~UISlider2() - *fill* 0x00000000001ca845 0xb - .text._ZN12UISliderPlusD2Ev - 0x00000000001ca850 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca850 UISliderPlus::~UISliderPlus() - 0x00000000001ca850 UISliderPlus::~UISliderPlus() - *fill* 0x00000000001ca895 0xb - .text._ZN12UIDummyPanelD2Ev - 0x00000000001ca8a0 0x45 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca8a0 UIDummyPanel::~UIDummyPanel() - 0x00000000001ca8a0 UIDummyPanel::~UIDummyPanel() - *fill* 0x00000000001ca8e5 0xb - .text._ZN18UIFadingImageLabelD2Ev - 0x00000000001ca8f0 0x4c release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca8f0 UIFadingImageLabel::~UIFadingImageLabel() - 0x00000000001ca8f0 UIFadingImageLabel::~UIFadingImageLabel() - *fill* 0x00000000001ca93c 0x4 - .text._ZN13UIProgressBarD0Ev - 0x00000000001ca940 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca940 UIProgressBar::~UIProgressBar() - *fill* 0x00000000001ca98d 0x3 - .text._ZN7UILabelD0Ev - 0x00000000001ca990 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca990 UILabel::~UILabel() - *fill* 0x00000000001ca9dd 0x3 - .text._ZN12UIDummyPanelD0Ev - 0x00000000001ca9e0 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001ca9e0 UIDummyPanel::~UIDummyPanel() - *fill* 0x00000000001caa2d 0x3 - .text._ZN16UIInvisiblePanelD0Ev - 0x00000000001caa30 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001caa30 UIInvisiblePanel::~UIInvisiblePanel() - *fill* 0x00000000001caa7d 0x3 - .text._ZN14UIConfigWizardD0Ev - 0x00000000001caa80 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001caa80 UIConfigWizard::~UIConfigWizard() - *fill* 0x00000000001caacd 0x3 - .text._ZN12UIImagePanelD0Ev - 0x00000000001caad0 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001caad0 UIImagePanel::~UIImagePanel() - *fill* 0x00000000001cab1d 0x3 - .text._ZN12UITreeFolderD0Ev - 0x00000000001cab20 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cab20 UITreeFolder::~UITreeFolder() - *fill* 0x00000000001cab6d 0x3 - .text._ZN14UIColoredPanelD0Ev - 0x00000000001cab70 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cab70 UIColoredPanel::~UIColoredPanel() - *fill* 0x00000000001cabbd 0x3 - .text._ZN8UISliderD0Ev - 0x00000000001cabc0 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cabc0 UISlider::~UISlider() - *fill* 0x00000000001cac0d 0x3 - .text._ZN6UIMenuD0Ev - 0x00000000001cac10 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cac10 UIMenu::~UIMenu() - *fill* 0x00000000001cac5d 0x3 - .text._ZN12UISliderPlusD0Ev - 0x00000000001cac60 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cac60 UISliderPlus::~UISliderPlus() - *fill* 0x00000000001cacad 0x3 - .text._ZN9UISlider2D0Ev - 0x00000000001cacb0 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cacb0 UISlider2::~UISlider2() - *fill* 0x00000000001cacfd 0x3 - .text._ZN18UIMarqueeComponentD0Ev - 0x00000000001cad00 0x4d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cad00 UIMarqueeComponent::~UIMarqueeComponent() - *fill* 0x00000000001cad4d 0x3 - .text._ZN12UIImageLabelD2Ev - 0x00000000001cad50 0x5d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cad50 UIImageLabel::~UIImageLabel() - 0x00000000001cad50 UIImageLabel::~UIImageLabel() - *fill* 0x00000000001cadad 0x3 - .text._ZN13UIStaticLabelD2Ev - 0x00000000001cadb0 0x5d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cadb0 UIStaticLabel::~UIStaticLabel() - 0x00000000001cadb0 UIStaticLabel::~UIStaticLabel() - *fill* 0x00000000001cae0d 0x3 - .text._ZN11UIPopupMenuD2Ev - 0x00000000001cae10 0x5d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cae10 UIPopupMenu::~UIPopupMenu() - 0x00000000001cae10 UIPopupMenu::~UIPopupMenu() - *fill* 0x00000000001cae6d 0x3 - .text._ZN8UIButtonD2Ev - 0x00000000001cae70 0x5d release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cae70 UIButton::~UIButton() - 0x00000000001cae70 UIButton::~UIButton() - *fill* 0x00000000001caecd 0x3 - .text._ZN18UIFadingImageLabelD0Ev - 0x00000000001caed0 0x54 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001caed0 UIFadingImageLabel::~UIFadingImageLabel() - *fill* 0x00000000001caf24 0xc - .text._ZN13UIStaticLabelD0Ev - 0x00000000001caf30 0x65 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001caf30 UIStaticLabel::~UIStaticLabel() - *fill* 0x00000000001caf95 0xb - .text._ZN12UIImageLabelD0Ev - 0x00000000001cafa0 0x65 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cafa0 UIImageLabel::~UIImageLabel() - *fill* 0x00000000001cb005 0xb - .text._ZN11UIPopupMenuD0Ev - 0x00000000001cb010 0x65 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cb010 UIPopupMenu::~UIPopupMenu() - *fill* 0x00000000001cb075 0xb - .text._ZN8UIButtonD0Ev - 0x00000000001cb080 0x65 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cb080 UIButton::~UIButton() - *fill* 0x00000000001cb0e5 0xb - .text._ZN13UISpritePanelD2Ev - 0x00000000001cb0f0 0x16c release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cb0f0 UISpritePanel::~UISpritePanel() - 0x00000000001cb0f0 UISpritePanel::~UISpritePanel() - *fill* 0x00000000001cb25c 0x4 - .text._ZN13UISpritePanelD0Ev - 0x00000000001cb260 0x178 release/obj/hl1_client/ui/UIComponents.o - 0x00000000001cb260 UISpritePanel::~UISpritePanel() - *fill* 0x00000000001cb3d8 0x8 - .text 0x00000000001cb3e0 0xac7 release/obj/hl1_client/ui/UIFactory.o - 0x00000000001cb3e0 UIFactory::BuildComponent(TRDescription const&, CSchemeManager*) - *fill* 0x00000000001cbea7 0x9 - .text._ZN13UIStaticLabelC2Ev - 0x00000000001cbeb0 0x8f release/obj/hl1_client/ui/UIFactory.o - 0x00000000001cbeb0 UIStaticLabel::UIStaticLabel() - 0x00000000001cbeb0 UIStaticLabel::UIStaticLabel() - *fill* 0x00000000001cbf3f 0x1 - .text 0x00000000001cbf40 0x740d release/obj/hl1_client/ui/UIHud.o - 0x00000000001cbf40 UIHud::PostUIInit() - 0x00000000001cbf50 UIHud::ResetGame() - 0x00000000001cbf70 UIHud::SetMusicAllowed(bool) - 0x00000000001cbf80 UIHud::Shutdown() - 0x00000000001cbf90 UIHud::GetTextHeader() const - 0x00000000001cbfc0 UIHud::Init() - 0x00000000001cbfd0 UIHud::SetUsingVGUI(bool) - 0x00000000001cbff0 UIHud::Think() - 0x00000000001cc000 UIHud::ShowMouse() - 0x00000000001cc030 UIHud::ToggleMouse() - 0x00000000001cc040 UIHud::UpdateClientData(client_data_s*, float) - 0x00000000001cc050 UIHud::VidInit() - 0x00000000001cc080 UIHud::UpdateMusic(float) - 0x00000000001cc230 UIHud::UpdateInternetStream(float, std::string&) - 0x00000000001cc360 UIHud::PlayRandomSong() - 0x00000000001cc370 UIHud::ShutdownMusic() - 0x00000000001cc3f0 UIHud::Redraw(float, int) - 0x00000000001cc4f0 UIHud::StopInternetStream() - 0x00000000001cc550 UIHud::InitializeSound() - 0x00000000001d23f0 UIHud::StopMusic() - 0x00000000001d2450 UIHud::ToggleEditMode() - 0x00000000001d2500 UIHud::PlayInternetStream(std::string const&, std::string&) - 0x00000000001d2660 UIHud::UIHud(std::string const&, UIFactory*) - 0x00000000001d2660 UIHud::UIHud(std::string const&, UIFactory*) - 0x00000000001d2830 UIHud::GetIsTimeForSong(float) const - 0x00000000001d28a0 UIHud::GetManager() - 0x00000000001d28b0 UIHud::GetManager() const - 0x00000000001d28c0 UIHud::InitializeScheme(char const*, vgui::Scheme*) - 0x00000000001d2b00 UIHud::LoadSchemes() - 0x00000000001d2b80 UIHud::PickRandomSong(std::string&) const - 0x00000000001d2b90 UIHud::ClearStream(FSOUND_STREAM*&) - 0x00000000001d2be0 UIHud::PlaySong(std::string&, int&, bool, FSOUND_STREAM*&, int&, int&, float) - 0x00000000001d2eb0 UIHud::GetFMOD() - 0x00000000001d2ec0 UIHud::~UIHud() - 0x00000000001d2ec0 UIHud::~UIHud() - 0x00000000001d32c0 UIHud::~UIHud() - 0x00000000001d32e0 UIHud::Update(float, std::string&) - *fill* 0x00000000001d334d 0x3 - .text 0x00000000001d3350 0x1a96 release/obj/hl1_client/ui/UIManager.o - 0x00000000001d3350 UIManager::Update(float) - 0x00000000001d33a0 UIManager::cursorEntered(vgui::Panel*) - 0x00000000001d33c0 UIManager::mouseDoublePressed(vgui::MouseCode, vgui::Panel*) - 0x00000000001d33d0 UIManager::mouseReleased(vgui::MouseCode, vgui::Panel*) - 0x00000000001d33f0 UIManager::mouseWheeled(int, vgui::Panel*) - 0x00000000001d3400 UIManager::keyPressed(vgui::KeyCode, vgui::Panel*) - 0x00000000001d3410 UIManager::keyTyped(vgui::KeyCode, vgui::Panel*) - 0x00000000001d3420 UIManager::keyReleased(vgui::KeyCode, vgui::Panel*) - 0x00000000001d3430 UIManager::keyFocusTicked(vgui::Panel*) - 0x00000000001d3440 UIManager::~UIManager() - 0x00000000001d3440 UIManager::~UIManager() - 0x00000000001d34a0 UIManager::VidInit() - 0x00000000001d3510 UIManager::cursorExited(vgui::Panel*) - 0x00000000001d3530 UIManager::mousePressed(vgui::MouseCode, vgui::Panel*) - 0x00000000001d3550 UIManager::~UIManager() - 0x00000000001d35a0 UIManager::UIManager(UIFactory*) - 0x00000000001d35a0 UIManager::UIManager(UIFactory*) - 0x00000000001d3610 UIManager::AddInputSignal(vgui::InputSignal*) - 0x00000000001d3660 UIManager::Clear() - 0x00000000001d36b0 UIManager::GetComponentFromPanel(vgui::Panel*) - 0x00000000001d3700 UIManager::GetComponentNamed(std::string const&) - 0x00000000001d3770 UIManager::GetComponentNamed(std::string const&) const - 0x00000000001d3780 UIManager::HideComponent(std::string const&) - 0x00000000001d3810 UIManager::HideComponents() - 0x00000000001d38c0 UIManager::InMouseMode() const - 0x00000000001d38d0 UIManager::NotifyGammaChange(float) - 0x00000000001d3960 UIManager::SetLMBActionAbsolute(std::string const&) - 0x00000000001d3970 UIManager::SetLMBActionRelative(std::string const&) - 0x00000000001d3980 UIManager::SetMouseVisibility(bool) - 0x00000000001d3a40 UIManager::SetSchemeValues(TRDescription const&, UIComponent*, CSchemeManager*) - 0x00000000001d3c50 UIManager::SetRMBActionAbsolute(std::string const&) - 0x00000000001d3c60 UIManager::SetRMBActionRelative(std::string const&) - 0x00000000001d3c70 UIManager::SetUsingVGUI(bool) - 0x00000000001d3d80 UIManager::TranslateComponent(std::string const&, bool) - 0x00000000001d3e50 UIManager::TranslateComponent(vgui::Panel*, bool) - 0x00000000001d3ec0 UIManager::TranslateComponents(bool) - 0x00000000001d3fa0 UIManager::ToggleEditMode() - 0x00000000001d4020 UIManager::UnhideComponent(std::string const&) - 0x00000000001d40b0 UIManager::ToggleMouse() - 0x00000000001d4190 UIManager::SetPanelPosition(vgui::Panel*, int, int) - 0x00000000001d4370 UIManager::cursorMoved(int, int, vgui::Panel*) - 0x00000000001d44b0 UIManager::GetScreenCoords(int&, int&) - 0x00000000001d44f0 UIManager::SetEnabledState(bool) - 0x00000000001d4540 UIManager::Initialize(std::vector > const&, CSchemeManager*) - 0x00000000001d4a00 UIManager::Save(std::string const&, std::string const&) - *fill* 0x00000000001d4de6 0xa - .text._ZNSt6vectorIP11UIComponentSaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000001d4df0 0x195 release/obj/hl1_client/ui/UIManager.o - 0x00000000001d4df0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, UIComponent* const&) - *fill* 0x00000000001d4f85 0xb - .text._ZNSt6vectorI13TRDescriptionSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000001d4f90 0xb1a release/obj/hl1_client/ui/UIManager.o - 0x00000000001d4f90 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, TRDescription const&) - *fill* 0x00000000001d5aaa 0x6 - .text 0x00000000001d5ab0 0x7bd release/obj/hl1_client/ui/UIPieMenu.o - 0x00000000001d5ab0 UIPieMenu::GetComponentPointer() - 0x00000000001d5ac0 UIPieMenu::GetType() const - 0x00000000001d5ad0 UIPieMenu::Update(float) - 0x00000000001d5ae0 UIPieMenu::~UIPieMenu() - 0x00000000001d5ae0 UIPieMenu::~UIPieMenu() - 0x00000000001d5b10 UIPieMenu::~UIPieMenu() - 0x00000000001d5b50 UIPieMenu::AllocateComponent(TRDescription const&) - 0x00000000001d5d00 UIPieMenu::SetClassProperties(TRDescription const&, vgui::Panel*, CSchemeManager*) - 0x00000000001d6200 UIPieMenu::UIPieMenu() - 0x00000000001d6200 UIPieMenu::UIPieMenu() - *fill* 0x00000000001d626d 0x3 - .text 0x00000000001d6270 0xb2d release/obj/hl1_client/ui/UIUtil.o - 0x00000000001d6270 UIDrawVariableBarSpriteHoles(int, int, int, float, float, bool, float) - 0x00000000001d64c0 UIGetPosition(TRDescription const&, float&, float&, int&, int&) - 0x00000000001d6570 UIStringToAlignment(std::string const&, int) - 0x00000000001d6630 UIStringToColor(std::string const&, vgui::Color&) - 0x00000000001d66d0 UIKeyCodeToChar(vgui::KeyCode) - 0x00000000001d66e0 UINameToSprite(std::string const&, int, bool) - 0x00000000001d6880 UIBlendColor(vgui::Color const&, vgui::Color const&, float) - 0x00000000001d6a30 vguiRound(float) - 0x00000000001d6a50 vguiAbs(int) - 0x00000000001d6a60 vguiSimpleLine(int, int, int, int, int, int, int, int) - 0x00000000001d6c80 vguiSimpleBox(int, int, int, int, int, int, int, int) - *fill* 0x00000000001d6d9d 0x3 - .text 0x00000000001d6da0 0x3b release/obj/hl1_client/ui/InvisiblePanel.o - 0x00000000001d6da0 InvisiblePanel::paint() - 0x00000000001d6db0 InvisiblePanel::paintBackground() - 0x00000000001d6dc0 InvisiblePanel::InvisiblePanel() - 0x00000000001d6dc0 InvisiblePanel::InvisiblePanel() - *fill* 0x00000000001d6ddb 0x5 - .text 0x00000000001d6de0 0x5a05 release/obj/hl1_client/util/Balance.o - 0x00000000001d6de0 BalanceChangeListener::shouldNotify(std::string const&, BalanceValueType) const - 0x00000000001d6df0 BalanceChangeListener::balanceCleared() const - 0x00000000001d6e00 BalanceChangeListener::balanceValueInserted(std::string const&, float) const - 0x00000000001d6e10 BalanceChangeListener::balanceValueInserted(std::string const&, int) const - 0x00000000001d6e20 BalanceChangeListener::balanceValueInserted(std::string const&, std::string const&) const - 0x00000000001d6e30 BalanceChangeListener::balanceValueChanged(std::string const&, float, float) const - 0x00000000001d6e40 BalanceChangeListener::balanceValueChanged(std::string const&, int, int) const - 0x00000000001d6e50 BalanceChangeListener::balanceValueChanged(std::string const&, std::string const&, std::string const&) const - 0x00000000001d6e60 BalanceChangeListener::balanceValueRemoved(std::string const&, float) const - 0x00000000001d6e70 BalanceChangeListener::balanceValueRemoved(std::string const&, int) const - 0x00000000001d6e80 BalanceChangeListener::balanceValueRemoved(std::string const&, std::string const&) const - 0x00000000001d6e90 BalanceChangeListener::balanceStartCompoundChange() const - 0x00000000001d6ea0 BalanceChangeListener::balanceEndCompoundChange() const - 0x00000000001d6eb0 BalanceValueContainer::~BalanceValueContainer() - 0x00000000001d6eb0 BalanceValueContainer::~BalanceValueContainer() - 0x00000000001d6ec0 StandardValueContainer::init() - 0x00000000001d6ed0 StandardValueContainer::reset() - 0x00000000001d6ee0 StandardValueContainer::load() - 0x00000000001d6ef0 StandardValueContainer::save() - 0x00000000001d6f00 StandardValueContainer::getFloatMap() const - 0x00000000001d6f10 StandardValueContainer::getIntMap() const - 0x00000000001d6f20 StandardValueContainer::getStringMap() const - 0x00000000001d6f30 StandardValueContainer::operator!=(BalanceValueContainer const&) const - 0x00000000001d6f50 FileValueContainer::init() - 0x00000000001d6f60 FileValueContainer::reset() - 0x00000000001d6f70 BalanceValueContainer::~BalanceValueContainer() - 0x00000000001d6f80 StandardValueContainer::operator==(BalanceValueContainer const&) const - 0x00000000001d7170 StandardValueContainer::addListener(BalanceChangeListener const*) - 0x00000000001d7230 StandardValueContainer::get(std::string const&, float) const - 0x00000000001d72f0 StandardValueContainer::get(std::string const&, int) const - 0x00000000001d73b0 StandardValueContainer::get(std::string const&, std::string const&) const - 0x00000000001d7490 FileValueContainer::save() - 0x00000000001d7d10 BalanceChangeListener::getBalanceChangeListenerID() const - 0x00000000001d7d20 BalanceValueContainer::BalanceValueContainer() - 0x00000000001d7d20 BalanceValueContainer::BalanceValueContainer() - 0x00000000001d7d30 BalanceValueContainerFactory::getDefaultFilename() - 0x00000000001d7e40 BalanceSystem::BalanceSystem() - 0x00000000001d7e40 BalanceSystem::BalanceSystem() - 0x00000000001d7ee0 BalanceSystem::getDefaultFilename() - 0x00000000001d7ef0 BalanceSystem::getNextListenerID() - 0x00000000001d7f00 BalanceSystem::registerListener(BalanceChangeListener const*) - 0x00000000001d7fd0 BalanceSystem::getInstance() - 0x00000000001d80e0 BalanceSystem::getListener(unsigned int) - 0x00000000001d8140 StandardValueContainer::StandardValueContainer() - 0x00000000001d8140 StandardValueContainer::StandardValueContainer() - 0x00000000001d81f0 FileValueContainer::FileValueContainer(std::string const&) - 0x00000000001d81f0 FileValueContainer::FileValueContainer(std::string const&) - 0x00000000001d82a0 BalanceSystem::~BalanceSystem() - 0x00000000001d82a0 BalanceSystem::~BalanceSystem() - 0x00000000001d8350 BalanceSystem::unregisterListener(BalanceChangeListener const*) - 0x00000000001d8380 BalanceChangeListener::~BalanceChangeListener() - 0x00000000001d8380 BalanceChangeListener::~BalanceChangeListener() - 0x00000000001d84b0 BalanceChangeListener::~BalanceChangeListener() - 0x00000000001d85f0 BalanceChangeListener::BalanceChangeListener() - 0x00000000001d85f0 BalanceChangeListener::BalanceChangeListener() - 0x00000000001d8850 StandardValueContainer::~StandardValueContainer() - 0x00000000001d8850 StandardValueContainer::~StandardValueContainer() - 0x00000000001d8910 FileValueContainer::~FileValueContainer() - 0x00000000001d8910 FileValueContainer::~FileValueContainer() - 0x00000000001d8a30 StandardValueContainer::~StandardValueContainer() - 0x00000000001d8af0 FileValueContainer::~FileValueContainer() - 0x00000000001d8c10 StandardValueContainer::clear() - 0x00000000001d8cf0 FileValueContainer::load() - 0x00000000001d95c0 StandardValueContainer::operator=(BalanceValueContainer const&) - 0x00000000001da690 StandardValueContainer::remove(std::string const&) - 0x00000000001dab10 StandardValueContainer::removeListener(BalanceChangeListener const*) - 0x00000000001dab40 StandardValueContainer::removeListener(std::string const&, BalanceChangeListener const*) - 0x00000000001dacb0 StandardValueContainer::getListeners(std::string const&, BalanceValueType) - 0x00000000001db190 StandardValueContainer::getUniversalListeners() - 0x00000000001db3a0 StandardValueContainer::getAllListeners() - 0x00000000001db6a0 BalanceSystem::getContainer(std::string const&) - 0x00000000001db9d0 BalanceValueContainerFactory::get() - 0x00000000001dbb60 BalanceValueContainerFactory::get(std::string const&) - 0x00000000001dbc80 StandardValueContainer::insert(std::string const&, int) - 0x00000000001dbf10 StandardValueContainer::insert(std::string const&, float) - 0x00000000001dc1e0 StandardValueContainer::insert(std::string const&, std::string const&) - 0x00000000001dc560 StandardValueContainer::addListener(std::string const&, BalanceChangeListener const*) - *fill* 0x00000000001dc7e5 0xb - .text._ZN18NullValueContainerD2Ev - 0x00000000001dc7f0 0xb release/obj/hl1_client/util/Balance.o - 0x00000000001dc7f0 NullValueContainer::~NullValueContainer() - 0x00000000001dc7f0 NullValueContainer::~NullValueContainer() - *fill* 0x00000000001dc7fb 0x5 - .text._ZN18NullValueContaineraSERK21BalanceValueContainer - 0x00000000001dc800 0x5 release/obj/hl1_client/util/Balance.o - 0x00000000001dc800 NullValueContainer::operator=(BalanceValueContainer const&) - *fill* 0x00000000001dc805 0xb - .text._ZNK18NullValueContainerneERK21BalanceValueContainer - 0x00000000001dc810 0x1d release/obj/hl1_client/util/Balance.o - 0x00000000001dc810 NullValueContainer::operator!=(BalanceValueContainer const&) const - *fill* 0x00000000001dc82d 0x3 - .text._ZN18NullValueContainer4loadEv - 0x00000000001dc830 0x3 release/obj/hl1_client/util/Balance.o - 0x00000000001dc830 NullValueContainer::load() - *fill* 0x00000000001dc833 0xd - .text._ZN18NullValueContainer4saveEv - 0x00000000001dc840 0x3 release/obj/hl1_client/util/Balance.o - 0x00000000001dc840 NullValueContainer::save() - *fill* 0x00000000001dc843 0xd - .text._ZNK18NullValueContainer3getERKSsf - 0x00000000001dc850 0x5 release/obj/hl1_client/util/Balance.o - 0x00000000001dc850 NullValueContainer::get(std::string const&, float) const - *fill* 0x00000000001dc855 0xb - .text._ZNK18NullValueContainer3getERKSsi - 0x00000000001dc860 0x5 release/obj/hl1_client/util/Balance.o - 0x00000000001dc860 NullValueContainer::get(std::string const&, int) const - *fill* 0x00000000001dc865 0xb - .text._ZNK18NullValueContainer11getFloatMapEv - 0x00000000001dc870 0x6 release/obj/hl1_client/util/Balance.o - 0x00000000001dc870 NullValueContainer::getFloatMap() const - *fill* 0x00000000001dc876 0xa - .text._ZNK18NullValueContainer9getIntMapEv - 0x00000000001dc880 0x6 release/obj/hl1_client/util/Balance.o - 0x00000000001dc880 NullValueContainer::getIntMap() const - *fill* 0x00000000001dc886 0xa - .text._ZNK18NullValueContainer12getStringMapEv - 0x00000000001dc890 0x6 release/obj/hl1_client/util/Balance.o - 0x00000000001dc890 NullValueContainer::getStringMap() const - *fill* 0x00000000001dc896 0xa - .text._ZN18NullValueContainer6insertERKSsf - 0x00000000001dc8a0 0x1 release/obj/hl1_client/util/Balance.o - 0x00000000001dc8a0 NullValueContainer::insert(std::string const&, float) - *fill* 0x00000000001dc8a1 0xf - .text._ZN18NullValueContainer6insertERKSsi - 0x00000000001dc8b0 0x1 release/obj/hl1_client/util/Balance.o - 0x00000000001dc8b0 NullValueContainer::insert(std::string const&, int) - *fill* 0x00000000001dc8b1 0xf - .text._ZN18NullValueContainer6insertERKSsS1_ - 0x00000000001dc8c0 0x1 release/obj/hl1_client/util/Balance.o - 0x00000000001dc8c0 NullValueContainer::insert(std::string const&, std::string const&) - *fill* 0x00000000001dc8c1 0xf - .text._ZN18NullValueContainer6removeERKSs - 0x00000000001dc8d0 0x1 release/obj/hl1_client/util/Balance.o - 0x00000000001dc8d0 NullValueContainer::remove(std::string const&) - *fill* 0x00000000001dc8d1 0xf - .text._ZN18NullValueContainer5clearEv - 0x00000000001dc8e0 0x1 release/obj/hl1_client/util/Balance.o - 0x00000000001dc8e0 NullValueContainer::clear() - *fill* 0x00000000001dc8e1 0xf - .text._ZN18NullValueContainer11addListenerEPK21BalanceChangeListener - 0x00000000001dc8f0 0x1 release/obj/hl1_client/util/Balance.o - 0x00000000001dc8f0 NullValueContainer::addListener(BalanceChangeListener const*) - *fill* 0x00000000001dc8f1 0xf - .text._ZN18NullValueContainer11addListenerERKSsPK21BalanceChangeListener - 0x00000000001dc900 0x1 release/obj/hl1_client/util/Balance.o - 0x00000000001dc900 NullValueContainer::addListener(std::string const&, BalanceChangeListener const*) - *fill* 0x00000000001dc901 0xf - .text._ZN18NullValueContainer14removeListenerEPK21BalanceChangeListener - 0x00000000001dc910 0x1 release/obj/hl1_client/util/Balance.o - 0x00000000001dc910 NullValueContainer::removeListener(BalanceChangeListener const*) - *fill* 0x00000000001dc911 0xf - .text._ZN18NullValueContainer14removeListenerERKSsPK21BalanceChangeListener - 0x00000000001dc920 0x1 release/obj/hl1_client/util/Balance.o - 0x00000000001dc920 NullValueContainer::removeListener(std::string const&, BalanceChangeListener const*) - *fill* 0x00000000001dc921 0xf - .text._ZN18NullValueContainerD0Ev - 0x00000000001dc930 0xf release/obj/hl1_client/util/Balance.o - 0x00000000001dc930 NullValueContainer::~NullValueContainer() - *fill* 0x00000000001dc93f 0x1 - .text._ZNK18NullValueContainereqERK21BalanceValueContainer - 0x00000000001dc940 0x3e release/obj/hl1_client/util/Balance.o - 0x00000000001dc940 NullValueContainer::operator==(BalanceValueContainer const&) const - *fill* 0x00000000001dc97e 0x2 - .text._ZNK18NullValueContainer3getERKSsS1_ - 0x00000000001dc980 0x21 release/obj/hl1_client/util/Balance.o - 0x00000000001dc980 NullValueContainer::get(std::string const&, std::string const&) const - *fill* 0x00000000001dc9a1 0xf - .text._ZNSt8_Rb_treeISsSt4pairIKSsP21BalanceValueContainerESt10_Select1stIS4_ESt4lessISsESaIS4_EE8_M_eraseEPSt13_Rb_tree_nodeIS4_E - 0x00000000001dc9b0 0x4ef release/obj/hl1_client/util/Balance.o - 0x00000000001dc9b0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x00000000001dce9f 0x1 - .text._ZNSt8_Rb_treeIjSt4pairIKjPK21BalanceChangeListenerESt10_Select1stIS5_ESt4lessIjESaIS5_EE8_M_eraseEPSt13_Rb_tree_nodeIS5_E - 0x00000000001dcea0 0x1aa release/obj/hl1_client/util/Balance.o - 0x00000000001dcea0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x00000000001dd04a 0x6 - .text._ZNSt8_Rb_treeIjSt4pairIKjPK21BalanceChangeListenerESt10_Select1stIS5_ESt4lessIjESaIS5_EE5eraseERS1_ - 0x00000000001dd050 0x137 release/obj/hl1_client/util/Balance.o - 0x00000000001dd050 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::erase(unsigned int const&) - *fill* 0x00000000001dd187 0x9 - .text._ZNSt8_Rb_treeIjSt4pairIKjPK21BalanceChangeListenerESt10_Select1stIS5_ESt4lessIjESaIS5_EE16_M_insert_uniqueERKS5_ - 0x00000000001dd190 0x11f release/obj/hl1_client/util/Balance.o - 0x00000000001dd190 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique(std::pair const&) - *fill* 0x00000000001dd2af 0x1 - .text._ZNSt8_Rb_treeISsSt4pairIKSsfESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x00000000001dd2b0 0x4ef release/obj/hl1_client/util/Balance.o - 0x00000000001dd2b0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x00000000001dd79f 0x1 - .text._ZNSt3mapISsfSt4lessISsESaISt4pairIKSsfEEED2Ev - 0x00000000001dd7a0 0xc5 release/obj/hl1_client/util/Balance.o - 0x00000000001dd7a0 std::map, std::allocator > >::~map() - 0x00000000001dd7a0 std::map, std::allocator > >::~map() - *fill* 0x00000000001dd865 0xb - .text._ZNSt3mapISsiSt4lessISsESaISt4pairIKSsiEEED2Ev - 0x00000000001dd870 0xc5 release/obj/hl1_client/util/Balance.o - 0x00000000001dd870 std::map, std::allocator > >::~map() - 0x00000000001dd870 std::map, std::allocator > >::~map() - *fill* 0x00000000001dd935 0xb - .text._ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x00000000001dd940 0x826 release/obj/hl1_client/util/Balance.o - 0x00000000001dd940 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_erase(std::_Rb_tree_node >*) - *fill* 0x00000000001de166 0xa - .text._ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEED2Ev - 0x00000000001de170 0x125 release/obj/hl1_client/util/Balance.o - 0x00000000001de170 std::map, std::allocator > >::~map() - 0x00000000001de170 std::map, std::allocator > >::~map() - *fill* 0x00000000001de295 0xb - .text._ZNSt8_Rb_treeIjjSt9_IdentityIjESt4lessIjESaIjEE8_M_eraseEPSt13_Rb_tree_nodeIjE - 0x00000000001de2a0 0x1aa release/obj/hl1_client/util/Balance.o - 0x00000000001de2a0 std::_Rb_tree, std::less, std::allocator >::_M_erase(std::_Rb_tree_node*) - *fill* 0x00000000001de44a 0x6 - .text._ZNSt8_Rb_treeISsSt4pairIKSsPSt3setIjSt4lessIjESaIjEEESt10_Select1stIS8_ES3_ISsESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E - 0x00000000001de450 0x4ef release/obj/hl1_client/util/Balance.o - 0x00000000001de450 std::_Rb_tree, std::allocator >*>, std::_Select1st, std::allocator >*> >, std::less, std::allocator, std::allocator >*> > >::_M_erase(std::_Rb_tree_node, std::allocator >*> >*) - *fill* 0x00000000001de93f 0x1 - .text._ZNSt8_Rb_treeIPK21BalanceChangeListenerS2_St9_IdentityIS2_E19BalanceListenerSortSaIS2_EE8_M_eraseEPSt13_Rb_tree_nodeIS2_E - 0x00000000001de940 0x1aa release/obj/hl1_client/util/Balance.o - 0x00000000001de940 std::_Rb_tree, BalanceListenerSort, std::allocator >::_M_erase(std::_Rb_tree_node*) - *fill* 0x00000000001deaea 0x6 - .text._ZNSt8_Rb_treeISsSt4pairIKSsiESt10_Select1stIS2_ESt4lessISsESaIS2_EE4findERS1_ - 0x00000000001deaf0 0xcc release/obj/hl1_client/util/Balance.o - 0x00000000001deaf0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(std::string const&) - *fill* 0x00000000001debbc 0x4 - .text._ZNSt8_Rb_treeISsSt4pairIKSsfESt10_Select1stIS2_ESt4lessISsESaIS2_EE4findERS1_ - 0x00000000001debc0 0xcc release/obj/hl1_client/util/Balance.o - 0x00000000001debc0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(std::string const&) - *fill* 0x00000000001dec8c 0x4 - .text._ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE4findERS1_ - 0x00000000001dec90 0xcc release/obj/hl1_client/util/Balance.o - 0x00000000001dec90 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::find(std::string const&) - *fill* 0x00000000001ded5c 0x4 - .text._ZNSt8_Rb_treeISsSt4pairIKSsPSt3setIjSt4lessIjESaIjEEESt10_Select1stIS8_ES3_ISsESaIS8_EE4findERS1_ - 0x00000000001ded60 0xcc release/obj/hl1_client/util/Balance.o - 0x00000000001ded60 std::_Rb_tree, std::allocator >*>, std::_Select1st, std::allocator >*> >, std::less, std::allocator, std::allocator >*> > >::find(std::string const&) - *fill* 0x00000000001dee2c 0x4 - .text._ZNSt8_Rb_treeIjjSt9_IdentityIjESt4lessIjESaIjEE5eraseERKj - 0x00000000001dee30 0x137 release/obj/hl1_client/util/Balance.o - 0x00000000001dee30 std::_Rb_tree, std::less, std::allocator >::erase(unsigned int const&) - *fill* 0x00000000001def67 0x9 - .text._ZNSt8_Rb_treeIPK21BalanceChangeListenerS2_St9_IdentityIS2_E19BalanceListenerSortSaIS2_EE16_M_insert_uniqueERKS2_ - 0x00000000001def70 0x10c release/obj/hl1_client/util/Balance.o - 0x00000000001def70 std::_Rb_tree, BalanceListenerSort, std::allocator >::_M_insert_unique(BalanceChangeListener const* const&) - *fill* 0x00000000001df07c 0x4 - .text._ZNSt8_Rb_treeISsSt4pairIKSsP21BalanceValueContainerESt10_Select1stIS4_ESt4lessISsESaIS4_EE24_M_get_insert_unique_posERS1_ - 0x00000000001df080 0x113 release/obj/hl1_client/util/Balance.o - 0x00000000001df080 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(std::string const&) - *fill* 0x00000000001df193 0xd - .text._ZNSt8_Rb_treeISsSt4pairIKSsP21BalanceValueContainerESt10_Select1stIS4_ESt4lessISsESaIS4_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS4_ERKS4_ - 0x00000000001df1a0 0x2ea release/obj/hl1_client/util/Balance.o - 0x00000000001df1a0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x00000000001df48a 0x6 - .text._ZNSt8_Rb_treeISsSt4pairIKSsfESt10_Select1stIS2_ESt4lessISsESaIS2_EE24_M_get_insert_unique_posERS1_ - 0x00000000001df490 0x113 release/obj/hl1_client/util/Balance.o - 0x00000000001df490 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(std::string const&) - *fill* 0x00000000001df5a3 0xd - .text._ZNSt8_Rb_treeISsSt4pairIKSsfESt10_Select1stIS2_ESt4lessISsESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_ - 0x00000000001df5b0 0x2ea release/obj/hl1_client/util/Balance.o - 0x00000000001df5b0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x00000000001df89a 0x6 - .text._ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE24_M_get_insert_unique_posERS1_ - 0x00000000001df8a0 0x113 release/obj/hl1_client/util/Balance.o - 0x00000000001df8a0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_get_insert_unique_pos(std::string const&) - *fill* 0x00000000001df9b3 0xd - .text._ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS2_ERKS2_ - 0x00000000001df9c0 0x2fa release/obj/hl1_client/util/Balance.o - 0x00000000001df9c0 std::_Rb_tree, std::_Select1st >, std::less, std::allocator > >::_M_insert_unique_(std::_Rb_tree_const_iterator >, std::pair const&) - *fill* 0x00000000001dfcba 0x6 - .text._ZNSt8_Rb_treeISsSt4pairIKSsPSt3setIjSt4lessIjESaIjEEESt10_Select1stIS8_ES3_ISsESaIS8_EE24_M_get_insert_unique_posERS1_ - 0x00000000001dfcc0 0x113 release/obj/hl1_client/util/Balance.o - 0x00000000001dfcc0 std::_Rb_tree, std::allocator >*>, std::_Select1st, std::allocator >*> >, std::less, std::allocator, std::allocator >*> > >::_M_get_insert_unique_pos(std::string const&) - *fill* 0x00000000001dfdd3 0xd - .text._ZNSt8_Rb_treeISsSt4pairIKSsPSt3setIjSt4lessIjESaIjEEESt10_Select1stIS8_ES3_ISsESaIS8_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS8_ERKS8_ - 0x00000000001dfde0 0x2ea release/obj/hl1_client/util/Balance.o - 0x00000000001dfde0 std::_Rb_tree, std::allocator >*>, std::_Select1st, std::allocator >*> >, std::less, std::allocator, std::allocator >*> > >::_M_insert_unique_(std::_Rb_tree_const_iterator, std::allocator >*> >, std::pair, std::allocator >*> const&) - *fill* 0x00000000001e00ca 0x6 - .text 0x00000000001e00d0 0x1713 release/obj/hl1_client/util/Checksum.o - 0x00000000001e00d0 ChecksumEntry::ChecksumEntry() - 0x00000000001e00d0 ChecksumEntry::ChecksumEntry() - 0x00000000001e00f0 ChecksumEntry::GetChecksum() const - 0x00000000001e0100 ChecksumEntry::GetDescription() const - 0x00000000001e0110 ChecksumEntry::GetFormattedString() const - 0x00000000001e01d0 ChecksumEntry::SetChecksum(unsigned int) - 0x00000000001e01e0 ChecksumEntry::SetDescription(std::string const&) - 0x00000000001e01f0 ChecksumEntry::SetFromFormattedString(std::string const&) - 0x00000000001e0410 ChecksumEntry::Compare(ChecksumEntry const&, std::string&) const - 0x00000000001e04c0 Checksum::Checksum(bool) - 0x00000000001e04c0 Checksum::Checksum(bool) - 0x00000000001e04f0 Checksum::GetIsVerboseMode() const - 0x00000000001e0500 Checksum::GetTotalChecksum() const - 0x00000000001e0610 Checksum::PrintReport() const - 0x00000000001e0620 Checksum::SaveToFile(char const*) const - 0x00000000001e0b10 Checksum::ReadFromFile(char const*) - 0x00000000001e10a0 Checksum::AddChecksum(unsigned int) - 0x00000000001e1190 Checksum::AddFloatChecksum(std::string const&, float) - 0x00000000001e1390 Checksum::AddChecksum(std::string const&, unsigned int) - 0x00000000001e1570 Checksum::Compare(Checksum const&, std::vector >&) const - *fill* 0x00000000001e17e3 0xd - .text._ZN8ChecksumD2Ev - 0x00000000001e17f0 0xb0 release/obj/hl1_client/util/Checksum.o - 0x00000000001e17f0 Checksum::~Checksum() - 0x00000000001e17f0 Checksum::~Checksum() - .text._ZN8ChecksumD0Ev - 0x00000000001e18a0 0xb8 release/obj/hl1_client/util/Checksum.o - 0x00000000001e18a0 Checksum::~Checksum() - *fill* 0x00000000001e1958 0x8 - .text._ZNSt6vectorI13ChecksumEntrySaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000001e1960 0x2e2 release/obj/hl1_client/util/Checksum.o - 0x00000000001e1960 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, ChecksumEntry const&) - .text 0x00000000001e1c42 0x0 release/obj/hl1_client/util/GammaTable.o - *fill* 0x00000000001e1c42 0xe - .text 0x00000000001e1c50 0x543 release/obj/hl1_client/util/LinuxSupport.o - 0x00000000001e1c50 FileSelect(dirent const*) - 0x00000000001e1e30 strlwr(char*) - 0x00000000001e1e70 FillDataStruct(FIND_DATA*) - 0x00000000001e1f00 FindFirstFile(char const*, FIND_DATA*) - 0x00000000001e20f0 FindNextFile(int, FIND_DATA*) - 0x00000000001e2190 FindClose(int) - *fill* 0x00000000001e2193 0xd - .text 0x00000000001e21a0 0x359 release/obj/hl1_client/util/Mat3.o - 0x00000000001e21a0 Mat3::Mat3() - 0x00000000001e21a0 Mat3::Mat3() - 0x00000000001e21b0 Mat3::Mat3(float const*) - 0x00000000001e21b0 Mat3::Mat3(float const*) - 0x00000000001e21e0 Mat3::operator()(int, int) - 0x00000000001e2200 Mat3::operator()(int, int) const - 0x00000000001e2220 Mat3::SetEulerAngles(float const*) - 0x00000000001e2250 Mat3::TransformVector(float*) const - 0x00000000001e2320 Mat3::GetEulerAngles(float*) const - 0x00000000001e2350 Mat3::Transpose() const - 0x00000000001e23c0 operator*(Mat3 const&, Mat3 const&) - *fill* 0x00000000001e24f9 0x7 - .text 0x00000000001e2500 0x11cc release/obj/hl1_client/util/MathUtil.o - 0x00000000001e2500 FindCollisionPointOnPlane(float const*, float const*, float const*, float*) - 0x00000000001e2590 IsVectorBetweenBoundingVectors(float const*, float const*, float const*, float const*) - 0x00000000001e2800 AngleMatrix(float const*, float (*) [4]) - 0x00000000001e2930 Length(float const*) - 0x00000000001e2970 RotateFloatValuesByVector(float&, float&, float&, float const*) - 0x00000000001e2cc0 WrapFloat(float, float, float) - 0x00000000001e2d40 CreateOrthoNormalBasis(float*, float*, float*) - 0x00000000001e2f20 RoundIntToNearestIncrementOf(int, int) - 0x00000000001e2f40 TransformVector(float const*, float const*, float const*, float const*, float*) - 0x00000000001e2fb0 RotateValuesByVector(int&, int&, int&, float const*) - 0x00000000001e3210 VectorAngles(float const*, float*) - 0x00000000001e3380 VectorInverse(float*) - 0x00000000001e33a0 VectorMA(float const*, float, float const*, float*) - 0x00000000001e33d0 VectorNormalize(float*) - 0x00000000001e3440 VectorRotate(float const*, float const (*) [4], float*) - 0x00000000001e34a0 VectorScale(float const*, float, float*) - 0x00000000001e34d0 VectorDistance(float const*, float const*) - 0x00000000001e3520 VectorDistance2D(float const*, float const*) - 0x00000000001e3560 VectorsToAngles(float const*, float const*, float const*, float*) - *fill* 0x00000000001e36cc 0x4 - .text 0x00000000001e36d0 0xa70 release/obj/hl1_client/util/Quat.o - 0x00000000001e36d0 Quat::Quat() - 0x00000000001e36d0 Quat::Quat() - 0x00000000001e36e0 Quat::Quat(float, float, float, float) - 0x00000000001e36e0 Quat::Quat(float, float, float, float) - 0x00000000001e3710 Quat::Quat(float const*, float const*, float const*) - 0x00000000001e3710 Quat::Quat(float const*, float const*, float const*) - 0x00000000001e3910 Quat::Quat(float const*) - 0x00000000001e3910 Quat::Quat(float const*) - 0x00000000001e39a0 Quat::Quat(float, float const*) - 0x00000000001e39a0 Quat::Quat(float, float const*) - 0x00000000001e3a10 Quat::Conjugate() const - 0x00000000001e3a50 Quat::Unit() const - 0x00000000001e3ae0 Quat::GetVectors(float*, float*, float*) const - 0x00000000001e3ba0 operator*(Quat const&, Quat const&) - 0x00000000001e3c50 ConstantRateLerp(Quat const&, Quat const&, float) - 0x00000000001e4060 Quat::GetAngles(float*) const - .text 0x00000000001e4140 0x1c release/obj/hl1_client/util/Stacktrace.o - 0x00000000001e4140 stackTrace(int) - *fill* 0x00000000001e415c 0x4 - .text 0x00000000001e4160 0x1255 release/obj/hl1_client/util/STLUtil.o - 0x00000000001e4160 LowercaseString(std::string const&) - 0x00000000001e4250 LowercaseString(std::string&) - 0x00000000001e42f0 UppercaseString(std::string const&) - 0x00000000001e43e0 UppercaseString(std::string&) - 0x00000000001e4480 MakeIntFromString(std::string&) - 0x00000000001e44c0 MakeFloatFromString(std::string&) - 0x00000000001e4500 MakeBytesFromHexPairs(std::string const&, unsigned char*, int) - 0x00000000001e45a0 MakeStringFromInt(int) - 0x00000000001e4640 MakeStringFromFloat(float, int) - 0x00000000001e4850 MakeHexPairsFromBytes(unsigned char const*, std::string&, int) - 0x00000000001e4990 BuildAbridgedString(std::string const&, int) - 0x00000000001e4ae0 sprintf(std::string&, char const*, ...) - 0x00000000001e4bd0 SafeStrcmp(char const*, char const*) - 0x00000000001e4bf0 TrimString(std::string&) - 0x00000000001e4d30 BuildFileList(std::string const&, std::string const&, std::string const&, std::vector >&) - *fill* 0x00000000001e53b5 0xb - .text._ZNSt6vectorI7CStringSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_ - 0x00000000001e53c0 0x557 release/obj/hl1_client/util/STLUtil.o - 0x00000000001e53c0 std::vector >::_M_insert_aux(__gnu_cxx::__normal_iterator > >, CString const&) - *fill* 0x00000000001e5917 0x9 - .text 0x00000000001e5920 0x345 release/obj/hl1_client/util/Tokenizer.o - 0x00000000001e5920 Tokenizer::split(std::string const&, std::string const&, std::vector >&, char) - *fill* 0x00000000001e5c65 0xb - .text 0x00000000001e5c70 0x11bd release/obj/hl1_client/textrep/TRDescription.o - 0x00000000001e5c70 TRDescription::GetTagValue(std::string const&, int&) const - 0x00000000001e5d60 TRDescription::GetTagValue(std::string const&, float&) const - 0x00000000001e5e50 TRDescription::GetTagValue(std::string const&, std::string&) const - 0x00000000001e5ec0 TRDescription::GetTagValue(std::string const&, CString&) const - 0x00000000001e5fc0 TRDescription::GetTagValue(std::string const&, bool&) const - 0x00000000001e60e0 TRDescription::GetName() const - 0x00000000001e6110 TRDescription::GetType() const - 0x00000000001e6140 TRDescription::GetValue(std::string const&, std::string&) const - 0x00000000001e61b0 TRDescription::SetName(std::string const&) - 0x00000000001e61c0 TRDescription::SetTagValue(std::string const&, int) - 0x00000000001e6310 TRDescription::SetTagValue(std::string const&, float) - 0x00000000001e6460 TRDescription::SetTagValue(std::string const&, std::string const&) - 0x00000000001e64d0 TRDescription::SetTagValue(std::string const&, bool) - 0x00000000001e65f0 TRDescription::SetType(std::string const&) - 0x00000000001e6600 TRDescription::SetValue(std::string const&, std::string const&) - 0x00000000001e6670 TRDescription::AddPair(std::pair const&) - 0x00000000001e6700 TRDescription::GetTagStringList(std::string const&, std::vector >&) const - 0x00000000001e6a10 TRDescription::GetTagStringList(std::string const&, std::vector >&) const - *fill* 0x00000000001e6e2d 0x3 - .text._ZNSt6vectorISt4pairISsSsESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_ - 0x00000000001e6e30 0x461 release/obj/hl1_client/textrep/TRDescription.o - 0x00000000001e6e30 std::vector, std::allocator > >::_M_insert_aux(__gnu_cxx::__normal_iterator*, std::vector, std::allocator > > >, std::pair const&) - *fill* 0x00000000001e7291 0xf - .text 0x00000000001e72a0 0x167f release/obj/hl1_client/textrep/TRFactory.o - 0x00000000001e72a0 TRFactory::WriteDescription(std::basic_fstream >&, TRDescription const&) - 0x00000000001e75e0 TRFactory::WriteDescriptions(std::string const&, std::vector > const&, std::string const&) - 0x00000000001e79d0 TRFactory::readAndTrimNextLine(std::istream&, std::string&) - 0x00000000001e7af0 TRFactory::trimWhitespace(std::string&) - 0x00000000001e7b00 TRFactory::charIsWhiteSpace(char) - 0x00000000001e7b20 TRFactory::lineIsAComment(std::string const&) - 0x00000000001e7ba0 TRFactory::readStartBlockLine(std::string const&, TRDescription&) - 0x00000000001e7d90 TRFactory::readEndBlockLine(std::string const&) - 0x00000000001e7e40 TRFactory::readTagAndValueLine(std::string const&, TRDescription&) - 0x00000000001e8100 TRFactory::ReadDescription(std::basic_fstream >&, TRDescription&) - 0x00000000001e82e0 TRFactory::ReadDescriptions(std::string const&, std::vector >&) - *fill* 0x00000000001e891f 0x1 - .text 0x00000000001e8920 0x1954 ./libparticleMP.a(action_api.o) - 0x00000000001e8920 _pSendAction(ParticleAction*, PActionEnum, int) - 0x00000000001e8990 pAvoid(float, float, float, PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001e8b30 pBounce(float, float, float, PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001e8ce0 pCopyVertexB(bool, bool) - 0x00000000001e8d20 pDamping(float, float, float, float, float) - 0x00000000001e8d80 pExplosion(float, float, float, float, float, float, float, float) - 0x00000000001e8e00 pFollow(float, float, float) - 0x00000000001e8e50 pGravitate(float, float, float) - 0x00000000001e8ea0 pGravity(float, float, float) - 0x00000000001e8ef0 pJet(float, float, float, float, float, float) - 0x00000000001e9000 pKillOld(float, bool) - 0x00000000001e9040 pMatchVelocity(float, float, float) - 0x00000000001e9090 pMove() - 0x00000000001e90c0 pOrbitLine(float, float, float, float, float, float, float, float, float) - 0x00000000001e9190 pOrbitPoint(float, float, float, float, float, float) - 0x00000000001e91f0 pRandomAccel(PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001e9360 pRandomDisplace(PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001e94d0 pRandomVelocity(PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001e9640 pRestore(float) - 0x00000000001e9680 pSink(bool, PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001e9800 pSinkVelocity(bool, PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001e9980 pSource(float, PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001e9e60 pSpeedLimit(float, float) - 0x00000000001e9ea0 pTargetColor(float, float, float, float, float) - 0x00000000001e9f00 pTargetSize(float, float, float, float, float, float) - 0x00000000001e9f60 pTargetVelocity(float, float, float, float) - 0x00000000001e9fb0 pVertex(float, float, float) - 0x00000000001ea1b0 pVortex(float, float, float, float, float, float, float, float, float) - *fill* 0x00000000001ea274 0xc - .text 0x00000000001ea280 0x598f ./libparticleMP.a(actions.o) - 0x00000000001ea280 PAAvoid::Execute(ParticleGroup*) - 0x00000000001eb970 PACallActionList::Execute(ParticleGroup*) - 0x00000000001eb9a0 PACopyVertexB::Execute(ParticleGroup*) - 0x00000000001eba20 PADamping::Execute(ParticleGroup*) - 0x00000000001ebaf0 PAExplosion::Execute(ParticleGroup*) - 0x00000000001ebc90 PAFollow::Execute(ParticleGroup*) - 0x00000000001ebea0 PAGravitate::Execute(ParticleGroup*) - 0x00000000001ec180 PAGravity::Execute(ParticleGroup*) - 0x00000000001ec1f0 PAKillOld::Execute(ParticleGroup*) - 0x00000000001ec350 PAMatchVelocity::Execute(ParticleGroup*) - 0x00000000001ec550 PAMove::Execute(ParticleGroup*) - 0x00000000001ec5c0 PAOrbitLine::Execute(ParticleGroup*) - 0x00000000001ec800 PAOrbitPoint::Execute(ParticleGroup*) - 0x00000000001eca10 PARestore::Execute(ParticleGroup*) - 0x00000000001ecbb0 PASpeedLimit::Execute(ParticleGroup*) - 0x00000000001ecd10 PATargetColor::Execute(ParticleGroup*) - 0x00000000001ecdc0 PATargetSize::Execute(ParticleGroup*) - 0x00000000001ece60 PATargetVelocity::Execute(ParticleGroup*) - 0x00000000001ecee0 PAVortex::Execute(ParticleGroup*) - 0x00000000001ed2d0 pDomain::pDomain(PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001ed2d0 pDomain::pDomain(PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001ed9f0 pDomain::Within(pVector const&) const - 0x00000000001edc50 PABounce::Execute(ParticleGroup*) - 0x00000000001ee8e0 PASink::Execute(ParticleGroup*) - 0x00000000001eea50 PASinkVelocity::Execute(ParticleGroup*) - 0x00000000001eebc0 pDomain::Generate(pVector&) const - 0x00000000001ef2d0 PAJet::Execute(ParticleGroup*) - 0x00000000001ef4a0 PARandomAccel::Execute(ParticleGroup*) - 0x00000000001ef540 PARandomDisplace::Execute(ParticleGroup*) - 0x00000000001ef5e0 PARandomVelocity::Execute(ParticleGroup*) - 0x00000000001ef660 PASource::Execute(ParticleGroup*) - *fill* 0x00000000001efc0f 0x1 - .text 0x00000000001efc10 0x2094 ./libparticleMP.a(system.o) - 0x00000000001efc10 AutoCall::AutoCall() - 0x00000000001efc10 AutoCall::AutoCall() - 0x00000000001efd50 _ParticleState::_ParticleState() - 0x00000000001efd50 _ParticleState::_ParticleState() - 0x00000000001f0150 _ParticleState::GetGroupPtr(int) - 0x00000000001f0190 _ParticleState::GetListPtr(int) - 0x00000000001f01d0 _ParticleState::GenerateGroups(int) - 0x00000000001f0310 _ParticleState::GenerateLists(int) - 0x00000000001f0460 _pCallActionList(ParticleAction*, int, ParticleGroup*) - 0x00000000001f08d0 _pAddActionToList(ParticleAction*, int) - 0x00000000001f09a0 pColor(float, float, float, float) - 0x00000000001f0ad0 pColorD(float, PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001f0c30 pVelocity(float, float, float) - 0x00000000001f0d40 pVelocityD(PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001f0e70 pVertexB(float, float, float) - 0x00000000001f0f90 pVertexBD(PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001f10e0 pVertexBTracks(bool) - 0x00000000001f1100 pSize(float, float, float) - 0x00000000001f11f0 pSizeD(PDomainEnum, float, float, float, float, float, float, float, float, float) - 0x00000000001f1310 pStartingAge(float, float) - 0x00000000001f1340 pTimeStep(float) - 0x00000000001f1360 pGenActionLists(int) - 0x00000000001f1400 pNewActionList(int) - 0x00000000001f1460 pEndActionList() - 0x00000000001f1490 pDeleteActionLists(int, int) - 0x00000000001f1530 pCallActionList(int) - 0x00000000001f15d0 pGenParticleGroups(int, int) - 0x00000000001f1690 pDeleteParticleGroups(int, int) - 0x00000000001f1720 pCurrentGroup(int) - 0x00000000001f1770 pGetCurrentGroup() - 0x00000000001f1790 pSetMaxParticles(int) - 0x00000000001f1860 pCopyGroup(int, int, int) - 0x00000000001f1a50 pGetParticleGroupRef(int) - 0x00000000001f1a90 pGetParticles(int, int, float*, float*, float*, float*, float*) - 0x00000000001f1c80 pGetGroupCount() - .text.__x86.get_pc_thunk.cx - 0x00000000001f1ca4 0x4 ./libparticleMP.a(system.o) - 0x00000000001f1ca4 __x86.get_pc_thunk.cx - .text 0x00000000001f1ca8 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtendS.o - .text 0x00000000001f1ca8 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crtn.o - *(.gnu.warning) - -.fini 0x00000000001f1ca8 0x14 - *(SORT(.fini)) - .fini 0x00000000001f1ca8 0xf /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - 0x00000000001f1ca8 _fini - .fini 0x00000000001f1cb7 0x5 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crtn.o - 0x00000000001f1cbc PROVIDE (__etext, .) - 0x00000000001f1cbc PROVIDE (_etext, .) - 0x00000000001f1cbc PROVIDE (etext, .) - -.rodata 0x00000000001f1cc0 0x1e328 - *(.rodata .rodata.* .gnu.linkonce.r.*) - .rodata.str1.1 - 0x0000000000000000 0x0 release/obj/hl1_client/hl/hl_baseentity.o - 0x1 (size before relaxing) - .rodata._ZTS11CBaseEntity - 0x00000000001f1cc0 0xe release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1cc0 typeinfo name for CBaseEntity - *fill* 0x00000000001f1cce 0x2 - .rodata._ZTI11CBaseEntity - 0x00000000001f1cd0 0x8 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1cd0 typeinfo for CBaseEntity - .rodata._ZTS10CBaseDelay - 0x00000000001f1cd8 0xd release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1cd8 typeinfo name for CBaseDelay - *fill* 0x00000000001f1ce5 0x3 - .rodata._ZTI10CBaseDelay - 0x00000000001f1ce8 0xc release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1ce8 typeinfo for CBaseDelay - .rodata._ZTS14CBaseAnimating - 0x00000000001f1cf4 0x11 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1cf4 typeinfo name for CBaseAnimating - *fill* 0x00000000001f1d05 0x3 - .rodata._ZTI14CBaseAnimating - 0x00000000001f1d08 0xc release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d08 typeinfo for CBaseAnimating - .rodata._ZTS11CBaseToggle - 0x00000000001f1d14 0xe release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d14 typeinfo name for CBaseToggle - *fill* 0x00000000001f1d22 0x2 - .rodata._ZTI11CBaseToggle - 0x00000000001f1d24 0xc release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d24 typeinfo for CBaseToggle - .rodata._ZTS12CBaseMonster - 0x00000000001f1d30 0xf release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d30 typeinfo name for CBaseMonster - *fill* 0x00000000001f1d3f 0x1 - .rodata._ZTI12CBaseMonster - 0x00000000001f1d40 0xc release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d40 typeinfo for CBaseMonster - .rodata._ZTS8CGrenade - 0x00000000001f1d4c 0xa release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d4c typeinfo name for CGrenade - *fill* 0x00000000001f1d56 0x2 - .rodata._ZTI8CGrenade - 0x00000000001f1d58 0xc release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d58 typeinfo for CGrenade - .rodata._ZTS15CBasePlayerItem - 0x00000000001f1d64 0x12 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d64 typeinfo name for CBasePlayerItem - *fill* 0x00000000001f1d76 0x2 - .rodata._ZTI15CBasePlayerItem - 0x00000000001f1d78 0xc release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d78 typeinfo for CBasePlayerItem - .rodata._ZTS17CBasePlayerWeapon - 0x00000000001f1d84 0x14 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d84 typeinfo name for CBasePlayerWeapon - .rodata._ZTI17CBasePlayerWeapon - 0x00000000001f1d98 0xc release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1d98 typeinfo for CBasePlayerWeapon - .rodata._ZTS15CBasePlayerAmmo - 0x00000000001f1da4 0x12 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1da4 typeinfo name for CBasePlayerAmmo - *fill* 0x00000000001f1db6 0x2 - .rodata._ZTI15CBasePlayerAmmo - 0x00000000001f1db8 0xc release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1db8 typeinfo for CBasePlayerAmmo - *fill* 0x00000000001f1dc4 0x1c - .rodata._ZTV11CBaseEntity - 0x00000000001f1de0 0x100 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1de0 vtable for CBaseEntity - .rodata._ZTV10CBaseDelay - 0x00000000001f1ee0 0x100 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1ee0 vtable for CBaseDelay - .rodata._ZTV14CBaseAnimating - 0x00000000001f1fe0 0x108 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f1fe0 vtable for CBaseAnimating - *fill* 0x00000000001f20e8 0x18 - .rodata._ZTV11CBaseToggle - 0x00000000001f2100 0x10c release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f2100 vtable for CBaseToggle - *fill* 0x00000000001f220c 0x14 - .rodata._ZTV8CGrenade - 0x00000000001f2220 0x158 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f2220 vtable for CGrenade - *fill* 0x00000000001f2378 0x8 - .rodata._ZTV12CBaseMonster - 0x00000000001f2380 0x154 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f2380 vtable for CBaseMonster - *fill* 0x00000000001f24d4 0xc - .rodata._ZTV17CBasePlayerWeapon - 0x00000000001f24e0 0x1ac release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f24e0 vtable for CBasePlayerWeapon - *fill* 0x00000000001f268c 0x14 - .rodata._ZTV15CBasePlayerItem - 0x00000000001f26a0 0x15c release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f26a0 vtable for CBasePlayerItem - *fill* 0x00000000001f27fc 0x4 - .rodata._ZTV15CBasePlayerAmmo - 0x00000000001f2800 0x104 release/obj/hl1_client/hl/hl_baseentity.o - 0x00000000001f2800 vtable for CBasePlayerAmmo - .rodata.cst4 0x00000000001f2904 0x8 release/obj/hl1_client/hl/hl_baseentity.o - .rodata.str1.1 - 0x00000000001f290c 0x4 release/obj/hl1_client/hl/hl_objects.o - .rodata.cst8 0x00000000001f2910 0x8 release/obj/hl1_client/hl/hl_objects.o - .rodata.str1.1 - 0x00000000001f2918 0xd2 release/obj/hl1_client/hl/hl_weapons.o - 0xda (size before relaxing) - *fill* 0x00000000001f29ea 0x16 - .rodata 0x00000000001f2a00 0x110 release/obj/hl1_client/hl/hl_weapons.o - .rodata._ZTS11CBasePlayer - 0x00000000001f2b10 0xe release/obj/hl1_client/hl/hl_weapons.o - 0x00000000001f2b10 typeinfo name for CBasePlayer - *fill* 0x00000000001f2b1e 0x2 - .rodata._ZTI11CBasePlayer - 0x00000000001f2b20 0xc release/obj/hl1_client/hl/hl_weapons.o - 0x00000000001f2b20 typeinfo for CBasePlayer - .rodata._ZTI21AvHAlienAbilityWeapon - 0x00000000001f2b2c 0xc release/obj/hl1_client/hl/hl_weapons.o - 0x00000000001f2b2c typeinfo for AvHAlienAbilityWeapon - .rodata._ZTS21AvHAlienAbilityWeapon - 0x00000000001f2b38 0x18 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000001f2b38 typeinfo name for AvHAlienAbilityWeapon - *fill* 0x00000000001f2b50 0x10 - .rodata._ZTV21AvHAlienAbilityWeapon - 0x00000000001f2b60 0x290 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000001f2b60 vtable for AvHAlienAbilityWeapon - *fill* 0x00000000001f2df0 0x10 - .rodata._ZTV11CBasePlayer - 0x00000000001f2e00 0x1bc release/obj/hl1_client/hl/hl_weapons.o - 0x00000000001f2e00 vtable for CBasePlayer - .rodata.cst4 0x00000000001f2fbc 0x14 release/obj/hl1_client/hl/hl_weapons.o - 0x18 (size before relaxing) - .rodata.cst8 0x00000000001f2fd0 0x8 release/obj/hl1_client/hl/hl_weapons.o - .rodata.str1.1 - 0x00000000001f2fd8 0x14d release/obj/hl1_client/ammo.o - 0x15f (size before relaxing) - *fill* 0x00000000001f3125 0x3 - .rodata 0x00000000001f3128 0x18 release/obj/hl1_client/ammo.o - .rodata._ZTI8CHudBase - 0x00000000001f3140 0x8 release/obj/hl1_client/ammo.o - 0x00000000001f3140 typeinfo for CHudBase - .rodata._ZTS8CHudBase - 0x00000000001f3148 0xa release/obj/hl1_client/ammo.o - 0x00000000001f3148 typeinfo name for CHudBase - .rodata._ZTS8CHudAmmo - 0x00000000001f3152 0xa release/obj/hl1_client/ammo.o - 0x00000000001f3152 typeinfo name for CHudAmmo - .rodata._ZTI8CHudAmmo - 0x00000000001f315c 0xc release/obj/hl1_client/ammo.o - 0x00000000001f315c typeinfo for CHudAmmo - *fill* 0x00000000001f3168 0x18 - .rodata._ZTV8CHudBase - 0x00000000001f3180 0x28 release/obj/hl1_client/ammo.o - 0x00000000001f3180 vtable for CHudBase - *fill* 0x00000000001f31a8 0x18 - .rodata._ZTV8CHudAmmo - 0x00000000001f31c0 0x28 release/obj/hl1_client/ammo.o - 0x00000000001f31c0 vtable for CHudAmmo - .rodata.cst4 0x00000000001f31e8 0x8 release/obj/hl1_client/ammo.o - .rodata.str1.1 - 0x00000000001f31f0 0x1d release/obj/hl1_client/cdll_int.o - 0x22 (size before relaxing) - *fill* 0x00000000001f320d 0x3 - .rodata._ZTI14IBaseInterface - 0x00000000001f3210 0x8 release/obj/hl1_client/cdll_int.o - 0x00000000001f3210 typeinfo for IBaseInterface - .rodata._ZTS14IBaseInterface - 0x00000000001f3218 0x11 release/obj/hl1_client/cdll_int.o - 0x00000000001f3218 typeinfo name for IBaseInterface - *fill* 0x00000000001f3229 0x3 - .rodata._ZTI18IGameClientExports - 0x00000000001f322c 0xc release/obj/hl1_client/cdll_int.o - 0x00000000001f322c typeinfo for IGameClientExports - .rodata._ZTS18IGameClientExports - 0x00000000001f3238 0x15 release/obj/hl1_client/cdll_int.o - 0x00000000001f3238 typeinfo name for IGameClientExports - *fill* 0x00000000001f324d 0x3 - .rodata._ZTI14CClientExports - 0x00000000001f3250 0xc release/obj/hl1_client/cdll_int.o - 0x00000000001f3250 typeinfo for CClientExports - .rodata._ZTS14CClientExports - 0x00000000001f325c 0x11 release/obj/hl1_client/cdll_int.o - 0x00000000001f325c typeinfo name for CClientExports - *fill* 0x00000000001f326d 0x3 - .rodata._ZTV14IBaseInterface - 0x00000000001f3270 0x10 release/obj/hl1_client/cdll_int.o - 0x00000000001f3270 vtable for IBaseInterface - .rodata._ZTV18IGameClientExports - 0x00000000001f3280 0x20 release/obj/hl1_client/cdll_int.o - 0x00000000001f3280 vtable for IGameClientExports - .rodata._ZTV14CClientExports - 0x00000000001f32a0 0x20 release/obj/hl1_client/cdll_int.o - 0x00000000001f32a0 vtable for CClientExports - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/ammo_secondary.o - .rodata._ZTS17CHudAmmoSecondary - 0x00000000001f32c0 0x14 release/obj/hl1_client/ammo_secondary.o - 0x00000000001f32c0 typeinfo name for CHudAmmoSecondary - .rodata._ZTI17CHudAmmoSecondary - 0x00000000001f32d4 0xc release/obj/hl1_client/ammo_secondary.o - 0x00000000001f32d4 typeinfo for CHudAmmoSecondary - .rodata._ZTV17CHudAmmoSecondary - 0x00000000001f32e0 0x28 release/obj/hl1_client/ammo_secondary.o - 0x00000000001f32e0 vtable for CHudAmmoSecondary - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/ammo_secondary.o - .rodata.str1.1 - 0x0000000000000000 0x19 release/obj/hl1_client/ammohistory.o - .rodata.cst4 0x00000000001f3308 0x8 release/obj/hl1_client/ammohistory.o - .rodata.str1.1 - 0x00000000001f3310 0x1d release/obj/hl1_client/battery.o - 0x21 (size before relaxing) - .rodata._ZTS11CHudBattery - 0x00000000001f332d 0xe release/obj/hl1_client/battery.o - 0x00000000001f332d typeinfo name for CHudBattery - *fill* 0x00000000001f333b 0x1 - .rodata._ZTI11CHudBattery - 0x00000000001f333c 0xc release/obj/hl1_client/battery.o - 0x00000000001f333c typeinfo for CHudBattery - *fill* 0x00000000001f3348 0x18 - .rodata._ZTV11CHudBattery - 0x00000000001f3360 0x28 release/obj/hl1_client/battery.o - 0x00000000001f3360 vtable for CHudBattery - .rodata.cst4 0x00000000001f3388 0x10 release/obj/hl1_client/battery.o - 0x18 (size before relaxing) - .rodata.str1.1 - 0x00000000001f3398 0x16 release/obj/hl1_client/com_weapons.o - 0x1a (size before relaxing) - *fill* 0x00000000001f33ae 0x2 - .rodata.cst4 0x00000000001f33b0 0x4 release/obj/hl1_client/com_weapons.o - .rodata.str1.1 - 0x00000000001f33b4 0xa1 release/obj/hl1_client/death.o - 0xae (size before relaxing) - .rodata._ZTS15CHudDeathNotice - 0x00000000001f3455 0x12 release/obj/hl1_client/death.o - 0x00000000001f3455 typeinfo name for CHudDeathNotice - *fill* 0x00000000001f3467 0x1 - .rodata._ZTI15CHudDeathNotice - 0x00000000001f3468 0xc release/obj/hl1_client/death.o - 0x00000000001f3468 typeinfo for CHudDeathNotice - *fill* 0x00000000001f3474 0xc - .rodata._ZTV15CHudDeathNotice - 0x00000000001f3480 0x28 release/obj/hl1_client/death.o - 0x00000000001f3480 vtable for CHudDeathNotice - .rodata.cst8 0x00000000001f34a8 0x10 release/obj/hl1_client/death.o - 0x18 (size before relaxing) - .rodata.cst4 0x00000000001f34b8 0x8 release/obj/hl1_client/death.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/entity.o - .rodata.cst4 0x00000000001f34c0 0x10 release/obj/hl1_client/entity.o - 0x24 (size before relaxing) - .rodata.cst8 0x00000000001f34d0 0x18 release/obj/hl1_client/entity.o - 0x20 (size before relaxing) - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/ev_common.o - .rodata.cst4 0x00000000001f34e8 0xc release/obj/hl1_client/ev_common.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/events.o - .rodata.str1.1 - 0x00000000001f34f4 0x36 release/obj/hl1_client/flashlight.o - 0x3a (size before relaxing) - .rodata._ZTS14CHudFlashlight - 0x00000000001f352a 0x11 release/obj/hl1_client/flashlight.o - 0x00000000001f352a typeinfo name for CHudFlashlight - *fill* 0x00000000001f353b 0x1 - .rodata._ZTI14CHudFlashlight - 0x00000000001f353c 0xc release/obj/hl1_client/flashlight.o - 0x00000000001f353c typeinfo for CHudFlashlight - *fill* 0x00000000001f3548 0x18 - .rodata._ZTV14CHudFlashlight - 0x00000000001f3560 0x28 release/obj/hl1_client/flashlight.o - 0x00000000001f3560 vtable for CHudFlashlight - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/flashlight.o - .rodata.cst8 0x00000000001f3588 0x8 release/obj/hl1_client/flashlight.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/GameStudioModelRenderer.o - .rodata._ZTI24CGameStudioModelRenderer - 0x00000000001f3590 0xc release/obj/hl1_client/GameStudioModelRenderer.o - 0x00000000001f3590 typeinfo for CGameStudioModelRenderer - .rodata._ZTS24CGameStudioModelRenderer - 0x00000000001f359c 0x1b release/obj/hl1_client/GameStudioModelRenderer.o - 0x00000000001f359c typeinfo name for CGameStudioModelRenderer - *fill* 0x00000000001f35b7 0x9 - .rodata._ZTV24CGameStudioModelRenderer - 0x00000000001f35c0 0x70 release/obj/hl1_client/GameStudioModelRenderer.o - 0x00000000001f35c0 vtable for CGameStudioModelRenderer - .rodata.str1.1 - 0x00000000001f3630 0x7 release/obj/hl1_client/geiger.o - 0xb (size before relaxing) - .rodata._ZTS10CHudGeiger - 0x00000000001f3637 0xd release/obj/hl1_client/geiger.o - 0x00000000001f3637 typeinfo name for CHudGeiger - .rodata._ZTI10CHudGeiger - 0x00000000001f3644 0xc release/obj/hl1_client/geiger.o - 0x00000000001f3644 typeinfo for CHudGeiger - *fill* 0x00000000001f3650 0x10 - .rodata._ZTV10CHudGeiger - 0x00000000001f3660 0x28 release/obj/hl1_client/geiger.o - 0x00000000001f3660 vtable for CHudGeiger - .rodata.str1.1 - 0x00000000001f3688 0x191 release/obj/hl1_client/hud.o - 0x1b6 (size before relaxing) - *fill* 0x00000000001f3819 0x3 - .rodata._ZTI18IVoiceStatusHelper - 0x00000000001f381c 0x8 release/obj/hl1_client/hud.o - 0x00000000001f381c typeinfo for IVoiceStatusHelper - .rodata._ZTS18IVoiceStatusHelper - 0x00000000001f3824 0x15 release/obj/hl1_client/hud.o - 0x00000000001f3824 typeinfo name for IVoiceStatusHelper - *fill* 0x00000000001f3839 0x3 - .rodata._ZTI20CHLVoiceStatusHelper - 0x00000000001f383c 0xc release/obj/hl1_client/hud.o - 0x00000000001f383c typeinfo for CHLVoiceStatusHelper - .rodata._ZTS20CHLVoiceStatusHelper - 0x00000000001f3848 0x17 release/obj/hl1_client/hud.o - 0x00000000001f3848 typeinfo name for CHLVoiceStatusHelper - *fill* 0x00000000001f385f 0x1 - .rodata._ZTV18IVoiceStatusHelper - 0x00000000001f3860 0x20 release/obj/hl1_client/hud.o - 0x00000000001f3860 vtable for IVoiceStatusHelper - .rodata._ZTV20CHLVoiceStatusHelper - 0x00000000001f3880 0x20 release/obj/hl1_client/hud.o - 0x00000000001f3880 vtable for CHLVoiceStatusHelper - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/hud_msg.o - .rodata.str1.1 - 0x00000000001f38a0 0x1e release/obj/hl1_client/hud_redraw.o - 0x4b (size before relaxing) - *fill* 0x00000000001f38be 0x2 - .rodata.cst4 0x00000000001f38c0 0x4 release/obj/hl1_client/hud_redraw.o - 0x10 (size before relaxing) - .rodata.str1.1 - 0x00000000001f38c4 0x70 release/obj/hl1_client/hud_servers.o - 0x81 (size before relaxing) - .rodata.str1.4 - 0x00000000001f3934 0x36 release/obj/hl1_client/hud_servers.o - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/hud_servers.o - .rodata.str1.1 - 0x00000000001f396a 0x203 release/obj/hl1_client/hud_spectator.o - 0x215 (size before relaxing) - *fill* 0x00000000001f3b6d 0x3 - .rodata.str1.4 - 0x00000000001f3b70 0xf5 release/obj/hl1_client/hud_spectator.o - *fill* 0x00000000001f3c65 0x3 - .rodata 0x00000000001f3c68 0x34 release/obj/hl1_client/hud_spectator.o - .rodata._ZTS13CHudSpectator - 0x00000000001f3c9c 0x10 release/obj/hl1_client/hud_spectator.o - 0x00000000001f3c9c typeinfo name for CHudSpectator - .rodata._ZTI13CHudSpectator - 0x00000000001f3cac 0xc release/obj/hl1_client/hud_spectator.o - 0x00000000001f3cac typeinfo for CHudSpectator - *fill* 0x00000000001f3cb8 0x8 - .rodata._ZTV13CHudSpectator - 0x00000000001f3cc0 0x28 release/obj/hl1_client/hud_spectator.o - 0x00000000001f3cc0 vtable for CHudSpectator - .rodata.cst4 0x00000000001f3ce8 0x20 release/obj/hl1_client/hud_spectator.o - 0x30 (size before relaxing) - *fill* 0x00000000001f3d08 0x8 - .rodata.cst16 0x00000000001f3d10 0x10 release/obj/hl1_client/hud_spectator.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/hud_update.o - .rodata.str1.1 - 0x00000000001f3d20 0x17d release/obj/hl1_client/in_camera.o - 0x197 (size before relaxing) - *fill* 0x00000000001f3e9d 0x3 - .rodata.cst4 0x00000000001f3ea0 0x10 release/obj/hl1_client/in_camera.o - 0x1c (size before relaxing) - .rodata.str1.4 - 0x00000000001f3eb0 0x5a release/obj/hl1_client/input.o - .rodata.str1.1 - 0x00000000001f3f0a 0x3a9 release/obj/hl1_client/input.o - 0x3df (size before relaxing) - *fill* 0x00000000001f42b3 0x1 - .rodata.cst4 0x00000000001f42b4 0x10 release/obj/hl1_client/input.o - 0x1c (size before relaxing) - .rodata.str1.1 - 0x00000000001f42c4 0x1c9 release/obj/hl1_client/inputw32.o - 0x1e7 (size before relaxing) - *fill* 0x00000000001f448d 0x3 - .rodata.str1.4 - 0x00000000001f4490 0x2b release/obj/hl1_client/inputw32.o - *fill* 0x00000000001f44bb 0x1 - .rodata.cst4 0x00000000001f44bc 0x14 release/obj/hl1_client/inputw32.o - 0x24 (size before relaxing) - .rodata.str1.1 - 0x00000000001f44d0 0x18 release/obj/hl1_client/menu.o - 0x1c (size before relaxing) - .rodata._ZTS8CHudMenu - 0x00000000001f44e8 0xa release/obj/hl1_client/menu.o - 0x00000000001f44e8 typeinfo name for CHudMenu - *fill* 0x00000000001f44f2 0x2 - .rodata._ZTI8CHudMenu - 0x00000000001f44f4 0xc release/obj/hl1_client/menu.o - 0x00000000001f44f4 typeinfo for CHudMenu - .rodata._ZTV8CHudMenu - 0x00000000001f4500 0x28 release/obj/hl1_client/menu.o - 0x00000000001f4500 vtable for CHudMenu - .rodata.str1.4 - 0x00000000001f4528 0x29 release/obj/hl1_client/vgui_SpectatorPanel.o - .rodata.str1.1 - 0x00000000001f4551 0x99 release/obj/hl1_client/vgui_SpectatorPanel.o - 0xb5 (size before relaxing) - *fill* 0x00000000001f45ea 0x2 - .rodata._ZTIN4vgui20ICheckButton2HandlerE - 0x00000000001f45ec 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f45ec typeinfo for vgui::ICheckButton2Handler - .rodata._ZTSN4vgui20ICheckButton2HandlerE - 0x00000000001f45f4 0x1e release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f45f4 typeinfo name for vgui::ICheckButton2Handler - *fill* 0x00000000001f4612 0x2 - .rodata._ZTIN4vgui12ActionSignalE - 0x00000000001f4614 0x8 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4614 typeinfo for vgui::ActionSignal - .rodata._ZTSN4vgui12ActionSignalE - 0x00000000001f461c 0x16 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f461c typeinfo name for vgui::ActionSignal - *fill* 0x00000000001f4632 0x2 - .rodata._ZTI11ColorButton - 0x00000000001f4634 0xc release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4634 typeinfo for ColorButton - .rodata._ZTS11ColorButton - 0x00000000001f4640 0xe release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4640 typeinfo name for ColorButton - *fill* 0x00000000001f464e 0x2 - .rodata._ZTI17CTransparentPanel - 0x00000000001f4650 0xc release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4650 typeinfo for CTransparentPanel - .rodata._ZTS17CTransparentPanel - 0x00000000001f465c 0x14 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f465c typeinfo name for CTransparentPanel - .rodata._ZTS14SpectatorPanel - 0x00000000001f4670 0x11 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4670 typeinfo name for SpectatorPanel - *fill* 0x00000000001f4681 0x3 - .rodata._ZTI14SpectatorPanel - 0x00000000001f4684 0xc release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4684 typeinfo for SpectatorPanel - .rodata._ZTI25CSpectatorHandler_Command - 0x00000000001f4690 0xc release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4690 typeinfo for CSpectatorHandler_Command - .rodata._ZTS25CSpectatorHandler_Command - 0x00000000001f469c 0x1c release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f469c typeinfo name for CSpectatorHandler_Command - .rodata._ZTI28Spectator_CheckButtonHandler - 0x00000000001f46b8 0xc release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f46b8 typeinfo for Spectator_CheckButtonHandler - .rodata._ZTS28Spectator_CheckButtonHandler - 0x00000000001f46c4 0x1f release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f46c4 typeinfo name for Spectator_CheckButtonHandler - *fill* 0x00000000001f46e3 0x5 - .rodata._ZTVN4vgui20ICheckButton2HandlerE - 0x00000000001f46e8 0xc release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f46e8 vtable for vgui::ICheckButton2Handler - *fill* 0x00000000001f46f4 0x4 - .rodata._ZTVN4vgui12ActionSignalE - 0x00000000001f46f8 0xc release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f46f8 vtable for vgui::ActionSignal - *fill* 0x00000000001f4704 0x1c - .rodata._ZTV11ColorButton - 0x00000000001f4720 0x270 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4720 vtable for ColorButton - *fill* 0x00000000001f4990 0x10 - .rodata._ZTV17CTransparentPanel - 0x00000000001f49a0 0x204 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f49a0 vtable for CTransparentPanel - *fill* 0x00000000001f4ba4 0x4 - .rodata._ZTV25CSpectatorHandler_Command - 0x00000000001f4ba8 0xc release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4ba8 vtable for CSpectatorHandler_Command - *fill* 0x00000000001f4bb4 0x4 - .rodata._ZTV28Spectator_CheckButtonHandler - 0x00000000001f4bb8 0xc release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4bb8 vtable for Spectator_CheckButtonHandler - *fill* 0x00000000001f4bc4 0x1c - .rodata._ZTV14SpectatorPanel - 0x00000000001f4be0 0x20c release/obj/hl1_client/vgui_SpectatorPanel.o - 0x00000000001f4be0 vtable for SpectatorPanel - .rodata.cst4 0x00000000001f4dec 0x34 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x64 (size before relaxing) - .rodata.str1.1 - 0x00000000001f4e20 0x67e release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x724 (size before relaxing) - *fill* 0x00000000001f549e 0x2 - .rodata.str1.4 - 0x00000000001f54a0 0x20 release/obj/hl1_client/vgui_TeamFortressViewport.o - .rodata 0x00000000001f54c0 0x58 release/obj/hl1_client/vgui_TeamFortressViewport.o - .rodata._ZN23CMenuHandler_TextWindow15actionPerformedEPN4vgui5PanelE - 0x00000000001f5518 0x28 release/obj/hl1_client/vgui_TeamFortressViewport.o - .rodata._ZTIN4vgui11InputSignalE - 0x00000000001f5540 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5540 typeinfo for vgui::InputSignal - .rodata._ZTSN4vgui11InputSignalE - 0x00000000001f5548 0x15 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5548 typeinfo name for vgui::InputSignal - *fill* 0x00000000001f555d 0x3 - .rodata._ZTI11SpectButton - 0x00000000001f5560 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5560 typeinfo for SpectButton - .rodata._ZTS11SpectButton - 0x00000000001f556c 0xe release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f556c typeinfo name for SpectButton - .rodata._ZTS20TeamFortressViewport - 0x00000000001f557a 0x17 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f557a typeinfo name for TeamFortressViewport - *fill* 0x00000000001f5591 0x3 - .rodata._ZTI20TeamFortressViewport - 0x00000000001f5594 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5594 typeinfo for TeamFortressViewport - .rodata._ZTI26CMenuHandler_StringCommand - 0x00000000001f55a0 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f55a0 typeinfo for CMenuHandler_StringCommand - .rodata._ZTS26CMenuHandler_StringCommand - 0x00000000001f55ac 0x1d release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f55ac typeinfo name for CMenuHandler_StringCommand - *fill* 0x00000000001f55c9 0x3 - .rodata._ZTI31CMenuHandler_StringCommandWatch - 0x00000000001f55cc 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f55cc typeinfo for CMenuHandler_StringCommandWatch - *fill* 0x00000000001f55d8 0x8 - .rodata._ZTS31CMenuHandler_StringCommandWatch - 0x00000000001f55e0 0x22 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f55e0 typeinfo name for CMenuHandler_StringCommandWatch - *fill* 0x00000000001f5602 0x2 - .rodata._ZTI30CMenuHandler_PopupSubMenuInput - 0x00000000001f5604 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5604 typeinfo for CMenuHandler_PopupSubMenuInput - *fill* 0x00000000001f5610 0x10 - .rodata._ZTS30CMenuHandler_PopupSubMenuInput - 0x00000000001f5620 0x21 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5620 typeinfo name for CMenuHandler_PopupSubMenuInput - *fill* 0x00000000001f5641 0x3 - .rodata._ZTI23CMenuHandler_TextWindow - 0x00000000001f5644 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5644 typeinfo for CMenuHandler_TextWindow - .rodata._ZTS23CMenuHandler_TextWindow - 0x00000000001f5650 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5650 typeinfo name for CMenuHandler_TextWindow - *fill* 0x00000000001f566a 0x2 - .rodata._ZTI23CMenuHandler_ToggleCvar - 0x00000000001f566c 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f566c typeinfo for CMenuHandler_ToggleCvar - .rodata._ZTS23CMenuHandler_ToggleCvar - 0x00000000001f5678 0x1a release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5678 typeinfo name for CMenuHandler_ToggleCvar - .rodata._ZTS17CDragNDropHandler - 0x00000000001f5692 0x14 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5692 typeinfo name for CDragNDropHandler - *fill* 0x00000000001f56a6 0x2 - .rodata._ZTI17CDragNDropHandler - 0x00000000001f56a8 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f56a8 typeinfo for CDragNDropHandler - .rodata._ZTI24CHandler_ButtonHighlight - 0x00000000001f56b4 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f56b4 typeinfo for CHandler_ButtonHighlight - .rodata._ZTS24CHandler_ButtonHighlight - 0x00000000001f56c0 0x1b release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f56c0 typeinfo name for CHandler_ButtonHighlight - *fill* 0x00000000001f56db 0x1 - .rodata._ZTI31CHandler_CommandButtonHighlight - 0x00000000001f56dc 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f56dc typeinfo for CHandler_CommandButtonHighlight - *fill* 0x00000000001f56e8 0x18 - .rodata._ZTS31CHandler_CommandButtonHighlight - 0x00000000001f5700 0x22 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5700 typeinfo name for CHandler_CommandButtonHighlight - *fill* 0x00000000001f5722 0x2 - .rodata._ZTI10TeamButton - 0x00000000001f5724 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5724 typeinfo for TeamButton - .rodata._ZTS10TeamButton - 0x00000000001f5730 0xd release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5730 typeinfo name for TeamButton - *fill* 0x00000000001f573d 0x3 - .rodata._ZTI11FeignButton - 0x00000000001f5740 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5740 typeinfo for FeignButton - .rodata._ZTS11FeignButton - 0x00000000001f574c 0xe release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f574c typeinfo name for FeignButton - *fill* 0x00000000001f575a 0x2 - .rodata._ZTI14SpectateButton - 0x00000000001f575c 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f575c typeinfo for SpectateButton - .rodata._ZTS14SpectateButton - 0x00000000001f5768 0x11 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5768 typeinfo name for SpectateButton - *fill* 0x00000000001f5779 0x3 - .rodata._ZTI14DisguiseButton - 0x00000000001f577c 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f577c typeinfo for DisguiseButton - .rodata._ZTS14DisguiseButton - 0x00000000001f5788 0x11 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5788 typeinfo name for DisguiseButton - *fill* 0x00000000001f5799 0x3 - .rodata._ZTI13DetpackButton - 0x00000000001f579c 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f579c typeinfo for DetpackButton - .rodata._ZTS13DetpackButton - 0x00000000001f57a8 0x10 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f57a8 typeinfo name for DetpackButton - .rodata._ZTI11BuildButton - 0x00000000001f57b8 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f57b8 typeinfo for BuildButton - .rodata._ZTS11BuildButton - 0x00000000001f57c4 0xe release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f57c4 typeinfo name for BuildButton - *fill* 0x00000000001f57d2 0x2 - .rodata._ZTI9MapButton - 0x00000000001f57d4 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f57d4 typeinfo for MapButton - .rodata._ZTS9MapButton - 0x00000000001f57e0 0xb release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f57e0 typeinfo name for MapButton - *fill* 0x00000000001f57eb 0x1 - .rodata._ZTI21TeamOnlyCommandButton - 0x00000000001f57ec 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f57ec typeinfo for TeamOnlyCommandButton - .rodata._ZTS21TeamOnlyCommandButton - 0x00000000001f57f8 0x18 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f57f8 typeinfo name for TeamOnlyCommandButton - *fill* 0x00000000001f5810 0x10 - .rodata._ZTI19ToggleCommandButton - 0x00000000001f5820 0x20 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5820 typeinfo for ToggleCommandButton - .rodata._ZTS19ToggleCommandButton - 0x00000000001f5840 0x16 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5840 typeinfo name for ToggleCommandButton - *fill* 0x00000000001f5856 0xa - .rodata._ZTI17SpectToggleButton - 0x00000000001f5860 0x20 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5860 typeinfo for SpectToggleButton - .rodata._ZTS17SpectToggleButton - 0x00000000001f5880 0x14 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5880 typeinfo name for SpectToggleButton - .rodata._ZTI12PlayerButton - 0x00000000001f5894 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5894 typeinfo for PlayerButton - .rodata._ZTS12PlayerButton - 0x00000000001f58a0 0xf release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f58a0 typeinfo name for PlayerButton - *fill* 0x00000000001f58af 0x1 - .rodata._ZTI21CViewPortInputHandler - 0x00000000001f58b0 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f58b0 typeinfo for CViewPortInputHandler - .rodata._ZTS21CViewPortInputHandler - 0x00000000001f58bc 0x18 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f58bc typeinfo name for CViewPortInputHandler - *fill* 0x00000000001f58d4 0xc - .rodata._ZTVN4vgui11InputSignalE - 0x00000000001f58e0 0x34 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f58e0 vtable for vgui::InputSignal - *fill* 0x00000000001f5914 0xc - .rodata._ZTV11SpectButton - 0x00000000001f5920 0x270 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5920 vtable for SpectButton - .rodata._ZTV26CMenuHandler_StringCommand - 0x00000000001f5b90 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5b90 vtable for CMenuHandler_StringCommand - *fill* 0x00000000001f5b9c 0x4 - .rodata._ZTV31CMenuHandler_StringCommandWatch - 0x00000000001f5ba0 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5ba0 vtable for CMenuHandler_StringCommandWatch - *fill* 0x00000000001f5bac 0x14 - .rodata._ZTV30CMenuHandler_PopupSubMenuInput - 0x00000000001f5bc0 0x34 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5bc0 vtable for CMenuHandler_PopupSubMenuInput - *fill* 0x00000000001f5bf4 0x4 - .rodata._ZTV23CMenuHandler_TextWindow - 0x00000000001f5bf8 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5bf8 vtable for CMenuHandler_TextWindow - *fill* 0x00000000001f5c04 0x4 - .rodata._ZTV23CMenuHandler_ToggleCvar - 0x00000000001f5c08 0xc release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5c08 vtable for CMenuHandler_ToggleCvar - *fill* 0x00000000001f5c14 0xc - .rodata._ZTV24CHandler_ButtonHighlight - 0x00000000001f5c20 0x34 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5c20 vtable for CHandler_ButtonHighlight - *fill* 0x00000000001f5c54 0xc - .rodata._ZTV31CHandler_CommandButtonHighlight - 0x00000000001f5c60 0x34 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5c60 vtable for CHandler_CommandButtonHighlight - *fill* 0x00000000001f5c94 0xc - .rodata._ZTV10TeamButton - 0x00000000001f5ca0 0x270 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5ca0 vtable for TeamButton - *fill* 0x00000000001f5f10 0x10 - .rodata._ZTV11FeignButton - 0x00000000001f5f20 0x270 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f5f20 vtable for FeignButton - *fill* 0x00000000001f6190 0x10 - .rodata._ZTV14SpectateButton - 0x00000000001f61a0 0x270 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f61a0 vtable for SpectateButton - *fill* 0x00000000001f6410 0x10 - .rodata._ZTV14DisguiseButton - 0x00000000001f6420 0x270 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f6420 vtable for DisguiseButton - *fill* 0x00000000001f6690 0x10 - .rodata._ZTV13DetpackButton - 0x00000000001f66a0 0x270 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f66a0 vtable for DetpackButton - *fill* 0x00000000001f6910 0x10 - .rodata._ZTV11BuildButton - 0x00000000001f6920 0x270 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f6920 vtable for BuildButton - *fill* 0x00000000001f6b90 0x10 - .rodata._ZTV9MapButton - 0x00000000001f6ba0 0x270 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f6ba0 vtable for MapButton - *fill* 0x00000000001f6e10 0x10 - .rodata._ZTV21TeamOnlyCommandButton - 0x00000000001f6e20 0x270 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f6e20 vtable for TeamOnlyCommandButton - *fill* 0x00000000001f7090 0x10 - .rodata._ZTV19ToggleCommandButton - 0x00000000001f70a0 0x2d0 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f70a0 vtable for ToggleCommandButton - *fill* 0x00000000001f7370 0x10 - .rodata._ZTV17SpectToggleButton - 0x00000000001f7380 0x2d0 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f7380 vtable for SpectToggleButton - *fill* 0x00000000001f7650 0x10 - .rodata._ZTV12PlayerButton - 0x00000000001f7660 0x270 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f7660 vtable for PlayerButton - *fill* 0x00000000001f78d0 0x10 - .rodata._ZTV21CViewPortInputHandler - 0x00000000001f78e0 0x34 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f78e0 vtable for CViewPortInputHandler - *fill* 0x00000000001f7914 0xc - .rodata._ZTV20TeamFortressViewport - 0x00000000001f7920 0x204 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f7920 vtable for TeamFortressViewport - *fill* 0x00000000001f7b24 0x1c - .rodata._ZTV17CDragNDropHandler - 0x00000000001f7b40 0x34 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x00000000001f7b40 vtable for CDragNDropHandler - .rodata.cst4 0x00000000001f7b74 0x10 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x34 (size before relaxing) - *fill* 0x00000000001f7b84 0x4 - .rodata.cst8 0x00000000001f7b88 0x8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .rodata.str1.1 - 0x00000000001f7b90 0x83 release/obj/hl1_client/vgui_teammenu.o - 0xf1 (size before relaxing) - *fill* 0x00000000001f7c13 0x1 - .rodata.str1.4 - 0x00000000001f7c14 0x1f release/obj/hl1_client/vgui_teammenu.o - *fill* 0x00000000001f7c33 0x1 - .rodata._ZTI10CMenuPanel - 0x00000000001f7c34 0xc release/obj/hl1_client/vgui_teammenu.o - 0x00000000001f7c34 typeinfo for CMenuPanel - .rodata._ZTS10CMenuPanel - 0x00000000001f7c40 0xd release/obj/hl1_client/vgui_teammenu.o - 0x00000000001f7c40 typeinfo name for CMenuPanel - .rodata._ZTS14CTeamMenuPanel - 0x00000000001f7c4d 0x11 release/obj/hl1_client/vgui_teammenu.o - 0x00000000001f7c4d typeinfo name for CTeamMenuPanel - *fill* 0x00000000001f7c5e 0x2 - .rodata._ZTI14CTeamMenuPanel - 0x00000000001f7c60 0xc release/obj/hl1_client/vgui_teammenu.o - 0x00000000001f7c60 typeinfo for CTeamMenuPanel - *fill* 0x00000000001f7c6c 0x14 - .rodata._ZTV10CMenuPanel - 0x00000000001f7c80 0x218 release/obj/hl1_client/vgui_teammenu.o - 0x00000000001f7c80 vtable for CMenuPanel - *fill* 0x00000000001f7e98 0x8 - .rodata._ZTV14CTeamMenuPanel - 0x00000000001f7ea0 0x220 release/obj/hl1_client/vgui_teammenu.o - 0x00000000001f7ea0 vtable for CTeamMenuPanel - .rodata.cst4 0x00000000001f80c0 0x24 release/obj/hl1_client/vgui_teammenu.o - 0x40 (size before relaxing) - .rodata.str1.1 - 0x00000000001f80e4 0x2e6 release/obj/hl1_client/view.o - 0x318 (size before relaxing) - *fill* 0x00000000001f83ca 0x16 - .rodata 0x00000000001f83e0 0xc8 release/obj/hl1_client/view.o - .rodata.cst4 0x00000000001f84a8 0x48 release/obj/hl1_client/view.o - 0xac (size before relaxing) - .rodata.cst8 0x00000000001f84f0 0x10 release/obj/hl1_client/view.o - 0x20 (size before relaxing) - .rodata.str1.1 - 0x00000000001f8500 0x42 release/obj/hl1_client/message.o - 0x58 (size before relaxing) - .rodata._ZTS11CHudMessage - 0x00000000001f8542 0xe release/obj/hl1_client/message.o - 0x00000000001f8542 typeinfo name for CHudMessage - .rodata._ZTI11CHudMessage - 0x00000000001f8550 0xc release/obj/hl1_client/message.o - 0x00000000001f8550 typeinfo for CHudMessage - *fill* 0x00000000001f855c 0x4 - .rodata._ZTV11CHudMessage - 0x00000000001f8560 0x28 release/obj/hl1_client/message.o - 0x00000000001f8560 vtable for CHudMessage - .rodata.cst4 0x00000000001f8588 0x8 release/obj/hl1_client/message.o - 0x18 (size before relaxing) - .rodata.cst8 0x00000000001f8590 0x8 release/obj/hl1_client/message.o - 0x10 (size before relaxing) - .rodata.cst4 0x00000000001f8598 0x18 release/obj/hl1_client/parsemsg.o - .rodata.str1.1 - 0x00000000001f85b0 0x4b release/obj/hl1_client/saytext.o - 0x57 (size before relaxing) - .rodata._ZTS11CHudSayText - 0x00000000001f85fb 0xe release/obj/hl1_client/saytext.o - 0x00000000001f85fb typeinfo name for CHudSayText - *fill* 0x00000000001f8609 0x3 - .rodata._ZTI11CHudSayText - 0x00000000001f860c 0xc release/obj/hl1_client/saytext.o - 0x00000000001f860c typeinfo for CHudSayText - *fill* 0x00000000001f8618 0x8 - .rodata._ZTV11CHudSayText - 0x00000000001f8620 0x28 release/obj/hl1_client/saytext.o - 0x00000000001f8620 vtable for CHudSayText - .rodata.cst4 0x00000000001f8648 0x4 release/obj/hl1_client/saytext.o - .rodata.str1.1 - 0x00000000001f864c 0x12 release/obj/hl1_client/status_icons.o - 0x1e (size before relaxing) - .rodata._ZTS15CHudStatusIcons - 0x00000000001f865e 0x12 release/obj/hl1_client/status_icons.o - 0x00000000001f865e typeinfo name for CHudStatusIcons - .rodata._ZTI15CHudStatusIcons - 0x00000000001f8670 0xc release/obj/hl1_client/status_icons.o - 0x00000000001f8670 typeinfo for CHudStatusIcons - *fill* 0x00000000001f867c 0x4 - .rodata._ZTV15CHudStatusIcons - 0x00000000001f8680 0x28 release/obj/hl1_client/status_icons.o - 0x00000000001f8680 vtable for CHudStatusIcons - .rodata.str1.1 - 0x00000000001f86a8 0x24 release/obj/hl1_client/statusbar.o - 0x2d (size before relaxing) - .rodata._ZTS13CHudStatusBar - 0x00000000001f86cc 0x10 release/obj/hl1_client/statusbar.o - 0x00000000001f86cc typeinfo name for CHudStatusBar - .rodata._ZTI13CHudStatusBar - 0x00000000001f86dc 0xc release/obj/hl1_client/statusbar.o - 0x00000000001f86dc typeinfo for CHudStatusBar - *fill* 0x00000000001f86e8 0x18 - .rodata._ZTV13CHudStatusBar - 0x00000000001f8700 0x28 release/obj/hl1_client/statusbar.o - 0x00000000001f8700 vtable for CHudStatusBar - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/studio_util.o - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/studio_util.o - .rodata.cst8 0x00000000001f8728 0x10 release/obj/hl1_client/studio_util.o - .rodata.str1.1 - 0x00000000001f8738 0x86 release/obj/hl1_client/StudioModelRenderer.o - 0x8a (size before relaxing) - .rodata._ZTS20CStudioModelRenderer - 0x00000000001f87be 0x17 release/obj/hl1_client/StudioModelRenderer.o - 0x00000000001f87be typeinfo name for CStudioModelRenderer - *fill* 0x00000000001f87d5 0x3 - .rodata._ZTI20CStudioModelRenderer - 0x00000000001f87d8 0x8 release/obj/hl1_client/StudioModelRenderer.o - 0x00000000001f87d8 typeinfo for CStudioModelRenderer - .rodata._ZTV20CStudioModelRenderer - 0x00000000001f87e0 0x70 release/obj/hl1_client/StudioModelRenderer.o - 0x00000000001f87e0 vtable for CStudioModelRenderer - .rodata.cst4 0x00000000001f8850 0x18 release/obj/hl1_client/StudioModelRenderer.o - 0x54 (size before relaxing) - .rodata.cst8 0x00000000001f8868 0x28 release/obj/hl1_client/StudioModelRenderer.o - 0x48 (size before relaxing) - .rodata.str1.1 - 0x00000000001f8890 0xa release/obj/hl1_client/text_message.o - 0x28 (size before relaxing) - .rodata._ZTS15CHudTextMessage - 0x00000000001f889a 0x12 release/obj/hl1_client/text_message.o - 0x00000000001f889a typeinfo name for CHudTextMessage - .rodata._ZTI15CHudTextMessage - 0x00000000001f88ac 0xc release/obj/hl1_client/text_message.o - 0x00000000001f88ac typeinfo for CHudTextMessage - *fill* 0x00000000001f88b8 0x8 - .rodata._ZTV15CHudTextMessage - 0x00000000001f88c0 0x28 release/obj/hl1_client/text_message.o - 0x00000000001f88c0 vtable for CHudTextMessage - .rodata.str1.1 - 0x00000000001f88e8 0x1b release/obj/hl1_client/train.o - 0x1f (size before relaxing) - .rodata._ZTS9CHudTrain - 0x00000000001f8903 0xb release/obj/hl1_client/train.o - 0x00000000001f8903 typeinfo name for CHudTrain - *fill* 0x00000000001f890e 0x2 - .rodata._ZTI9CHudTrain - 0x00000000001f8910 0xc release/obj/hl1_client/train.o - 0x00000000001f8910 typeinfo for CHudTrain - *fill* 0x00000000001f891c 0x4 - .rodata._ZTV9CHudTrain - 0x00000000001f8920 0x28 release/obj/hl1_client/train.o - 0x00000000001f8920 vtable for CHudTrain - .rodata.str1.1 - 0x0000000000000000 0x16 release/obj/hl1_client/tri.o - .rodata.cst8 0x0000000000000000 0x8 release/obj/hl1_client/tri.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/vgui_int.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/cl_util.o - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/cl_util.o - .rodata.str1.1 - 0x00000000001f8948 0x4b8 release/obj/hl1_client/ev_hldm.o - 0x4bc (size before relaxing) - .rodata 0x00000000001f8e00 0x88 release/obj/hl1_client/ev_hldm.o - .rodata.cst4 0x00000000001f8e88 0xc release/obj/hl1_client/ev_hldm.o - 0x58 (size before relaxing) - *fill* 0x00000000001f8e94 0x4 - .rodata.cst8 0x00000000001f8e98 0x8 release/obj/hl1_client/ev_hldm.o - 0x18 (size before relaxing) - .rodata.str1.1 - 0x00000000001f8ea0 0x9 release/obj/hl1_client/vgui_MOTDWindow.o - 0x27 (size before relaxing) - *fill* 0x00000000001f8ea9 0x3 - .rodata._ZTI19CMessageWindowPanel - 0x00000000001f8eac 0xc release/obj/hl1_client/vgui_MOTDWindow.o - 0x00000000001f8eac typeinfo for CMessageWindowPanel - .rodata._ZTS19CMessageWindowPanel - 0x00000000001f8eb8 0x16 release/obj/hl1_client/vgui_MOTDWindow.o - 0x00000000001f8eb8 typeinfo name for CMessageWindowPanel - *fill* 0x00000000001f8ece 0x12 - .rodata._ZTV19CMessageWindowPanel - 0x00000000001f8ee0 0x218 release/obj/hl1_client/vgui_MOTDWindow.o - 0x00000000001f8ee0 vtable for CMessageWindowPanel - .rodata.cst4 0x00000000001f90f8 0x4 release/obj/hl1_client/vgui_MOTDWindow.o - 0x30 (size before relaxing) - .rodata.str1.1 - 0x00000000001f90fc 0xe3 release/obj/hl1_client/vgui_SchemeManager.o - 0xea (size before relaxing) - *fill* 0x00000000001f91df 0x1 - .rodata.str1.4 - 0x00000000001f91e0 0xfa release/obj/hl1_client/vgui_SchemeManager.o - .rodata._ZTS14CSchemeManager - 0x00000000001f92da 0x11 release/obj/hl1_client/vgui_SchemeManager.o - 0x00000000001f92da typeinfo name for CSchemeManager - *fill* 0x00000000001f92eb 0x1 - .rodata._ZTI14CSchemeManager - 0x00000000001f92ec 0x8 release/obj/hl1_client/vgui_SchemeManager.o - 0x00000000001f92ec typeinfo for CSchemeManager - *fill* 0x00000000001f92f4 0x4 - .rodata._ZTV14CSchemeManager - 0x00000000001f92f8 0x10 release/obj/hl1_client/vgui_SchemeManager.o - 0x00000000001f92f8 vtable for CSchemeManager - *fill* 0x00000000001f9308 0x18 - .rodata 0x00000000001f9320 0x24 release/obj/hl1_client/vgui_SchemeManager.o - .rodata.str1.1 - 0x00000000001f9344 0x2bf release/obj/hl1_client/vgui_ScorePanel.o - 0x327 (size before relaxing) - *fill* 0x00000000001f9603 0x1 - .rodata.str1.4 - 0x00000000001f9604 0x136 release/obj/hl1_client/vgui_ScorePanel.o - *fill* 0x00000000001f973a 0x2 - .rodata 0x00000000001f973c 0xa0 release/obj/hl1_client/vgui_ScorePanel.o - .rodata._ZTIN4vgui19CDefaultInputSignalE - 0x00000000001f97dc 0xc release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f97dc typeinfo for vgui::CDefaultInputSignal - .rodata._ZTSN4vgui19CDefaultInputSignalE - 0x00000000001f97e8 0x1d release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f97e8 typeinfo name for vgui::CDefaultInputSignal - *fill* 0x00000000001f9805 0x3 - .rodata._ZTI11CTextImage2 - 0x00000000001f9808 0xc release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f9808 typeinfo for CTextImage2 - .rodata._ZTS11CTextImage2 - 0x00000000001f9814 0xe release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f9814 typeinfo name for CTextImage2 - .rodata._ZTS12CLabelHeader - 0x00000000001f9822 0xf release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f9822 typeinfo name for CLabelHeader - *fill* 0x00000000001f9831 0x3 - .rodata._ZTI12CLabelHeader - 0x00000000001f9834 0xc release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f9834 typeinfo for CLabelHeader - .rodata._ZTSN10ScorePanel12HitTestPanelE - 0x00000000001f9840 0x1d release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f9840 typeinfo name for ScorePanel::HitTestPanel - *fill* 0x00000000001f985d 0x3 - .rodata._ZTIN10ScorePanel12HitTestPanelE - 0x00000000001f9860 0xc release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f9860 typeinfo for ScorePanel::HitTestPanel - .rodata._ZTS10ScorePanel - 0x00000000001f986c 0xd release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f986c typeinfo name for ScorePanel - *fill* 0x00000000001f9879 0x7 - .rodata._ZTI10ScorePanel - 0x00000000001f9880 0x20 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f9880 typeinfo for ScorePanel - .rodata._ZTVN4vgui19CDefaultInputSignalE - 0x00000000001f98a0 0x34 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f98a0 vtable for vgui::CDefaultInputSignal - *fill* 0x00000000001f98d4 0xc - .rodata._ZTV11CTextImage2 - 0x00000000001f98e0 0x68 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f98e0 vtable for CTextImage2 - *fill* 0x00000000001f9948 0x18 - .rodata._ZTVN10ScorePanel12HitTestPanelE - 0x00000000001f9960 0x204 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f9960 vtable for ScorePanel::HitTestPanel - *fill* 0x00000000001f9b64 0x1c - .rodata._ZTV10ScorePanel - 0x00000000001f9b80 0x240 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f9b80 vtable for ScorePanel - .rodata._ZTV12CLabelHeader - 0x00000000001f9dc0 0x238 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000001f9dc0 vtable for CLabelHeader - .rodata.cst8 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ScorePanel.o - .rodata.cst4 0x00000000001f9ff8 0x40 release/obj/hl1_client/vgui_ScorePanel.o - 0x7c (size before relaxing) - .rodata.str1.4 - 0x00000000001fa038 0x21 release/obj/hl1_client/vgui_ClassMenu.o - .rodata.str1.1 - 0x00000000001fa059 0x5e release/obj/hl1_client/vgui_ClassMenu.o - 0x8f (size before relaxing) - .rodata._ZTS15CClassMenuPanel - 0x00000000001fa0b7 0x12 release/obj/hl1_client/vgui_ClassMenu.o - 0x00000000001fa0b7 typeinfo name for CClassMenuPanel - *fill* 0x00000000001fa0c9 0x3 - .rodata._ZTI15CClassMenuPanel - 0x00000000001fa0cc 0xc release/obj/hl1_client/vgui_ClassMenu.o - 0x00000000001fa0cc typeinfo for CClassMenuPanel - *fill* 0x00000000001fa0d8 0x8 - .rodata._ZTV15CClassMenuPanel - 0x00000000001fa0e0 0x220 release/obj/hl1_client/vgui_ClassMenu.o - 0x00000000001fa0e0 vtable for CClassMenuPanel - .rodata.cst4 0x00000000001fa300 0x4 release/obj/hl1_client/vgui_ClassMenu.o - 0x38 (size before relaxing) - .rodata.str1.1 - 0x0000000000000000 0x8 release/obj/hl1_client/vgui_ConsolePanel.o - *fill* 0x00000000001fa304 0x4 - .rodata 0x00000000001fa308 0x34 release/obj/hl1_client/vgui_ConsolePanel.o - .rodata._ZTS12ConsolePanel - 0x00000000001fa33c 0xf release/obj/hl1_client/vgui_ConsolePanel.o - 0x00000000001fa33c typeinfo name for ConsolePanel - *fill* 0x00000000001fa34b 0x1 - .rodata._ZTI12ConsolePanel - 0x00000000001fa34c 0xc release/obj/hl1_client/vgui_ConsolePanel.o - 0x00000000001fa34c typeinfo for ConsolePanel - *fill* 0x00000000001fa358 0x8 - .rodata._ZTV12ConsolePanel - 0x00000000001fa360 0x214 release/obj/hl1_client/vgui_ConsolePanel.o - 0x00000000001fa360 vtable for ConsolePanel - .rodata.str1.1 - 0x00000000001fa574 0x60 release/obj/hl1_client/vgui_ControlConfigPanel.o - 0x61 (size before relaxing) - *fill* 0x00000000001fa5d4 0xc - .rodata 0x00000000001fa5e0 0x298 release/obj/hl1_client/vgui_ControlConfigPanel.o - .rodata._ZTI18ControlConfigPanel - 0x00000000001fa878 0xc release/obj/hl1_client/vgui_ControlConfigPanel.o - 0x00000000001fa878 typeinfo for ControlConfigPanel - .rodata._ZTS18ControlConfigPanel - 0x00000000001fa884 0x15 release/obj/hl1_client/vgui_ControlConfigPanel.o - 0x00000000001fa884 typeinfo name for ControlConfigPanel - *fill* 0x00000000001fa899 0x7 - .rodata._ZTV18ControlConfigPanel - 0x00000000001fa8a0 0x204 release/obj/hl1_client/vgui_ControlConfigPanel.o - 0x00000000001fa8a0 vtable for ControlConfigPanel - .rodata.str1.1 - 0x00000000001faaa4 0x36 release/obj/hl1_client/vgui_CustomObjects.o - 0x6a (size before relaxing) - .rodata._ZTS11CImageLabel - 0x00000000001faada 0xe release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001faada typeinfo name for CImageLabel - .rodata._ZTI11CImageLabel - 0x00000000001faae8 0xc release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001faae8 typeinfo for CImageLabel - .rodata._ZTS13CommandButton - 0x00000000001faaf4 0x10 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001faaf4 typeinfo name for CommandButton - .rodata._ZTI13CommandButton - 0x00000000001fab04 0xc release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fab04 typeinfo for CommandButton - .rodata._ZTS12CCommandMenu - 0x00000000001fab10 0xf release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fab10 typeinfo name for CCommandMenu - *fill* 0x00000000001fab1f 0x1 - .rodata._ZTI12CCommandMenu - 0x00000000001fab20 0xc release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fab20 typeinfo for CCommandMenu - *fill* 0x00000000001fab2c 0x14 - .rodata._ZTS37CMenuHandler_StringCommandClassSelect - 0x00000000001fab40 0x28 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fab40 typeinfo name for CMenuHandler_StringCommandClassSelect - .rodata._ZTI37CMenuHandler_StringCommandClassSelect - 0x00000000001fab68 0xc release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fab68 typeinfo for CMenuHandler_StringCommandClassSelect - .rodata._ZTS23CHandler_MenuButtonOver - 0x00000000001fab74 0x1a release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fab74 typeinfo name for CHandler_MenuButtonOver - *fill* 0x00000000001fab8e 0x2 - .rodata._ZTI23CHandler_MenuButtonOver - 0x00000000001fab90 0xc release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fab90 typeinfo for CHandler_MenuButtonOver - .rodata._ZTS11ClassButton - 0x00000000001fab9c 0xe release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fab9c typeinfo name for ClassButton - *fill* 0x00000000001fabaa 0x2 - .rodata._ZTI11ClassButton - 0x00000000001fabac 0xc release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fabac typeinfo for ClassButton - .rodata._ZTS15CTFScrollButton - 0x00000000001fabb8 0x12 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fabb8 typeinfo name for CTFScrollButton - *fill* 0x00000000001fabca 0x2 - .rodata._ZTI15CTFScrollButton - 0x00000000001fabcc 0xc release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fabcc typeinfo for CTFScrollButton - .rodata._ZTS9CTFSlider - 0x00000000001fabd8 0xb release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fabd8 typeinfo name for CTFSlider - *fill* 0x00000000001fabe3 0x1 - .rodata._ZTI9CTFSlider - 0x00000000001fabe4 0xc release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fabe4 typeinfo for CTFSlider - .rodata._ZTI14CTFScrollPanel - 0x00000000001fabf0 0xc release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fabf0 typeinfo for CTFScrollPanel - .rodata._ZTS14CTFScrollPanel - 0x00000000001fabfc 0x11 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fabfc typeinfo name for CTFScrollPanel - *fill* 0x00000000001fac0d 0x13 - .rodata._ZTV14CTFScrollPanel - 0x00000000001fac20 0x230 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fac20 vtable for CTFScrollPanel - *fill* 0x00000000001fae50 0x10 - .rodata._ZTV13CommandButton - 0x00000000001fae60 0x270 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fae60 vtable for CommandButton - *fill* 0x00000000001fb0d0 0x10 - .rodata._ZTV11ClassButton - 0x00000000001fb0e0 0x270 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fb0e0 vtable for ClassButton - *fill* 0x00000000001fb350 0x10 - .rodata._ZTV11CImageLabel - 0x00000000001fb360 0x23c release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fb360 vtable for CImageLabel - *fill* 0x00000000001fb59c 0x4 - .rodata._ZTV12CCommandMenu - 0x00000000001fb5a0 0x204 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fb5a0 vtable for CCommandMenu - *fill* 0x00000000001fb7a4 0x1c - .rodata._ZTV15CTFScrollButton - 0x00000000001fb7c0 0x270 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fb7c0 vtable for CTFScrollButton - *fill* 0x00000000001fba30 0x10 - .rodata._ZTV9CTFSlider - 0x00000000001fba40 0x248 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fba40 vtable for CTFSlider - *fill* 0x00000000001fbc88 0x18 - .rodata._ZTV23CHandler_MenuButtonOver - 0x00000000001fbca0 0x34 release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fbca0 vtable for CHandler_MenuButtonOver - *fill* 0x00000000001fbcd4 0x4 - .rodata._ZTV37CMenuHandler_StringCommandClassSelect - 0x00000000001fbcd8 0xc release/obj/hl1_client/vgui_CustomObjects.o - 0x00000000001fbcd8 vtable for CMenuHandler_StringCommandClassSelect - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/vgui_CustomObjects.o - .rodata.str1.1 - 0x00000000001fbce4 0x5d release/obj/hl1_client/vgui_ServerBrowser.o - 0x8a (size before relaxing) - *fill* 0x00000000001fbd41 0x3 - .rodata.str1.4 - 0x00000000001fbd44 0x4d release/obj/hl1_client/vgui_ServerBrowser.o - *fill* 0x00000000001fbd91 0xf - .rodata 0x00000000001fbda0 0x494 release/obj/hl1_client/vgui_ServerBrowser.o - .rodata._ZTS13ServerBrowser - 0x00000000001fc234 0x10 release/obj/hl1_client/vgui_ServerBrowser.o - 0x00000000001fc234 typeinfo name for ServerBrowser - .rodata._ZTI13ServerBrowser - 0x00000000001fc244 0xc release/obj/hl1_client/vgui_ServerBrowser.o - 0x00000000001fc244 typeinfo for ServerBrowser - .rodata._ZTI21LabelSortInputHandler - 0x00000000001fc250 0xc release/obj/hl1_client/vgui_ServerBrowser.o - 0x00000000001fc250 typeinfo for LabelSortInputHandler - .rodata._ZTS21LabelSortInputHandler - 0x00000000001fc25c 0x18 release/obj/hl1_client/vgui_ServerBrowser.o - 0x00000000001fc25c typeinfo name for LabelSortInputHandler - .rodata._ZTI8CSBLabel - 0x00000000001fc274 0xc release/obj/hl1_client/vgui_ServerBrowser.o - 0x00000000001fc274 typeinfo for CSBLabel - .rodata._ZTS8CSBLabel - 0x00000000001fc280 0xa release/obj/hl1_client/vgui_ServerBrowser.o - 0x00000000001fc280 typeinfo name for CSBLabel - *fill* 0x00000000001fc28a 0x16 - .rodata._ZTV21LabelSortInputHandler - 0x00000000001fc2a0 0x34 release/obj/hl1_client/vgui_ServerBrowser.o - 0x00000000001fc2a0 vtable for LabelSortInputHandler - *fill* 0x00000000001fc2d4 0xc - .rodata._ZTV8CSBLabel - 0x00000000001fc2e0 0x234 release/obj/hl1_client/vgui_ServerBrowser.o - 0x00000000001fc2e0 vtable for CSBLabel - *fill* 0x00000000001fc514 0xc - .rodata._ZTV13ServerBrowser - 0x00000000001fc520 0x204 release/obj/hl1_client/vgui_ServerBrowser.o - 0x00000000001fc520 vtable for ServerBrowser - .rodata.cst4 0x00000000001fc724 0xc release/obj/hl1_client/vgui_ServerBrowser.o - 0x28 (size before relaxing) - .rodata.str1.1 - 0x00000000001fc730 0xa release/obj/hl1_client/util.o - 0x26 (size before relaxing) - .rodata.cst8 0x0000000000000000 0x8 release/obj/hl1_client/util.o - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/util.o - .rodata.str1.1 - 0x00000000001fc73a 0x29 release/obj/hl1_client/health.o - 0x34 (size before relaxing) - .rodata._ZTS10CHudHealth - 0x00000000001fc763 0xd release/obj/hl1_client/health.o - 0x00000000001fc763 typeinfo name for CHudHealth - .rodata._ZTI10CHudHealth - 0x00000000001fc770 0xc release/obj/hl1_client/health.o - 0x00000000001fc770 typeinfo for CHudHealth - *fill* 0x00000000001fc77c 0x4 - .rodata._ZTV10CHudHealth - 0x00000000001fc780 0x28 release/obj/hl1_client/health.o - 0x00000000001fc780 vtable for CHudHealth - .rodata.cst4 0x0000000000000000 0x28 release/obj/hl1_client/health.o - *fill* 0x00000000001fc7a8 0x8 - .rodata.cst16 0x00000000001fc7b0 0x10 release/obj/hl1_client/health.o - .rodata.cst8 0x0000000000000000 0x10 release/obj/hl1_client/health.o - .rodata.str1.4 - 0x00000000001fc7c0 0x25 release/obj/hl1_client/demo.o - *fill* 0x00000000001fc7e5 0x3 - .rodata 0x00000000001fc7e8 0x30 release/obj/hl1_client/demo.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/demo.o - .rodata.str1.1 - 0x00000000001fc818 0x85 release/obj/hl1_client/mod/AvHAcidRocketGun.o - 0x98 (size before relaxing) - *fill* 0x00000000001fc89d 0x3 - .rodata 0x00000000001fc8a0 0x50 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .rodata._ZTS16AvHAcidRocketGun - 0x00000000001fc8f0 0x13 release/obj/hl1_client/mod/AvHAcidRocketGun.o - 0x00000000001fc8f0 typeinfo name for AvHAcidRocketGun - *fill* 0x00000000001fc903 0x1 - .rodata._ZTI16AvHAcidRocketGun - 0x00000000001fc904 0xc release/obj/hl1_client/mod/AvHAcidRocketGun.o - 0x00000000001fc904 typeinfo for AvHAcidRocketGun - *fill* 0x00000000001fc910 0x10 - .rodata._ZTV16AvHAcidRocketGun - 0x00000000001fc920 0x28c release/obj/hl1_client/mod/AvHAcidRocketGun.o - 0x00000000001fc920 vtable for AvHAcidRocketGun - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .rodata.str1.1 - 0x00000000001fcbac 0xa1 release/obj/hl1_client/mod/AvHAlienAbilities.o - 0xec (size before relaxing) - .rodata._ZTS7AvHLeap - 0x00000000001fcc4d 0x9 release/obj/hl1_client/mod/AvHAlienAbilities.o - 0x00000000001fcc4d typeinfo name for AvHLeap - *fill* 0x00000000001fcc56 0x2 - .rodata._ZTI7AvHLeap - 0x00000000001fcc58 0xc release/obj/hl1_client/mod/AvHAlienAbilities.o - 0x00000000001fcc58 typeinfo for AvHLeap - .rodata._ZTS9AvHCharge - 0x00000000001fcc64 0xb release/obj/hl1_client/mod/AvHAlienAbilities.o - 0x00000000001fcc64 typeinfo name for AvHCharge - *fill* 0x00000000001fcc6f 0x1 - .rodata._ZTI9AvHCharge - 0x00000000001fcc70 0xc release/obj/hl1_client/mod/AvHAlienAbilities.o - 0x00000000001fcc70 typeinfo for AvHCharge - *fill* 0x00000000001fcc7c 0x4 - .rodata._ZTV7AvHLeap - 0x00000000001fcc80 0x294 release/obj/hl1_client/mod/AvHAlienAbilities.o - 0x00000000001fcc80 vtable for AvHLeap - *fill* 0x00000000001fcf14 0xc - .rodata._ZTV9AvHCharge - 0x00000000001fcf20 0x294 release/obj/hl1_client/mod/AvHAlienAbilities.o - 0x00000000001fcf20 vtable for AvHCharge - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHAlienAbilities.o - .rodata.str1.1 - 0x00000000001fd1b4 0x76 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - 0xb2 (size before relaxing) - *fill* 0x00000000001fd22a 0x16 - .rodata 0x00000000001fd240 0x78 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .rodata._ZTS19AvHBasePlayerWeapon - 0x00000000001fd2b8 0x16 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - 0x00000000001fd2b8 typeinfo name for AvHBasePlayerWeapon - *fill* 0x00000000001fd2ce 0x2 - .rodata._ZTI19AvHBasePlayerWeapon - 0x00000000001fd2d0 0xc release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - 0x00000000001fd2d0 typeinfo for AvHBasePlayerWeapon - *fill* 0x00000000001fd2dc 0x4 - .rodata._ZTV19AvHBasePlayerWeapon - 0x00000000001fd2e0 0x27c release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - 0x00000000001fd2e0 vtable for AvHBasePlayerWeapon - .rodata.cst4 0x00000000001fd55c 0x4 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - 0x1c (size before relaxing) - .rodata.str1.1 - 0x00000000001fd560 0x6b release/obj/hl1_client/mod/AvHBileBombGun.o - 0x8e (size before relaxing) - .rodata._ZTS14AvHBileBombGun - 0x00000000001fd5cb 0x11 release/obj/hl1_client/mod/AvHBileBombGun.o - 0x00000000001fd5cb typeinfo name for AvHBileBombGun - .rodata._ZTI14AvHBileBombGun - 0x00000000001fd5dc 0xc release/obj/hl1_client/mod/AvHBileBombGun.o - 0x00000000001fd5dc typeinfo for AvHBileBombGun - *fill* 0x00000000001fd5e8 0x18 - .rodata._ZTV14AvHBileBombGun - 0x00000000001fd600 0x28c release/obj/hl1_client/mod/AvHBileBombGun.o - 0x00000000001fd600 vtable for AvHBileBombGun - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBileBombGun.o - .rodata.str1.1 - 0x00000000001fd88c 0x6e release/obj/hl1_client/mod/AvHBite.o - 0x95 (size before relaxing) - .rodata._ZTS7AvHBite - 0x00000000001fd8fa 0x9 release/obj/hl1_client/mod/AvHBite.o - 0x00000000001fd8fa typeinfo name for AvHBite - *fill* 0x00000000001fd903 0x1 - .rodata._ZTI7AvHBite - 0x00000000001fd904 0xc release/obj/hl1_client/mod/AvHBite.o - 0x00000000001fd904 typeinfo for AvHBite - *fill* 0x00000000001fd910 0x10 - .rodata._ZTV7AvHBite - 0x00000000001fd920 0x290 release/obj/hl1_client/mod/AvHBite.o - 0x00000000001fd920 vtable for AvHBite - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHBite.o - .rodata.str1.1 - 0x00000000001fdbb0 0x20 release/obj/hl1_client/mod/AvHBite2.o - 0x43 (size before relaxing) - .rodata._ZTS8AvHBite2 - 0x00000000001fdbd0 0xa release/obj/hl1_client/mod/AvHBite2.o - 0x00000000001fdbd0 typeinfo name for AvHBite2 - *fill* 0x00000000001fdbda 0x2 - .rodata._ZTI8AvHBite2 - 0x00000000001fdbdc 0xc release/obj/hl1_client/mod/AvHBite2.o - 0x00000000001fdbdc typeinfo for AvHBite2 - *fill* 0x00000000001fdbe8 0x18 - .rodata._ZTV8AvHBite2 - 0x00000000001fdc00 0x290 release/obj/hl1_client/mod/AvHBite2.o - 0x00000000001fdc00 vtable for AvHBite2 - .rodata.cst4 0x00000000001fde90 0x8 release/obj/hl1_client/mod/AvHBite2.o - 0x10 (size before relaxing) - .rodata.str1.1 - 0x00000000001fde98 0x26 release/obj/hl1_client/mod/AvHBlink.o - 0x64 (size before relaxing) - *fill* 0x00000000001fdebe 0x2 - .rodata 0x00000000001fdec0 0x50 release/obj/hl1_client/mod/AvHBlink.o - .rodata._ZTS11AvHBlinkGun - 0x00000000001fdf10 0xe release/obj/hl1_client/mod/AvHBlink.o - 0x00000000001fdf10 typeinfo name for AvHBlinkGun - *fill* 0x00000000001fdf1e 0x2 - .rodata._ZTI11AvHBlinkGun - 0x00000000001fdf20 0xc release/obj/hl1_client/mod/AvHBlink.o - 0x00000000001fdf20 typeinfo for AvHBlinkGun - *fill* 0x00000000001fdf2c 0x14 - .rodata._ZTV11AvHBlinkGun - 0x00000000001fdf40 0x294 release/obj/hl1_client/mod/AvHBlink.o - 0x00000000001fdf40 vtable for AvHBlinkGun - .rodata.cst4 0x00000000001fe1d4 0x4 release/obj/hl1_client/mod/AvHBlink.o - 0xc (size before relaxing) - .rodata.str1.1 - 0x00000000001fe1d8 0x98 release/obj/hl1_client/mod/AvHClaws.o - 0xbf (size before relaxing) - .rodata._ZTS8AvHClaws - 0x00000000001fe270 0xa release/obj/hl1_client/mod/AvHClaws.o - 0x00000000001fe270 typeinfo name for AvHClaws - *fill* 0x00000000001fe27a 0x2 - .rodata._ZTI8AvHClaws - 0x00000000001fe27c 0xc release/obj/hl1_client/mod/AvHClaws.o - 0x00000000001fe27c typeinfo for AvHClaws - *fill* 0x00000000001fe288 0x18 - .rodata._ZTV8AvHClaws - 0x00000000001fe2a0 0x28c release/obj/hl1_client/mod/AvHClaws.o - 0x00000000001fe2a0 vtable for AvHClaws - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHClaws.o - .rodata.str1.1 - 0x00000000001fe52c 0x80 release/obj/hl1_client/mod/AvHDevour.o - 0xa3 (size before relaxing) - .rodata._ZTS9AvHDevour - 0x00000000001fe5ac 0xb release/obj/hl1_client/mod/AvHDevour.o - 0x00000000001fe5ac typeinfo name for AvHDevour - *fill* 0x00000000001fe5b7 0x1 - .rodata._ZTI9AvHDevour - 0x00000000001fe5b8 0xc release/obj/hl1_client/mod/AvHDevour.o - 0x00000000001fe5b8 typeinfo for AvHDevour - *fill* 0x00000000001fe5c4 0x1c - .rodata._ZTV9AvHDevour - 0x00000000001fe5e0 0x28c release/obj/hl1_client/mod/AvHDevour.o - 0x00000000001fe5e0 vtable for AvHDevour - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHDevour.o - .rodata.str1.1 - 0x00000000001fe86c 0xf5 release/obj/hl1_client/mod/AvHGrenade.o - 0xf6 (size before relaxing) - .rodata._ZTS10AvHGrenade - 0x00000000001fe961 0xd release/obj/hl1_client/mod/AvHGrenade.o - 0x00000000001fe961 typeinfo name for AvHGrenade - *fill* 0x00000000001fe96e 0x2 - .rodata._ZTI10AvHGrenade - 0x00000000001fe970 0xc release/obj/hl1_client/mod/AvHGrenade.o - 0x00000000001fe970 typeinfo for AvHGrenade - *fill* 0x00000000001fe97c 0x4 - .rodata._ZTV10AvHGrenade - 0x00000000001fe980 0x284 release/obj/hl1_client/mod/AvHGrenade.o - 0x00000000001fe980 vtable for AvHGrenade - .rodata.cst4 0x0000000000000000 0x10 release/obj/hl1_client/mod/AvHGrenade.o - .rodata.str1.1 - 0x00000000001fec04 0x60 release/obj/hl1_client/mod/AvHDivineWind.o - 0x87 (size before relaxing) - .rodata._ZTS13AvHDivineWind - 0x00000000001fec64 0x10 release/obj/hl1_client/mod/AvHDivineWind.o - 0x00000000001fec64 typeinfo name for AvHDivineWind - .rodata._ZTI13AvHDivineWind - 0x00000000001fec74 0xc release/obj/hl1_client/mod/AvHDivineWind.o - 0x00000000001fec74 typeinfo for AvHDivineWind - .rodata._ZTV13AvHDivineWind - 0x00000000001fec80 0x28c release/obj/hl1_client/mod/AvHDivineWind.o - 0x00000000001fec80 vtable for AvHDivineWind - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHDivineWind.o - .rodata.str1.1 - 0x00000000001fef0c 0xe6 release/obj/hl1_client/mod/AvHGrenadeGun.o - 0x11a (size before relaxing) - *fill* 0x00000000001feff2 0x2 - .rodata 0x00000000001feff4 0x4c release/obj/hl1_client/mod/AvHGrenadeGun.o - .rodata._ZTS13AvHGrenadeGun - 0x00000000001ff040 0x10 release/obj/hl1_client/mod/AvHGrenadeGun.o - 0x00000000001ff040 typeinfo name for AvHGrenadeGun - .rodata._ZTI13AvHGrenadeGun - 0x00000000001ff050 0xc release/obj/hl1_client/mod/AvHGrenadeGun.o - 0x00000000001ff050 typeinfo for AvHGrenadeGun - *fill* 0x00000000001ff05c 0x4 - .rodata._ZTV13AvHGrenadeGun - 0x00000000001ff060 0x284 release/obj/hl1_client/mod/AvHGrenadeGun.o - 0x00000000001ff060 vtable for AvHGrenadeGun - .rodata.cst4 0x00000000001ff2e4 0x8 release/obj/hl1_client/mod/AvHGrenadeGun.o - 0x14 (size before relaxing) - .rodata.str1.1 - 0x00000000001ff2ec 0x43 release/obj/hl1_client/mod/AvHHealingSpray.o - 0x6a (size before relaxing) - .rodata._ZTS15AvHHealingSpray - 0x00000000001ff32f 0x12 release/obj/hl1_client/mod/AvHHealingSpray.o - 0x00000000001ff32f typeinfo name for AvHHealingSpray - *fill* 0x00000000001ff341 0x3 - .rodata._ZTI15AvHHealingSpray - 0x00000000001ff344 0xc release/obj/hl1_client/mod/AvHHealingSpray.o - 0x00000000001ff344 typeinfo for AvHHealingSpray - *fill* 0x00000000001ff350 0x10 - .rodata._ZTV15AvHHealingSpray - 0x00000000001ff360 0x28c release/obj/hl1_client/mod/AvHHealingSpray.o - 0x00000000001ff360 vtable for AvHHealingSpray - .rodata.cst4 0x00000000001ff5ec 0x4 release/obj/hl1_client/mod/AvHHealingSpray.o - 0x8 (size before relaxing) - .rodata.str1.1 - 0x00000000001ff5f0 0x7d release/obj/hl1_client/mod/AvHHeavyMachineGun.o - 0xc9 (size before relaxing) - .rodata._ZTS18AvHHeavyMachineGun - 0x00000000001ff66d 0x15 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - 0x00000000001ff66d typeinfo name for AvHHeavyMachineGun - *fill* 0x00000000001ff682 0x2 - .rodata._ZTI18AvHHeavyMachineGun - 0x00000000001ff684 0xc release/obj/hl1_client/mod/AvHHeavyMachineGun.o - 0x00000000001ff684 typeinfo for AvHHeavyMachineGun - *fill* 0x00000000001ff690 0x10 - .rodata._ZTV18AvHHeavyMachineGun - 0x00000000001ff6a0 0x284 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - 0x00000000001ff6a0 vtable for AvHHeavyMachineGun - .rodata.cst4 0x00000000001ff924 0x8 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - 0x14 (size before relaxing) - .rodata.str1.1 - 0x00000000001ff92c 0x32 release/obj/hl1_client/mod/AvHItemInfo.o - 0x46 (size before relaxing) - .rodata.str1.1 - 0x00000000001ff95e 0xa7 release/obj/hl1_client/mod/AvHKnife.o - 0xeb (size before relaxing) - .rodata._ZTS8AvHKnife - 0x00000000001ffa05 0xa release/obj/hl1_client/mod/AvHKnife.o - 0x00000000001ffa05 typeinfo name for AvHKnife - *fill* 0x00000000001ffa0f 0x1 - .rodata._ZTI8AvHKnife - 0x00000000001ffa10 0xc release/obj/hl1_client/mod/AvHKnife.o - 0x00000000001ffa10 typeinfo for AvHKnife - *fill* 0x00000000001ffa1c 0x4 - .rodata._ZTV8AvHKnife - 0x00000000001ffa20 0x284 release/obj/hl1_client/mod/AvHKnife.o - 0x00000000001ffa20 vtable for AvHKnife - .rodata.cst4 0x00000000001ffca4 0x4 release/obj/hl1_client/mod/AvHKnife.o - 0xc (size before relaxing) - .rodata.str1.1 - 0x00000000001ffca8 0x5e release/obj/hl1_client/mod/AvHMachineGun.o - 0xce (size before relaxing) - .rodata._ZTS13AvHMachineGun - 0x00000000001ffd06 0x10 release/obj/hl1_client/mod/AvHMachineGun.o - 0x00000000001ffd06 typeinfo name for AvHMachineGun - *fill* 0x00000000001ffd16 0x2 - .rodata._ZTI13AvHMachineGun - 0x00000000001ffd18 0xc release/obj/hl1_client/mod/AvHMachineGun.o - 0x00000000001ffd18 typeinfo for AvHMachineGun - *fill* 0x00000000001ffd24 0x1c - .rodata._ZTV13AvHMachineGun - 0x00000000001ffd40 0x284 release/obj/hl1_client/mod/AvHMachineGun.o - 0x00000000001ffd40 vtable for AvHMachineGun - .rodata.cst4 0x00000000001fffc4 0x8 release/obj/hl1_client/mod/AvHMachineGun.o - 0x14 (size before relaxing) - .rodata.str1.1 - 0x0000000000000000 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - .rodata._ZTS15AvHMarineWeapon - 0x00000000001fffcc 0x12 release/obj/hl1_client/mod/AvHMarineWeapon.o - 0x00000000001fffcc typeinfo name for AvHMarineWeapon - *fill* 0x00000000001fffde 0x2 - .rodata._ZTI15AvHMarineWeapon - 0x00000000001fffe0 0xc release/obj/hl1_client/mod/AvHMarineWeapon.o - 0x00000000001fffe0 typeinfo for AvHMarineWeapon - .rodata._ZTS25AvHReloadableMarineWeapon - 0x00000000001fffec 0x1c release/obj/hl1_client/mod/AvHMarineWeapon.o - 0x00000000001fffec typeinfo name for AvHReloadableMarineWeapon - .rodata._ZTI25AvHReloadableMarineWeapon - 0x0000000000200008 0xc release/obj/hl1_client/mod/AvHMarineWeapon.o - 0x0000000000200008 typeinfo for AvHReloadableMarineWeapon - *fill* 0x0000000000200014 0xc - .rodata._ZTV15AvHMarineWeapon - 0x0000000000200020 0x280 release/obj/hl1_client/mod/AvHMarineWeapon.o - 0x0000000000200020 vtable for AvHMarineWeapon - .rodata._ZTV25AvHReloadableMarineWeapon - 0x00000000002002a0 0x2a0 release/obj/hl1_client/mod/AvHMarineWeapon.o - 0x00000000002002a0 vtable for AvHReloadableMarineWeapon - .rodata.cst4 0x0000000000200540 0x4 release/obj/hl1_client/mod/AvHMarineWeapon.o - 0xc (size before relaxing) - .rodata.str1.1 - 0x0000000000200544 0x6f release/obj/hl1_client/mod/AvHMetabolize.o - 0x96 (size before relaxing) - *fill* 0x00000000002005b3 0xd - .rodata 0x00000000002005c0 0x50 release/obj/hl1_client/mod/AvHMetabolize.o - .rodata._ZTS13AvHMetabolize - 0x0000000000200610 0x10 release/obj/hl1_client/mod/AvHMetabolize.o - 0x0000000000200610 typeinfo name for AvHMetabolize - .rodata._ZTI13AvHMetabolize - 0x0000000000200620 0xc release/obj/hl1_client/mod/AvHMetabolize.o - 0x0000000000200620 typeinfo for AvHMetabolize - *fill* 0x000000000020062c 0x14 - .rodata._ZTV13AvHMetabolize - 0x0000000000200640 0x28c release/obj/hl1_client/mod/AvHMetabolize.o - 0x0000000000200640 vtable for AvHMetabolize - .rodata.cst4 0x00000000002008cc 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - 0xc (size before relaxing) - *fill* 0x00000000002008d4 0x4 - .rodata.cst8 0x00000000002008d8 0x8 release/obj/hl1_client/mod/AvHMetabolize.o - .rodata.str1.1 - 0x00000000002008e0 0x3b release/obj/hl1_client/mod/AvHMine.o - 0x8f (size before relaxing) - .rodata._ZTS7AvHMine - 0x000000000020091b 0x9 release/obj/hl1_client/mod/AvHMine.o - 0x000000000020091b typeinfo name for AvHMine - .rodata._ZTI7AvHMine - 0x0000000000200924 0xc release/obj/hl1_client/mod/AvHMine.o - 0x0000000000200924 typeinfo for AvHMine - *fill* 0x0000000000200930 0x10 - .rodata._ZTV7AvHMine - 0x0000000000200940 0x284 release/obj/hl1_client/mod/AvHMine.o - 0x0000000000200940 vtable for AvHMine - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .rodata.cst8 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMine.o - .rodata.str1.1 - 0x0000000000200bc4 0x6b release/obj/hl1_client/mod/AvHParasiteGun.o - 0x8e (size before relaxing) - .rodata._ZTS14AvHParasiteGun - 0x0000000000200c2f 0x11 release/obj/hl1_client/mod/AvHParasiteGun.o - 0x0000000000200c2f typeinfo name for AvHParasiteGun - .rodata._ZTI14AvHParasiteGun - 0x0000000000200c40 0xc release/obj/hl1_client/mod/AvHParasiteGun.o - 0x0000000000200c40 typeinfo for AvHParasiteGun - *fill* 0x0000000000200c4c 0x14 - .rodata._ZTV14AvHParasiteGun - 0x0000000000200c60 0x28c release/obj/hl1_client/mod/AvHParasiteGun.o - 0x0000000000200c60 vtable for AvHParasiteGun - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHParasiteGun.o - .rodata.str1.1 - 0x0000000000200eec 0x67 release/obj/hl1_client/mod/AvHPistol.o - 0xc5 (size before relaxing) - .rodata._ZTS9AvHPistol - 0x0000000000200f53 0xb release/obj/hl1_client/mod/AvHPistol.o - 0x0000000000200f53 typeinfo name for AvHPistol - *fill* 0x0000000000200f5e 0x2 - .rodata._ZTI9AvHPistol - 0x0000000000200f60 0xc release/obj/hl1_client/mod/AvHPistol.o - 0x0000000000200f60 typeinfo for AvHPistol - *fill* 0x0000000000200f6c 0x14 - .rodata._ZTV9AvHPistol - 0x0000000000200f80 0x284 release/obj/hl1_client/mod/AvHPistol.o - 0x0000000000200f80 vtable for AvHPistol - .rodata.cst4 0x0000000000201204 0x4 release/obj/hl1_client/mod/AvHPistol.o - 0x14 (size before relaxing) - .rodata.str1.1 - 0x0000000000201208 0x44 release/obj/hl1_client/mod/AvHPrimalScream.o - 0x67 (size before relaxing) - .rodata._ZTS15AvHPrimalScream - 0x000000000020124c 0x12 release/obj/hl1_client/mod/AvHPrimalScream.o - 0x000000000020124c typeinfo name for AvHPrimalScream - *fill* 0x000000000020125e 0x2 - .rodata._ZTI15AvHPrimalScream - 0x0000000000201260 0xc release/obj/hl1_client/mod/AvHPrimalScream.o - 0x0000000000201260 typeinfo for AvHPrimalScream - *fill* 0x000000000020126c 0x14 - .rodata._ZTV15AvHPrimalScream - 0x0000000000201280 0x28c release/obj/hl1_client/mod/AvHPrimalScream.o - 0x0000000000201280 vtable for AvHPrimalScream - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHPrimalScream.o - .rodata.str1.1 - 0x000000000020150c 0x6c release/obj/hl1_client/mod/AvHSonicGun.o - 0xca (size before relaxing) - .rodata._ZTS11AvHSonicGun - 0x0000000000201578 0xe release/obj/hl1_client/mod/AvHSonicGun.o - 0x0000000000201578 typeinfo name for AvHSonicGun - *fill* 0x0000000000201586 0x2 - .rodata._ZTI11AvHSonicGun - 0x0000000000201588 0xc release/obj/hl1_client/mod/AvHSonicGun.o - 0x0000000000201588 typeinfo for AvHSonicGun - *fill* 0x0000000000201594 0xc - .rodata._ZTV11AvHSonicGun - 0x00000000002015a0 0x2a0 release/obj/hl1_client/mod/AvHSonicGun.o - 0x00000000002015a0 vtable for AvHSonicGun - .rodata.cst4 0x0000000000201840 0x10 release/obj/hl1_client/mod/AvHSonicGun.o - 0x1c (size before relaxing) - .rodata.str1.1 - 0x0000000000201850 0x4a release/obj/hl1_client/mod/AvHSpikeGun.o - 0x82 (size before relaxing) - .rodata._ZTS11AvHSpikeGun - 0x000000000020189a 0xe release/obj/hl1_client/mod/AvHSpikeGun.o - 0x000000000020189a typeinfo name for AvHSpikeGun - .rodata._ZTI11AvHSpikeGun - 0x00000000002018a8 0xc release/obj/hl1_client/mod/AvHSpikeGun.o - 0x00000000002018a8 typeinfo for AvHSpikeGun - *fill* 0x00000000002018b4 0xc - .rodata._ZTV11AvHSpikeGun - 0x00000000002018c0 0x28c release/obj/hl1_client/mod/AvHSpikeGun.o - 0x00000000002018c0 vtable for AvHSpikeGun - .rodata.cst4 0x0000000000201b4c 0x4 release/obj/hl1_client/mod/AvHSpikeGun.o - 0x10 (size before relaxing) - .rodata.str1.1 - 0x0000000000201b50 0x82 release/obj/hl1_client/mod/AvHSpitGun.o - 0xa9 (size before relaxing) - .rodata._ZTS10AvHSpitGun - 0x0000000000201bd2 0xd release/obj/hl1_client/mod/AvHSpitGun.o - 0x0000000000201bd2 typeinfo name for AvHSpitGun - *fill* 0x0000000000201bdf 0x1 - .rodata._ZTI10AvHSpitGun - 0x0000000000201be0 0xc release/obj/hl1_client/mod/AvHSpitGun.o - 0x0000000000201be0 typeinfo for AvHSpitGun - *fill* 0x0000000000201bec 0x14 - .rodata._ZTV10AvHSpitGun - 0x0000000000201c00 0x28c release/obj/hl1_client/mod/AvHSpitGun.o - 0x0000000000201c00 vtable for AvHSpitGun - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpitGun.o - .rodata.str1.1 - 0x0000000000201e8c 0x50 release/obj/hl1_client/mod/AvHSpores.o - 0x73 (size before relaxing) - .rodata._ZTS8AvHSpore - 0x0000000000201edc 0xa release/obj/hl1_client/mod/AvHSpores.o - 0x0000000000201edc typeinfo name for AvHSpore - *fill* 0x0000000000201ee6 0x2 - .rodata._ZTI8AvHSpore - 0x0000000000201ee8 0xc release/obj/hl1_client/mod/AvHSpores.o - 0x0000000000201ee8 typeinfo for AvHSpore - *fill* 0x0000000000201ef4 0xc - .rodata._ZTV8AvHSpore - 0x0000000000201f00 0x28c release/obj/hl1_client/mod/AvHSpores.o - 0x0000000000201f00 vtable for AvHSpore - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHSpores.o - .rodata.str1.1 - 0x000000000020218c 0x40 release/obj/hl1_client/mod/AvHStomp.o - 0x67 (size before relaxing) - .rodata._ZTS8AvHStomp - 0x00000000002021cc 0xa release/obj/hl1_client/mod/AvHStomp.o - 0x00000000002021cc typeinfo name for AvHStomp - *fill* 0x00000000002021d6 0x2 - .rodata._ZTI8AvHStomp - 0x00000000002021d8 0xc release/obj/hl1_client/mod/AvHStomp.o - 0x00000000002021d8 typeinfo for AvHStomp - *fill* 0x00000000002021e4 0x1c - .rodata._ZTV8AvHStomp - 0x0000000000202200 0x294 release/obj/hl1_client/mod/AvHStomp.o - 0x0000000000202200 vtable for AvHStomp - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHStomp.o - .rodata.str1.1 - 0x0000000000202494 0xab release/obj/hl1_client/mod/AvHSwipe.o - 0xd2 (size before relaxing) - *fill* 0x000000000020253f 0x1 - .rodata 0x0000000000202540 0x50 release/obj/hl1_client/mod/AvHSwipe.o - .rodata._ZTS8AvHSwipe - 0x0000000000202590 0xa release/obj/hl1_client/mod/AvHSwipe.o - 0x0000000000202590 typeinfo name for AvHSwipe - *fill* 0x000000000020259a 0x2 - .rodata._ZTI8AvHSwipe - 0x000000000020259c 0xc release/obj/hl1_client/mod/AvHSwipe.o - 0x000000000020259c typeinfo for AvHSwipe - *fill* 0x00000000002025a8 0x18 - .rodata._ZTV8AvHSwipe - 0x00000000002025c0 0x28c release/obj/hl1_client/mod/AvHSwipe.o - 0x00000000002025c0 vtable for AvHSwipe - .rodata.cst4 0x000000000020284c 0x4 release/obj/hl1_client/mod/AvHSwipe.o - 0x8 (size before relaxing) - .rodata.str1.1 - 0x0000000000202850 0x74 release/obj/hl1_client/mod/AvHUmbraGun.o - 0x97 (size before relaxing) - .rodata._ZTS11AvHUmbraGun - 0x00000000002028c4 0xe release/obj/hl1_client/mod/AvHUmbraGun.o - 0x00000000002028c4 typeinfo name for AvHUmbraGun - *fill* 0x00000000002028d2 0x2 - .rodata._ZTI11AvHUmbraGun - 0x00000000002028d4 0xc release/obj/hl1_client/mod/AvHUmbraGun.o - 0x00000000002028d4 typeinfo for AvHUmbraGun - .rodata._ZTV11AvHUmbraGun - 0x00000000002028e0 0x28c release/obj/hl1_client/mod/AvHUmbraGun.o - 0x00000000002028e0 vtable for AvHUmbraGun - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHUmbraGun.o - .rodata.str1.1 - 0x0000000000202b6c 0x4e release/obj/hl1_client/mod/AvHWebSpinner.o - 0x71 (size before relaxing) - .rodata._ZTS13AvHWebSpinner - 0x0000000000202bba 0x10 release/obj/hl1_client/mod/AvHWebSpinner.o - 0x0000000000202bba typeinfo name for AvHWebSpinner - *fill* 0x0000000000202bca 0x2 - .rodata._ZTI13AvHWebSpinner - 0x0000000000202bcc 0xc release/obj/hl1_client/mod/AvHWebSpinner.o - 0x0000000000202bcc typeinfo for AvHWebSpinner - *fill* 0x0000000000202bd8 0x8 - .rodata._ZTV13AvHWebSpinner - 0x0000000000202be0 0x28c release/obj/hl1_client/mod/AvHWebSpinner.o - 0x0000000000202be0 vtable for AvHWebSpinner - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHWebSpinner.o - .rodata.str1.1 - 0x0000000000202e6c 0xb7 release/obj/hl1_client/mod/AvHWelder.o - 0xf7 (size before relaxing) - .rodata._ZTS9AvHWelder - 0x0000000000202f23 0xb release/obj/hl1_client/mod/AvHWelder.o - 0x0000000000202f23 typeinfo name for AvHWelder - *fill* 0x0000000000202f2e 0x2 - .rodata._ZTI9AvHWelder - 0x0000000000202f30 0xc release/obj/hl1_client/mod/AvHWelder.o - 0x0000000000202f30 typeinfo for AvHWelder - *fill* 0x0000000000202f3c 0x4 - .rodata._ZTV9AvHWelder - 0x0000000000202f40 0x284 release/obj/hl1_client/mod/AvHWelder.o - 0x0000000000202f40 vtable for AvHWelder - .rodata.cst4 0x00000000002031c4 0x4 release/obj/hl1_client/mod/AvHWelder.o - 0xc (size before relaxing) - .rodata.str1.1 - 0x0000000000000000 0xc release/obj/hl1_client/mod/AnimationUtil.o - .rodata.cst4 0x00000000002031c8 0x10 release/obj/hl1_client/mod/AnimationUtil.o - 0x24 (size before relaxing) - .rodata.str1.1 - 0x00000000002031d8 0x150 release/obj/hl1_client/mod/AvHActionButtons.o - 0x19e (size before relaxing) - .rodata._ZTI11StaticLabel - 0x0000000000203328 0xc release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203328 typeinfo for StaticLabel - .rodata._ZTS11StaticLabel - 0x0000000000203334 0xe release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203334 typeinfo name for StaticLabel - .rodata._ZTS12ActionButton - 0x0000000000203342 0xf release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203342 typeinfo name for ActionButton - *fill* 0x0000000000203351 0x3 - .rodata._ZTI12ActionButton - 0x0000000000203354 0xc release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203354 typeinfo for ActionButton - .rodata._ZTS16AvHActionButtons - 0x0000000000203360 0x13 release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203360 typeinfo name for AvHActionButtons - *fill* 0x0000000000203373 0x1 - .rodata._ZTI16AvHActionButtons - 0x0000000000203374 0xc release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203374 typeinfo for AvHActionButtons - .rodata._ZTS18AvHUIActionButtons - 0x0000000000203380 0x15 release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203380 typeinfo name for AvHUIActionButtons - *fill* 0x0000000000203395 0x3 - .rodata._ZTI18AvHUIActionButtons - 0x0000000000203398 0xc release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203398 typeinfo for AvHUIActionButtons - *fill* 0x00000000002033a4 0x1c - .rodata._ZTV11StaticLabel - 0x00000000002033c0 0x234 release/obj/hl1_client/mod/AvHActionButtons.o - 0x00000000002033c0 vtable for StaticLabel - *fill* 0x00000000002035f4 0xc - .rodata._ZTV12ActionButton - 0x0000000000203600 0x234 release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203600 vtable for ActionButton - *fill* 0x0000000000203834 0xc - .rodata._ZTV16AvHActionButtons - 0x0000000000203840 0x204 release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203840 vtable for AvHActionButtons - *fill* 0x0000000000203a44 0x1c - .rodata._ZTV18AvHUIActionButtons - 0x0000000000203a60 0x24 release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000203a60 vtable for AvHUIActionButtons - .rodata.str1.1 - 0x0000000000000000 0x5 release/obj/hl1_client/mod/AvHAlienWeapon.o - .rodata._ZTS14AvHAlienWeapon - 0x0000000000203a84 0x11 release/obj/hl1_client/mod/AvHAlienWeapon.o - 0x0000000000203a84 typeinfo name for AvHAlienWeapon - *fill* 0x0000000000203a95 0x3 - .rodata._ZTI14AvHAlienWeapon - 0x0000000000203a98 0xc release/obj/hl1_client/mod/AvHAlienWeapon.o - 0x0000000000203a98 typeinfo for AvHAlienWeapon - *fill* 0x0000000000203aa4 0x1c - .rodata._ZTV14AvHAlienWeapon - 0x0000000000203ac0 0x288 release/obj/hl1_client/mod/AvHAlienWeapon.o - 0x0000000000203ac0 vtable for AvHAlienWeapon - .rodata.cst4 0x0000000000000000 0x10 release/obj/hl1_client/mod/AvHAlienWeapon.o - .rodata.cst8 0x0000000000203d48 0x8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .rodata.str1.1 - 0x0000000000000000 0x150 release/obj/hl1_client/mod/AvHAmbientSound.o - 0x6 (size before relaxing) - .rodata.str1.1 - 0x0000000000203d50 0x2 release/obj/hl1_client/mod/AvHClientUtil.o - 0x1b (size before relaxing) - *fill* 0x0000000000203d52 0x2 - .rodata 0x0000000000203d54 0x18 release/obj/hl1_client/mod/AvHClientUtil.o - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHClientUtil.o - .rodata.str1.1 - 0x0000000000203d6c 0x69 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - 0x84 (size before relaxing) - .rodata._ZTS23AvHCommanderModeHandler - 0x0000000000203dd5 0x1a release/obj/hl1_client/mod/AvHCommanderModeHandler.o - 0x0000000000203dd5 typeinfo name for AvHCommanderModeHandler - *fill* 0x0000000000203def 0x1 - .rodata._ZTI23AvHCommanderModeHandler - 0x0000000000203df0 0xc release/obj/hl1_client/mod/AvHCommanderModeHandler.o - 0x0000000000203df0 typeinfo for AvHCommanderModeHandler - .rodata._ZTI18AvHLogoutComponent - 0x0000000000203dfc 0xc release/obj/hl1_client/mod/AvHCommanderModeHandler.o - 0x0000000000203dfc typeinfo for AvHLogoutComponent - .rodata._ZTS18AvHLogoutComponent - 0x0000000000203e08 0x15 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - 0x0000000000203e08 typeinfo name for AvHLogoutComponent - *fill* 0x0000000000203e1d 0x3 - .rodata._ZTV23AvHCommanderModeHandler - 0x0000000000203e20 0x34 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - 0x0000000000203e20 vtable for AvHCommanderModeHandler - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .rodata.str1.1 - 0x0000000000203e54 0x12 release/obj/hl1_client/mod/AvHConstants.o - 0x15 (size before relaxing) - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .rodata.str1.1 - 0x0000000000203e66 0x427 release/obj/hl1_client/mod/AvHEvents.o - 0xc9e (size before relaxing) - *fill* 0x000000000020428d 0x3 - .rodata.str1.4 - 0x0000000000204290 0x1f release/obj/hl1_client/mod/AvHEvents.o - *fill* 0x00000000002042af 0x1 - .rodata 0x00000000002042b0 0x34 release/obj/hl1_client/mod/AvHEvents.o - .rodata.cst4 0x00000000002042e4 0x8 release/obj/hl1_client/mod/AvHEvents.o - 0x4c (size before relaxing) - *fill* 0x00000000002042ec 0x4 - .rodata.cst8 0x00000000002042f0 0x10 release/obj/hl1_client/mod/AvHEvents.o - 0x20 (size before relaxing) - .rodata.str1.1 - 0x0000000000204300 0x8 release/obj/hl1_client/mod/AvHFont.o - 0x13 (size before relaxing) - .rodata.cst4 0x0000000000204308 0x4 release/obj/hl1_client/mod/AvHFont.o - 0x8 (size before relaxing) - .rodata.str1.1 - 0x000000000020430c 0x2be release/obj/hl1_client/mod/AvHHelp.o - 0x2ce (size before relaxing) - *fill* 0x00000000002045ca 0x2 - .rodata.str1.4 - 0x00000000002045cc 0xe7 release/obj/hl1_client/mod/AvHHelp.o - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHHelp.o - *fill* 0x00000000002046b3 0x1 - .rodata 0x00000000002046b4 0x280 release/obj/hl1_client/mod/AvHHud.o - .rodata.str1.1 - 0x0000000000204934 0xe31 release/obj/hl1_client/mod/AvHHud.o - 0xf3c (size before relaxing) - *fill* 0x0000000000205765 0x3 - .rodata.str1.4 - 0x0000000000205768 0x38f release/obj/hl1_client/mod/AvHHud.o - .rodata._ZTS6AvHHud - 0x0000000000205af7 0x8 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000205af7 typeinfo name for AvHHud - *fill* 0x0000000000205aff 0x1 - .rodata._ZTI6AvHHud - 0x0000000000205b00 0xc release/obj/hl1_client/mod/AvHHud.o - 0x0000000000205b00 typeinfo for AvHHud - *fill* 0x0000000000205b0c 0x14 - .rodata._ZTV6AvHHud - 0x0000000000205b20 0x80 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000205b20 vtable for AvHHud - .rodata.cst4 0x0000000000205ba0 0xc0 release/obj/hl1_client/mod/AvHHud.o - 0x11c (size before relaxing) - .rodata.cst8 0x0000000000205c60 0x18 release/obj/hl1_client/mod/AvHHud.o - .rodata.str1.1 - 0x0000000000205c78 0x448 release/obj/hl1_client/mod/AvHHudRender.o - 0x55b (size before relaxing) - .rodata 0x00000000002060c0 0xac release/obj/hl1_client/mod/AvHHudRender.o - .rodata.str1.4 - 0x000000000020616c 0xc3 release/obj/hl1_client/mod/AvHHudRender.o - *fill* 0x000000000020622f 0x1 - .rodata.cst4 0x0000000000206230 0xd0 release/obj/hl1_client/mod/AvHHudRender.o - 0x154 (size before relaxing) - .rodata.cst8 0x0000000000206300 0x38 release/obj/hl1_client/mod/AvHHudRender.o - 0x58 (size before relaxing) - *fill* 0x0000000000206338 0x8 - .rodata.cst16 0x0000000000206340 0x10 release/obj/hl1_client/mod/AvHHudRender.o - .rodata.str1.1 - 0x0000000000000000 0x155 release/obj/hl1_client/mod/AvHLogoutComponent.o - .rodata._ZTS20AvHUILogoutComponent - 0x0000000000206350 0x17 release/obj/hl1_client/mod/AvHLogoutComponent.o - 0x0000000000206350 typeinfo name for AvHUILogoutComponent - *fill* 0x0000000000206367 0x1 - .rodata._ZTI20AvHUILogoutComponent - 0x0000000000206368 0xc release/obj/hl1_client/mod/AvHLogoutComponent.o - 0x0000000000206368 typeinfo for AvHUILogoutComponent - *fill* 0x0000000000206374 0xc - .rodata._ZTV18AvHLogoutComponent - 0x0000000000206380 0x234 release/obj/hl1_client/mod/AvHLogoutComponent.o - 0x0000000000206380 vtable for AvHLogoutComponent - *fill* 0x00000000002065b4 0xc - .rodata._ZTV20AvHUILogoutComponent - 0x00000000002065c0 0x24 release/obj/hl1_client/mod/AvHLogoutComponent.o - 0x00000000002065c0 vtable for AvHUILogoutComponent - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHLogoutComponent.o - .rodata.cst4 0x00000000002065e4 0x10 release/obj/hl1_client/mod/AvHMapExtents.o - .rodata.str1.1 - 0x00000000002065f4 0x1d release/obj/hl1_client/mod/AvHMiniMap.o - 0x2c (size before relaxing) - .rodata._ZTS10AvHMiniMap - 0x0000000000206611 0xd release/obj/hl1_client/mod/AvHMiniMap.o - 0x0000000000206611 typeinfo name for AvHMiniMap - *fill* 0x000000000020661e 0x2 - .rodata._ZTI10AvHMiniMap - 0x0000000000206620 0x8 release/obj/hl1_client/mod/AvHMiniMap.o - 0x0000000000206620 typeinfo for AvHMiniMap - .rodata._ZTV10AvHMiniMap - 0x0000000000206628 0x10 release/obj/hl1_client/mod/AvHMiniMap.o - 0x0000000000206628 vtable for AvHMiniMap - .rodata.cst4 0x0000000000206638 0x18 release/obj/hl1_client/mod/AvHMiniMap.o - 0x20 (size before relaxing) - *fill* 0x0000000000206650 0x10 - .rodata 0x0000000000206660 0x98 release/obj/hl1_client/mod/AvHMovementUtil.o - .rodata.cst4 0x00000000002066f8 0x4 release/obj/hl1_client/mod/AvHMovementUtil.o - 0x18 (size before relaxing) - .rodata.cst8 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHMovementUtil.o - .rodata.cst4 0x00000000002066fc 0x4 release/obj/hl1_client/mod/AvHNetworkMessages.o - 0xc (size before relaxing) - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHOrder.o - .rodata.str1.1 - 0x0000000000000000 0x20 release/obj/hl1_client/mod/AvHOverviewControl.o - .rodata._ZTS18AvHOverviewControl - 0x0000000000206700 0x15 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x0000000000206700 typeinfo name for AvHOverviewControl - *fill* 0x0000000000206715 0x3 - .rodata._ZTI18AvHOverviewControl - 0x0000000000206718 0xc release/obj/hl1_client/mod/AvHOverviewControl.o - 0x0000000000206718 typeinfo for AvHOverviewControl - .rodata._ZTI22AvHOverviewInputSignal - 0x0000000000206724 0xc release/obj/hl1_client/mod/AvHOverviewControl.o - 0x0000000000206724 typeinfo for AvHOverviewInputSignal - .rodata._ZTS22AvHOverviewInputSignal - 0x0000000000206730 0x19 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x0000000000206730 typeinfo name for AvHOverviewInputSignal - *fill* 0x0000000000206749 0x17 - .rodata._ZTV22AvHOverviewInputSignal - 0x0000000000206760 0x34 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x0000000000206760 vtable for AvHOverviewInputSignal - *fill* 0x0000000000206794 0xc - .rodata._ZTV18AvHOverviewControl - 0x00000000002067a0 0x204 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x00000000002067a0 vtable for AvHOverviewControl - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHOverviewControl.o - .rodata.str1.1 - 0x00000000002069a4 0x4c release/obj/hl1_client/mod/AvHOverviewMap.o - 0x1c3 (size before relaxing) - .rodata.cst4 0x00000000002069f0 0x4 release/obj/hl1_client/mod/AvHOverviewMap.o - 0x20 (size before relaxing) - *fill* 0x00000000002069f4 0x4 - .rodata.cst8 0x00000000002069f8 0x8 release/obj/hl1_client/mod/AvHOverviewMap.o - 0x18 (size before relaxing) - .rodata.str1.1 - 0x0000000000206a00 0xd5 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x295 (size before relaxing) - *fill* 0x0000000000206ad5 0x3 - .rodata 0x0000000000206ad8 0x64 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206b10 AvHGenVelParamsHandler::kScalar - 0x0000000000206b14 AvHGenVelParamNumHandler::kScalar - 0x0000000000206b18 AvHGenVelShapeHandler::kScalar - 0x0000000000206b1c AvHGenVelToggleHandler::kScalar - 0x0000000000206b20 AvHDrawModeHandler::kScalar - 0x0000000000206b24 AvHMaxParticlesHandler::kScalar - 0x0000000000206b28 AvHParticleSystemLifetimeHandler::kScalar - 0x0000000000206b2c AvHParticleLifetimeHandler::kScalar - 0x0000000000206b30 AvHGenerationRateHandler::kScalar - 0x0000000000206b34 AvHScaleHandler::kScalar - 0x0000000000206b38 AvHSizeHandler::kScalar - .rodata.str1.4 - 0x0000000000000000 0x40 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .rodata._ZTIN4vgui15IntChangeSignalE - 0x0000000000206b3c 0x8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206b3c typeinfo for vgui::IntChangeSignal - .rodata._ZTSN4vgui15IntChangeSignalE - 0x0000000000206b44 0x19 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206b44 typeinfo name for vgui::IntChangeSignal - .rodata._ZTS24AvHParticleEditorHandler - 0x0000000000206b5d 0x1b release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206b5d typeinfo name for AvHParticleEditorHandler - .rodata._ZTI24AvHParticleEditorHandler - 0x0000000000206b78 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206b78 typeinfo for AvHParticleEditorHandler - .rodata._ZTS16AvHSliderHandler - 0x0000000000206b84 0x13 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206b84 typeinfo name for AvHSliderHandler - *fill* 0x0000000000206b97 0x1 - .rodata._ZTI16AvHSliderHandler - 0x0000000000206b98 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206b98 typeinfo for AvHSliderHandler - .rodata._ZTS14AvHSizeHandler - 0x0000000000206ba4 0x11 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206ba4 typeinfo name for AvHSizeHandler - *fill* 0x0000000000206bb5 0x3 - .rodata._ZTI14AvHSizeHandler - 0x0000000000206bb8 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206bb8 typeinfo for AvHSizeHandler - .rodata._ZTS15AvHScaleHandler - 0x0000000000206bc4 0x12 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206bc4 typeinfo name for AvHScaleHandler - *fill* 0x0000000000206bd6 0x2 - .rodata._ZTI15AvHScaleHandler - 0x0000000000206bd8 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206bd8 typeinfo for AvHScaleHandler - .rodata._ZTS24AvHGenerationRateHandler - 0x0000000000206be4 0x1b release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206be4 typeinfo name for AvHGenerationRateHandler - *fill* 0x0000000000206bff 0x1 - .rodata._ZTI24AvHGenerationRateHandler - 0x0000000000206c00 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206c00 typeinfo for AvHGenerationRateHandler - .rodata._ZTS26AvHParticleLifetimeHandler - 0x0000000000206c0c 0x1d release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206c0c typeinfo name for AvHParticleLifetimeHandler - *fill* 0x0000000000206c29 0x3 - .rodata._ZTI26AvHParticleLifetimeHandler - 0x0000000000206c2c 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206c2c typeinfo for AvHParticleLifetimeHandler - *fill* 0x0000000000206c38 0x8 - .rodata._ZTS32AvHParticleSystemLifetimeHandler - 0x0000000000206c40 0x23 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206c40 typeinfo name for AvHParticleSystemLifetimeHandler - *fill* 0x0000000000206c63 0x1 - .rodata._ZTI32AvHParticleSystemLifetimeHandler - 0x0000000000206c64 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206c64 typeinfo for AvHParticleSystemLifetimeHandler - .rodata._ZTS22AvHMaxParticlesHandler - 0x0000000000206c70 0x19 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206c70 typeinfo name for AvHMaxParticlesHandler - *fill* 0x0000000000206c89 0x3 - .rodata._ZTI22AvHMaxParticlesHandler - 0x0000000000206c8c 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206c8c typeinfo for AvHMaxParticlesHandler - .rodata._ZTS18AvHDrawModeHandler - 0x0000000000206c98 0x15 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206c98 typeinfo name for AvHDrawModeHandler - *fill* 0x0000000000206cad 0x3 - .rodata._ZTI18AvHDrawModeHandler - 0x0000000000206cb0 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206cb0 typeinfo for AvHDrawModeHandler - .rodata._ZTS22AvHGenVelToggleHandler - 0x0000000000206cbc 0x19 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206cbc typeinfo name for AvHGenVelToggleHandler - *fill* 0x0000000000206cd5 0x3 - .rodata._ZTI22AvHGenVelToggleHandler - 0x0000000000206cd8 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206cd8 typeinfo for AvHGenVelToggleHandler - .rodata._ZTS21AvHGenVelShapeHandler - 0x0000000000206ce4 0x18 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206ce4 typeinfo name for AvHGenVelShapeHandler - .rodata._ZTI21AvHGenVelShapeHandler - 0x0000000000206cfc 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206cfc typeinfo for AvHGenVelShapeHandler - .rodata._ZTS24AvHGenVelParamNumHandler - 0x0000000000206d08 0x1b release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206d08 typeinfo name for AvHGenVelParamNumHandler - *fill* 0x0000000000206d23 0x1 - .rodata._ZTI24AvHGenVelParamNumHandler - 0x0000000000206d24 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206d24 typeinfo for AvHGenVelParamNumHandler - .rodata._ZTS22AvHGenVelParamsHandler - 0x0000000000206d30 0x19 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206d30 typeinfo name for AvHGenVelParamsHandler - *fill* 0x0000000000206d49 0x3 - .rodata._ZTI22AvHGenVelParamsHandler - 0x0000000000206d4c 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206d4c typeinfo for AvHGenVelParamsHandler - .rodata._ZTVN4vgui15IntChangeSignalE - 0x0000000000206d58 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206d58 vtable for vgui::IntChangeSignal - *fill* 0x0000000000206d64 0x1c - .rodata._ZTV24AvHParticleEditorHandler - 0x0000000000206d80 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206d80 vtable for AvHParticleEditorHandler - *fill* 0x0000000000206db4 0xc - .rodata._ZTV16AvHSliderHandler - 0x0000000000206dc0 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206dc0 vtable for AvHSliderHandler - *fill* 0x0000000000206df4 0xc - .rodata._ZTV14AvHSizeHandler - 0x0000000000206e00 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206e00 vtable for AvHSizeHandler - *fill* 0x0000000000206e34 0xc - .rodata._ZTV15AvHScaleHandler - 0x0000000000206e40 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206e40 vtable for AvHScaleHandler - *fill* 0x0000000000206e74 0xc - .rodata._ZTV24AvHGenerationRateHandler - 0x0000000000206e80 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206e80 vtable for AvHGenerationRateHandler - *fill* 0x0000000000206eb4 0xc - .rodata._ZTV26AvHParticleLifetimeHandler - 0x0000000000206ec0 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206ec0 vtable for AvHParticleLifetimeHandler - *fill* 0x0000000000206ef4 0xc - .rodata._ZTV32AvHParticleSystemLifetimeHandler - 0x0000000000206f00 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206f00 vtable for AvHParticleSystemLifetimeHandler - *fill* 0x0000000000206f34 0xc - .rodata._ZTV22AvHMaxParticlesHandler - 0x0000000000206f40 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206f40 vtable for AvHMaxParticlesHandler - *fill* 0x0000000000206f74 0xc - .rodata._ZTV18AvHDrawModeHandler - 0x0000000000206f80 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206f80 vtable for AvHDrawModeHandler - *fill* 0x0000000000206fb4 0xc - .rodata._ZTV22AvHGenVelToggleHandler - 0x0000000000206fc0 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000206fc0 vtable for AvHGenVelToggleHandler - *fill* 0x0000000000206ff4 0xc - .rodata._ZTV21AvHGenVelShapeHandler - 0x0000000000207000 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000207000 vtable for AvHGenVelShapeHandler - *fill* 0x0000000000207034 0xc - .rodata._ZTV24AvHGenVelParamNumHandler - 0x0000000000207040 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000207040 vtable for AvHGenVelParamNumHandler - *fill* 0x0000000000207074 0xc - .rodata._ZTV22AvHGenVelParamsHandler - 0x0000000000207080 0x34 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x0000000000207080 vtable for AvHGenVelParamsHandler - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .rodata.str1.1 - 0x00000000002070b4 0x64 release/obj/hl1_client/mod/AvHPieMenuHandler.o - 0x82 (size before relaxing) - .rodata.str1.4 - 0x0000000000207118 0x1f release/obj/hl1_client/mod/AvHPieMenuHandler.o - .rodata._ZTS17AvHPieMenuHandler - 0x0000000000207137 0x14 release/obj/hl1_client/mod/AvHPieMenuHandler.o - 0x0000000000207137 typeinfo name for AvHPieMenuHandler - *fill* 0x000000000020714b 0x1 - .rodata._ZTI17AvHPieMenuHandler - 0x000000000020714c 0xc release/obj/hl1_client/mod/AvHPieMenuHandler.o - 0x000000000020714c typeinfo for AvHPieMenuHandler - *fill* 0x0000000000207158 0x8 - .rodata._ZTV17AvHPieMenuHandler - 0x0000000000207160 0x34 release/obj/hl1_client/mod/AvHPieMenuHandler.o - 0x0000000000207160 vtable for AvHPieMenuHandler - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .rodata 0x0000000000207194 0x124 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .rodata.cst4 0x00000000002072b8 0xc release/obj/hl1_client/mod/AvHPlayerUpgrade.o - 0x54 (size before relaxing) - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHScriptClient.o - .rodata.str1.1 - 0x00000000002072c4 0x2c release/obj/hl1_client/mod/AvHScriptManager.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHScriptShared.o - .rodata.str1.4 - 0x00000000002072f0 0x20 release/obj/hl1_client/mod/AvHScrollHandler.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHScrollHandler.o - .rodata._ZTS16AvHScrollHandler - 0x0000000000207310 0x13 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x0000000000207310 typeinfo name for AvHScrollHandler - *fill* 0x0000000000207323 0x1 - .rodata._ZTI16AvHScrollHandler - 0x0000000000207324 0xc release/obj/hl1_client/mod/AvHScrollHandler.o - 0x0000000000207324 typeinfo for AvHScrollHandler - *fill* 0x0000000000207330 0x10 - .rodata._ZTV16AvHScrollHandler - 0x0000000000207340 0x34 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x0000000000207340 vtable for AvHScrollHandler - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHScrollPanel.o - .rodata._ZTS14AvHScrollPanel - 0x0000000000207374 0x11 release/obj/hl1_client/mod/AvHScrollPanel.o - 0x0000000000207374 typeinfo name for AvHScrollPanel - *fill* 0x0000000000207385 0x3 - .rodata._ZTI14AvHScrollPanel - 0x0000000000207388 0xc release/obj/hl1_client/mod/AvHScrollPanel.o - 0x0000000000207388 typeinfo for AvHScrollPanel - .rodata._ZTS16AvHUIScrollPanel - 0x0000000000207394 0x13 release/obj/hl1_client/mod/AvHScrollPanel.o - 0x0000000000207394 typeinfo name for AvHUIScrollPanel - *fill* 0x00000000002073a7 0x1 - .rodata._ZTI16AvHUIScrollPanel - 0x00000000002073a8 0xc release/obj/hl1_client/mod/AvHScrollPanel.o - 0x00000000002073a8 typeinfo for AvHUIScrollPanel - *fill* 0x00000000002073b4 0xc - .rodata._ZTV14AvHScrollPanel - 0x00000000002073c0 0x204 release/obj/hl1_client/mod/AvHScrollPanel.o - 0x00000000002073c0 vtable for AvHScrollPanel - *fill* 0x00000000002075c4 0x1c - .rodata._ZTV16AvHUIScrollPanel - 0x00000000002075e0 0x24 release/obj/hl1_client/mod/AvHScrollPanel.o - 0x00000000002075e0 vtable for AvHUIScrollPanel - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .rodata.str1.1 - 0x0000000000207604 0x629 release/obj/hl1_client/mod/AvHSharedUtil.o - 0x714 (size before relaxing) - *fill* 0x0000000000207c2d 0x13 - .rodata 0x0000000000207c40 0x10e0 release/obj/hl1_client/mod/AvHSharedUtil.o - .rodata.str1.4 - 0x0000000000208d20 0x1f release/obj/hl1_client/mod/AvHSharedUtil.o - *fill* 0x0000000000208d3f 0x1 - .rodata.cst4 0x0000000000208d40 0x8 release/obj/hl1_client/mod/AvHSharedUtil.o - 0x58 (size before relaxing) - .rodata 0x0000000000208d48 0x214 release/obj/hl1_client/mod/AvHSpecials.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHSpriteAPI.o - .rodata.cst8 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHSpriteAPI.o - .rodata.cst4 0x0000000000208f5c 0x4 release/obj/hl1_client/mod/AvHSpriteAPI.o - 0x24 (size before relaxing) - .rodata.str1.1 - 0x0000000000208f60 0x1a release/obj/hl1_client/mod/AvHTeamHierarchy.o - 0x185 (size before relaxing) - .rodata._ZTS16AvHTeamHierarchy - 0x0000000000208f7a 0x13 release/obj/hl1_client/mod/AvHTeamHierarchy.o - 0x0000000000208f7a typeinfo name for AvHTeamHierarchy - *fill* 0x0000000000208f8d 0x3 - .rodata._ZTI16AvHTeamHierarchy - 0x0000000000208f90 0xc release/obj/hl1_client/mod/AvHTeamHierarchy.o - 0x0000000000208f90 typeinfo for AvHTeamHierarchy - .rodata._ZTS18AvHUITeamHierarchy - 0x0000000000208f9c 0x15 release/obj/hl1_client/mod/AvHTeamHierarchy.o - 0x0000000000208f9c typeinfo name for AvHUITeamHierarchy - *fill* 0x0000000000208fb1 0x3 - .rodata._ZTI18AvHUITeamHierarchy - 0x0000000000208fb4 0xc release/obj/hl1_client/mod/AvHTeamHierarchy.o - 0x0000000000208fb4 typeinfo for AvHUITeamHierarchy - .rodata._ZTV16AvHTeamHierarchy - 0x0000000000208fc0 0x234 release/obj/hl1_client/mod/AvHTeamHierarchy.o - 0x0000000000208fc0 vtable for AvHTeamHierarchy - *fill* 0x00000000002091f4 0xc - .rodata._ZTV18AvHUITeamHierarchy - 0x0000000000209200 0x24 release/obj/hl1_client/mod/AvHTeamHierarchy.o - 0x0000000000209200 vtable for AvHUITeamHierarchy - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHTeamHierarchy.o - .rodata.str1.1 - 0x0000000000209224 0xb release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x16d (size before relaxing) - *fill* 0x000000000020922f 0x1 - .rodata._ZTI13FakeTextImage - 0x0000000000209230 0xc release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000209230 typeinfo for FakeTextImage - .rodata._ZTS13FakeTextImage - 0x000000000020923c 0x10 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x000000000020923c typeinfo name for FakeTextImage - .rodata._ZTS19AvHTechImpulsePanel - 0x000000000020924c 0x16 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x000000000020924c typeinfo name for AvHTechImpulsePanel - *fill* 0x0000000000209262 0x2 - .rodata._ZTI19AvHTechImpulsePanel - 0x0000000000209264 0xc release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000209264 typeinfo for AvHTechImpulsePanel - .rodata._ZTS21AvHUITechImpulsePanel - 0x0000000000209270 0x18 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000209270 typeinfo name for AvHUITechImpulsePanel - .rodata._ZTI21AvHUITechImpulsePanel - 0x0000000000209288 0xc release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000209288 typeinfo for AvHUITechImpulsePanel - *fill* 0x0000000000209294 0xc - .rodata._ZTV13FakeTextImage - 0x00000000002092a0 0x88 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x00000000002092a0 vtable for FakeTextImage - *fill* 0x0000000000209328 0x18 - .rodata._ZTV19AvHTechImpulsePanel - 0x0000000000209340 0x234 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000209340 vtable for AvHTechImpulsePanel - *fill* 0x0000000000209574 0xc - .rodata._ZTV21AvHUITechImpulsePanel - 0x0000000000209580 0x24 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x0000000000209580 vtable for AvHUITechImpulsePanel - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .rodata._ZTS11AvHTechNode - 0x00000000002095a4 0xe release/obj/hl1_client/mod/AvHTechNode.o - 0x00000000002095a4 typeinfo name for AvHTechNode - *fill* 0x00000000002095b2 0x2 - .rodata._ZTI11AvHTechNode - 0x00000000002095b4 0x8 release/obj/hl1_client/mod/AvHTechNode.o - 0x00000000002095b4 typeinfo for AvHTechNode - *fill* 0x00000000002095bc 0x4 - .rodata._ZTV11AvHTechNode - 0x00000000002095c0 0x1c release/obj/hl1_client/mod/AvHTechNode.o - 0x00000000002095c0 vtable for AvHTechNode - .rodata._ZTS11AvHTechTree - 0x00000000002095dc 0xe release/obj/hl1_client/mod/AvHTechTree.o - 0x00000000002095dc typeinfo name for AvHTechTree - *fill* 0x00000000002095ea 0x2 - .rodata._ZTI11AvHTechTree - 0x00000000002095ec 0xc release/obj/hl1_client/mod/AvHTechTree.o - 0x00000000002095ec typeinfo for AvHTechTree - *fill* 0x00000000002095f8 0x8 - .rodata._ZTV11AvHTechTree - 0x0000000000209600 0x44 release/obj/hl1_client/mod/AvHTechTree.o - 0x0000000000209600 vtable for AvHTechTree - .rodata.str1.1 - 0x0000000000000000 0x1c release/obj/hl1_client/mod/AvHTooltip.o - .rodata._ZTS10AvHTooltip - 0x0000000000209644 0xd release/obj/hl1_client/mod/AvHTooltip.o - 0x0000000000209644 typeinfo name for AvHTooltip - *fill* 0x0000000000209651 0x3 - .rodata._ZTI10AvHTooltip - 0x0000000000209654 0x8 release/obj/hl1_client/mod/AvHTooltip.o - 0x0000000000209654 typeinfo for AvHTooltip - *fill* 0x000000000020965c 0x4 - .rodata._ZTV10AvHTooltip - 0x0000000000209660 0x10 release/obj/hl1_client/mod/AvHTooltip.o - 0x0000000000209660 vtable for AvHTooltip - .rodata.cst4 0x0000000000000000 0x10 release/obj/hl1_client/mod/AvHTooltip.o - .rodata.str1.1 - 0x0000000000209670 0x3a release/obj/hl1_client/mod/AvHUIFactory.o - 0x72 (size before relaxing) - .rodata._ZTS12AvHUIFactory - 0x00000000002096aa 0xf release/obj/hl1_client/mod/AvHUIFactory.o - 0x00000000002096aa typeinfo name for AvHUIFactory - *fill* 0x00000000002096b9 0x3 - .rodata._ZTI12AvHUIFactory - 0x00000000002096bc 0xc release/obj/hl1_client/mod/AvHUIFactory.o - 0x00000000002096bc typeinfo for AvHUIFactory - .rodata._ZTV12AvHUIFactory - 0x00000000002096c8 0xc release/obj/hl1_client/mod/AvHUIFactory.o - 0x00000000002096c8 vtable for AvHUIFactory - .rodata.str1.1 - 0x00000000002096d4 0xd release/obj/hl1_client/mod/AvHVisibleBlipList.o - 0x18 (size before relaxing) - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHVisibleBlipList.o - *fill* 0x00000000002096e1 0x3 - .rodata._ZTI13CollisionTest - 0x00000000002096e4 0x8 release/obj/hl1_client/mod/CollisionChecker.o - 0x00000000002096e4 typeinfo for CollisionTest - .rodata._ZTS13CollisionTest - 0x00000000002096ec 0x10 release/obj/hl1_client/mod/CollisionChecker.o - 0x00000000002096ec typeinfo name for CollisionTest - .rodata._ZTI18PointCollisionTest - 0x00000000002096fc 0xc release/obj/hl1_client/mod/CollisionChecker.o - 0x00000000002096fc typeinfo for PointCollisionTest - .rodata._ZTS18PointCollisionTest - 0x0000000000209708 0x15 release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000209708 typeinfo name for PointCollisionTest - *fill* 0x000000000020971d 0x3 - .rodata._ZTI21CylinderCollisionTest - 0x0000000000209720 0xc release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000209720 typeinfo for CylinderCollisionTest - .rodata._ZTS21CylinderCollisionTest - 0x000000000020972c 0x18 release/obj/hl1_client/mod/CollisionChecker.o - 0x000000000020972c typeinfo name for CylinderCollisionTest - .rodata._ZTI16OBBCollisionTest - 0x0000000000209744 0xc release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000209744 typeinfo for OBBCollisionTest - .rodata._ZTS16OBBCollisionTest - 0x0000000000209750 0x13 release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000209750 typeinfo name for OBBCollisionTest - *fill* 0x0000000000209763 0x1 - .rodata._ZTI17AABBCollisionTest - 0x0000000000209764 0xc release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000209764 typeinfo for AABBCollisionTest - .rodata._ZTS17AABBCollisionTest - 0x0000000000209770 0x14 release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000209770 typeinfo name for AABBCollisionTest - *fill* 0x0000000000209784 0x1c - .rodata._ZTV13CollisionTest - 0x00000000002097a0 0x20 release/obj/hl1_client/mod/CollisionChecker.o - 0x00000000002097a0 vtable for CollisionTest - .rodata._ZTV18PointCollisionTest - 0x00000000002097c0 0x20 release/obj/hl1_client/mod/CollisionChecker.o - 0x00000000002097c0 vtable for PointCollisionTest - .rodata._ZTV21CylinderCollisionTest - 0x00000000002097e0 0x20 release/obj/hl1_client/mod/CollisionChecker.o - 0x00000000002097e0 vtable for CylinderCollisionTest - .rodata._ZTV16OBBCollisionTest - 0x0000000000209800 0x20 release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000209800 vtable for OBBCollisionTest - .rodata._ZTV17AABBCollisionTest - 0x0000000000209820 0x20 release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000209820 vtable for AABBCollisionTest - .rodata 0x0000000000209840 0x34 release/obj/hl1_client/mod/CollisionChecker.o - 0x0000000000209840 CollisionChecker::IGNORE_INTANGIBLE - 0x0000000000209844 CollisionChecker::IGNORE_INVISIBLE - 0x0000000000209848 CollisionChecker::IGNORE_NONE - 0x000000000020984c CollisionChecker::INTERSECTION_RELATION_BOTH - 0x0000000000209850 CollisionChecker::INTERSECTION_RELATION_BACK - 0x0000000000209854 CollisionChecker::INTERSECTION_RELATION_FRONT - 0x0000000000209858 CollisionChecker::INTERSECTION_RELATION_NONE - 0x000000000020985c CollisionChecker::HULL_TYPE_ALL - 0x0000000000209860 CollisionChecker::HULL_TYPE_BSP - 0x0000000000209864 CollisionChecker::HULL_TYPE_BBOX - 0x0000000000209868 CollisionChecker::IGNORE_PLAYERS_TRUE - 0x0000000000209869 CollisionChecker::IGNORE_PLAYERS_FALSE - 0x000000000020986c CollisionChecker::WORLD_ENTITY - 0x0000000000209870 CollisionChecker::NO_ENTITY - *fill* 0x0000000000209874 0xc - .rodata.cst16 0x0000000000209880 0x10 release/obj/hl1_client/mod/CollisionChecker.o - .rodata 0x0000000000209890 0x4 release/obj/hl1_client/mod/CollisionUtil.o - 0x0000000000209890 AVH_EPSILON - .rodata.cst4 0x0000000000209894 0x4 release/obj/hl1_client/mod/CollisionUtil.o - 0xc (size before relaxing) - .rodata.cst8 0x0000000000209898 0x8 release/obj/hl1_client/mod/CollisionUtil.o - .rodata.str1.1 - 0x00000000002098a0 0xb release/obj/hl1_client/mod/AvHParticleSystem.o - 0x10 (size before relaxing) - *fill* 0x00000000002098ab 0x1 - .rodata.str1.4 - 0x00000000002098ac 0x34 release/obj/hl1_client/mod/AvHParticleSystem.o - .rodata.cst4 0x0000000000000000 0x10 release/obj/hl1_client/mod/AvHParticleSystem.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .rodata._ZTI29AvHParticleTemplateListClient - 0x00000000002098e0 0xc release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x00000000002098e0 typeinfo for AvHParticleTemplateListClient - *fill* 0x00000000002098ec 0x14 - .rodata._ZTS29AvHParticleTemplateListClient - 0x0000000000209900 0x20 release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x0000000000209900 typeinfo name for AvHParticleTemplateListClient - .rodata._ZTV29AvHParticleTemplateListClient - 0x0000000000209920 0xc release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x0000000000209920 vtable for AvHParticleTemplateListClient - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .rodata._ZTS19AvHParticleTemplate - 0x000000000020992c 0x16 release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x000000000020992c typeinfo name for AvHParticleTemplate - *fill* 0x0000000000209942 0x2 - .rodata._ZTI19AvHParticleTemplate - 0x0000000000209944 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x0000000000209944 typeinfo for AvHParticleTemplate - .rodata._ZTS23AvHParticleTemplateList - 0x000000000020994c 0x1a release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x000000000020994c typeinfo name for AvHParticleTemplateList - *fill* 0x0000000000209966 0x2 - .rodata._ZTI23AvHParticleTemplateList - 0x0000000000209968 0x8 release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x0000000000209968 typeinfo for AvHParticleTemplateList - .rodata._ZTV19AvHParticleTemplate - 0x0000000000209970 0x10 release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x0000000000209970 vtable for AvHParticleTemplate - .rodata._ZTV23AvHParticleTemplateList - 0x0000000000209980 0xc release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x0000000000209980 vtable for AvHParticleTemplateList - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/mod/AvHSelectionHelper.o - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/mod/AvHSelectionHelper.o - .rodata.str1.1 - 0x000000000020998c 0x10 release/obj/hl1_client/common/interface.o - 0x16 (size before relaxing) - .rodata.str1.1 - 0x0000000000000000 0x1 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .rodata._ZTSN4vgui13CCheckButton2E - 0x000000000020999c 0x17 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - 0x000000000020999c typeinfo name for vgui::CCheckButton2 - *fill* 0x00000000002099b3 0xd - .rodata._ZTIN4vgui13CCheckButton2E - 0x00000000002099c0 0x20 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - 0x00000000002099c0 typeinfo for vgui::CCheckButton2 - .rodata._ZTVN4vgui13CCheckButton2E - 0x00000000002099e0 0x23c release/obj/hl1_client/game_shared/vgui_checkbutton2.o - 0x00000000002099e0 vtable for vgui::CCheckButton2 - .rodata._ZTSN4vgui5CGridE - 0x0000000000209c1c 0xe release/obj/hl1_client/game_shared/vgui_grid.o - 0x0000000000209c1c typeinfo name for vgui::CGrid - *fill* 0x0000000000209c2a 0x2 - .rodata._ZTIN4vgui5CGridE - 0x0000000000209c2c 0xc release/obj/hl1_client/game_shared/vgui_grid.o - 0x0000000000209c2c typeinfo for vgui::CGrid - *fill* 0x0000000000209c38 0x8 - .rodata._ZTVN4vgui5CGridE - 0x0000000000209c40 0x20c release/obj/hl1_client/game_shared/vgui_grid.o - 0x0000000000209c40 vtable for vgui::CGrid - .rodata._ZTIN4vgui8CListBox13ListBoxSignalE - 0x0000000000209e4c 0xc release/obj/hl1_client/game_shared/vgui_listbox.o - 0x0000000000209e4c typeinfo for vgui::CListBox::ListBoxSignal - *fill* 0x0000000000209e58 0x8 - .rodata._ZTSN4vgui8CListBox13ListBoxSignalE - 0x0000000000209e60 0x20 release/obj/hl1_client/game_shared/vgui_listbox.o - 0x0000000000209e60 typeinfo name for vgui::CListBox::ListBoxSignal - .rodata._ZTSN4vgui8CListBoxE - 0x0000000000209e80 0x11 release/obj/hl1_client/game_shared/vgui_listbox.o - 0x0000000000209e80 typeinfo name for vgui::CListBox - *fill* 0x0000000000209e91 0x3 - .rodata._ZTIN4vgui8CListBoxE - 0x0000000000209e94 0xc release/obj/hl1_client/game_shared/vgui_listbox.o - 0x0000000000209e94 typeinfo for vgui::CListBox - .rodata._ZTVN4vgui8CListBox13ListBoxSignalE - 0x0000000000209ea0 0xc release/obj/hl1_client/game_shared/vgui_listbox.o - 0x0000000000209ea0 vtable for vgui::CListBox::ListBoxSignal - *fill* 0x0000000000209eac 0x14 - .rodata._ZTVN4vgui8CListBoxE - 0x0000000000209ec0 0x208 release/obj/hl1_client/game_shared/vgui_listbox.o - 0x0000000000209ec0 vtable for vgui::CListBox - .rodata._ZTIN4vgui11InputStreamE - 0x000000000020a0c8 0x8 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x000000000020a0c8 typeinfo for vgui::InputStream - .rodata._ZTSN4vgui11InputStreamE - 0x000000000020a0d0 0x15 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x000000000020a0d0 typeinfo name for vgui::InputStream - *fill* 0x000000000020a0e5 0x3 - .rodata._ZTI18MemoryInputStream2 - 0x000000000020a0e8 0xc release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x000000000020a0e8 typeinfo for MemoryInputStream2 - .rodata._ZTS18MemoryInputStream2 - 0x000000000020a0f4 0x15 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x000000000020a0f4 typeinfo name for MemoryInputStream2 - *fill* 0x000000000020a109 0x17 - .rodata._ZTV18MemoryInputStream2 - 0x000000000020a120 0x24 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x000000000020a120 vtable for MemoryInputStream2 - .rodata.str1.1 - 0x000000000020a144 0x5e release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0x5f (size before relaxing) - *fill* 0x000000000020a1a2 0x1e - .rodata 0x000000000020a1c0 0xa4 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .rodata._ZTSN4vgui10ScrollBar2E - 0x000000000020a264 0x14 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0x000000000020a264 typeinfo name for vgui::ScrollBar2 - .rodata._ZTIN4vgui10ScrollBar2E - 0x000000000020a278 0xc release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0x000000000020a278 typeinfo for vgui::ScrollBar2 - .rodata._ZTI15ScrollBarButton - 0x000000000020a284 0xc release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0x000000000020a284 typeinfo for ScrollBarButton - .rodata._ZTS15ScrollBarButton - 0x000000000020a290 0x12 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0x000000000020a290 typeinfo name for ScrollBarButton - *fill* 0x000000000020a2a2 0x1e - .rodata._ZTV15ScrollBarButton - 0x000000000020a2c0 0x268 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0x000000000020a2c0 vtable for ScrollBarButton - *fill* 0x000000000020a528 0x18 - .rodata._ZTVN4vgui10ScrollBar2E - 0x000000000020a540 0x244 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0x000000000020a540 vtable for vgui::ScrollBar2 - *fill* 0x000000000020a784 0x1c - .rodata 0x000000000020a7a0 0x74 release/obj/hl1_client/game_shared/vgui_slider2.o - .rodata._ZTSN4vgui7Slider2E - 0x000000000020a814 0x10 release/obj/hl1_client/game_shared/vgui_slider2.o - 0x000000000020a814 typeinfo name for vgui::Slider2 - .rodata._ZTIN4vgui7Slider2E - 0x000000000020a824 0xc release/obj/hl1_client/game_shared/vgui_slider2.o - 0x000000000020a824 typeinfo for vgui::Slider2 - *fill* 0x000000000020a830 0x10 - .rodata._ZTVN4vgui7Slider2E - 0x000000000020a840 0x248 release/obj/hl1_client/game_shared/vgui_slider2.o - 0x000000000020a840 vtable for vgui::Slider2 - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/game_shared/vgui_slider2.o - .rodata.str1.1 - 0x000000000020aa88 0xd release/obj/hl1_client/game_shared/voice_banmgr.o - 0x19 (size before relaxing) - *fill* 0x000000000020aa95 0x3 - .rodata.str1.4 - 0x000000000020aa98 0x272 release/obj/hl1_client/game_shared/voice_status.o - .rodata.str1.1 - 0x000000000020ad0a 0x183 release/obj/hl1_client/game_shared/voice_status.o - 0x18c (size before relaxing) - .rodata._ZTS12CVoiceStatus - 0x000000000020ae8d 0xf release/obj/hl1_client/game_shared/voice_status.o - 0x000000000020ae8d typeinfo name for CVoiceStatus - *fill* 0x000000000020ae9c 0x4 - .rodata._ZTI12CVoiceStatus - 0x000000000020aea0 0x20 release/obj/hl1_client/game_shared/voice_status.o - 0x000000000020aea0 typeinfo for CVoiceStatus - .rodata._ZTV12CVoiceStatus - 0x000000000020aec0 0x60 release/obj/hl1_client/game_shared/voice_status.o - 0x000000000020aec0 vtable for CVoiceStatus - .rodata.cst8 0x000000000020af20 0x8 release/obj/hl1_client/game_shared/voice_status.o - 0x10 (size before relaxing) - .rodata.cst4 0x000000000020af28 0x4 release/obj/hl1_client/game_shared/voice_status.o - 0x10 (size before relaxing) - .rodata.str1.1 - 0x000000000020af2c 0x85 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0xb5 (size before relaxing) - .rodata._ZTS18CVoiceVGUITweakDlg - 0x000000000020afb1 0x15 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x000000000020afb1 typeinfo name for CVoiceVGUITweakDlg - *fill* 0x000000000020afc6 0x1a - .rodata._ZTI18CVoiceVGUITweakDlg - 0x000000000020afe0 0x20 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x000000000020afe0 typeinfo for CVoiceVGUITweakDlg - .rodata._ZTI19CVoiceTweakOKButton - 0x000000000020b000 0xc release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x000000000020b000 typeinfo for CVoiceTweakOKButton - .rodata._ZTS19CVoiceTweakOKButton - 0x000000000020b00c 0x16 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x000000000020b00c typeinfo name for CVoiceTweakOKButton - *fill* 0x000000000020b022 0x6 - .rodata._ZTV19CVoiceTweakOKButton - 0x000000000020b028 0xc release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x000000000020b028 vtable for CVoiceTweakOKButton - *fill* 0x000000000020b034 0xc - .rodata._ZTV18CVoiceVGUITweakDlg - 0x000000000020b040 0x228 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x000000000020b040 vtable for CVoiceVGUITweakDlg - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .rodata.str1.1 - 0x000000000020b268 0x10b release/obj/hl1_client/server/hl_wpn_glock.o - 0x11d (size before relaxing) - *fill* 0x000000000020b373 0x1 - .rodata.str1.4 - 0x000000000020b374 0x24 release/obj/hl1_client/server/hl_wpn_glock.o - .rodata._ZTS6CGlock - 0x000000000020b398 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - 0x000000000020b398 typeinfo name for CGlock - .rodata._ZTI6CGlock - 0x000000000020b3a0 0xc release/obj/hl1_client/server/hl_wpn_glock.o - 0x000000000020b3a0 typeinfo for CGlock - .rodata._ZTI10CGlockAmmo - 0x000000000020b3ac 0xc release/obj/hl1_client/server/hl_wpn_glock.o - 0x000000000020b3ac typeinfo for CGlockAmmo - .rodata._ZTS10CGlockAmmo - 0x000000000020b3b8 0xd release/obj/hl1_client/server/hl_wpn_glock.o - 0x000000000020b3b8 typeinfo name for CGlockAmmo - *fill* 0x000000000020b3c5 0x1b - .rodata._ZTV6CGlock - 0x000000000020b3e0 0x1ac release/obj/hl1_client/server/hl_wpn_glock.o - 0x000000000020b3e0 vtable for CGlock - *fill* 0x000000000020b58c 0x14 - .rodata._ZTV10CGlockAmmo - 0x000000000020b5a0 0x104 release/obj/hl1_client/server/hl_wpn_glock.o - 0x000000000020b5a0 vtable for CGlockAmmo - .rodata.cst4 0x000000000020b6a4 0x8 release/obj/hl1_client/server/hl_wpn_glock.o - 0x18 (size before relaxing) - .rodata.cst8 0x0000000000000000 0x10 release/obj/hl1_client/server/hl_wpn_glock.o - *fill* 0x000000000020b6ac 0x14 - .rodata 0x000000000020b6c0 0x60 release/obj/hl1_client/pm_shared/pm_debug.o - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/pm_shared/pm_debug.o - .rodata 0x000000000020b720 0x158 release/obj/hl1_client/pm_shared/pm_shared.o - .rodata.str1.1 - 0x000000000020b878 0x17b release/obj/hl1_client/pm_shared/pm_shared.o - 0x18a (size before relaxing) - *fill* 0x000000000020b9f3 0x1 - .rodata.str1.4 - 0x000000000020b9f4 0x9e release/obj/hl1_client/pm_shared/pm_shared.o - *fill* 0x000000000020ba92 0x2 - .rodata.cst4 0x000000000020ba94 0x60 release/obj/hl1_client/pm_shared/pm_shared.o - 0x134 (size before relaxing) - *fill* 0x000000000020baf4 0x4 - .rodata.cst8 0x000000000020baf8 0x28 release/obj/hl1_client/pm_shared/pm_shared.o - 0x60 (size before relaxing) - .rodata.cst16 0x000000000020bb20 0x60 release/obj/hl1_client/pm_shared/pm_shared.o - .rodata.cst8 0x000000000020bb80 0x8 release/obj/hl1_client/pm_shared/pm_math.o - 0x18 (size before relaxing) - .rodata.cst4 0x0000000000000000 0x10 release/obj/hl1_client/pm_shared/pm_math.o - .rodata._ZTS9BitmapPNG - 0x000000000020bb88 0xb release/obj/hl1_client/ui/bitmappng.o - 0x000000000020bb88 typeinfo name for BitmapPNG - *fill* 0x000000000020bb93 0x1 - .rodata._ZTI9BitmapPNG - 0x000000000020bb94 0xc release/obj/hl1_client/ui/bitmappng.o - 0x000000000020bb94 typeinfo for BitmapPNG - .rodata._ZTV9BitmapPNG - 0x000000000020bba0 0x74 release/obj/hl1_client/ui/bitmappng.o - 0x000000000020bba0 vtable for BitmapPNG - .rodata.str1.1 - 0x000000000020bc14 0x24 release/obj/hl1_client/ui/ChatPanel.o - 0x31 (size before relaxing) - .rodata._ZTS9ChatPanel - 0x000000000020bc38 0xb release/obj/hl1_client/ui/ChatPanel.o - 0x000000000020bc38 typeinfo name for ChatPanel - *fill* 0x000000000020bc43 0x1d - .rodata._ZTI9ChatPanel - 0x000000000020bc60 0x20 release/obj/hl1_client/ui/ChatPanel.o - 0x000000000020bc60 typeinfo for ChatPanel - .rodata._ZTV9ChatPanel - 0x000000000020bc80 0x238 release/obj/hl1_client/ui/ChatPanel.o - 0x000000000020bc80 vtable for ChatPanel - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/ui/ColoredPanel.o - .rodata._ZTS12ColoredPanel - 0x000000000020beb8 0xf release/obj/hl1_client/ui/ColoredPanel.o - 0x000000000020beb8 typeinfo name for ColoredPanel - *fill* 0x000000000020bec7 0x1 - .rodata._ZTI12ColoredPanel - 0x000000000020bec8 0xc release/obj/hl1_client/ui/ColoredPanel.o - 0x000000000020bec8 typeinfo for ColoredPanel - *fill* 0x000000000020bed4 0xc - .rodata._ZTV12ColoredPanel - 0x000000000020bee0 0x204 release/obj/hl1_client/ui/ColoredPanel.o - 0x000000000020bee0 vtable for ColoredPanel - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/ui/ColoredPanel.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/ui/DummyPanel.o - .rodata._ZTS10DummyPanel - 0x000000000020c0e4 0xd release/obj/hl1_client/ui/DummyPanel.o - 0x000000000020c0e4 typeinfo name for DummyPanel - *fill* 0x000000000020c0f1 0x3 - .rodata._ZTI10DummyPanel - 0x000000000020c0f4 0xc release/obj/hl1_client/ui/DummyPanel.o - 0x000000000020c0f4 typeinfo for DummyPanel - .rodata._ZTV10DummyPanel - 0x000000000020c100 0x204 release/obj/hl1_client/ui/DummyPanel.o - 0x000000000020c100 vtable for DummyPanel - .rodata.str1.1 - 0x000000000020c304 0x14 release/obj/hl1_client/ui/FadingImageLabel.o - 0x2e (size before relaxing) - .rodata._ZTI19ReloadableComponent - 0x000000000020c318 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - 0x000000000020c318 typeinfo for ReloadableComponent - .rodata._ZTS19ReloadableComponent - 0x000000000020c320 0x16 release/obj/hl1_client/ui/FadingImageLabel.o - 0x000000000020c320 typeinfo name for ReloadableComponent - .rodata._ZTS16FadingImageLabel - 0x000000000020c336 0x13 release/obj/hl1_client/ui/FadingImageLabel.o - 0x000000000020c336 typeinfo name for FadingImageLabel - *fill* 0x000000000020c349 0x17 - .rodata._ZTI16FadingImageLabel - 0x000000000020c360 0x20 release/obj/hl1_client/ui/FadingImageLabel.o - 0x000000000020c360 typeinfo for FadingImageLabel - .rodata._ZTV19ReloadableComponent - 0x000000000020c380 0xc release/obj/hl1_client/ui/FadingImageLabel.o - 0x000000000020c380 vtable for ReloadableComponent - *fill* 0x000000000020c38c 0x14 - .rodata._ZTV16FadingImageLabel - 0x000000000020c3a0 0x268 release/obj/hl1_client/ui/FadingImageLabel.o - 0x000000000020c3a0 vtable for FadingImageLabel - .rodata.cst8 0x000000000020c608 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/ui/FadingImageLabel.o - .rodata.str1.1 - 0x000000000020c610 0x7 release/obj/hl1_client/ui/loadpng.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/ui/MarqueeComponent.o - *fill* 0x000000000020c617 0x1 - .rodata._ZTI19GammaAwareComponent - 0x000000000020c618 0x8 release/obj/hl1_client/ui/MarqueeComponent.o - 0x000000000020c618 typeinfo for GammaAwareComponent - .rodata._ZTS19GammaAwareComponent - 0x000000000020c620 0x16 release/obj/hl1_client/ui/MarqueeComponent.o - 0x000000000020c620 typeinfo name for GammaAwareComponent - .rodata._ZTS16MarqueeComponent - 0x000000000020c636 0x13 release/obj/hl1_client/ui/MarqueeComponent.o - 0x000000000020c636 typeinfo name for MarqueeComponent - *fill* 0x000000000020c649 0x17 - .rodata._ZTI16MarqueeComponent - 0x000000000020c660 0x20 release/obj/hl1_client/ui/MarqueeComponent.o - 0x000000000020c660 typeinfo for MarqueeComponent - .rodata._ZTV19GammaAwareComponent - 0x000000000020c680 0xc release/obj/hl1_client/ui/MarqueeComponent.o - 0x000000000020c680 vtable for GammaAwareComponent - *fill* 0x000000000020c68c 0x14 - .rodata._ZTV16MarqueeComponent - 0x000000000020c6a0 0x214 release/obj/hl1_client/ui/MarqueeComponent.o - 0x000000000020c6a0 vtable for MarqueeComponent - .rodata._ZTS17MemoryInputStream - 0x000000000020c8b4 0x14 release/obj/hl1_client/ui/MemoryInputStream.o - 0x000000000020c8b4 typeinfo name for MemoryInputStream - .rodata._ZTI17MemoryInputStream - 0x000000000020c8c8 0xc release/obj/hl1_client/ui/MemoryInputStream.o - 0x000000000020c8c8 typeinfo for MemoryInputStream - *fill* 0x000000000020c8d4 0xc - .rodata._ZTVN4vgui11InputStreamE - 0x000000000020c8e0 0x24 release/obj/hl1_client/ui/MemoryInputStream.o - 0x000000000020c8e0 vtable for vgui::InputStream - *fill* 0x000000000020c904 0x1c - .rodata._ZTV17MemoryInputStream - 0x000000000020c920 0x30 release/obj/hl1_client/ui/MemoryInputStream.o - 0x000000000020c920 vtable for MemoryInputStream - .rodata.str1.1 - 0x000000000020c950 0x8 release/obj/hl1_client/ui/PieMenu.o - 0xc (size before relaxing) - .rodata._ZTS7PieMenu - 0x000000000020c958 0x9 release/obj/hl1_client/ui/PieMenu.o - 0x000000000020c958 typeinfo name for PieMenu - *fill* 0x000000000020c961 0x1f - .rodata._ZTI7PieMenu - 0x000000000020c980 0x28 release/obj/hl1_client/ui/PieMenu.o - 0x000000000020c980 typeinfo for PieMenu - *fill* 0x000000000020c9a8 0x18 - .rodata._ZTV7PieMenu - 0x000000000020c9c0 0x234 release/obj/hl1_client/ui/PieMenu.o - 0x000000000020c9c0 vtable for PieMenu - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/ui/PieMenu.o - .rodata.str1.1 - 0x0000000000000000 0x10 release/obj/hl1_client/ui/PieNode.o - .rodata._ZTS7PieNode - 0x000000000020cbf4 0x9 release/obj/hl1_client/ui/PieNode.o - 0x000000000020cbf4 typeinfo name for PieNode - *fill* 0x000000000020cbfd 0x3 - .rodata._ZTI7PieNode - 0x000000000020cc00 0xc release/obj/hl1_client/ui/PieNode.o - 0x000000000020cc00 typeinfo for PieNode - .rodata._ZTS11PieNodeList - 0x000000000020cc0c 0xe release/obj/hl1_client/ui/PieNode.o - 0x000000000020cc0c typeinfo name for PieNodeList - *fill* 0x000000000020cc1a 0x2 - .rodata._ZTI11PieNodeList - 0x000000000020cc1c 0x8 release/obj/hl1_client/ui/PieNode.o - 0x000000000020cc1c typeinfo for PieNodeList - *fill* 0x000000000020cc24 0x1c - .rodata._ZTV7PieNode - 0x000000000020cc40 0x284 release/obj/hl1_client/ui/PieNode.o - 0x000000000020cc40 vtable for PieNode - *fill* 0x000000000020cec4 0x4 - .rodata._ZTV11PieNodeList - 0x000000000020cec8 0x18 release/obj/hl1_client/ui/PieNode.o - 0x000000000020cec8 vtable for PieNodeList - .rodata.cst4 0x000000000020cee0 0x4 release/obj/hl1_client/ui/PieNode.o - 0x14 (size before relaxing) - .rodata.str1.1 - 0x000000000020cee4 0x13 release/obj/hl1_client/ui/ScoreboardIcon.o - 0x1a (size before relaxing) - .rodata._ZTS10SliderPlus - 0x000000000020cef7 0xd release/obj/hl1_client/ui/SliderPlus.o - 0x000000000020cef7 typeinfo name for SliderPlus - *fill* 0x000000000020cf04 0x1c - .rodata._ZTI10SliderPlus - 0x000000000020cf20 0x20 release/obj/hl1_client/ui/SliderPlus.o - 0x000000000020cf20 typeinfo for SliderPlus - .rodata._ZTV10SliderPlus - 0x000000000020cf40 0x294 release/obj/hl1_client/ui/SliderPlus.o - 0x000000000020cf40 vtable for SliderPlus - .rodata.str1.1 - 0x000000000020d1d4 0x2b release/obj/hl1_client/ui/SpritePanel.o - 0x33 (size before relaxing) - .rodata._ZTS11SpritePanel - 0x000000000020d1ff 0xe release/obj/hl1_client/ui/SpritePanel.o - 0x000000000020d1ff typeinfo name for SpritePanel - *fill* 0x000000000020d20d 0x13 - .rodata._ZTI11SpritePanel - 0x000000000020d220 0x28 release/obj/hl1_client/ui/SpritePanel.o - 0x000000000020d220 typeinfo for SpritePanel - *fill* 0x000000000020d248 0x18 - .rodata._ZTV11SpritePanel - 0x000000000020d260 0x228 release/obj/hl1_client/ui/SpritePanel.o - 0x000000000020d260 vtable for SpritePanel - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/ui/SpritePanel.o - .rodata._ZTS11UIComponent - 0x000000000020d488 0xe release/obj/hl1_client/ui/UIComponent.o - 0x000000000020d488 typeinfo name for UIComponent - *fill* 0x000000000020d496 0x2 - .rodata._ZTI11UIComponent - 0x000000000020d498 0x8 release/obj/hl1_client/ui/UIComponent.o - 0x000000000020d498 typeinfo for UIComponent - .rodata._ZTV11UIComponent - 0x000000000020d4a0 0x24 release/obj/hl1_client/ui/UIComponent.o - 0x000000000020d4a0 vtable for UIComponent - .rodata.str1.1 - 0x000000000020d4c4 0xb release/obj/hl1_client/ui/UIComponents.o - 0x160 (size before relaxing) - .rodata._ZTS7UIPanel - 0x000000000020d4cf 0x9 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d4cf typeinfo name for UIPanel - .rodata._ZTI7UIPanel - 0x000000000020d4d8 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d4d8 typeinfo for UIPanel - .rodata._ZTS7UILabel - 0x000000000020d4e4 0x9 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d4e4 typeinfo name for UILabel - *fill* 0x000000000020d4ed 0x3 - .rodata._ZTI7UILabel - 0x000000000020d4f0 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d4f0 typeinfo for UILabel - .rodata._ZTS12UIImageLabel - 0x000000000020d4fc 0xf release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d4fc typeinfo name for UIImageLabel - *fill* 0x000000000020d50b 0x1 - .rodata._ZTI12UIImageLabel - 0x000000000020d50c 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d50c typeinfo for UIImageLabel - .rodata._ZTS13UIProgressBar - 0x000000000020d518 0x10 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d518 typeinfo name for UIProgressBar - .rodata._ZTI13UIProgressBar - 0x000000000020d528 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d528 typeinfo for UIProgressBar - .rodata._ZTS14UIConfigWizard - 0x000000000020d534 0x11 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d534 typeinfo name for UIConfigWizard - *fill* 0x000000000020d545 0x3 - .rodata._ZTI14UIConfigWizard - 0x000000000020d548 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d548 typeinfo for UIConfigWizard - .rodata._ZTS12UITreeFolder - 0x000000000020d554 0xf release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d554 typeinfo name for UITreeFolder - *fill* 0x000000000020d563 0x1 - .rodata._ZTI12UITreeFolder - 0x000000000020d564 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d564 typeinfo for UITreeFolder - .rodata._ZTS6UIMenu - 0x000000000020d570 0x8 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d570 typeinfo name for UIMenu - .rodata._ZTI6UIMenu - 0x000000000020d578 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d578 typeinfo for UIMenu - .rodata._ZTS11UIPopupMenu - 0x000000000020d584 0xe release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d584 typeinfo name for UIPopupMenu - *fill* 0x000000000020d592 0x2 - .rodata._ZTI11UIPopupMenu - 0x000000000020d594 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d594 typeinfo for UIPopupMenu - .rodata._ZTS12UIImagePanel - 0x000000000020d5a0 0xf release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d5a0 typeinfo name for UIImagePanel - *fill* 0x000000000020d5af 0x1 - .rodata._ZTI12UIImagePanel - 0x000000000020d5b0 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d5b0 typeinfo for UIImagePanel - .rodata._ZTS8UIButton - 0x000000000020d5bc 0xa release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d5bc typeinfo name for UIButton - *fill* 0x000000000020d5c6 0x2 - .rodata._ZTI8UIButton - 0x000000000020d5c8 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d5c8 typeinfo for UIButton - .rodata._ZTS18UIFadingImageLabel - 0x000000000020d5d4 0x15 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d5d4 typeinfo name for UIFadingImageLabel - *fill* 0x000000000020d5e9 0x3 - .rodata._ZTI18UIFadingImageLabel - 0x000000000020d5ec 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d5ec typeinfo for UIFadingImageLabel - .rodata._ZTS18UIMarqueeComponent - 0x000000000020d5f8 0x15 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d5f8 typeinfo name for UIMarqueeComponent - *fill* 0x000000000020d60d 0x3 - .rodata._ZTI18UIMarqueeComponent - 0x000000000020d610 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d610 typeinfo for UIMarqueeComponent - .rodata._ZTS14UIColoredPanel - 0x000000000020d61c 0x11 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d61c typeinfo name for UIColoredPanel - *fill* 0x000000000020d62d 0x3 - .rodata._ZTI14UIColoredPanel - 0x000000000020d630 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d630 typeinfo for UIColoredPanel - .rodata._ZTS16UIInvisiblePanel - 0x000000000020d63c 0x13 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d63c typeinfo name for UIInvisiblePanel - *fill* 0x000000000020d64f 0x1 - .rodata._ZTI16UIInvisiblePanel - 0x000000000020d650 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d650 typeinfo for UIInvisiblePanel - .rodata._ZTS8UISlider - 0x000000000020d65c 0xa release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d65c typeinfo name for UISlider - *fill* 0x000000000020d666 0x2 - .rodata._ZTI8UISlider - 0x000000000020d668 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d668 typeinfo for UISlider - .rodata._ZTS9UISlider2 - 0x000000000020d674 0xb release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d674 typeinfo name for UISlider2 - *fill* 0x000000000020d67f 0x1 - .rodata._ZTI9UISlider2 - 0x000000000020d680 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d680 typeinfo for UISlider2 - .rodata._ZTS12UISliderPlus - 0x000000000020d68c 0xf release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d68c typeinfo name for UISliderPlus - *fill* 0x000000000020d69b 0x1 - .rodata._ZTI12UISliderPlus - 0x000000000020d69c 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d69c typeinfo for UISliderPlus - .rodata._ZTS13UIStaticLabel - 0x000000000020d6a8 0x10 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d6a8 typeinfo name for UIStaticLabel - .rodata._ZTI13UIStaticLabel - 0x000000000020d6b8 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d6b8 typeinfo for UIStaticLabel - .rodata._ZTS13UISpritePanel - 0x000000000020d6c4 0x10 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d6c4 typeinfo name for UISpritePanel - .rodata._ZTI13UISpritePanel - 0x000000000020d6d4 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d6d4 typeinfo for UISpritePanel - .rodata._ZTS12UIDummyPanel - 0x000000000020d6e0 0xf release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d6e0 typeinfo name for UIDummyPanel - *fill* 0x000000000020d6ef 0x1 - .rodata._ZTI12UIDummyPanel - 0x000000000020d6f0 0xc release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d6f0 typeinfo for UIDummyPanel - *fill* 0x000000000020d6fc 0x4 - .rodata._ZTV7UIPanel - 0x000000000020d700 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d700 vtable for UIPanel - *fill* 0x000000000020d724 0x1c - .rodata._ZTV7UILabel - 0x000000000020d740 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d740 vtable for UILabel - *fill* 0x000000000020d764 0x1c - .rodata._ZTV12UIImageLabel - 0x000000000020d780 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d780 vtable for UIImageLabel - *fill* 0x000000000020d7a4 0x1c - .rodata._ZTV13UIProgressBar - 0x000000000020d7c0 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d7c0 vtable for UIProgressBar - *fill* 0x000000000020d7e4 0x1c - .rodata._ZTV14UIConfigWizard - 0x000000000020d800 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d800 vtable for UIConfigWizard - *fill* 0x000000000020d824 0x1c - .rodata._ZTV12UITreeFolder - 0x000000000020d840 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d840 vtable for UITreeFolder - *fill* 0x000000000020d864 0x1c - .rodata._ZTV6UIMenu - 0x000000000020d880 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d880 vtable for UIMenu - *fill* 0x000000000020d8a4 0x1c - .rodata._ZTV11UIPopupMenu - 0x000000000020d8c0 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d8c0 vtable for UIPopupMenu - *fill* 0x000000000020d8e4 0x1c - .rodata._ZTV12UIImagePanel - 0x000000000020d900 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d900 vtable for UIImagePanel - *fill* 0x000000000020d924 0x1c - .rodata._ZTV8UIButton - 0x000000000020d940 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d940 vtable for UIButton - *fill* 0x000000000020d964 0x1c - .rodata._ZTV18UIFadingImageLabel - 0x000000000020d980 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d980 vtable for UIFadingImageLabel - *fill* 0x000000000020d9a4 0x1c - .rodata._ZTV18UIMarqueeComponent - 0x000000000020d9c0 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020d9c0 vtable for UIMarqueeComponent - *fill* 0x000000000020d9e4 0x1c - .rodata._ZTV14UIColoredPanel - 0x000000000020da00 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020da00 vtable for UIColoredPanel - *fill* 0x000000000020da24 0x1c - .rodata._ZTV16UIInvisiblePanel - 0x000000000020da40 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020da40 vtable for UIInvisiblePanel - *fill* 0x000000000020da64 0x1c - .rodata._ZTV8UISlider - 0x000000000020da80 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020da80 vtable for UISlider - *fill* 0x000000000020daa4 0x1c - .rodata._ZTV9UISlider2 - 0x000000000020dac0 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020dac0 vtable for UISlider2 - *fill* 0x000000000020dae4 0x1c - .rodata._ZTV13UIStaticLabel - 0x000000000020db00 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020db00 vtable for UIStaticLabel - *fill* 0x000000000020db24 0x1c - .rodata._ZTV13UISpritePanel - 0x000000000020db40 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020db40 vtable for UISpritePanel - *fill* 0x000000000020db64 0x1c - .rodata._ZTV12UIDummyPanel - 0x000000000020db80 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020db80 vtable for UIDummyPanel - *fill* 0x000000000020dba4 0x1c - .rodata._ZTV12UISliderPlus - 0x000000000020dbc0 0x24 release/obj/hl1_client/ui/UIComponents.o - 0x000000000020dbc0 vtable for UISliderPlus - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIComponents.o - .rodata.str1.1 - 0x000000000020dbe4 0x8a release/obj/hl1_client/ui/UIFactory.o - 0xe3 (size before relaxing) - .rodata._ZTS9UIFactory - 0x000000000020dc6e 0xb release/obj/hl1_client/ui/UIFactory.o - 0x000000000020dc6e typeinfo name for UIFactory - *fill* 0x000000000020dc79 0x3 - .rodata._ZTI9UIFactory - 0x000000000020dc7c 0x8 release/obj/hl1_client/ui/UIFactory.o - 0x000000000020dc7c typeinfo for UIFactory - *fill* 0x000000000020dc84 0x4 - .rodata._ZTV9UIFactory - 0x000000000020dc88 0xc release/obj/hl1_client/ui/UIFactory.o - 0x000000000020dc88 vtable for UIFactory - .rodata.str1.1 - 0x000000000020dc94 0xf8e release/obj/hl1_client/ui/UIHud.o - 0xfa0 (size before relaxing) - *fill* 0x000000000020ec22 0x2 - .rodata.str1.4 - 0x000000000020ec24 0x850 release/obj/hl1_client/ui/UIHud.o - *fill* 0x000000000020f474 0xc - .rodata 0x000000000020f480 0x4c release/obj/hl1_client/ui/UIHud.o - .rodata._ZTI4CHud - 0x000000000020f4cc 0x8 release/obj/hl1_client/ui/UIHud.o - 0x000000000020f4cc typeinfo for CHud - .rodata._ZTS4CHud - 0x000000000020f4d4 0x6 release/obj/hl1_client/ui/UIHud.o - 0x000000000020f4d4 typeinfo name for CHud - .rodata._ZTS5UIHud - 0x000000000020f4da 0x7 release/obj/hl1_client/ui/UIHud.o - 0x000000000020f4da typeinfo name for UIHud - *fill* 0x000000000020f4e1 0x3 - .rodata._ZTI5UIHud - 0x000000000020f4e4 0x18 release/obj/hl1_client/ui/UIHud.o - 0x000000000020f4e4 typeinfo for UIHud - *fill* 0x000000000020f4fc 0x4 - .rodata._ZTV5UIHud - 0x000000000020f500 0x70 release/obj/hl1_client/ui/UIHud.o - 0x000000000020f500 vtable for UIHud - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/ui/UIHud.o - .rodata.str1.4 - 0x000000000020f570 0x2b release/obj/hl1_client/ui/UIManager.o - .rodata.str1.1 - 0x000000000020f59b 0xb release/obj/hl1_client/ui/UIManager.o - 0x15f (size before relaxing) - .rodata._ZTS9UIManager - 0x000000000020f5a6 0xb release/obj/hl1_client/ui/UIManager.o - 0x000000000020f5a6 typeinfo name for UIManager - *fill* 0x000000000020f5b1 0x3 - .rodata._ZTI9UIManager - 0x000000000020f5b4 0xc release/obj/hl1_client/ui/UIManager.o - 0x000000000020f5b4 typeinfo for UIManager - .rodata._ZTV9UIManager - 0x000000000020f5c0 0x44 release/obj/hl1_client/ui/UIManager.o - 0x000000000020f5c0 vtable for UIManager - .rodata.str1.1 - 0x000000000020f604 0x36 release/obj/hl1_client/ui/UIPieMenu.o - 0x1a1 (size before relaxing) - .rodata._ZTS9UIPieMenu - 0x000000000020f63a 0xb release/obj/hl1_client/ui/UIPieMenu.o - 0x000000000020f63a typeinfo name for UIPieMenu - *fill* 0x000000000020f645 0x3 - .rodata._ZTI9UIPieMenu - 0x000000000020f648 0xc release/obj/hl1_client/ui/UIPieMenu.o - 0x000000000020f648 typeinfo for UIPieMenu - *fill* 0x000000000020f654 0xc - .rodata._ZTV9UIPieMenu - 0x000000000020f660 0x24 release/obj/hl1_client/ui/UIPieMenu.o - 0x000000000020f660 vtable for UIPieMenu - .rodata.str1.1 - 0x000000000020f684 0x35 release/obj/hl1_client/ui/UIUtil.o - 0x1a8 (size before relaxing) - *fill* 0x000000000020f6b9 0x7 - .rodata 0x000000000020f6c0 0x39 release/obj/hl1_client/ui/UIUtil.o - .rodata.cst4 0x0000000000000000 0x8 release/obj/hl1_client/ui/UIUtil.o - .rodata.str1.1 - 0x0000000000000000 0x4 release/obj/hl1_client/ui/InvisiblePanel.o - .rodata._ZTS14InvisiblePanel - 0x000000000020f6f9 0x11 release/obj/hl1_client/ui/InvisiblePanel.o - 0x000000000020f6f9 typeinfo name for InvisiblePanel - *fill* 0x000000000020f70a 0x2 - .rodata._ZTI14InvisiblePanel - 0x000000000020f70c 0xc release/obj/hl1_client/ui/InvisiblePanel.o - 0x000000000020f70c typeinfo for InvisiblePanel - *fill* 0x000000000020f718 0x8 - .rodata._ZTV14InvisiblePanel - 0x000000000020f720 0x204 release/obj/hl1_client/ui/InvisiblePanel.o - 0x000000000020f720 vtable for InvisiblePanel - .rodata.str1.4 - 0x000000000020f924 0x36 release/obj/hl1_client/util/Balance.o - .rodata.str1.1 - 0x000000000020f95a 0x51 release/obj/hl1_client/util/Balance.o - 0x5e (size before relaxing) - .rodata._ZTS21BalanceChangeListener - 0x000000000020f9ab 0x18 release/obj/hl1_client/util/Balance.o - 0x000000000020f9ab typeinfo name for BalanceChangeListener - *fill* 0x000000000020f9c3 0x1 - .rodata._ZTI21BalanceChangeListener - 0x000000000020f9c4 0x8 release/obj/hl1_client/util/Balance.o - 0x000000000020f9c4 typeinfo for BalanceChangeListener - .rodata._ZTS21BalanceValueContainer - 0x000000000020f9cc 0x18 release/obj/hl1_client/util/Balance.o - 0x000000000020f9cc typeinfo name for BalanceValueContainer - .rodata._ZTI21BalanceValueContainer - 0x000000000020f9e4 0x8 release/obj/hl1_client/util/Balance.o - 0x000000000020f9e4 typeinfo for BalanceValueContainer - .rodata._ZTI18NullValueContainer - 0x000000000020f9ec 0xc release/obj/hl1_client/util/Balance.o - 0x000000000020f9ec typeinfo for NullValueContainer - .rodata._ZTS18NullValueContainer - 0x000000000020f9f8 0x15 release/obj/hl1_client/util/Balance.o - 0x000000000020f9f8 typeinfo name for NullValueContainer - .rodata._ZTS22StandardValueContainer - 0x000000000020fa0d 0x19 release/obj/hl1_client/util/Balance.o - 0x000000000020fa0d typeinfo name for StandardValueContainer - *fill* 0x000000000020fa26 0x2 - .rodata._ZTI22StandardValueContainer - 0x000000000020fa28 0xc release/obj/hl1_client/util/Balance.o - 0x000000000020fa28 typeinfo for StandardValueContainer - .rodata._ZTS18FileValueContainer - 0x000000000020fa34 0x15 release/obj/hl1_client/util/Balance.o - 0x000000000020fa34 typeinfo name for FileValueContainer - *fill* 0x000000000020fa49 0x3 - .rodata._ZTI18FileValueContainer - 0x000000000020fa4c 0xc release/obj/hl1_client/util/Balance.o - 0x000000000020fa4c typeinfo for FileValueContainer - *fill* 0x000000000020fa58 0x8 - .rodata._ZTV18NullValueContainer - 0x000000000020fa60 0x60 release/obj/hl1_client/util/Balance.o - 0x000000000020fa60 vtable for NullValueContainer - .rodata._ZTV21BalanceChangeListener - 0x000000000020fac0 0x44 release/obj/hl1_client/util/Balance.o - 0x000000000020fac0 vtable for BalanceChangeListener - *fill* 0x000000000020fb04 0x1c - .rodata._ZTV21BalanceValueContainer - 0x000000000020fb20 0x60 release/obj/hl1_client/util/Balance.o - 0x000000000020fb20 vtable for BalanceValueContainer - .rodata._ZTV22StandardValueContainer - 0x000000000020fb80 0x74 release/obj/hl1_client/util/Balance.o - 0x000000000020fb80 vtable for StandardValueContainer - *fill* 0x000000000020fbf4 0xc - .rodata._ZTV18FileValueContainer - 0x000000000020fc00 0x74 release/obj/hl1_client/util/Balance.o - 0x000000000020fc00 vtable for FileValueContainer - .rodata.str1.1 - 0x000000000020fc74 0x1f release/obj/hl1_client/util/Checksum.o - 0x36 (size before relaxing) - *fill* 0x000000000020fc93 0x1 - .rodata.str1.4 - 0x000000000020fc94 0x12c release/obj/hl1_client/util/Checksum.o - .rodata._ZTI8Checksum - 0x000000000020fdc0 0x8 release/obj/hl1_client/util/Checksum.o - 0x000000000020fdc0 typeinfo for Checksum - .rodata._ZTS8Checksum - 0x000000000020fdc8 0xa release/obj/hl1_client/util/Checksum.o - 0x000000000020fdc8 typeinfo name for Checksum - *fill* 0x000000000020fdd2 0x6 - .rodata._ZTV8Checksum - 0x000000000020fdd8 0x10 release/obj/hl1_client/util/Checksum.o - 0x000000000020fdd8 vtable for Checksum - .rodata.cst4 0x0000000000000000 0x4 release/obj/hl1_client/util/Checksum.o - .rodata.str1.1 - 0x000000000020fde8 0xc release/obj/hl1_client/util/LinuxSupport.o - 0x11 (size before relaxing) - .rodata.cst4 0x000000000020fdf4 0x10 release/obj/hl1_client/util/MathUtil.o - 0x2c (size before relaxing) - *fill* 0x000000000020fe04 0x4 - .rodata.cst8 0x000000000020fe08 0x18 release/obj/hl1_client/util/MathUtil.o - 0x30 (size before relaxing) - .rodata.cst4 0x0000000000000000 0xc release/obj/hl1_client/util/Quat.o - .rodata.str1.4 - 0x000000000020fe20 0x28 release/obj/hl1_client/util/Stacktrace.o - .rodata.str1.1 - 0x000000000020fe48 0xa release/obj/hl1_client/util/STLUtil.o - 0x29 (size before relaxing) - .rodata.str1.1 - 0x0000000000000000 0x15 release/obj/hl1_client/util/Tokenizer.o - .rodata.str1.1 - 0x000000000020fe52 0xb release/obj/hl1_client/textrep/TRDescription.o - 0x14 (size before relaxing) - .rodata.str1.1 - 0x000000000020fe5d 0x32 release/obj/hl1_client/textrep/TRFactory.o - 0x3d (size before relaxing) - .rodata.cst4 0x0000000000000000 0x4 ./libparticleMP.a(action_api.o) - *fill* 0x000000000020fe8f 0x1 - .rodata 0x000000000020fe90 0xc8 ./libparticleMP.a(actions.o) - .rodata.cst4 0x000000000020ff58 0x10 ./libparticleMP.a(actions.o) - 0x24 (size before relaxing) - .rodata.cst8 0x000000000020ff68 0x10 ./libparticleMP.a(actions.o) - .rodata 0x000000000020ff78 0x70 ./libparticleMP.a(system.o) - -.rodata1 - *(.rodata1) - -.eh_frame_hdr 0x000000000020ffe8 0x995c - *(.eh_frame_hdr) - .eh_frame_hdr 0x000000000020ffe8 0x995c release/obj/hl1_client/hl/hl_baseentity.o - -.eh_frame 0x0000000000219944 0x28970 - *(.eh_frame) - .eh_frame 0x0000000000219944 0x3c /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - 0x40 (size before relaxing) - .eh_frame 0x0000000000219980 0x1850 release/obj/hl1_client/hl/hl_baseentity.o - 0x1868 (size before relaxing) - .eh_frame 0x000000000021b1d0 0x64 release/obj/hl1_client/hl/hl_objects.o - 0x7c (size before relaxing) - .eh_frame 0x000000000021b234 0x8cc release/obj/hl1_client/hl/hl_weapons.o - 0xdbc (size before relaxing) - .eh_frame 0x000000000021bb00 0xcb4 release/obj/hl1_client/ammo.o - 0xccc (size before relaxing) - .eh_frame 0x000000000021c7b4 0x29c release/obj/hl1_client/cdll_int.o - 0x2b4 (size before relaxing) - .eh_frame 0x000000000021ca50 0xe4 release/obj/hl1_client/ammo_secondary.o - 0x19c (size before relaxing) - .eh_frame 0x000000000021cb34 0xc4 release/obj/hl1_client/ammohistory.o - 0xdc (size before relaxing) - .eh_frame 0x000000000021cbf8 0xf0 release/obj/hl1_client/battery.o - 0x1a8 (size before relaxing) - .eh_frame 0x000000000021cce8 0x198 release/obj/hl1_client/com_weapons.o - 0x1b0 (size before relaxing) - .eh_frame 0x000000000021ce80 0x134 release/obj/hl1_client/death.o - 0x1ec (size before relaxing) - .eh_frame 0x000000000021cfb4 0x184 release/obj/hl1_client/entity.o - 0x19c (size before relaxing) - .eh_frame 0x000000000021d138 0x178 release/obj/hl1_client/ev_common.o - 0x190 (size before relaxing) - .eh_frame 0x000000000021d2b0 0x2c release/obj/hl1_client/events.o - 0x44 (size before relaxing) - .eh_frame 0x000000000021d2dc 0x12c release/obj/hl1_client/flashlight.o - 0x1e4 (size before relaxing) - .eh_frame 0x000000000021d408 0xd0 release/obj/hl1_client/GameStudioModelRenderer.o - 0xe8 (size before relaxing) - .eh_frame 0x000000000021d4d8 0xc0 release/obj/hl1_client/geiger.o - 0x178 (size before relaxing) - .eh_frame 0x000000000021d598 0x3a8 release/obj/hl1_client/hud.o - 0x460 (size before relaxing) - .eh_frame 0x000000000021d940 0x78 release/obj/hl1_client/hud_msg.o - 0x90 (size before relaxing) - .eh_frame 0x000000000021d9b8 0x1b0 release/obj/hl1_client/hud_redraw.o - 0x1c8 (size before relaxing) - .eh_frame 0x000000000021db68 0x748 release/obj/hl1_client/hud_servers.o - 0x760 (size before relaxing) - .eh_frame 0x000000000021e2b0 0x5b8 release/obj/hl1_client/hud_spectator.o - 0x670 (size before relaxing) - .eh_frame 0x000000000021e868 0x44 release/obj/hl1_client/hud_update.o - 0x5c (size before relaxing) - .eh_frame 0x000000000021e8ac 0x2b8 release/obj/hl1_client/in_camera.o - 0x2d0 (size before relaxing) - .eh_frame 0x000000000021eb64 0xb18 release/obj/hl1_client/input.o - 0xb30 (size before relaxing) - .eh_frame 0x000000000021f67c 0x2f4 release/obj/hl1_client/inputw32.o - 0x30c (size before relaxing) - .eh_frame 0x000000000021f970 0x150 release/obj/hl1_client/menu.o - 0x208 (size before relaxing) - .eh_frame 0x000000000021fac0 0x27c release/obj/hl1_client/vgui_SpectatorPanel.o - 0x294 (size before relaxing) - .eh_frame 0x000000000021fd3c 0x16d4 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x1724 (size before relaxing) - .eh_frame 0x0000000000221410 0x1fc release/obj/hl1_client/vgui_teammenu.o - 0x2e4 (size before relaxing) - .eh_frame 0x000000000022160c 0x55c release/obj/hl1_client/view.o - 0x574 (size before relaxing) - .eh_frame 0x0000000000221b68 0x414 release/obj/hl1_client/message.o - 0x4cc (size before relaxing) - .eh_frame 0x0000000000221f7c 0x124 release/obj/hl1_client/parsemsg.o - 0x13c (size before relaxing) - .eh_frame 0x00000000002220a0 0x21c release/obj/hl1_client/saytext.o - 0x2d4 (size before relaxing) - .eh_frame 0x00000000002222bc 0x13c release/obj/hl1_client/status_icons.o - 0x1f4 (size before relaxing) - .eh_frame 0x00000000002223f8 0x1f0 release/obj/hl1_client/statusbar.o - 0x2a8 (size before relaxing) - .eh_frame 0x00000000002225e8 0x12c release/obj/hl1_client/studio_util.o - 0x144 (size before relaxing) - .eh_frame 0x0000000000222714 0x684 release/obj/hl1_client/StudioModelRenderer.o - 0x69c (size before relaxing) - .eh_frame 0x0000000000222d98 0x1f4 release/obj/hl1_client/text_message.o - 0x2ac (size before relaxing) - .eh_frame 0x0000000000222f8c 0xe8 release/obj/hl1_client/train.o - 0x1a0 (size before relaxing) - .eh_frame 0x0000000000223074 0x110 release/obj/hl1_client/tri.o - 0x128 (size before relaxing) - .eh_frame 0x0000000000223184 0x8c release/obj/hl1_client/vgui_int.o - 0xa4 (size before relaxing) - .eh_frame 0x0000000000223210 0xc0 release/obj/hl1_client/cl_util.o - 0xd8 (size before relaxing) - .eh_frame 0x00000000002232d0 0x3e0 release/obj/hl1_client/ev_hldm.o - 0x3f8 (size before relaxing) - .eh_frame 0x00000000002236b0 0x74 release/obj/hl1_client/vgui_MOTDWindow.o - 0x158 (size before relaxing) - .eh_frame 0x0000000000223724 0x22c release/obj/hl1_client/vgui_SchemeManager.o - 0x244 (size before relaxing) - .eh_frame 0x0000000000223950 0x780 release/obj/hl1_client/vgui_ScorePanel.o - 0x804 (size before relaxing) - .eh_frame 0x00000000002240d0 0x158 release/obj/hl1_client/vgui_ClassMenu.o - 0x268 (size before relaxing) - .eh_frame 0x0000000000224228 0xf8 release/obj/hl1_client/vgui_ConsolePanel.o - 0x110 (size before relaxing) - .eh_frame 0x0000000000224320 0x1c0 release/obj/hl1_client/vgui_ControlConfigPanel.o - 0x1d8 (size before relaxing) - .eh_frame 0x00000000002244e0 0x5f4 release/obj/hl1_client/vgui_CustomObjects.o - 0x734 (size before relaxing) - .eh_frame 0x0000000000224ad4 0x38c release/obj/hl1_client/vgui_ServerBrowser.o - 0x3c8 (size before relaxing) - .eh_frame 0x0000000000224e60 0xe0 release/obj/hl1_client/util.o - 0xf8 (size before relaxing) - .eh_frame 0x0000000000224f40 0x2b8 release/obj/hl1_client/health.o - 0x370 (size before relaxing) - .eh_frame 0x00000000002251f8 0x1c4 release/obj/hl1_client/demo.o - 0x1dc (size before relaxing) - .eh_frame 0x00000000002253bc 0x170 release/obj/hl1_client/mod/AvHAcidRocketGun.o - 0x5e8 (size before relaxing) - .eh_frame 0x000000000022552c 0x380 release/obj/hl1_client/mod/AvHAlienAbilities.o - 0x854 (size before relaxing) - .eh_frame 0x00000000002258ac 0x820 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - 0xcd4 (size before relaxing) - .eh_frame 0x00000000002260cc 0x134 release/obj/hl1_client/mod/AvHBileBombGun.o - 0x5c0 (size before relaxing) - .eh_frame 0x0000000000226200 0x1c8 release/obj/hl1_client/mod/AvHBite.o - 0x640 (size before relaxing) - .eh_frame 0x00000000002263c8 0x15c release/obj/hl1_client/mod/AvHBite2.o - 0x5e8 (size before relaxing) - .eh_frame 0x0000000000226524 0x1f8 release/obj/hl1_client/mod/AvHBlink.o - 0x6cc (size before relaxing) - .eh_frame 0x000000000022671c 0x1d8 release/obj/hl1_client/mod/AvHClaws.o - 0x650 (size before relaxing) - .eh_frame 0x00000000002268f4 0x1f0 release/obj/hl1_client/mod/AvHDevour.o - 0x67c (size before relaxing) - .eh_frame 0x0000000000226ae4 0x3c0 release/obj/hl1_client/mod/AvHGrenade.o - 0x824 (size before relaxing) - .eh_frame 0x0000000000226ea4 0x19c release/obj/hl1_client/mod/AvHDivineWind.o - 0x628 (size before relaxing) - .eh_frame 0x0000000000227040 0x22c release/obj/hl1_client/mod/AvHGrenadeGun.o - 0x6b8 (size before relaxing) - .eh_frame 0x000000000022726c 0x144 release/obj/hl1_client/mod/AvHHealingSpray.o - 0x5d0 (size before relaxing) - .eh_frame 0x00000000002273b0 0x220 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - 0x698 (size before relaxing) - .eh_frame 0x00000000002275d0 0x4c8 release/obj/hl1_client/mod/AvHItemInfo.o - 0x4e0 (size before relaxing) - .eh_frame 0x0000000000227a98 0x218 release/obj/hl1_client/mod/AvHKnife.o - 0x67c (size before relaxing) - .eh_frame 0x0000000000227cb0 0x190 release/obj/hl1_client/mod/AvHMachineGun.o - 0x608 (size before relaxing) - .eh_frame 0x0000000000227e40 0x1ac release/obj/hl1_client/mod/AvHMarineWeapon.o - 0x660 (size before relaxing) - .eh_frame 0x0000000000227fec 0x198 release/obj/hl1_client/mod/AvHMetabolize.o - 0x624 (size before relaxing) - .eh_frame 0x0000000000228184 0x22c release/obj/hl1_client/mod/AvHMine.o - 0x6b8 (size before relaxing) - .eh_frame 0x00000000002283b0 0x168 release/obj/hl1_client/mod/AvHParasiteGun.o - 0x5f4 (size before relaxing) - .eh_frame 0x0000000000228518 0x1e0 release/obj/hl1_client/mod/AvHPistol.o - 0x644 (size before relaxing) - .eh_frame 0x00000000002286f8 0x184 release/obj/hl1_client/mod/AvHPrimalScream.o - 0x610 (size before relaxing) - .eh_frame 0x000000000022887c 0x2a0 release/obj/hl1_client/mod/AvHSonicGun.o - 0x718 (size before relaxing) - .eh_frame 0x0000000000228b1c 0x1a4 release/obj/hl1_client/mod/AvHSpikeGun.o - 0x630 (size before relaxing) - .eh_frame 0x0000000000228cc0 0x16c release/obj/hl1_client/mod/AvHSpitGun.o - 0x5f8 (size before relaxing) - .eh_frame 0x0000000000228e2c 0x19c release/obj/hl1_client/mod/AvHSpores.o - 0x628 (size before relaxing) - .eh_frame 0x0000000000228fc8 0x210 release/obj/hl1_client/mod/AvHStomp.o - 0x69c (size before relaxing) - .eh_frame 0x00000000002291d8 0x1c4 release/obj/hl1_client/mod/AvHSwipe.o - 0x63c (size before relaxing) - .eh_frame 0x000000000022939c 0x174 release/obj/hl1_client/mod/AvHUmbraGun.o - 0x600 (size before relaxing) - .eh_frame 0x0000000000229510 0x194 release/obj/hl1_client/mod/AvHWebSpinner.o - 0x620 (size before relaxing) - .eh_frame 0x00000000002296a4 0x1b0 release/obj/hl1_client/mod/AvHWelder.o - 0x628 (size before relaxing) - .eh_frame 0x0000000000229854 0x24c release/obj/hl1_client/mod/AnimationUtil.o - 0x264 (size before relaxing) - .eh_frame 0x0000000000229aa0 0x814 release/obj/hl1_client/mod/AvHActionButtons.o - 0x82c (size before relaxing) - .eh_frame 0x000000000022a2b4 0x23c release/obj/hl1_client/mod/AvHAlienWeapon.o - 0x6f0 (size before relaxing) - .eh_frame 0x000000000022a4f0 0x118 release/obj/hl1_client/mod/AvHAmbientSound.o - 0x130 (size before relaxing) - .eh_frame 0x000000000022a608 0xb4 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - 0xcc (size before relaxing) - .eh_frame 0x000000000022a6bc 0xd4 release/obj/hl1_client/mod/AvHClientUtil.o - 0xec (size before relaxing) - .eh_frame 0x000000000022a790 0x548 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - 0x560 (size before relaxing) - .eh_frame 0x000000000022acd8 0x40 release/obj/hl1_client/mod/AvHConstants.o - 0x58 (size before relaxing) - .eh_frame 0x000000000022ad18 0x254 release/obj/hl1_client/mod/AvHEntityHierarchy.o - 0x26c (size before relaxing) - .eh_frame 0x000000000022af6c 0xf18 release/obj/hl1_client/mod/AvHEvents.o - 0xf30 (size before relaxing) - .eh_frame 0x000000000022be84 0x134 release/obj/hl1_client/mod/AvHFont.o - 0x14c (size before relaxing) - .eh_frame 0x000000000022bfb8 0x108 release/obj/hl1_client/mod/AvHHelp.o - 0x120 (size before relaxing) - .eh_frame 0x000000000022c0c0 0x2bf8 release/obj/hl1_client/mod/AvHHud.o - 0x2cbc (size before relaxing) - .eh_frame 0x000000000022ecb8 0xdb0 release/obj/hl1_client/mod/AvHHudRender.o - 0xe54 (size before relaxing) - .eh_frame 0x000000000022fa68 0xe0 release/obj/hl1_client/mod/AvHLogoutComponent.o - 0x10c (size before relaxing) - .eh_frame 0x000000000022fb48 0x158 release/obj/hl1_client/mod/AvHMapExtents.o - 0x170 (size before relaxing) - .eh_frame 0x000000000022fca0 0x284 release/obj/hl1_client/mod/AvHMiniMap.o - 0x29c (size before relaxing) - .eh_frame 0x000000000022ff24 0x110 release/obj/hl1_client/mod/AvHMovementUtil.o - 0x128 (size before relaxing) - .eh_frame 0x0000000000230034 0x9a4 release/obj/hl1_client/mod/AvHNetworkMessages.o - 0xa94 (size before relaxing) - .eh_frame 0x00000000002309d8 0x78 release/obj/hl1_client/mod/AvHNexusClient.o - 0x90 (size before relaxing) - .eh_frame 0x0000000000230a50 0x31c release/obj/hl1_client/mod/AvHOrder.o - 0x334 (size before relaxing) - .eh_frame 0x0000000000230d6c 0x1b8 release/obj/hl1_client/mod/AvHOverviewControl.o - 0x1d0 (size before relaxing) - .eh_frame 0x0000000000230f24 0x5b4 release/obj/hl1_client/mod/AvHOverviewMap.o - 0x60c (size before relaxing) - .eh_frame 0x00000000002314d8 0xa1c release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0xa34 (size before relaxing) - .eh_frame 0x0000000000231ef4 0x27c release/obj/hl1_client/mod/AvHPieMenuHandler.o - 0x294 (size before relaxing) - .eh_frame 0x0000000000232170 0x254 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - 0x26c (size before relaxing) - .eh_frame 0x00000000002323c4 0x2c release/obj/hl1_client/mod/AvHScriptClient.o - 0x44 (size before relaxing) - .eh_frame 0x00000000002323f0 0x3bc release/obj/hl1_client/mod/AvHScriptManager.o - 0x3d4 (size before relaxing) - .eh_frame 0x00000000002327ac 0x18 release/obj/hl1_client/mod/AvHScriptShared.o - 0x30 (size before relaxing) - .eh_frame 0x00000000002327c4 0x318 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x330 (size before relaxing) - .eh_frame 0x0000000000232adc 0xec release/obj/hl1_client/mod/AvHScrollPanel.o - 0x104 (size before relaxing) - .eh_frame 0x0000000000232bc8 0xc8 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - 0xe0 (size before relaxing) - .eh_frame 0x0000000000232c90 0xa2c release/obj/hl1_client/mod/AvHSharedUtil.o - 0xa70 (size before relaxing) - .eh_frame 0x00000000002336bc 0x31c release/obj/hl1_client/mod/AvHSpecials.o - 0x334 (size before relaxing) - .eh_frame 0x00000000002339d8 0x224 release/obj/hl1_client/mod/AvHSpriteAPI.o - 0x23c (size before relaxing) - .eh_frame 0x0000000000233bfc 0x218 release/obj/hl1_client/mod/AvHTeamHierarchy.o - 0x244 (size before relaxing) - .eh_frame 0x0000000000233e14 0x278 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0x290 (size before relaxing) - .eh_frame 0x000000000023408c 0x270 release/obj/hl1_client/mod/AvHTechNode.o - 0x288 (size before relaxing) - .eh_frame 0x00000000002342fc 0x1a8 release/obj/hl1_client/mod/AvHTechSlotManager.o - 0x1c0 (size before relaxing) - .eh_frame 0x00000000002344a4 0x898 release/obj/hl1_client/mod/AvHTechTree.o - 0x8b0 (size before relaxing) - .eh_frame 0x0000000000234d3c 0x3e8 release/obj/hl1_client/mod/AvHTooltip.o - 0x440 (size before relaxing) - .eh_frame 0x0000000000235124 0x48 release/obj/hl1_client/mod/AvHUIFactory.o - 0x60 (size before relaxing) - .eh_frame 0x000000000023516c 0x1d0 release/obj/hl1_client/mod/AvHVisibleBlipList.o - 0x1e8 (size before relaxing) - .eh_frame 0x000000000023533c 0x9b4 release/obj/hl1_client/mod/CollisionChecker.o - 0x9f8 (size before relaxing) - .eh_frame 0x0000000000235cf0 0x498 release/obj/hl1_client/mod/CollisionUtil.o - 0x4b0 (size before relaxing) - .eh_frame 0x0000000000236188 0x3d8 release/obj/hl1_client/mod/AvHParticleSystem.o - 0x3f0 (size before relaxing) - .eh_frame 0x0000000000236560 0x698 release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x6dc (size before relaxing) - .eh_frame 0x0000000000236bf8 0x74c release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x7a4 (size before relaxing) - .eh_frame 0x0000000000237344 0x90 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - 0x130 (size before relaxing) - .eh_frame 0x00000000002373d4 0x19c release/obj/hl1_client/mod/AvHSelectionHelper.o - 0x20c (size before relaxing) - .eh_frame 0x0000000000237570 0xd0 release/obj/hl1_client/common/interface.o - 0xe8 (size before relaxing) - .eh_frame 0x0000000000237640 0x224 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - 0x318 (size before relaxing) - .eh_frame 0x0000000000237864 0x534 release/obj/hl1_client/game_shared/vgui_grid.o - 0x54c (size before relaxing) - .eh_frame 0x0000000000237d98 0x48 release/obj/hl1_client/game_shared/vgui_helpers.o - 0x60 (size before relaxing) - .eh_frame 0x0000000000237de0 0x290 release/obj/hl1_client/game_shared/vgui_listbox.o - 0x2a8 (size before relaxing) - .eh_frame 0x0000000000238070 0x108 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x120 (size before relaxing) - .eh_frame 0x0000000000238178 0x2d0 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0x2e8 (size before relaxing) - .eh_frame 0x0000000000238448 0x3e0 release/obj/hl1_client/game_shared/vgui_slider2.o - 0x3f8 (size before relaxing) - .eh_frame 0x0000000000238828 0x2b0 release/obj/hl1_client/game_shared/voice_banmgr.o - 0x2c8 (size before relaxing) - .eh_frame 0x0000000000238ad8 0x51c release/obj/hl1_client/game_shared/voice_status.o - 0x6b0 (size before relaxing) - .eh_frame 0x0000000000238ff4 0x1e0 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x298 (size before relaxing) - .eh_frame 0x00000000002391d4 0x2a4 release/obj/hl1_client/server/hl_wpn_glock.o - 0x794 (size before relaxing) - .eh_frame 0x0000000000239478 0x14c release/obj/hl1_client/pm_shared/pm_debug.o - 0x164 (size before relaxing) - .eh_frame 0x00000000002395c4 0x1110 release/obj/hl1_client/pm_shared/pm_shared.o - 0x1128 (size before relaxing) - .eh_frame 0x000000000023a6d4 0x180 release/obj/hl1_client/pm_shared/pm_math.o - 0x198 (size before relaxing) - .eh_frame 0x000000000023a854 0x50 release/obj/hl1_client/ui/bitmappng.o - 0x68 (size before relaxing) - .eh_frame 0x000000000023a8a4 0x11c release/obj/hl1_client/ui/ChatPanel.o - 0x210 (size before relaxing) - .eh_frame 0x000000000023a9c0 0xa4 release/obj/hl1_client/ui/ColoredPanel.o - 0xbc (size before relaxing) - .eh_frame 0x000000000023aa64 0x44 release/obj/hl1_client/ui/DummyPanel.o - 0x5c (size before relaxing) - .eh_frame 0x000000000023aaa8 0x444 release/obj/hl1_client/ui/FadingImageLabel.o - 0x484 (size before relaxing) - .eh_frame 0x000000000023aeec 0xe4 release/obj/hl1_client/ui/loadpng.o - 0xfc (size before relaxing) - .eh_frame 0x000000000023afd0 0x124 release/obj/hl1_client/ui/MarqueeComponent.o - 0x13c (size before relaxing) - .eh_frame 0x000000000023b0f4 0x108 release/obj/hl1_client/ui/MemoryInputStream.o - 0x120 (size before relaxing) - .eh_frame 0x000000000023b1fc 0x2cc release/obj/hl1_client/ui/PieMenu.o - 0x2e4 (size before relaxing) - .eh_frame 0x000000000023b4c8 0xc0c release/obj/hl1_client/ui/PieNode.o - 0xc50 (size before relaxing) - .eh_frame 0x000000000023c0d4 0x214 release/obj/hl1_client/ui/ScoreboardIcon.o - 0x22c (size before relaxing) - .eh_frame 0x000000000023c2e8 0x3b4 release/obj/hl1_client/ui/SliderPlus.o - 0x3cc (size before relaxing) - .eh_frame 0x000000000023c69c 0x15c release/obj/hl1_client/ui/SpritePanel.o - 0x174 (size before relaxing) - .eh_frame 0x000000000023c7f8 0x168 release/obj/hl1_client/ui/UIComponent.o - 0x180 (size before relaxing) - .eh_frame 0x000000000023c960 0xfc4 release/obj/hl1_client/ui/UIComponents.o - 0x102c (size before relaxing) - .eh_frame 0x000000000023d924 0x74 release/obj/hl1_client/ui/UIFactory.o - 0x8c (size before relaxing) - .eh_frame 0x000000000023d998 0x4e0 release/obj/hl1_client/ui/UIHud.o - 0x598 (size before relaxing) - .eh_frame 0x000000000023de78 0x784 release/obj/hl1_client/ui/UIManager.o - 0x7dc (size before relaxing) - .eh_frame 0x000000000023e5fc 0x12c release/obj/hl1_client/ui/UIPieMenu.o - 0x144 (size before relaxing) - .eh_frame 0x000000000023e728 0x230 release/obj/hl1_client/ui/UIUtil.o - 0x248 (size before relaxing) - .eh_frame 0x000000000023e958 0x60 release/obj/hl1_client/ui/InvisiblePanel.o - 0x78 (size before relaxing) - .eh_frame 0x000000000023e9b8 0x1318 release/obj/hl1_client/util/Balance.o - 0x1444 (size before relaxing) - .eh_frame 0x000000000023fcd0 0x37c release/obj/hl1_client/util/Checksum.o - 0x3d4 (size before relaxing) - .eh_frame 0x000000000024004c 0x138 release/obj/hl1_client/util/LinuxSupport.o - 0x150 (size before relaxing) - .eh_frame 0x0000000000240184 0x104 release/obj/hl1_client/util/Mat3.o - 0x11c (size before relaxing) - .eh_frame 0x0000000000240288 0x2d4 release/obj/hl1_client/util/MathUtil.o - 0x2ec (size before relaxing) - .eh_frame 0x000000000024055c 0x178 release/obj/hl1_client/util/Quat.o - 0x190 (size before relaxing) - .eh_frame 0x00000000002406d4 0x14 release/obj/hl1_client/util/Stacktrace.o - 0x2c (size before relaxing) - .eh_frame 0x00000000002406e8 0x36c release/obj/hl1_client/util/STLUtil.o - 0x384 (size before relaxing) - .eh_frame 0x0000000000240a54 0x40 release/obj/hl1_client/util/Tokenizer.o - 0x98 (size before relaxing) - .eh_frame 0x0000000000240a94 0x4a0 release/obj/hl1_client/textrep/TRDescription.o - 0x53c (size before relaxing) - .eh_frame 0x0000000000240f34 0x23c release/obj/hl1_client/textrep/TRFactory.o - 0x2d8 (size before relaxing) - .eh_frame 0x0000000000241170 0x418 ./libparticleMP.a(action_api.o) - 0x444 (size before relaxing) - .eh_frame 0x0000000000241588 0x718 ./libparticleMP.a(actions.o) - 0x744 (size before relaxing) - .eh_frame 0x0000000000241ca0 0x610 ./libparticleMP.a(system.o) - 0x63c (size before relaxing) - .eh_frame 0x00000000002422b0 0x4 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtendS.o - -.gcc_except_table - *(.gcc_except_table .gcc_except_table.*) - -.exception_ranges - *(.exception_ranges .exception_ranges*) - 0x00000000002422b4 . = (ALIGN (0x1000) - ((0x1000 - .) & 0xfff)) - 0x0000000000243c18 . = DATA_SEGMENT_ALIGN (0x1000, 0x1000) - -.eh_frame - *(.eh_frame) - -.gcc_except_table - *(.gcc_except_table .gcc_except_table.*) - -.exception_ranges - *(.exception_ranges .exception_ranges*) - -.tdata - *(.tdata .tdata.* .gnu.linkonce.td.*) - -.tbss - *(.tbss .tbss.* .gnu.linkonce.tb.*) - *(.tcommon) - -.preinit_array - *(.preinit_array) - -.init_array 0x0000000000243c18 0x298 - *(SORT(.init_array.*) SORT(.ctors.*)) - *(.init_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .ctors) - .init_array 0x0000000000243c18 0x4 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - .init_array 0x0000000000243c1c 0x4 release/obj/hl1_client/hl/hl_baseentity.o - .init_array 0x0000000000243c20 0x4 release/obj/hl1_client/hl/hl_objects.o - .init_array 0x0000000000243c24 0x4 release/obj/hl1_client/hl/hl_weapons.o - .init_array 0x0000000000243c28 0x4 release/obj/hl1_client/ammo.o - .init_array 0x0000000000243c2c 0x4 release/obj/hl1_client/cdll_int.o - .init_array 0x0000000000243c30 0x4 release/obj/hl1_client/ammo_secondary.o - .init_array 0x0000000000243c34 0x4 release/obj/hl1_client/ammohistory.o - .init_array 0x0000000000243c38 0x4 release/obj/hl1_client/battery.o - .init_array 0x0000000000243c3c 0x4 release/obj/hl1_client/com_weapons.o - .init_array 0x0000000000243c40 0x4 release/obj/hl1_client/death.o - .init_array 0x0000000000243c44 0x4 release/obj/hl1_client/entity.o - .init_array 0x0000000000243c48 0x4 release/obj/hl1_client/ev_common.o - .init_array 0x0000000000243c4c 0x4 release/obj/hl1_client/events.o - .init_array 0x0000000000243c50 0x4 release/obj/hl1_client/flashlight.o - .init_array 0x0000000000243c54 0x4 release/obj/hl1_client/GameStudioModelRenderer.o - .init_array 0x0000000000243c58 0x4 release/obj/hl1_client/geiger.o - .init_array 0x0000000000243c5c 0x4 release/obj/hl1_client/hud.o - .init_array 0x0000000000243c60 0x4 release/obj/hl1_client/hud_msg.o - .init_array 0x0000000000243c64 0x4 release/obj/hl1_client/hud_redraw.o - .init_array 0x0000000000243c68 0x4 release/obj/hl1_client/hud_servers.o - .init_array 0x0000000000243c6c 0x4 release/obj/hl1_client/hud_spectator.o - .init_array 0x0000000000243c70 0x4 release/obj/hl1_client/hud_update.o - .init_array 0x0000000000243c74 0x4 release/obj/hl1_client/in_camera.o - .init_array 0x0000000000243c78 0x4 release/obj/hl1_client/input.o - .init_array 0x0000000000243c7c 0x4 release/obj/hl1_client/inputw32.o - .init_array 0x0000000000243c80 0x4 release/obj/hl1_client/menu.o - .init_array 0x0000000000243c84 0x4 release/obj/hl1_client/vgui_SpectatorPanel.o - .init_array 0x0000000000243c88 0x4 release/obj/hl1_client/vgui_TeamFortressViewport.o - .init_array 0x0000000000243c8c 0x4 release/obj/hl1_client/vgui_teammenu.o - .init_array 0x0000000000243c90 0x4 release/obj/hl1_client/view.o - .init_array 0x0000000000243c94 0x4 release/obj/hl1_client/message.o - .init_array 0x0000000000243c98 0x4 release/obj/hl1_client/saytext.o - .init_array 0x0000000000243c9c 0x4 release/obj/hl1_client/status_icons.o - .init_array 0x0000000000243ca0 0x4 release/obj/hl1_client/statusbar.o - .init_array 0x0000000000243ca4 0x4 release/obj/hl1_client/studio_util.o - .init_array 0x0000000000243ca8 0x4 release/obj/hl1_client/StudioModelRenderer.o - .init_array 0x0000000000243cac 0x4 release/obj/hl1_client/text_message.o - .init_array 0x0000000000243cb0 0x4 release/obj/hl1_client/train.o - .init_array 0x0000000000243cb4 0x4 release/obj/hl1_client/tri.o - .init_array 0x0000000000243cb8 0x4 release/obj/hl1_client/vgui_int.o - .init_array 0x0000000000243cbc 0x4 release/obj/hl1_client/cl_util.o - .init_array 0x0000000000243cc0 0x4 release/obj/hl1_client/ev_hldm.o - .init_array 0x0000000000243cc4 0x4 release/obj/hl1_client/vgui_MOTDWindow.o - .init_array 0x0000000000243cc8 0x4 release/obj/hl1_client/vgui_SchemeManager.o - .init_array 0x0000000000243ccc 0x4 release/obj/hl1_client/vgui_ScorePanel.o - .init_array 0x0000000000243cd0 0x4 release/obj/hl1_client/vgui_ClassMenu.o - .init_array 0x0000000000243cd4 0x4 release/obj/hl1_client/vgui_ConsolePanel.o - .init_array 0x0000000000243cd8 0x4 release/obj/hl1_client/vgui_CustomObjects.o - .init_array 0x0000000000243cdc 0x4 release/obj/hl1_client/vgui_ServerBrowser.o - .init_array 0x0000000000243ce0 0x4 release/obj/hl1_client/util.o - .init_array 0x0000000000243ce4 0x4 release/obj/hl1_client/health.o - .init_array 0x0000000000243ce8 0x4 release/obj/hl1_client/demo.o - .init_array 0x0000000000243cec 0x4 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .init_array 0x0000000000243cf0 0x4 release/obj/hl1_client/mod/AvHAlienAbilities.o - .init_array 0x0000000000243cf4 0x4 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .init_array 0x0000000000243cf8 0x4 release/obj/hl1_client/mod/AvHBileBombGun.o - .init_array 0x0000000000243cfc 0x4 release/obj/hl1_client/mod/AvHBite.o - .init_array 0x0000000000243d00 0x4 release/obj/hl1_client/mod/AvHBite2.o - .init_array 0x0000000000243d04 0x4 release/obj/hl1_client/mod/AvHBlink.o - .init_array 0x0000000000243d08 0x4 release/obj/hl1_client/mod/AvHClaws.o - .init_array 0x0000000000243d0c 0x4 release/obj/hl1_client/mod/AvHDevour.o - .init_array 0x0000000000243d10 0x4 release/obj/hl1_client/mod/AvHGrenade.o - .init_array 0x0000000000243d14 0x4 release/obj/hl1_client/mod/AvHDivineWind.o - .init_array 0x0000000000243d18 0x4 release/obj/hl1_client/mod/AvHGrenadeGun.o - .init_array 0x0000000000243d1c 0x4 release/obj/hl1_client/mod/AvHHealingSpray.o - .init_array 0x0000000000243d20 0x4 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .init_array 0x0000000000243d24 0x4 release/obj/hl1_client/mod/AvHItemInfo.o - .init_array 0x0000000000243d28 0x4 release/obj/hl1_client/mod/AvHKnife.o - .init_array 0x0000000000243d2c 0x4 release/obj/hl1_client/mod/AvHMachineGun.o - .init_array 0x0000000000243d30 0x4 release/obj/hl1_client/mod/AvHMarineWeapon.o - .init_array 0x0000000000243d34 0x4 release/obj/hl1_client/mod/AvHMetabolize.o - .init_array 0x0000000000243d38 0x4 release/obj/hl1_client/mod/AvHMine.o - .init_array 0x0000000000243d3c 0x4 release/obj/hl1_client/mod/AvHParasiteGun.o - .init_array 0x0000000000243d40 0x4 release/obj/hl1_client/mod/AvHPistol.o - .init_array 0x0000000000243d44 0x4 release/obj/hl1_client/mod/AvHPrimalScream.o - .init_array 0x0000000000243d48 0x4 release/obj/hl1_client/mod/AvHSonicGun.o - .init_array 0x0000000000243d4c 0x4 release/obj/hl1_client/mod/AvHSpikeGun.o - .init_array 0x0000000000243d50 0x4 release/obj/hl1_client/mod/AvHSpitGun.o - .init_array 0x0000000000243d54 0x4 release/obj/hl1_client/mod/AvHSpores.o - .init_array 0x0000000000243d58 0x4 release/obj/hl1_client/mod/AvHStomp.o - .init_array 0x0000000000243d5c 0x4 release/obj/hl1_client/mod/AvHSwipe.o - .init_array 0x0000000000243d60 0x4 release/obj/hl1_client/mod/AvHUmbraGun.o - .init_array 0x0000000000243d64 0x4 release/obj/hl1_client/mod/AvHWebSpinner.o - .init_array 0x0000000000243d68 0x4 release/obj/hl1_client/mod/AvHWelder.o - .init_array 0x0000000000243d6c 0x4 release/obj/hl1_client/mod/AnimationUtil.o - .init_array 0x0000000000243d70 0x4 release/obj/hl1_client/mod/AvHActionButtons.o - .init_array 0x0000000000243d74 0x4 release/obj/hl1_client/mod/AvHAlienWeapon.o - .init_array 0x0000000000243d78 0x4 release/obj/hl1_client/mod/AvHAmbientSound.o - .init_array 0x0000000000243d7c 0x4 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - .init_array 0x0000000000243d80 0x4 release/obj/hl1_client/mod/AvHClientUtil.o - .init_array 0x0000000000243d84 0x4 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .init_array 0x0000000000243d88 0x4 release/obj/hl1_client/mod/AvHConstants.o - .init_array 0x0000000000243d8c 0x4 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .init_array 0x0000000000243d90 0x4 release/obj/hl1_client/mod/AvHEvents.o - .init_array 0x0000000000243d94 0x4 release/obj/hl1_client/mod/AvHFont.o - .init_array 0x0000000000243d98 0x4 release/obj/hl1_client/mod/AvHHelp.o - .init_array 0x0000000000243d9c 0x4 release/obj/hl1_client/mod/AvHHud.o - .init_array 0x0000000000243da0 0x4 release/obj/hl1_client/mod/AvHHudRender.o - .init_array 0x0000000000243da4 0x4 release/obj/hl1_client/mod/AvHLogoutComponent.o - .init_array 0x0000000000243da8 0x4 release/obj/hl1_client/mod/AvHMapExtents.o - .init_array 0x0000000000243dac 0x4 release/obj/hl1_client/mod/AvHMiniMap.o - .init_array 0x0000000000243db0 0x4 release/obj/hl1_client/mod/AvHMovementUtil.o - .init_array 0x0000000000243db4 0x4 release/obj/hl1_client/mod/AvHNetworkMessages.o - .init_array 0x0000000000243db8 0x4 release/obj/hl1_client/mod/AvHOrder.o - .init_array 0x0000000000243dbc 0x4 release/obj/hl1_client/mod/AvHOverviewControl.o - .init_array 0x0000000000243dc0 0x4 release/obj/hl1_client/mod/AvHOverviewMap.o - .init_array 0x0000000000243dc4 0x4 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .init_array 0x0000000000243dc8 0x4 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .init_array 0x0000000000243dcc 0x4 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .init_array 0x0000000000243dd0 0x4 release/obj/hl1_client/mod/AvHScriptClient.o - .init_array 0x0000000000243dd4 0x4 release/obj/hl1_client/mod/AvHScriptManager.o - .init_array 0x0000000000243dd8 0x4 release/obj/hl1_client/mod/AvHScriptShared.o - .init_array 0x0000000000243ddc 0x4 release/obj/hl1_client/mod/AvHScrollHandler.o - .init_array 0x0000000000243de0 0x4 release/obj/hl1_client/mod/AvHScrollPanel.o - .init_array 0x0000000000243de4 0x4 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .init_array 0x0000000000243de8 0x4 release/obj/hl1_client/mod/AvHSharedUtil.o - .init_array 0x0000000000243dec 0x4 release/obj/hl1_client/mod/AvHSpecials.o - .init_array 0x0000000000243df0 0x4 release/obj/hl1_client/mod/AvHSpriteAPI.o - .init_array 0x0000000000243df4 0x4 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .init_array 0x0000000000243df8 0x4 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .init_array 0x0000000000243dfc 0x4 release/obj/hl1_client/mod/AvHTechNode.o - .init_array 0x0000000000243e00 0x4 release/obj/hl1_client/mod/AvHTechSlotManager.o - .init_array 0x0000000000243e04 0x4 release/obj/hl1_client/mod/AvHTechTree.o - .init_array 0x0000000000243e08 0x4 release/obj/hl1_client/mod/AvHTooltip.o - .init_array 0x0000000000243e0c 0x4 release/obj/hl1_client/mod/AvHUIFactory.o - .init_array 0x0000000000243e10 0x4 release/obj/hl1_client/mod/AvHVisibleBlipList.o - .init_array 0x0000000000243e14 0x4 release/obj/hl1_client/mod/CollisionChecker.o - .init_array 0x0000000000243e18 0x4 release/obj/hl1_client/mod/CollisionUtil.o - .init_array 0x0000000000243e1c 0x4 release/obj/hl1_client/mod/AvHParticleSystem.o - .init_array 0x0000000000243e20 0x4 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .init_array 0x0000000000243e24 0x4 release/obj/hl1_client/mod/AvHParticleTemplate.o - .init_array 0x0000000000243e28 0x4 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .init_array 0x0000000000243e2c 0x4 release/obj/hl1_client/mod/AvHSelectionHelper.o - .init_array 0x0000000000243e30 0x4 release/obj/hl1_client/game_shared/voice_banmgr.o - .init_array 0x0000000000243e34 0x4 release/obj/hl1_client/game_shared/voice_status.o - .init_array 0x0000000000243e38 0x4 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .init_array 0x0000000000243e3c 0x4 release/obj/hl1_client/server/hl_wpn_glock.o - .init_array 0x0000000000243e40 0x4 release/obj/hl1_client/pm_shared/pm_shared.o - .init_array 0x0000000000243e44 0x4 release/obj/hl1_client/ui/ChatPanel.o - .init_array 0x0000000000243e48 0x4 release/obj/hl1_client/ui/ColoredPanel.o - .init_array 0x0000000000243e4c 0x4 release/obj/hl1_client/ui/DummyPanel.o - .init_array 0x0000000000243e50 0x4 release/obj/hl1_client/ui/FadingImageLabel.o - .init_array 0x0000000000243e54 0x4 release/obj/hl1_client/ui/MarqueeComponent.o - .init_array 0x0000000000243e58 0x4 release/obj/hl1_client/ui/PieMenu.o - .init_array 0x0000000000243e5c 0x4 release/obj/hl1_client/ui/PieNode.o - .init_array 0x0000000000243e60 0x4 release/obj/hl1_client/ui/ScoreboardIcon.o - .init_array 0x0000000000243e64 0x4 release/obj/hl1_client/ui/SliderPlus.o - .init_array 0x0000000000243e68 0x4 release/obj/hl1_client/ui/SpritePanel.o - .init_array 0x0000000000243e6c 0x4 release/obj/hl1_client/ui/UIComponent.o - .init_array 0x0000000000243e70 0x4 release/obj/hl1_client/ui/UIComponents.o - .init_array 0x0000000000243e74 0x4 release/obj/hl1_client/ui/UIFactory.o - .init_array 0x0000000000243e78 0x4 release/obj/hl1_client/ui/UIHud.o - .init_array 0x0000000000243e7c 0x4 release/obj/hl1_client/ui/UIManager.o - .init_array 0x0000000000243e80 0x4 release/obj/hl1_client/ui/UIPieMenu.o - .init_array 0x0000000000243e84 0x4 release/obj/hl1_client/ui/UIUtil.o - .init_array 0x0000000000243e88 0x4 release/obj/hl1_client/ui/InvisiblePanel.o - .init_array 0x0000000000243e8c 0x4 release/obj/hl1_client/util/Balance.o - .init_array 0x0000000000243e90 0x4 release/obj/hl1_client/util/Checksum.o - .init_array 0x0000000000243e94 0x4 release/obj/hl1_client/util/Mat3.o - .init_array 0x0000000000243e98 0x4 release/obj/hl1_client/util/MathUtil.o - .init_array 0x0000000000243e9c 0x4 release/obj/hl1_client/util/STLUtil.o - .init_array 0x0000000000243ea0 0x4 release/obj/hl1_client/textrep/TRDescription.o - .init_array 0x0000000000243ea4 0x4 release/obj/hl1_client/textrep/TRFactory.o - .init_array 0x0000000000243ea8 0x4 ./libparticleMP.a(actions.o) - .init_array 0x0000000000243eac 0x4 ./libparticleMP.a(system.o) - -.fini_array 0x0000000000243eb0 0x4 - *(SORT(.fini_array.*) SORT(.dtors.*)) - *(.fini_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .dtors) - .fini_array 0x0000000000243eb0 0x4 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - -.ctors - *crtbegin.o(.ctors) - *crtbegin?.o(.ctors) - *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors) - *(SORT(.ctors.*)) - *(.ctors) - -.dtors - *crtbegin.o(.dtors) - *crtbegin?.o(.dtors) - *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors) - *(SORT(.dtors.*)) - *(.dtors) - -.jcr 0x0000000000243eb4 0x4 - *(.jcr) - .jcr 0x0000000000243eb4 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - .jcr 0x0000000000243eb4 0x4 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtendS.o - -.data.rel.ro - *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) - *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) - -.dynamic 0x0000000000243eb8 0x118 - *(.dynamic) - .dynamic 0x0000000000243eb8 0x118 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - 0x0000000000243eb8 _DYNAMIC - -.got 0x0000000000243fd0 0x30 - *(.got) - .got 0x0000000000243fd0 0x30 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *(.igot) - 0x0000000000244ff4 . = DATA_SEGMENT_RELRO_END (., (SIZEOF (.got.plt) >= 0xc)?0xc:0x0) - -.got.plt 0x0000000000244000 0xec - *(.got.plt) - .got.plt 0x0000000000244000 0xec /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - 0x0000000000244000 _GLOBAL_OFFSET_TABLE_ - *(.igot.plt) - -.data 0x0000000000244100 0xa00 - *(.data .data.* .gnu.linkonce.d.*) - .data 0x0000000000244100 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .data 0x0000000000244100 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - .data.rel 0x0000000000244100 0x4 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - 0x0000000000244100 __dso_handle - .data 0x0000000000244104 0x0 release/obj/hl1_client/hl/hl_baseentity.o - .data 0x0000000000244104 0x0 release/obj/hl1_client/hl/hl_objects.o - .data 0x0000000000244104 0x0 release/obj/hl1_client/hl/hl_weapons.o - .data 0x0000000000244104 0x0 release/obj/hl1_client/ammo.o - .data 0x0000000000244104 0x0 release/obj/hl1_client/cdll_int.o - .data 0x0000000000244104 0x0 release/obj/hl1_client/ammo_secondary.o - *fill* 0x0000000000244104 0xc - .data 0x0000000000244110 0x4 release/obj/hl1_client/ammohistory.o - 0x0000000000244110 HISTORY_DRAW_TIME - .data 0x0000000000244114 0x0 release/obj/hl1_client/battery.o - *fill* 0x0000000000244114 0xc - .data 0x0000000000244120 0x400 release/obj/hl1_client/com_weapons.o - 0x0000000000244120 seed_table - .data 0x0000000000244520 0x54 release/obj/hl1_client/death.o - 0x0000000000244520 g_ColorYellow - 0x000000000024452c g_ColorRed - 0x0000000000244538 g_ColorGreen - 0x0000000000244544 g_ColorOrange - 0x0000000000244550 g_ColorBlue - 0x000000000024455c g_ColorWhite - .data 0x0000000000244574 0x4 release/obj/hl1_client/entity.o - 0x0000000000244574 g_iAlive - .data 0x0000000000244578 0x0 release/obj/hl1_client/ev_common.o - .data 0x0000000000244578 0x0 release/obj/hl1_client/events.o - .data 0x0000000000244578 0x0 release/obj/hl1_client/flashlight.o - .data 0x0000000000244578 0xc release/obj/hl1_client/GameStudioModelRenderer.o - 0x0000000000244578 studio - .data 0x0000000000244584 0x0 release/obj/hl1_client/geiger.o - .data 0x0000000000244584 0x0 release/obj/hl1_client/hud.o - .data 0x0000000000244584 0x0 release/obj/hl1_client/hud_msg.o - *fill* 0x0000000000244584 0x1c - .data 0x00000000002445a0 0xe0 release/obj/hl1_client/hud_redraw.o - 0x00000000002445a0 grgLogoFrame - .data 0x0000000000244680 0x0 release/obj/hl1_client/hud_servers.o - .data 0x0000000000244680 0x0 release/obj/hl1_client/hud_spectator.o - .data 0x0000000000244680 0x0 release/obj/hl1_client/hud_update.o - .data 0x0000000000244680 0x0 release/obj/hl1_client/in_camera.o - .data 0x0000000000244680 0x0 release/obj/hl1_client/input.o - .data 0x0000000000244680 0x0 release/obj/hl1_client/inputw32.o - .data 0x0000000000244680 0x0 release/obj/hl1_client/menu.o - .data 0x0000000000244680 0x0 release/obj/hl1_client/vgui_SpectatorPanel.o - .data 0x0000000000244680 0x10c release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x0000000000244680 sTFValidClassInts - 0x00000000002446ac iBuildingCosts - 0x00000000002446c0 kOptionsButtons - 0x00000000002446e0 sTFClassSelection - 0x0000000000244720 sLocalisedClasses - 0x0000000000244760 sTFClasses - .data 0x000000000024478c 0x0 release/obj/hl1_client/vgui_teammenu.o - *fill* 0x000000000024478c 0x4 - .data 0x0000000000244790 0xb4 release/obj/hl1_client/view.o - 0x0000000000244790 v_ipitch_level - 0x00000000002447a4 v_iroll_level - 0x00000000002447b8 v_iyaw_level - 0x00000000002447cc v_ipitch_cycle - 0x00000000002447e0 v_iroll_cycle - 0x00000000002447f4 v_iyaw_cycle - 0x0000000000244810 v_resetCamera - 0x0000000000244820 v_cameraMode - 0x0000000000244830 v_cameraFocusAngle - 0x0000000000244840 v_cameraRelaxAngle - *fill* 0x0000000000244844 0xc - .data 0x0000000000244850 0x4 release/obj/hl1_client/message.o - 0x0000000000244850 g_pCustomName - .data 0x0000000000244854 0x0 release/obj/hl1_client/parsemsg.o - .data 0x0000000000244854 0x0 release/obj/hl1_client/saytext.o - .data 0x0000000000244854 0x0 release/obj/hl1_client/status_icons.o - .data 0x0000000000244854 0x0 release/obj/hl1_client/statusbar.o - .data 0x0000000000244854 0x0 release/obj/hl1_client/studio_util.o - .data 0x0000000000244854 0x0 release/obj/hl1_client/StudioModelRenderer.o - .data 0x0000000000244854 0x0 release/obj/hl1_client/text_message.o - .data 0x0000000000244854 0x0 release/obj/hl1_client/train.o - .data 0x0000000000244854 0x0 release/obj/hl1_client/tri.o - .data 0x0000000000244854 0x0 release/obj/hl1_client/vgui_int.o - *fill* 0x0000000000244854 0xc - .data 0x0000000000244860 0x24 release/obj/hl1_client/cl_util.o - 0x0000000000244860 gTextB - 0x0000000000244870 gTextG - 0x0000000000244880 gTextR - .data 0x0000000000244884 0x14 release/obj/hl1_client/ev_hldm.o - 0x0000000000244884 g_fireAnims2 - 0x0000000000244888 g_fireAnims1 - .data 0x0000000000244898 0x0 release/obj/hl1_client/vgui_MOTDWindow.o - .data 0x0000000000244898 0x0 release/obj/hl1_client/vgui_SchemeManager.o - *fill* 0x0000000000244898 0x8 - .data 0x00000000002448a0 0x9c release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000002448a0 g_ColumnInfo - .data 0x000000000024493c 0x0 release/obj/hl1_client/vgui_ClassMenu.o - .data 0x000000000024493c 0x0 release/obj/hl1_client/vgui_ConsolePanel.o - .data 0x000000000024493c 0x0 release/obj/hl1_client/vgui_ControlConfigPanel.o - .data 0x000000000024493c 0x10 release/obj/hl1_client/vgui_CustomObjects.o - 0x000000000024493c sArrowFilenames - .data 0x000000000024494c 0x0 release/obj/hl1_client/vgui_ServerBrowser.o - .data 0x000000000024494c 0x0 release/obj/hl1_client/util.o - *fill* 0x000000000024494c 0x14 - .data 0x0000000000244960 0x30 release/obj/hl1_client/health.o - 0x0000000000244960 giDmgFlags - .data 0x0000000000244990 0x0 release/obj/hl1_client/demo.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHAlienAbilities.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHBileBombGun.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHBite.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHBite2.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHBlink.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHClaws.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHDevour.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHGrenade.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHDivineWind.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHGrenadeGun.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHHealingSpray.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHItemInfo.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHKnife.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHMachineGun.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHMarineWeapon.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHMetabolize.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHMine.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHParasiteGun.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHPistol.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHPrimalScream.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHSonicGun.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHSpikeGun.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHSpitGun.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHSpores.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHStomp.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHSwipe.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHUmbraGun.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHWebSpinner.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AvHWelder.o - .data 0x0000000000244990 0x0 release/obj/hl1_client/mod/AnimationUtil.o - .data 0x0000000000244990 0xc release/obj/hl1_client/mod/AvHActionButtons.o - 0x0000000000244990 kHotKeyAKA - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHAlienWeapon.o - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHAmbientSound.o - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHAssert.o - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHClientUtil.o - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHConstants.o - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHEvents.o - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHFont.o - .data 0x000000000024499c 0x0 release/obj/hl1_client/mod/AvHHelp.o - .data 0x000000000024499c 0x4 release/obj/hl1_client/mod/AvHHud.o - 0x000000000024499c kOverwatchFlashInterval - .data 0x00000000002449a0 0x4 release/obj/hl1_client/mod/AvHHudRender.o - 0x00000000002449a0 kD3DErrorValue - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHLogoutComponent.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHMapExtents.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHMiniMap.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHMovementUtil.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHNetworkMessages.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHNexusClient.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHNexusTunnelToServer.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHOrder.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHOverviewControl.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHOverviewMap.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHScriptClient.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHScriptManager.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHScriptShared.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHScrollHandler.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHScrollPanel.o - .data 0x00000000002449a4 0x0 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - *fill* 0x00000000002449a4 0x1c - .data 0x00000000002449c0 0x48 release/obj/hl1_client/mod/AvHSharedUtil.o - 0x00000000002449c0 kTeamColors - .data 0x0000000000244a08 0x0 release/obj/hl1_client/mod/AvHSpecials.o - *fill* 0x0000000000244a08 0x8 - .data 0x0000000000244a10 0x21 release/obj/hl1_client/mod/AvHSpriteAPI.o - 0x0000000000244a10 gViewportYScale - 0x0000000000244a20 gViewportXScale - 0x0000000000244a30 gVGUIEnabled - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHTechNode.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHTechSlotManager.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHTechTree.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHTooltip.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHUIFactory.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHVisibleBlipList.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/CollisionChecker.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/CollisionUtil.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHParticleSystem.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHParticleTemplate.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/mod/AvHSelectionHelper.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/common/interface.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/game_shared/vgui_grid.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/game_shared/vgui_helpers.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/game_shared/vgui_listbox.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/game_shared/vgui_loadtga.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .data 0x0000000000244a31 0x0 release/obj/hl1_client/game_shared/vgui_slider2.o - *fill* 0x0000000000244a31 0xf - .data 0x0000000000244a40 0x4 release/obj/hl1_client/game_shared/voice_banmgr.o - 0x0000000000244a40 g_pBanMgrFilename - .data 0x0000000000244a44 0x0 release/obj/hl1_client/game_shared/voice_status.o - .data 0x0000000000244a44 0x0 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .data 0x0000000000244a44 0x0 release/obj/hl1_client/server/hl_wpn_glock.o - .data 0x0000000000244a44 0x0 release/obj/hl1_client/pm_shared/pm_debug.o - *fill* 0x0000000000244a44 0x1c - .data 0x0000000000244a60 0x48 release/obj/hl1_client/pm_shared/pm_shared.o - .data 0x0000000000244aa8 0x4 release/obj/hl1_client/pm_shared/pm_math.o - 0x0000000000244aa8 nanmask - .data 0x0000000000244aac 0x0 release/obj/hl1_client/ui/bitmappng.o - .data 0x0000000000244aac 0x8 release/obj/hl1_client/ui/ChatPanel.o - 0x0000000000244aac ChatPanel::chatModeTeam - 0x0000000000244ab0 ChatPanel::chatModeAll - .data 0x0000000000244ab4 0x0 release/obj/hl1_client/ui/ColoredPanel.o - .data 0x0000000000244ab4 0x0 release/obj/hl1_client/ui/DummyPanel.o - *fill* 0x0000000000244ab4 0xc - .data 0x0000000000244ac0 0x4 release/obj/hl1_client/ui/FadingImageLabel.o - 0x0000000000244ac0 kFrameIndicator - .data 0x0000000000244ac4 0x0 release/obj/hl1_client/ui/loadpng.o - .data 0x0000000000244ac4 0x0 release/obj/hl1_client/ui/MarqueeComponent.o - .data 0x0000000000244ac4 0x0 release/obj/hl1_client/ui/MemoryInputStream.o - .data 0x0000000000244ac4 0x0 release/obj/hl1_client/ui/PieMenu.o - *fill* 0x0000000000244ac4 0x1c - .data 0x0000000000244ae0 0x20 release/obj/hl1_client/ui/PieNode.o - 0x0000000000244ae0 PieNode::mDegrees - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/ScoreboardIcon.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/SliderPlus.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/SpritePanel.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/UIComponent.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/UIComponents.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/UIFactory.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/UIHud.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/UIManager.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/UIPieMenu.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/UIUtil.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/ui/InvisiblePanel.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/util/Balance.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/util/Checksum.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/util/GammaTable.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/util/LinuxSupport.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/util/Mat3.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/util/MathUtil.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/util/Quat.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/util/Stacktrace.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/util/STLUtil.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/util/Tokenizer.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/textrep/TRDescription.o - .data 0x0000000000244b00 0x0 release/obj/hl1_client/textrep/TRFactory.o - .data 0x0000000000244b00 0x0 ./libparticleMP.a(action_api.o) - .data 0x0000000000244b00 0x0 ./libparticleMP.a(actions.o) - .data 0x0000000000244b00 0x0 ./libparticleMP.a(system.o) - .data 0x0000000000244b00 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtendS.o - .data 0x0000000000244b00 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crtn.o - -.tm_clone_table - 0x0000000000244b00 0x0 - .tm_clone_table - 0x0000000000244b00 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - .tm_clone_table - 0x0000000000244b00 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtendS.o - -.data1 - *(.data1) - 0x0000000000244b00 _edata = . - 0x0000000000244b00 PROVIDE (edata, .) - 0x0000000000244b00 . = . - 0x0000000000244b00 __bss_start = . - -.bss 0x0000000000244b00 0x92e30 - *(.dynbss) - .dynbss 0x0000000000000000 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - *(.bss .bss.* .gnu.linkonce.b.*) - .bss 0x0000000000244b00 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crti.o - .bss 0x0000000000244b00 0x1 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - *fill* 0x0000000000244b01 0x1f - .bss 0x0000000000244b20 0x98d release/obj/hl1_client/hl/hl_baseentity.o - 0x0000000000244b20 gSkillData - 0x0000000000244c80 CBasePlayerItem::ItemInfoArray - 0x0000000000245200 gpGlobals - 0x0000000000245220 g_engfuncs - 0x00000000002454a0 g_vecZero - *fill* 0x00000000002454ad 0x3 - .bss 0x00000000002454b0 0x5 release/obj/hl1_client/hl/hl_objects.o - *fill* 0x00000000002454b5 0xb - .bss 0x00000000002454c0 0x99a5 release/obj/hl1_client/hl/hl_weapons.o - 0x00000000002454c0 gBlinkEffectSuccessEventID - 0x00000000002454c4 gCommanderPointsAwardedEventID - 0x00000000002454c8 gSiegeViewHitEventID - 0x00000000002454cc gSiegeHitEventID - 0x00000000002454d0 gPhaseInEventID - 0x00000000002454d4 gTeleportEventID - 0x00000000002454d8 gJetpackEventID - 0x00000000002454e0 gCharge - 0x00000000002456c0 gLeap - 0x00000000002458a0 gStomp - 0x0000000000245a80 gDevour - 0x0000000000245c60 gMetabolize - 0x0000000000245e40 gHealingSpray - 0x0000000000246020 gAcidRocket - 0x0000000000246200 gBileBomb - 0x00000000002463e0 gDivineWind - 0x00000000002465c0 gBlink - 0x00000000002467a0 gUmbra - 0x0000000000246980 gParasite - 0x0000000000246b60 gPrimalScream - 0x0000000000246d40 gWebSpinner - 0x0000000000246f20 gSwipe - 0x0000000000247100 gSpikeGun - 0x00000000002472e0 gBite2 - 0x00000000002474c0 gBite - 0x00000000002476a0 gSpores - 0x0000000000247880 gClaws - 0x0000000000247a60 gSpitGun - 0x0000000000247c40 gMine - 0x0000000000247e20 gWelder - 0x0000000000248000 gGrenade - 0x00000000002481e0 gGrenadeGun - 0x00000000002483c0 gHeavyMachineGun - 0x00000000002485a0 gSonicGun - 0x0000000000248780 gPistol - 0x0000000000248960 gMachineGun - 0x0000000000248b40 gKnife - 0x0000000000248d10 previousorigin - *fill* 0x000000000024ee65 0x1b - .bss 0x000000000024ee80 0x23e9 release/obj/hl1_client/ammo.o - 0x000000000024ee80 ghsprBuckets - 0x000000000024ee90 giABWidth - 0x000000000024eea0 giABHeight - 0x000000000024eeb0 giBucketWidth - 0x000000000024eec0 giBucketHeight - 0x000000000024eec4 g_weaponselect - 0x000000000024eee0 gWR - 0x0000000000251230 gpLastSel - 0x0000000000251240 gpActiveSel - *fill* 0x0000000000251269 0x17 - .bss 0x0000000000251280 0x608d release/obj/hl1_client/cdll_int.o - 0x0000000000251280 g_pcldstAddrs - 0x0000000000251284 g_hTrackerModule - 0x0000000000251288 gViewPort - 0x00000000002512a0 gHUD - 0x00000000002570e0 gEngfuncs - *fill* 0x000000000025730d 0x3 - .bss 0x0000000000257310 0x5 release/obj/hl1_client/ammo_secondary.o - *fill* 0x0000000000257315 0xb - .bss 0x0000000000257320 0xcd release/obj/hl1_client/ammohistory.o - 0x0000000000257320 gHR - *fill* 0x00000000002573ed 0x3 - .bss 0x00000000002573f0 0x5 release/obj/hl1_client/battery.o - *fill* 0x00000000002573f5 0xb - .bss 0x0000000000257400 0x39 release/obj/hl1_client/com_weapons.o - 0x0000000000257400 g_finalstate - 0x0000000000257410 g_runfuncs - *fill* 0x0000000000257439 0x7 - .bss 0x0000000000257440 0x311 release/obj/hl1_client/death.o - 0x0000000000257440 rgDeathNoticeList - *fill* 0x0000000000257751 0xf - .bss 0x0000000000257760 0x29 release/obj/hl1_client/entity.o - 0x0000000000257760 gTempEntClearAllFlag - 0x0000000000257770 gClientTimeLastUpdate - *fill* 0x0000000000257789 0x3 - .bss 0x000000000025778c 0x5 release/obj/hl1_client/ev_common.o - *fill* 0x0000000000257791 0x3 - .bss 0x0000000000257794 0x5 release/obj/hl1_client/events.o - *fill* 0x0000000000257799 0x3 - .bss 0x000000000025779c 0x5 release/obj/hl1_client/flashlight.o - *fill* 0x00000000002577a1 0x1f - .bss 0x00000000002577c0 0x40b1 release/obj/hl1_client/GameStudioModelRenderer.o - 0x00000000002577c0 g_StudioRenderer - *fill* 0x000000000025b871 0x3 - .bss 0x000000000025b874 0x5 release/obj/hl1_client/geiger.o - *fill* 0x000000000025b879 0x7 - .bss 0x000000000025b880 0x15 release/obj/hl1_client/hud.o - 0x000000000025b880 g_lastFOV - 0x000000000025b884 cl_lw - 0x000000000025b888 g_bDuckToggled - *fill* 0x000000000025b895 0x3 - .bss 0x000000000025b898 0x5 release/obj/hl1_client/hud_msg.o - *fill* 0x000000000025b89d 0x3 - .bss 0x000000000025b8a0 0x9 release/obj/hl1_client/hud_redraw.o - *fill* 0x000000000025b8a9 0x17 - .bss 0x000000000025b8c0 0x119 release/obj/hl1_client/hud_servers.o - *fill* 0x000000000025b9d9 0x3 - .bss 0x000000000025b9dc 0x5 release/obj/hl1_client/hud_spectator.o - *fill* 0x000000000025b9e1 0x3 - .bss 0x000000000025b9e4 0x9 release/obj/hl1_client/hud_update.o - 0x000000000025b9e4 in_fov - *fill* 0x000000000025b9ed 0x3 - .bss 0x000000000025b9f0 0x171 release/obj/hl1_client/in_camera.o - 0x000000000025b9f0 cam_mouse - 0x000000000025ba00 cam_old_mouse_y - 0x000000000025ba10 cam_old_mouse_x - 0x000000000025ba20 cam_distancemove - 0x000000000025ba30 iMouseInUse - 0x000000000025ba40 cam_mousemove - 0x000000000025ba50 cam_thirdperson - 0x000000000025ba60 cam_ofs - 0x000000000025ba70 c_mindistance - 0x000000000025ba80 c_maxdistance - 0x000000000025ba90 c_minyaw - 0x000000000025baa0 c_maxyaw - 0x000000000025bab0 c_minpitch - 0x000000000025bac0 c_maxpitch - 0x000000000025bac4 cam_contain - 0x000000000025bad0 cam_idealdist - 0x000000000025bae0 cam_idealpitch - 0x000000000025baf0 cam_idealyaw - 0x000000000025bb00 cam_snapto - 0x000000000025bb10 cam_command - *fill* 0x000000000025bb61 0xf - .bss 0x000000000025bb70 0x2dd release/obj/hl1_client/input.o - 0x000000000025bb70 g_PrevCmds - 0x000000000025bb80 g_kbkeys - 0x000000000025bb90 in_graph - 0x000000000025bba0 in_break - 0x000000000025bbb0 in_score - 0x000000000025bbc0 in_alt1 - 0x000000000025bbd0 in_reload - 0x000000000025bbe0 in_duck - 0x000000000025bbf0 in_down - 0x000000000025bc00 in_up - 0x000000000025bc10 in_attack2 - 0x000000000025bc20 in_attack - 0x000000000025bc30 in_jump - 0x000000000025bc40 in_use - 0x000000000025bc50 in_speed - 0x000000000025bc60 in_strafe - 0x000000000025bc70 in_moveright - 0x000000000025bc80 in_moveleft - 0x000000000025bc90 in_lookdown - 0x000000000025bca0 in_lookup - 0x000000000025bcb0 in_back - 0x000000000025bcc0 in_forward - 0x000000000025bcd0 in_right - 0x000000000025bce0 in_left - 0x000000000025bcf0 in_jlook - 0x000000000025bd00 in_klook - 0x000000000025bd10 in_mlook - 0x000000000025bd1c cl_particleinfo - 0x000000000025bd20 cl_buildmessages - 0x000000000025bd24 cl_dynamiclights - 0x000000000025bd28 cl_forcedefaultfov - 0x000000000025bd2c cl_cmhotkeys - 0x000000000025bd30 cl_highdetail - 0x000000000025bd34 cl_quickselecttime - 0x000000000025bd38 cl_musicdir - 0x000000000025bd3c cl_musicvolume - 0x000000000025bd40 cl_musicdelay - 0x000000000025bd44 cl_musicenabled - 0x000000000025bd48 cl_centerentityid - 0x000000000025bd4c cl_autohelp - 0x000000000025bd50 cl_vsmoothing - 0x000000000025bd60 cl_anglespeedkey - 0x000000000025bd64 cl_pitchspeed - 0x000000000025bd70 cl_yawspeed - 0x000000000025bd74 cl_movespeedkey - 0x000000000025bd80 cl_sidespeed - 0x000000000025bd84 cl_backspeed - 0x000000000025bd90 cl_forwardspeed - 0x000000000025bd94 cl_upspeed - 0x000000000025bda0 cl_pitchdown - 0x000000000025bdb0 cl_pitchup - 0x000000000025bdc0 lookspring - 0x000000000025bdc4 lookstrafe - 0x000000000025bdc8 m_side - 0x000000000025bdcc m_forward - 0x000000000025bdd0 m_yaw - 0x000000000025bdd4 m_pitch - 0x000000000025bde0 in_cancel - 0x000000000025bdf0 in_impulse - 0x000000000025bdf4 gWorldViewAngles - 0x000000000025be00 gTargetPlayerAngles - 0x000000000025be0c gPlayerAngles - 0x000000000025be18 gViewAngles - 0x000000000025be24 gResetViewAngles - *fill* 0x000000000025be4d 0x3 - .bss 0x000000000025be50 0x249 release/obj/hl1_client/inputw32.o - 0x000000000025be50 joy_haspov - 0x000000000025be54 joy_advancedinit - 0x000000000025be60 joy_avail - 0x000000000025be70 joy_wwhack2 - 0x000000000025be74 joy_wwhack1 - 0x000000000025be80 joy_yawsensitivity - 0x000000000025be90 joy_pitchsensitivity - 0x000000000025bea0 joy_sidesensitivity - 0x000000000025beb0 joy_forwardsensitivity - 0x000000000025bec0 joy_yawthreshold - 0x000000000025bed0 joy_pitchthreshold - 0x000000000025bee0 joy_sidethreshold - 0x000000000025bef0 joy_forwardthreshold - 0x000000000025bef4 joy_advaxisv - 0x000000000025bef8 joy_advaxisu - 0x000000000025befc joy_advaxisr - 0x000000000025bf00 joy_advaxisz - 0x000000000025bf04 joy_advaxisy - 0x000000000025bf08 joy_advaxisx - 0x000000000025bf10 joy_advanced - 0x000000000025bf20 joy_name - 0x000000000025bf30 in_joystick - 0x000000000025bf40 s_pJoystick - 0x000000000025bf50 joy_numbuttons - 0x000000000025bf54 joy_id - 0x000000000025bf60 joy_oldpovstate - 0x000000000025bf70 joy_oldbuttonstate - 0x000000000025bf74 pdwRawValue - 0x000000000025bf8c dwControlMap - 0x000000000025bfb0 dwAxisMap - 0x000000000025bfd0 mouseinitialized - 0x000000000025bfe0 mouse_y - 0x000000000025bff0 mouse_x - 0x000000000025c000 my_accum - 0x000000000025c010 mx_accum - 0x000000000025c020 old_mouse_y - 0x000000000025c030 old_mouse_x - 0x000000000025c034 current_pos - 0x000000000025c040 mouse_oldbuttonstate - 0x000000000025c050 mouse_buttons - 0x000000000025c060 sensitivity - 0x000000000025c064 m_filter - 0x000000000025c070 g_iVisibleMouse - *fill* 0x000000000025c099 0x7 - .bss 0x000000000025c0a0 0x405 release/obj/hl1_client/menu.o - 0x000000000025c0a0 g_szPrelocalisedMenuString - 0x000000000025c2a0 g_szMenuString - *fill* 0x000000000025c4a5 0x3 - .bss 0x000000000025c4a8 0x5 release/obj/hl1_client/vgui_SpectatorPanel.o - *fill* 0x000000000025c4ad 0x13 - .bss 0x000000000025c4c0 0x165 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0x000000000025c4c0 g_iUser3 - 0x000000000025c4d0 g_iUser2 - 0x000000000025c4e0 g_iUser1 - 0x000000000025c4f0 g_iTeamNumber - 0x000000000025c500 g_iPlayerClass - *fill* 0x000000000025c625 0x3 - .bss 0x000000000025c628 0x5 release/obj/hl1_client/vgui_teammenu.o - *fill* 0x000000000025c62d 0x13 - .bss 0x000000000025c640 0x1a59 release/obj/hl1_client/view.o - 0x000000000025c640 v_idlescale - 0x000000000025c644 cl_hudcam - 0x000000000025c648 cl_chasedist - 0x000000000025c650 cl_waterdist - 0x000000000025c660 cl_bobup - 0x000000000025c664 cl_bob - 0x000000000025c670 cl_bobcycle - 0x000000000025c680 v_centerspeed - 0x000000000025c690 v_centermove - 0x000000000025c694 scr_ofsz - 0x000000000025c698 scr_ofsy - 0x000000000025c69c scr_ofsx - 0x000000000025c6a0 ev_punchangle - 0x000000000025c6ac gLastCommanderViewpoint - 0x000000000025c6c0 v_lastDistance - 0x000000000025c6d0 v_frametime - 0x000000000025c6e0 v_view_ofs - 0x000000000025c6f0 v_lastAngles - 0x000000000025c700 v_sim_org - 0x000000000025c710 v_cl_angles - 0x000000000025c720 v_angles - 0x000000000025c730 v_origin - *fill* 0x000000000025e099 0x7 - .bss 0x000000000025e0a0 0x431 release/obj/hl1_client/message.o - 0x000000000025e0a0 g_pCustomText - 0x000000000025e4a0 g_pCustomMessage - *fill* 0x000000000025e4d1 0xf - .bss 0x000000000025e4e0 0x834 release/obj/hl1_client/parsemsg.o - *fill* 0x000000000025ed14 0xc - .bss 0x000000000025ed20 0x6a5 release/obj/hl1_client/saytext.o - *fill* 0x000000000025f3c5 0x3 - .bss 0x000000000025f3c8 0x5 release/obj/hl1_client/status_icons.o - *fill* 0x000000000025f3cd 0x13 - .bss 0x000000000025f3e0 0x405 release/obj/hl1_client/statusbar.o - *fill* 0x000000000025f7e5 0x3 - .bss 0x000000000025f7e8 0x5 release/obj/hl1_client/studio_util.o - *fill* 0x000000000025f7ed 0x13 - .bss 0x000000000025f800 0x54f5 release/obj/hl1_client/StudioModelRenderer.o - 0x000000000025f800 IEngineStudio - *fill* 0x0000000000264cf5 0xb - .bss 0x0000000000264d00 0x505 release/obj/hl1_client/text_message.o - *fill* 0x0000000000265205 0x3 - .bss 0x0000000000265208 0x5 release/obj/hl1_client/train.o - *fill* 0x000000000026520d 0x3 - .bss 0x0000000000265210 0x5 release/obj/hl1_client/tri.o - *fill* 0x0000000000265215 0x3 - .bss 0x0000000000265218 0x5 release/obj/hl1_client/vgui_int.o - *fill* 0x000000000026521d 0x3 - .bss 0x0000000000265220 0x5 release/obj/hl1_client/cl_util.o - *fill* 0x0000000000265225 0x1b - .bss 0x0000000000265240 0x45 release/obj/hl1_client/ev_hldm.o - 0x0000000000265240 pBeam2 - 0x0000000000265250 pBeam - 0x0000000000265254 g_iSwing - *fill* 0x0000000000265285 0x3 - .bss 0x0000000000265288 0x5 release/obj/hl1_client/vgui_MOTDWindow.o - *fill* 0x000000000026528d 0x13 - .bss 0x00000000002652a0 0x1f2d release/obj/hl1_client/vgui_SchemeManager.o - 0x00000000002652a0 g_CV_BitmapFonts - *fill* 0x00000000002671cd 0x13 - .bss 0x00000000002671e0 0x10e9 release/obj/hl1_client/vgui_ScorePanel.o - 0x00000000002671e0 g_IsSpectator - 0x0000000000267280 g_TeamInfo - 0x00000000002673c0 g_PlayerExtraInfo - 0x0000000000267e20 g_PlayerInfoList - *fill* 0x00000000002682c9 0x3 - .bss 0x00000000002682cc 0x5 release/obj/hl1_client/vgui_ClassMenu.o - *fill* 0x00000000002682d1 0x3 - .bss 0x00000000002682d4 0x5 release/obj/hl1_client/vgui_ConsolePanel.o - .bss 0x00000000002682d9 0x0 release/obj/hl1_client/vgui_ControlConfigPanel.o - *fill* 0x00000000002682d9 0x7 - .bss 0x00000000002682e0 0x105 release/obj/hl1_client/vgui_CustomObjects.o - *fill* 0x00000000002683e5 0x3 - .bss 0x00000000002683e8 0x5 release/obj/hl1_client/vgui_ServerBrowser.o - *fill* 0x00000000002683ed 0x3 - .bss 0x00000000002683f0 0x11 release/obj/hl1_client/util.o - 0x00000000002683f0 vec3_origin - *fill* 0x0000000000268401 0xf - .bss 0x0000000000268410 0x19 release/obj/hl1_client/health.o - 0x0000000000268410 giDmgWidth - 0x0000000000268420 giDmgHeight - *fill* 0x0000000000268429 0x7 - .bss 0x0000000000268430 0x69 release/obj/hl1_client/demo.o - 0x0000000000268430 gNormMouseY - 0x0000000000268434 gNormMouseX - 0x0000000000268438 gPlaybackViewOrigin - 0x0000000000268450 g_demozoom - 0x0000000000268460 g_demosniperangles - 0x0000000000268470 g_demosniperorg - 0x0000000000268480 g_demosniperdamage - 0x0000000000268490 g_demosniper - .bss 0x0000000000268499 0x1 release/obj/hl1_client/mod/AvHAcidRocketGun.o - *fill* 0x000000000026849a 0x2 - .bss 0x000000000026849c 0x5 release/obj/hl1_client/mod/AvHAlienAbilities.o - *fill* 0x00000000002684a1 0x3 - .bss 0x00000000002684a4 0x5 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .bss 0x00000000002684a9 0x1 release/obj/hl1_client/mod/AvHBileBombGun.o - *fill* 0x00000000002684aa 0x2 - .bss 0x00000000002684ac 0x5 release/obj/hl1_client/mod/AvHBite.o - .bss 0x00000000002684b1 0x1 release/obj/hl1_client/mod/AvHBite2.o - *fill* 0x00000000002684b2 0x2 - .bss 0x00000000002684b4 0x5 release/obj/hl1_client/mod/AvHBlink.o - *fill* 0x00000000002684b9 0x3 - .bss 0x00000000002684bc 0x5 release/obj/hl1_client/mod/AvHClaws.o - .bss 0x00000000002684c1 0x1 release/obj/hl1_client/mod/AvHDevour.o - .bss 0x00000000002684c2 0x1 release/obj/hl1_client/mod/AvHGrenade.o - *fill* 0x00000000002684c3 0x1 - .bss 0x00000000002684c4 0x5 release/obj/hl1_client/mod/AvHDivineWind.o - .bss 0x00000000002684c9 0x1 release/obj/hl1_client/mod/AvHGrenadeGun.o - *fill* 0x00000000002684ca 0x2 - .bss 0x00000000002684cc 0x5 release/obj/hl1_client/mod/AvHHealingSpray.o - .bss 0x00000000002684d1 0x1 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .bss 0x00000000002684d2 0x1 release/obj/hl1_client/mod/AvHItemInfo.o - .bss 0x00000000002684d3 0x1 release/obj/hl1_client/mod/AvHKnife.o - .bss 0x00000000002684d4 0x1 release/obj/hl1_client/mod/AvHMachineGun.o - .bss 0x00000000002684d5 0x1 release/obj/hl1_client/mod/AvHMarineWeapon.o - *fill* 0x00000000002684d6 0x2 - .bss 0x00000000002684d8 0x5 release/obj/hl1_client/mod/AvHMetabolize.o - .bss 0x00000000002684dd 0x1 release/obj/hl1_client/mod/AvHMine.o - .bss 0x00000000002684de 0x1 release/obj/hl1_client/mod/AvHParasiteGun.o - .bss 0x00000000002684df 0x1 release/obj/hl1_client/mod/AvHPistol.o - .bss 0x00000000002684e0 0x1 release/obj/hl1_client/mod/AvHPrimalScream.o - .bss 0x00000000002684e1 0x1 release/obj/hl1_client/mod/AvHSonicGun.o - .bss 0x00000000002684e2 0x1 release/obj/hl1_client/mod/AvHSpikeGun.o - *fill* 0x00000000002684e3 0x1 - .bss 0x00000000002684e4 0x5 release/obj/hl1_client/mod/AvHSpitGun.o - .bss 0x00000000002684e9 0x1 release/obj/hl1_client/mod/AvHSpores.o - *fill* 0x00000000002684ea 0x2 - .bss 0x00000000002684ec 0x5 release/obj/hl1_client/mod/AvHStomp.o - *fill* 0x00000000002684f1 0x3 - .bss 0x00000000002684f4 0x5 release/obj/hl1_client/mod/AvHSwipe.o - .bss 0x00000000002684f9 0x1 release/obj/hl1_client/mod/AvHUmbraGun.o - .bss 0x00000000002684fa 0x1 release/obj/hl1_client/mod/AvHWebSpinner.o - .bss 0x00000000002684fb 0x1 release/obj/hl1_client/mod/AvHWelder.o - .bss 0x00000000002684fc 0x1 release/obj/hl1_client/mod/AnimationUtil.o - *fill* 0x00000000002684fd 0x3 - .bss 0x0000000000268500 0x8d release/obj/hl1_client/mod/AvHActionButtons.o - *fill* 0x000000000026858d 0x3 - .bss 0x0000000000268590 0x5 release/obj/hl1_client/mod/AvHAlienWeapon.o - *fill* 0x0000000000268595 0x3 - .bss 0x0000000000268598 0x5 release/obj/hl1_client/mod/AvHAmbientSound.o - .bss 0x000000000026859d 0x0 release/obj/hl1_client/mod/AvHAssert.o - .bss 0x000000000026859d 0x1 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - *fill* 0x000000000026859e 0x2 - .bss 0x00000000002685a0 0x5 release/obj/hl1_client/mod/AvHClientUtil.o - *fill* 0x00000000002685a5 0x3 - .bss 0x00000000002685a8 0x5 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .bss 0x00000000002685ad 0x1 release/obj/hl1_client/mod/AvHConstants.o - *fill* 0x00000000002685ae 0x2 - .bss 0x00000000002685b0 0x5 release/obj/hl1_client/mod/AvHEntityHierarchy.o - *fill* 0x00000000002685b5 0xb - .bss 0x00000000002685c0 0x3a5 release/obj/hl1_client/mod/AvHEvents.o - 0x00000000002685c0 g_DeadPlayerModels - 0x00000000002686c0 gSelectionHelper - 0x0000000000268730 gJetpackLights - *fill* 0x0000000000268965 0x3 - .bss 0x0000000000268968 0x5 release/obj/hl1_client/mod/AvHFont.o - *fill* 0x000000000026896d 0x3 - .bss 0x0000000000268970 0x5 release/obj/hl1_client/mod/AvHHelp.o - *fill* 0x0000000000268975 0xb - .bss 0x0000000000268980 0x50c49 release/obj/hl1_client/mod/AvHHud.o - 0x0000000000268980 gl_max_size - 0x0000000000268984 r_detailtextures - 0x0000000000268990 texgamma - 0x00000000002689a0 lightgamma - 0x00000000002689a4 s_show - 0x00000000002689a8 gl_d3dflip - 0x00000000002689ac r_drawviewmodel - 0x00000000002689b0 hud_draw - 0x00000000002689b4 cl_rate - 0x00000000002689b8 gl_clear - 0x00000000002689bc gl_overbright - 0x00000000002689c0 gl_monolights - 0x00000000002689c4 gVisibleMouse - 0x00000000002689e0 gMiniMap - 0x00000000002b9540 AvHHud::sShowMap - 0x00000000002b9544 gParticleEditorHandler - 0x00000000002b9560 gCommanderHandler - 0x00000000002b95b4 gScrollHandler - 0x00000000002b95b8 gPieMenuHandler - *fill* 0x00000000002b95c9 0x7 - .bss 0x00000000002b95d0 0x99 release/obj/hl1_client/mod/AvHHudRender.o - 0x00000000002b95d0 gWarpYSpeed - 0x00000000002b95e0 gWarpXSpeed - 0x00000000002b95f0 gWarpYAmount - 0x00000000002b9600 gWarpXAmount - 0x00000000002b9610 gWarpHUDSprites - *fill* 0x00000000002b9669 0x3 - .bss 0x00000000002b966c 0x8d release/obj/hl1_client/mod/AvHLogoutComponent.o - .bss 0x00000000002b96f9 0x1 release/obj/hl1_client/mod/AvHMapExtents.o - *fill* 0x00000000002b96fa 0x2 - .bss 0x00000000002b96fc 0x5 release/obj/hl1_client/mod/AvHMiniMap.o - .bss 0x00000000002b9701 0x1 release/obj/hl1_client/mod/AvHMovementUtil.o - .bss 0x00000000002b9702 0x1 release/obj/hl1_client/mod/AvHNetworkMessages.o - .bss 0x00000000002b9703 0x0 release/obj/hl1_client/mod/AvHNexusClient.o - .bss 0x00000000002b9703 0x0 release/obj/hl1_client/mod/AvHNexusTunnelToServer.o - *fill* 0x00000000002b9703 0x1 - .bss 0x00000000002b9704 0x5 release/obj/hl1_client/mod/AvHOrder.o - *fill* 0x00000000002b9709 0x3 - .bss 0x00000000002b970c 0x5 release/obj/hl1_client/mod/AvHOverviewControl.o - *fill* 0x00000000002b9711 0x3 - .bss 0x00000000002b9714 0x8d release/obj/hl1_client/mod/AvHOverviewMap.o - *fill* 0x00000000002b97a1 0x1f - .bss 0x00000000002b97c0 0xf9 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0x00000000002b97c0 gGenVelParamsHandler - 0x00000000002b97f0 gGenVelParamNumHandler - 0x00000000002b9800 gGenVelShapeHandler - 0x00000000002b9820 gGenVelToggleHandler - 0x00000000002b9830 gDrawModeHandler - 0x00000000002b9840 gMaxParticlesHandler - 0x00000000002b9850 gParticleSystemLifetimeHandler - 0x00000000002b9860 gParticleLifetimeHandler - 0x00000000002b9870 gGenerationRateHandler - 0x00000000002b9880 gScaleHandler - 0x00000000002b9890 gSizeHandler - 0x00000000002b98a0 AvHParticleEditorHandler::sInEditMode - 0x00000000002b98b0 AvHParticleEditorHandler::sEditIndex - *fill* 0x00000000002b98b9 0x7 - .bss 0x00000000002b98c0 0x2d release/obj/hl1_client/mod/AvHPieMenuHandler.o - 0x00000000002b98c0 AvHPieMenuHandler::sPieMenuOpen - 0x00000000002b98d0 AvHPieMenuHandler::sTimeMenuOpened - 0x00000000002b98d4 AvHPieMenuHandler::sTimeLastNodeHighlighted - 0x00000000002b98d8 AvHPieMenuHandler::sPieMenuName - 0x00000000002b98e0 AvHPieMenuHandler::sLastNodeHighlighted - 0x00000000002b98e4 sTheDebugBool - .bss 0x00000000002b98ed 0x1 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - *fill* 0x00000000002b98ee 0x2 - .bss 0x00000000002b98f0 0x5 release/obj/hl1_client/mod/AvHScriptClient.o - *fill* 0x00000000002b98f5 0xb - .bss 0x00000000002b9900 0x15 release/obj/hl1_client/mod/AvHScriptManager.o - 0x00000000002b9900 AvHScriptManager::sSingleton - 0x00000000002b9910 gRunningScript - *fill* 0x00000000002b9915 0x3 - .bss 0x00000000002b9918 0x5 release/obj/hl1_client/mod/AvHScriptShared.o - *fill* 0x00000000002b991d 0x3 - .bss 0x00000000002b9920 0x89 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x00000000002b9920 AvHScrollHandler::sKeyDown - 0x00000000002b9930 AvHScrollHandler::sMouseTwoDown - 0x00000000002b9940 AvHScrollHandler::sMouseOneDown - 0x00000000002b9944 AvHScrollHandler::sLastMouseUpY - 0x00000000002b9948 AvHScrollHandler::sLastMouseUpX - 0x00000000002b994c AvHScrollHandler::sLastMouseDownY - 0x00000000002b9950 AvHScrollHandler::sLastMouseDownX - 0x00000000002b9960 AvHScrollHandler::sLastMouseY - 0x00000000002b9970 AvHScrollHandler::sLastMouseX - 0x00000000002b9980 AvHScrollHandler::sScrollZ - 0x00000000002b9990 AvHScrollHandler::sScrollY - 0x00000000002b99a0 AvHScrollHandler::sScrollX - *fill* 0x00000000002b99a9 0x3 - .bss 0x00000000002b99ac 0x5 release/obj/hl1_client/mod/AvHScrollPanel.o - *fill* 0x00000000002b99b1 0xf - .bss 0x00000000002b99c0 0x9 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - 0x00000000002b99c0 AvHSharedMovementInfo::sMovementInfo - *fill* 0x00000000002b99c9 0x17 - .bss 0x00000000002b99e0 0x59 release/obj/hl1_client/mod/AvHSharedUtil.o - 0x00000000002b99e0 kFTeamColors - 0x00000000002b9a28 gPMDebugPoint - .bss 0x00000000002b9a39 0x1 release/obj/hl1_client/mod/AvHSpecials.o - *fill* 0x00000000002b9a3a 0x6 - .bss 0x00000000002b9a40 0x141 release/obj/hl1_client/mod/AvHSpriteAPI.o - 0x00000000002b9a40 gViewportYOffset - 0x00000000002b9a50 gViewportXOffset - 0x00000000002b9a60 gVGUIOffsetY - 0x00000000002b9a70 gVGUIOffsetX - 0x00000000002b9a80 gColor - 0x00000000002b9a90 gDepthOffset - 0x00000000002b9aa0 gDepth - 0x00000000002b9ab0 gClippingEnabled - 0x00000000002b9ac0 gClipRectY2 - 0x00000000002b9ad0 gClipRectX2 - 0x00000000002b9ae0 gClipRectY1 - 0x00000000002b9af0 gClipRectX1 - 0x00000000002b9b00 gTransform - 0x00000000002b9b20 gDrawMode - 0x00000000002b9b30 gRenderMode - 0x00000000002b9b40 gViewZAxis - 0x00000000002b9b50 gViewYAxis - 0x00000000002b9b60 gViewXAxis - 0x00000000002b9b70 gViewOrigin - *fill* 0x00000000002b9b81 0x3 - .bss 0x00000000002b9b84 0x8d release/obj/hl1_client/mod/AvHTeamHierarchy.o - *fill* 0x00000000002b9c11 0x3 - .bss 0x00000000002b9c14 0x8d release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .bss 0x00000000002b9ca1 0x1 release/obj/hl1_client/mod/AvHTechNode.o - .bss 0x00000000002b9ca2 0x1 release/obj/hl1_client/mod/AvHTechSlotManager.o - .bss 0x00000000002b9ca3 0x1 release/obj/hl1_client/mod/AvHTechTree.o - .bss 0x00000000002b9ca4 0x5 release/obj/hl1_client/mod/AvHTooltip.o - *fill* 0x00000000002b9ca9 0x3 - .bss 0x00000000002b9cac 0x5 release/obj/hl1_client/mod/AvHUIFactory.o - *fill* 0x00000000002b9cb1 0x3 - .bss 0x00000000002b9cb4 0x5 release/obj/hl1_client/mod/AvHVisibleBlipList.o - .bss 0x00000000002b9cb9 0x1 release/obj/hl1_client/mod/CollisionChecker.o - *fill* 0x00000000002b9cba 0x6 - .bss 0x00000000002b9cc0 0x5 release/obj/hl1_client/mod/CollisionUtil.o - 0x00000000002b9cc0 AVH_INFINITY - *fill* 0x00000000002b9cc5 0x3 - .bss 0x00000000002b9cc8 0x5 release/obj/hl1_client/mod/AvHParticleSystem.o - *fill* 0x00000000002b9ccd 0x3 - .bss 0x00000000002b9cd0 0x25 release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x00000000002b9cd0 AvHParticleSystemManager::sInstance - 0x00000000002b9cd4 gParticleTemplateList - .bss 0x00000000002b9cf5 0x1 release/obj/hl1_client/mod/AvHParticleTemplate.o - *fill* 0x00000000002b9cf6 0x2 - .bss 0x00000000002b9cf8 0x5 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - *fill* 0x00000000002b9cfd 0x3 - .bss 0x00000000002b9d00 0x5 release/obj/hl1_client/mod/AvHSelectionHelper.o - *fill* 0x00000000002b9d05 0xb - .bss 0x00000000002b9d10 0x4 release/obj/hl1_client/common/interface.o - 0x00000000002b9d10 InterfaceReg::s_pInterfaceRegs - .bss 0x00000000002b9d14 0x0 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .bss 0x00000000002b9d14 0x0 release/obj/hl1_client/game_shared/vgui_grid.o - .bss 0x00000000002b9d14 0x0 release/obj/hl1_client/game_shared/vgui_helpers.o - .bss 0x00000000002b9d14 0x0 release/obj/hl1_client/game_shared/vgui_listbox.o - .bss 0x00000000002b9d14 0x0 release/obj/hl1_client/game_shared/vgui_loadtga.o - .bss 0x00000000002b9d14 0x0 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .bss 0x00000000002b9d14 0x0 release/obj/hl1_client/game_shared/vgui_slider2.o - .bss 0x00000000002b9d14 0x1 release/obj/hl1_client/game_shared/voice_banmgr.o - *fill* 0x00000000002b9d15 0xb - .bss 0x00000000002b9d20 0x19099 release/obj/hl1_client/game_shared/voice_status.o - 0x00000000002b9d20 g_BannedPlayerPrintCount - 0x00000000002b9d40 g_VoiceStatus - *fill* 0x00000000002d2db9 0x7 - .bss 0x00000000002d2dc0 0xa75 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x00000000002d2dc0 g_OKButtonSignal - 0x00000000002d2dd0 g_bTweakDlgOpen - *fill* 0x00000000002d3835 0xb - .bss 0x00000000002d3840 0x85 release/obj/hl1_client/server/hl_wpn_glock.o - 0x00000000002d3840 sDebugString - .bss 0x00000000002d38c5 0x0 release/obj/hl1_client/pm_shared/pm_debug.o - *fill* 0x00000000002d38c5 0x1b - .bss 0x00000000002d38e0 0x232d release/obj/hl1_client/pm_shared/pm_shared.o - 0x00000000002d38e0 gIsJetpacking - 0x00000000002d3900 g_onladder - 0x00000000002d3980 gCanMove - 0x00000000002d3990 canWallJump - 0x00000000002d39a0 gSurfaceNormal - 0x00000000002d39b0 gOverwatchTargetRange - 0x00000000002d39c0 gPredictedPlayerVOfs - 0x00000000002d39d0 gPredictedPlayerOrigin - 0x00000000002d39e0 pmove - 0x00000000002d39f0 gTopDownViewAngles - 0x00000000002d3a00 gTopDownViewOrigin - 0x00000000002d3a10 vJumpAngles - 0x00000000002d3a20 vJumpOrigin - 0x00000000002d3a30 iJumpSpectator - 0x00000000002d3a34 gHeightLevel - .bss 0x00000000002d5c0d 0x0 release/obj/hl1_client/pm_shared/pm_math.o - .bss 0x00000000002d5c0d 0x0 release/obj/hl1_client/ui/bitmappng.o - *fill* 0x00000000002d5c0d 0x3 - .bss 0x00000000002d5c10 0x5 release/obj/hl1_client/ui/ChatPanel.o - *fill* 0x00000000002d5c15 0x3 - .bss 0x00000000002d5c18 0x5 release/obj/hl1_client/ui/ColoredPanel.o - *fill* 0x00000000002d5c1d 0x3 - .bss 0x00000000002d5c20 0x5 release/obj/hl1_client/ui/DummyPanel.o - *fill* 0x00000000002d5c25 0x3 - .bss 0x00000000002d5c28 0x5 release/obj/hl1_client/ui/FadingImageLabel.o - .bss 0x00000000002d5c2d 0x0 release/obj/hl1_client/ui/loadpng.o - *fill* 0x00000000002d5c2d 0x3 - .bss 0x00000000002d5c30 0x5 release/obj/hl1_client/ui/MarqueeComponent.o - .bss 0x00000000002d5c35 0x0 release/obj/hl1_client/ui/MemoryInputStream.o - *fill* 0x00000000002d5c35 0x3 - .bss 0x00000000002d5c38 0x9 release/obj/hl1_client/ui/PieMenu.o - *fill* 0x00000000002d5c41 0x3 - .bss 0x00000000002d5c44 0x9 release/obj/hl1_client/ui/PieNode.o - 0x00000000002d5c44 gNodeToTrack - .bss 0x00000000002d5c4d 0x1 release/obj/hl1_client/ui/ScoreboardIcon.o - .bss 0x00000000002d5c4e 0x1 release/obj/hl1_client/ui/SliderPlus.o - *fill* 0x00000000002d5c4f 0x1 - .bss 0x00000000002d5c50 0xd release/obj/hl1_client/ui/SpritePanel.o - .bss 0x00000000002d5c5d 0x1 release/obj/hl1_client/ui/UIComponent.o - *fill* 0x00000000002d5c5e 0x2 - .bss 0x00000000002d5c60 0x8d release/obj/hl1_client/ui/UIComponents.o - *fill* 0x00000000002d5ced 0x3 - .bss 0x00000000002d5cf0 0x5 release/obj/hl1_client/ui/UIFactory.o - *fill* 0x00000000002d5cf5 0x3 - .bss 0x00000000002d5cf8 0x5 release/obj/hl1_client/ui/UIHud.o - *fill* 0x00000000002d5cfd 0x3 - .bss 0x00000000002d5d00 0xa1 release/obj/hl1_client/ui/UIManager.o - *fill* 0x00000000002d5da1 0x3 - .bss 0x00000000002d5da4 0xa1 release/obj/hl1_client/ui/UIPieMenu.o - *fill* 0x00000000002d5e45 0x3 - .bss 0x00000000002d5e48 0x8d release/obj/hl1_client/ui/UIUtil.o - *fill* 0x00000000002d5ed5 0x3 - .bss 0x00000000002d5ed8 0x5 release/obj/hl1_client/ui/InvisiblePanel.o - *fill* 0x00000000002d5edd 0x3 - .bss 0x00000000002d5ee0 0xa8 release/obj/hl1_client/util/Balance.o - 0x00000000002d5ee0 NullValueContainer::null_string_map - 0x00000000002d5ef8 NullValueContainer::null_int_map - 0x00000000002d5f10 NullValueContainer::null_float_map - *fill* 0x00000000002d5f88 0x8 - .bss 0x00000000002d5f90 0x9 release/obj/hl1_client/util/Checksum.o - .bss 0x00000000002d5f99 0x0 release/obj/hl1_client/util/GammaTable.o - *fill* 0x00000000002d5f99 0x7 - .bss 0x00000000002d5fa0 0x1000 release/obj/hl1_client/util/LinuxSupport.o - 0x00000000002d5fa0 selectBuf - .bss 0x00000000002d6fa0 0x1 release/obj/hl1_client/util/Mat3.o - .bss 0x00000000002d6fa1 0x1 release/obj/hl1_client/util/MathUtil.o - .bss 0x00000000002d6fa2 0x0 release/obj/hl1_client/util/Quat.o - *fill* 0x00000000002d6fa2 0x1e - .bss 0x00000000002d6fc0 0x800 release/obj/hl1_client/util/Stacktrace.o - .bss 0x00000000002d77c0 0x1 release/obj/hl1_client/util/STLUtil.o - .bss 0x00000000002d77c1 0x0 release/obj/hl1_client/util/Tokenizer.o - .bss 0x00000000002d77c1 0x1 release/obj/hl1_client/textrep/TRDescription.o - .bss 0x00000000002d77c2 0x1 release/obj/hl1_client/textrep/TRFactory.o - .bss 0x00000000002d77c3 0x0 ./libparticleMP.a(action_api.o) - *fill* 0x00000000002d77c3 0x1 - .bss 0x00000000002d77c4 0xd ./libparticleMP.a(actions.o) - *fill* 0x00000000002d77d1 0xf - .bss 0x00000000002d77e0 0x14d ./libparticleMP.a(system.o) - 0x00000000002d77e0 __ps - 0x00000000002d7918 _ParticleState::alist_count - 0x00000000002d791c _ParticleState::group_count - 0x00000000002d7920 _ParticleState::alist_list - 0x00000000002d7924 _ParticleState::group_list - 0x00000000002d7928 ParticleAction::dt - .bss 0x00000000002d792d 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtendS.o - .bss 0x00000000002d792d 0x0 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../i386-linux-gnu/crtn.o - *(COMMON) - 0x00000000002d7930 . = ALIGN ((. != 0x0)?0x4:0x1) - *fill* 0x00000000002d792d 0x3 - 0x00000000002d7930 . = ALIGN (0x4) - 0x00000000002d7930 . = SEGMENT_START ("ldata-segment", .) - 0x00000000002d7930 . = ALIGN (0x4) - 0x00000000002d7930 _end = . - 0x00000000002d7930 PROVIDE (end, .) - 0x00000000002d7930 . = DATA_SEGMENT_END (.) - -.stab - *(.stab) - -.stabstr - *(.stabstr) - -.stab.excl - *(.stab.excl) - -.stab.exclstr - *(.stab.exclstr) - -.stab.index - *(.stab.index) - -.stab.indexstr - *(.stab.indexstr) - -.comment 0x0000000000000000 0x24 - *(.comment) - .comment 0x0000000000000000 0x24 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtbeginS.o - 0x25 (size before relaxing) - .comment 0x0000000000000000 0x25 release/obj/hl1_client/hl/hl_baseentity.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/hl/hl_objects.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/hl/hl_weapons.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ammo.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/cdll_int.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ammo_secondary.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ammohistory.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/battery.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/com_weapons.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/death.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/entity.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ev_common.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/events.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/flashlight.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/GameStudioModelRenderer.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/geiger.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/hud.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/hud_msg.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/hud_redraw.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/hud_servers.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/hud_spectator.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/hud_update.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/in_camera.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/input.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/inputw32.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/menu.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_SpectatorPanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_TeamFortressViewport.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_teammenu.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/view.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/message.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/parsemsg.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/saytext.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/status_icons.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/statusbar.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/studio_util.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/StudioModelRenderer.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/text_message.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/train.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/tri.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_int.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/cl_util.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ev_hldm.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_MOTDWindow.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_SchemeManager.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_ScorePanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_ClassMenu.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_ConsolePanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_ControlConfigPanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_CustomObjects.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/vgui_ServerBrowser.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/health.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/demo.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHAlienAbilities.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHBileBombGun.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHBite.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHBite2.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHBlink.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHClaws.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHDevour.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHGrenade.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHDivineWind.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHGrenadeGun.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHHealingSpray.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHItemInfo.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHKnife.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHMachineGun.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHMarineWeapon.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHMetabolize.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHMine.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHParasiteGun.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHPistol.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHPrimalScream.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHSonicGun.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHSpikeGun.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHSpitGun.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHSpores.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHStomp.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHSwipe.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHUmbraGun.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHWebSpinner.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHWelder.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AnimationUtil.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHActionButtons.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHAlienWeapon.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHAmbientSound.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHAssert.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHClientUtil.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHConstants.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHEvents.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHFont.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHHelp.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHHud.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHHudRender.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHLogoutComponent.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHMapExtents.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHMiniMap.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHMovementUtil.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHNetworkMessages.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHNexusClient.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHNexusTunnelToServer.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHOrder.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHOverviewControl.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHOverviewMap.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHScriptClient.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHScriptManager.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHScriptShared.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHScrollHandler.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHScrollPanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHSharedUtil.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHSpecials.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHSpriteAPI.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHTechNode.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHTechSlotManager.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHTechTree.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHTooltip.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHUIFactory.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHVisibleBlipList.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/CollisionChecker.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/CollisionUtil.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHParticleSystem.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHParticleTemplate.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/mod/AvHSelectionHelper.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/common/interface.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/game_shared/vgui_grid.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/game_shared/vgui_helpers.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/game_shared/vgui_listbox.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/game_shared/vgui_loadtga.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/game_shared/vgui_slider2.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/game_shared/voice_banmgr.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/game_shared/voice_status.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/server/hl_wpn_glock.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/pm_shared/pm_debug.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/pm_shared/pm_shared.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/pm_shared/pm_math.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/bitmappng.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/ChatPanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/ColoredPanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/DummyPanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/FadingImageLabel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/loadpng.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/MarqueeComponent.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/MemoryInputStream.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/PieMenu.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/PieNode.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/ScoreboardIcon.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/SliderPlus.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/SpritePanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/UIComponent.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/UIComponents.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/UIFactory.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/UIHud.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/UIManager.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/UIPieMenu.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/UIUtil.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/ui/InvisiblePanel.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util/Balance.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util/Checksum.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util/GammaTable.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util/LinuxSupport.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util/Mat3.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util/MathUtil.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util/Quat.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util/Stacktrace.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util/STLUtil.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/util/Tokenizer.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/textrep/TRDescription.o - .comment 0x0000000000000000 0x25 release/obj/hl1_client/textrep/TRFactory.o - .comment 0x0000000000000000 0x25 ./libparticleMP.a(action_api.o) - .comment 0x0000000000000000 0x25 ./libparticleMP.a(actions.o) - .comment 0x0000000000000000 0x25 ./libparticleMP.a(system.o) - .comment 0x0000000000000000 0x25 /usr/lib/gcc/x86_64-linux-gnu/4.8/32/crtendS.o - -.debug - *(.debug) - -.line - *(.line) - -.debug_srcinfo - *(.debug_srcinfo) - -.debug_sfnames - *(.debug_sfnames) - -.debug_aranges 0x0000000000000000 0x6ff8 - *(.debug_aranges) - .debug_aranges - 0x0000000000000000 0x298 release/obj/hl1_client/hl/hl_baseentity.o - .debug_aranges - 0x0000000000000298 0x28 release/obj/hl1_client/hl/hl_objects.o - .debug_aranges - 0x00000000000002c0 0x378 release/obj/hl1_client/hl/hl_weapons.o - .debug_aranges - 0x0000000000000638 0x78 release/obj/hl1_client/ammo.o - .debug_aranges - 0x00000000000006b0 0x78 release/obj/hl1_client/cdll_int.o - .debug_aranges - 0x0000000000000728 0x78 release/obj/hl1_client/ammo_secondary.o - .debug_aranges - 0x00000000000007a0 0x28 release/obj/hl1_client/ammohistory.o - .debug_aranges - 0x00000000000007c8 0x78 release/obj/hl1_client/battery.o - .debug_aranges - 0x0000000000000840 0x28 release/obj/hl1_client/com_weapons.o - .debug_aranges - 0x0000000000000868 0x78 release/obj/hl1_client/death.o - .debug_aranges - 0x00000000000008e0 0x28 release/obj/hl1_client/entity.o - .debug_aranges - 0x0000000000000908 0x28 release/obj/hl1_client/ev_common.o - .debug_aranges - 0x0000000000000930 0x28 release/obj/hl1_client/events.o - .debug_aranges - 0x0000000000000958 0x78 release/obj/hl1_client/flashlight.o - .debug_aranges - 0x00000000000009d0 0x38 release/obj/hl1_client/GameStudioModelRenderer.o - .debug_aranges - 0x0000000000000a08 0x78 release/obj/hl1_client/geiger.o - .debug_aranges - 0x0000000000000a80 0xa8 release/obj/hl1_client/hud.o - .debug_aranges - 0x0000000000000b28 0x28 release/obj/hl1_client/hud_msg.o - .debug_aranges - 0x0000000000000b50 0x28 release/obj/hl1_client/hud_redraw.o - .debug_aranges - 0x0000000000000b78 0x28 release/obj/hl1_client/hud_servers.o - .debug_aranges - 0x0000000000000ba0 0x78 release/obj/hl1_client/hud_spectator.o - .debug_aranges - 0x0000000000000c18 0x28 release/obj/hl1_client/hud_update.o - .debug_aranges - 0x0000000000000c40 0x28 release/obj/hl1_client/in_camera.o - .debug_aranges - 0x0000000000000c68 0x38 release/obj/hl1_client/input.o - .debug_aranges - 0x0000000000000ca0 0x28 release/obj/hl1_client/inputw32.o - .debug_aranges - 0x0000000000000cc8 0x78 release/obj/hl1_client/menu.o - .debug_aranges - 0x0000000000000d40 0x58 release/obj/hl1_client/vgui_SpectatorPanel.o - .debug_aranges - 0x0000000000000d98 0x398 release/obj/hl1_client/vgui_TeamFortressViewport.o - .debug_aranges - 0x0000000000001130 0x80 release/obj/hl1_client/vgui_teammenu.o - .debug_aranges - 0x00000000000011b0 0x28 release/obj/hl1_client/view.o - .debug_aranges - 0x00000000000011d8 0x78 release/obj/hl1_client/message.o - .debug_aranges - 0x0000000000001250 0x20 release/obj/hl1_client/parsemsg.o - .debug_aranges - 0x0000000000001270 0x78 release/obj/hl1_client/saytext.o - .debug_aranges - 0x00000000000012e8 0x78 release/obj/hl1_client/status_icons.o - .debug_aranges - 0x0000000000001360 0x78 release/obj/hl1_client/statusbar.o - .debug_aranges - 0x00000000000013d8 0x28 release/obj/hl1_client/studio_util.o - .debug_aranges - 0x0000000000001400 0x28 release/obj/hl1_client/StudioModelRenderer.o - .debug_aranges - 0x0000000000001428 0x80 release/obj/hl1_client/text_message.o - .debug_aranges - 0x00000000000014a8 0x78 release/obj/hl1_client/train.o - .debug_aranges - 0x0000000000001520 0x28 release/obj/hl1_client/tri.o - .debug_aranges - 0x0000000000001548 0x28 release/obj/hl1_client/vgui_int.o - .debug_aranges - 0x0000000000001570 0x28 release/obj/hl1_client/cl_util.o - .debug_aranges - 0x0000000000001598 0x28 release/obj/hl1_client/ev_hldm.o - .debug_aranges - 0x00000000000015c0 0x60 release/obj/hl1_client/vgui_MOTDWindow.o - .debug_aranges - 0x0000000000001620 0x28 release/obj/hl1_client/vgui_SchemeManager.o - .debug_aranges - 0x0000000000001648 0xe8 release/obj/hl1_client/vgui_ScorePanel.o - .debug_aranges - 0x0000000000001730 0x70 release/obj/hl1_client/vgui_ClassMenu.o - .debug_aranges - 0x00000000000017a0 0x28 release/obj/hl1_client/vgui_ConsolePanel.o - .debug_aranges - 0x00000000000017c8 0x20 release/obj/hl1_client/vgui_ControlConfigPanel.o - .debug_aranges - 0x00000000000017e8 0xf0 release/obj/hl1_client/vgui_CustomObjects.o - .debug_aranges - 0x00000000000018d8 0x88 release/obj/hl1_client/vgui_ServerBrowser.o - .debug_aranges - 0x0000000000001960 0x28 release/obj/hl1_client/util.o - .debug_aranges - 0x0000000000001988 0x78 release/obj/hl1_client/health.o - .debug_aranges - 0x0000000000001a00 0x28 release/obj/hl1_client/demo.o - .debug_aranges - 0x0000000000001a28 0x1c0 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .debug_aranges - 0x0000000000001be8 0x1e8 release/obj/hl1_client/mod/AvHAlienAbilities.o - .debug_aranges - 0x0000000000001dd0 0x1d8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .debug_aranges - 0x0000000000001fa8 0x1c8 release/obj/hl1_client/mod/AvHBileBombGun.o - .debug_aranges - 0x0000000000002170 0x1c8 release/obj/hl1_client/mod/AvHBite.o - .debug_aranges - 0x0000000000002338 0x1c8 release/obj/hl1_client/mod/AvHBite2.o - .debug_aranges - 0x0000000000002500 0x1e8 release/obj/hl1_client/mod/AvHBlink.o - .debug_aranges - 0x00000000000026e8 0x1c8 release/obj/hl1_client/mod/AvHClaws.o - .debug_aranges - 0x00000000000028b0 0x1c8 release/obj/hl1_client/mod/AvHDevour.o - .debug_aranges - 0x0000000000002a78 0x1b8 release/obj/hl1_client/mod/AvHGrenade.o - .debug_aranges - 0x0000000000002c30 0x1c8 release/obj/hl1_client/mod/AvHDivineWind.o - .debug_aranges - 0x0000000000002df8 0x1c8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .debug_aranges - 0x0000000000002fc0 0x1c8 release/obj/hl1_client/mod/AvHHealingSpray.o - .debug_aranges - 0x0000000000003188 0x1c0 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .debug_aranges - 0x0000000000003348 0x28 release/obj/hl1_client/mod/AvHItemInfo.o - .debug_aranges - 0x0000000000003370 0x1b8 release/obj/hl1_client/mod/AvHKnife.o - .debug_aranges - 0x0000000000003528 0x1c0 release/obj/hl1_client/mod/AvHMachineGun.o - .debug_aranges - 0x00000000000036e8 0x1d8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .debug_aranges - 0x00000000000038c0 0x1c8 release/obj/hl1_client/mod/AvHMetabolize.o - .debug_aranges - 0x0000000000003a88 0x1c8 release/obj/hl1_client/mod/AvHMine.o - .debug_aranges - 0x0000000000003c50 0x1c8 release/obj/hl1_client/mod/AvHParasiteGun.o - .debug_aranges - 0x0000000000003e18 0x1b8 release/obj/hl1_client/mod/AvHPistol.o - .debug_aranges - 0x0000000000003fd0 0x1c8 release/obj/hl1_client/mod/AvHPrimalScream.o - .debug_aranges - 0x0000000000004198 0x1c0 release/obj/hl1_client/mod/AvHSonicGun.o - .debug_aranges - 0x0000000000004358 0x1c8 release/obj/hl1_client/mod/AvHSpikeGun.o - .debug_aranges - 0x0000000000004520 0x1c8 release/obj/hl1_client/mod/AvHSpitGun.o - .debug_aranges - 0x00000000000046e8 0x1c8 release/obj/hl1_client/mod/AvHSpores.o - .debug_aranges - 0x00000000000048b0 0x1c8 release/obj/hl1_client/mod/AvHStomp.o - .debug_aranges - 0x0000000000004a78 0x1c8 release/obj/hl1_client/mod/AvHSwipe.o - .debug_aranges - 0x0000000000004c40 0x1c8 release/obj/hl1_client/mod/AvHUmbraGun.o - .debug_aranges - 0x0000000000004e08 0x1c8 release/obj/hl1_client/mod/AvHWebSpinner.o - .debug_aranges - 0x0000000000004fd0 0x1c0 release/obj/hl1_client/mod/AvHWelder.o - .debug_aranges - 0x0000000000005190 0x28 release/obj/hl1_client/mod/AnimationUtil.o - .debug_aranges - 0x00000000000051b8 0x30 release/obj/hl1_client/mod/AvHActionButtons.o - .debug_aranges - 0x00000000000051e8 0x1d8 release/obj/hl1_client/mod/AvHAlienWeapon.o - .debug_aranges - 0x00000000000053c0 0x28 release/obj/hl1_client/mod/AvHAmbientSound.o - .debug_aranges - 0x00000000000053e8 0x18 release/obj/hl1_client/mod/AvHAssert.o - .debug_aranges - 0x0000000000005400 0x28 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - .debug_aranges - 0x0000000000005428 0x28 release/obj/hl1_client/mod/AvHClientUtil.o - .debug_aranges - 0x0000000000005450 0x28 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .debug_aranges - 0x0000000000005478 0x28 release/obj/hl1_client/mod/AvHConstants.o - .debug_aranges - 0x00000000000054a0 0x40 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .debug_aranges - 0x00000000000054e0 0x38 release/obj/hl1_client/mod/AvHEvents.o - .debug_aranges - 0x0000000000005518 0x28 release/obj/hl1_client/mod/AvHFont.o - .debug_aranges - 0x0000000000005540 0x28 release/obj/hl1_client/mod/AvHHelp.o - .debug_aranges - 0x0000000000005568 0xe8 release/obj/hl1_client/mod/AvHHud.o - .debug_aranges - 0x0000000000005650 0x48 release/obj/hl1_client/mod/AvHHudRender.o - .debug_aranges - 0x0000000000005698 0x48 release/obj/hl1_client/mod/AvHLogoutComponent.o - .debug_aranges - 0x00000000000056e0 0x28 release/obj/hl1_client/mod/AvHMapExtents.o - .debug_aranges - 0x0000000000005708 0x28 release/obj/hl1_client/mod/AvHMiniMap.o - .debug_aranges - 0x0000000000005730 0x28 release/obj/hl1_client/mod/AvHMovementUtil.o - .debug_aranges - 0x0000000000005758 0x50 release/obj/hl1_client/mod/AvHNetworkMessages.o - .debug_aranges - 0x00000000000057a8 0x20 release/obj/hl1_client/mod/AvHNexusClient.o - .debug_aranges - 0x00000000000057c8 0x30 release/obj/hl1_client/mod/AvHOrder.o - .debug_aranges - 0x00000000000057f8 0x80 release/obj/hl1_client/mod/AvHOverviewControl.o - .debug_aranges - 0x0000000000005878 0x60 release/obj/hl1_client/mod/AvHOverviewMap.o - .debug_aranges - 0x00000000000058d8 0xc0 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .debug_aranges - 0x0000000000005998 0x28 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .debug_aranges - 0x00000000000059c0 0x28 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .debug_aranges - 0x00000000000059e8 0x28 release/obj/hl1_client/mod/AvHScriptClient.o - .debug_aranges - 0x0000000000005a10 0x40 release/obj/hl1_client/mod/AvHScriptManager.o - .debug_aranges - 0x0000000000005a50 0x20 release/obj/hl1_client/mod/AvHScriptShared.o - .debug_aranges - 0x0000000000005a70 0x58 release/obj/hl1_client/mod/AvHScrollHandler.o - .debug_aranges - 0x0000000000005ac8 0x40 release/obj/hl1_client/mod/AvHScrollPanel.o - .debug_aranges - 0x0000000000005b08 0x30 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .debug_aranges - 0x0000000000005b38 0x40 release/obj/hl1_client/mod/AvHSharedUtil.o - .debug_aranges - 0x0000000000005b78 0x28 release/obj/hl1_client/mod/AvHSpecials.o - .debug_aranges - 0x0000000000005ba0 0x28 release/obj/hl1_client/mod/AvHSpriteAPI.o - .debug_aranges - 0x0000000000005bc8 0x30 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .debug_aranges - 0x0000000000005bf8 0x50 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .debug_aranges - 0x0000000000005c48 0x28 release/obj/hl1_client/mod/AvHTechNode.o - .debug_aranges - 0x0000000000005c70 0x30 release/obj/hl1_client/mod/AvHTechSlotManager.o - .debug_aranges - 0x0000000000005ca0 0x68 release/obj/hl1_client/mod/AvHTechTree.o - .debug_aranges - 0x0000000000005d08 0x30 release/obj/hl1_client/mod/AvHTooltip.o - .debug_aranges - 0x0000000000005d38 0x28 release/obj/hl1_client/mod/AvHUIFactory.o - .debug_aranges - 0x0000000000005d60 0x28 release/obj/hl1_client/mod/AvHVisibleBlipList.o - .debug_aranges - 0x0000000000005d88 0x100 release/obj/hl1_client/mod/CollisionChecker.o - .debug_aranges - 0x0000000000005e88 0x28 release/obj/hl1_client/mod/CollisionUtil.o - .debug_aranges - 0x0000000000005eb0 0x28 release/obj/hl1_client/mod/AvHParticleSystem.o - .debug_aranges - 0x0000000000005ed8 0x58 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .debug_aranges - 0x0000000000005f30 0x48 release/obj/hl1_client/mod/AvHParticleTemplate.o - .debug_aranges - 0x0000000000005f78 0x38 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .debug_aranges - 0x0000000000005fb0 0x38 release/obj/hl1_client/mod/AvHSelectionHelper.o - .debug_aranges - 0x0000000000005fe8 0x20 release/obj/hl1_client/common/interface.o - .debug_aranges - 0x0000000000006008 0x78 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .debug_aranges - 0x0000000000006080 0x20 release/obj/hl1_client/game_shared/vgui_grid.o - .debug_aranges - 0x00000000000060a0 0x20 release/obj/hl1_client/game_shared/vgui_helpers.o - .debug_aranges - 0x00000000000060c0 0x28 release/obj/hl1_client/game_shared/vgui_listbox.o - .debug_aranges - 0x00000000000060e8 0x58 release/obj/hl1_client/game_shared/vgui_loadtga.o - .debug_aranges - 0x0000000000006140 0x28 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .debug_aranges - 0x0000000000006168 0x20 release/obj/hl1_client/game_shared/vgui_slider2.o - .debug_aranges - 0x0000000000006188 0x28 release/obj/hl1_client/game_shared/voice_banmgr.o - .debug_aranges - 0x00000000000061b0 0xc0 release/obj/hl1_client/game_shared/voice_status.o - .debug_aranges - 0x0000000000006270 0x60 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .debug_aranges - 0x00000000000062d0 0x218 release/obj/hl1_client/server/hl_wpn_glock.o - .debug_aranges - 0x00000000000064e8 0x20 release/obj/hl1_client/pm_shared/pm_debug.o - .debug_aranges - 0x0000000000006508 0x28 release/obj/hl1_client/pm_shared/pm_shared.o - .debug_aranges - 0x0000000000006530 0x20 release/obj/hl1_client/pm_shared/pm_math.o - .debug_aranges - 0x0000000000006550 0x20 release/obj/hl1_client/ui/bitmappng.o - .debug_aranges - 0x0000000000006570 0x80 release/obj/hl1_client/ui/ChatPanel.o - .debug_aranges - 0x00000000000065f0 0x28 release/obj/hl1_client/ui/ColoredPanel.o - .debug_aranges - 0x0000000000006618 0x28 release/obj/hl1_client/ui/DummyPanel.o - .debug_aranges - 0x0000000000006640 0x38 release/obj/hl1_client/ui/FadingImageLabel.o - .debug_aranges - 0x0000000000006678 0x20 release/obj/hl1_client/ui/loadpng.o - .debug_aranges - 0x0000000000006698 0x28 release/obj/hl1_client/ui/MarqueeComponent.o - .debug_aranges - 0x00000000000066c0 0x20 release/obj/hl1_client/ui/MemoryInputStream.o - .debug_aranges - 0x00000000000066e0 0x28 release/obj/hl1_client/ui/PieMenu.o - .debug_aranges - 0x0000000000006708 0x30 release/obj/hl1_client/ui/PieNode.o - .debug_aranges - 0x0000000000006738 0x30 release/obj/hl1_client/ui/ScoreboardIcon.o - .debug_aranges - 0x0000000000006768 0x98 release/obj/hl1_client/ui/SliderPlus.o - .debug_aranges - 0x0000000000006800 0x28 release/obj/hl1_client/ui/SpritePanel.o - .debug_aranges - 0x0000000000006828 0x30 release/obj/hl1_client/ui/UIComponent.o - .debug_aranges - 0x0000000000006858 0x2b0 release/obj/hl1_client/ui/UIComponents.o - .debug_aranges - 0x0000000000006b08 0x30 release/obj/hl1_client/ui/UIFactory.o - .debug_aranges - 0x0000000000006b38 0x68 release/obj/hl1_client/ui/UIHud.o - .debug_aranges - 0x0000000000006ba0 0x40 release/obj/hl1_client/ui/UIManager.o - .debug_aranges - 0x0000000000006be0 0x28 release/obj/hl1_client/ui/UIPieMenu.o - .debug_aranges - 0x0000000000006c08 0x28 release/obj/hl1_client/ui/UIUtil.o - .debug_aranges - 0x0000000000006c30 0x28 release/obj/hl1_client/ui/InvisiblePanel.o - .debug_aranges - 0x0000000000006c58 0x1d0 release/obj/hl1_client/util/Balance.o - .debug_aranges - 0x0000000000006e28 0x48 release/obj/hl1_client/util/Checksum.o - .debug_aranges - 0x0000000000006e70 0x20 release/obj/hl1_client/util/LinuxSupport.o - .debug_aranges - 0x0000000000006e90 0x28 release/obj/hl1_client/util/Mat3.o - .debug_aranges - 0x0000000000006eb8 0x28 release/obj/hl1_client/util/MathUtil.o - .debug_aranges - 0x0000000000006ee0 0x20 release/obj/hl1_client/util/Quat.o - .debug_aranges - 0x0000000000006f00 0x20 release/obj/hl1_client/util/Stacktrace.o - .debug_aranges - 0x0000000000006f20 0x30 release/obj/hl1_client/util/STLUtil.o - .debug_aranges - 0x0000000000006f50 0x28 release/obj/hl1_client/util/Tokenizer.o - .debug_aranges - 0x0000000000006f78 0x40 release/obj/hl1_client/textrep/TRDescription.o - .debug_aranges - 0x0000000000006fb8 0x40 release/obj/hl1_client/textrep/TRFactory.o - -.debug_pubnames - *(.debug_pubnames) - -.debug_info 0x0000000000000000 0x9c73ae - *(.debug_info .gnu.linkonce.wi.*) - .debug_info 0x0000000000000000 0x118b8 release/obj/hl1_client/hl/hl_baseentity.o - .debug_info 0x00000000000118b8 0x9ded release/obj/hl1_client/hl/hl_objects.o - .debug_info 0x000000000001b6a5 0x1de9b release/obj/hl1_client/hl/hl_weapons.o - .debug_info 0x0000000000039540 0x1579e release/obj/hl1_client/ammo.o - .debug_info 0x000000000004ecde 0x12370 release/obj/hl1_client/cdll_int.o - .debug_info 0x000000000006104e 0xa917 release/obj/hl1_client/ammo_secondary.o - .debug_info 0x000000000006b965 0xaec7 release/obj/hl1_client/ammohistory.o - .debug_info 0x000000000007682c 0xab63 release/obj/hl1_client/battery.o - .debug_info 0x000000000008138f 0xa240 release/obj/hl1_client/com_weapons.o - .debug_info 0x000000000008b5cf 0xc338 release/obj/hl1_client/death.o - .debug_info 0x0000000000097907 0xf5f8 release/obj/hl1_client/entity.o - .debug_info 0x00000000000a6eff 0xa0e3 release/obj/hl1_client/ev_common.o - .debug_info 0x00000000000b0fe2 0x95db release/obj/hl1_client/events.o - .debug_info 0x00000000000ba5bd 0xac81 release/obj/hl1_client/flashlight.o - .debug_info 0x00000000000c523e 0xac19 release/obj/hl1_client/GameStudioModelRenderer.o - .debug_info 0x00000000000cfe57 0x9cbf release/obj/hl1_client/geiger.o - .debug_info 0x00000000000d9b16 0xd7e6 release/obj/hl1_client/hud.o - .debug_info 0x00000000000e72fc 0xa07e release/obj/hl1_client/hud_msg.o - .debug_info 0x00000000000f137a 0xb7af release/obj/hl1_client/hud_redraw.o - .debug_info 0x00000000000fcb29 0xcc63 release/obj/hl1_client/hud_servers.o - .debug_info 0x000000000010978c 0x1490b release/obj/hl1_client/hud_spectator.o - .debug_info 0x000000000011e097 0xa094 release/obj/hl1_client/hud_update.o - .debug_info 0x000000000012812b 0xb989 release/obj/hl1_client/in_camera.o - .debug_info 0x0000000000133ab4 0x18888 release/obj/hl1_client/input.o - .debug_info 0x000000000014c33c 0xb882 release/obj/hl1_client/inputw32.o - .debug_info 0x0000000000157bbe 0xbafa release/obj/hl1_client/menu.o - .debug_info 0x00000000001636b8 0xddac release/obj/hl1_client/vgui_SpectatorPanel.o - .debug_info 0x0000000000171464 0x1e0f9 release/obj/hl1_client/vgui_TeamFortressViewport.o - .debug_info 0x000000000018f55d 0xdb4d release/obj/hl1_client/vgui_teammenu.o - .debug_info 0x000000000019d0aa 0xe9e1 release/obj/hl1_client/view.o - .debug_info 0x00000000001aba8b 0xc8a5 release/obj/hl1_client/message.o - .debug_info 0x00000000001b8330 0x3b9 release/obj/hl1_client/parsemsg.o - .debug_info 0x00000000001b86e9 0xd785 release/obj/hl1_client/saytext.o - .debug_info 0x00000000001c5e6e 0xadc9 release/obj/hl1_client/status_icons.o - .debug_info 0x00000000001d0c37 0xb0cb release/obj/hl1_client/statusbar.o - .debug_info 0x00000000001dbd02 0xa3d3 release/obj/hl1_client/studio_util.o - .debug_info 0x00000000001e60d5 0xeba0 release/obj/hl1_client/StudioModelRenderer.o - .debug_info 0x00000000001f4c75 0xe743 release/obj/hl1_client/text_message.o - .debug_info 0x00000000002033b8 0x9f89 release/obj/hl1_client/train.o - .debug_info 0x000000000020d341 0x12ffd release/obj/hl1_client/tri.o - .debug_info 0x000000000022033e 0xab52 release/obj/hl1_client/vgui_int.o - .debug_info 0x000000000022ae90 0x9b88 release/obj/hl1_client/cl_util.o - .debug_info 0x0000000000234a18 0xf031 release/obj/hl1_client/ev_hldm.o - .debug_info 0x0000000000243a49 0xbd27 release/obj/hl1_client/vgui_MOTDWindow.o - .debug_info 0x000000000024f770 0xb6cd release/obj/hl1_client/vgui_SchemeManager.o - .debug_info 0x000000000025ae3d 0x1933f release/obj/hl1_client/vgui_ScorePanel.o - .debug_info 0x000000000027417c 0xd5ca release/obj/hl1_client/vgui_ClassMenu.o - .debug_info 0x0000000000281746 0x9f91 release/obj/hl1_client/vgui_ConsolePanel.o - .debug_info 0x000000000028b6d7 0x1dfb release/obj/hl1_client/vgui_ControlConfigPanel.o - .debug_info 0x000000000028d4d2 0xff49 release/obj/hl1_client/vgui_CustomObjects.o - .debug_info 0x000000000029d41b 0xe84b release/obj/hl1_client/vgui_ServerBrowser.o - .debug_info 0x00000000002abc66 0xa7dc release/obj/hl1_client/util.o - .debug_info 0x00000000002b6442 0xc683 release/obj/hl1_client/health.o - .debug_info 0x00000000002c2ac5 0xa38f release/obj/hl1_client/demo.o - .debug_info 0x00000000002cce54 0xbaf9 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .debug_info 0x00000000002d894d 0xd8b2 release/obj/hl1_client/mod/AvHAlienAbilities.o - .debug_info 0x00000000002e61ff 0x15660 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .debug_info 0x00000000002fb85f 0xba71 release/obj/hl1_client/mod/AvHBileBombGun.o - .debug_info 0x00000000003072d0 0xfb57 release/obj/hl1_client/mod/AvHBite.o - .debug_info 0x0000000000316e27 0xbb66 release/obj/hl1_client/mod/AvHBite2.o - .debug_info 0x000000000032298d 0xdf12 release/obj/hl1_client/mod/AvHBlink.o - .debug_info 0x000000000033089f 0xfb1f release/obj/hl1_client/mod/AvHClaws.o - .debug_info 0x00000000003403be 0xbec6 release/obj/hl1_client/mod/AvHDevour.o - .debug_info 0x000000000034c284 0xc640 release/obj/hl1_client/mod/AvHGrenade.o - .debug_info 0x00000000003588c4 0xfa75 release/obj/hl1_client/mod/AvHDivineWind.o - .debug_info 0x0000000000368339 0xbd29 release/obj/hl1_client/mod/AvHGrenadeGun.o - .debug_info 0x0000000000374062 0xf8e4 release/obj/hl1_client/mod/AvHHealingSpray.o - .debug_info 0x0000000000383946 0xbc05 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .debug_info 0x000000000038f54b 0xb9b2 release/obj/hl1_client/mod/AvHItemInfo.o - .debug_info 0x000000000039aefd 0xba32 release/obj/hl1_client/mod/AvHKnife.o - .debug_info 0x00000000003a692f 0xb88d release/obj/hl1_client/mod/AvHMachineGun.o - .debug_info 0x00000000003b21bc 0xa962 release/obj/hl1_client/mod/AvHMarineWeapon.o - .debug_info 0x00000000003bcb1e 0x10ba5 release/obj/hl1_client/mod/AvHMetabolize.o - .debug_info 0x00000000003cd6c3 0xbc9f release/obj/hl1_client/mod/AvHMine.o - .debug_info 0x00000000003d9362 0xbae0 release/obj/hl1_client/mod/AvHParasiteGun.o - .debug_info 0x00000000003e4e42 0xb9a6 release/obj/hl1_client/mod/AvHPistol.o - .debug_info 0x00000000003f07e8 0xbbc4 release/obj/hl1_client/mod/AvHPrimalScream.o - .debug_info 0x00000000003fc3ac 0xc397 release/obj/hl1_client/mod/AvHSonicGun.o - .debug_info 0x0000000000408743 0xc176 release/obj/hl1_client/mod/AvHSpikeGun.o - .debug_info 0x00000000004148b9 0xfa0a release/obj/hl1_client/mod/AvHSpitGun.o - .debug_info 0x00000000004242c3 0xbbab release/obj/hl1_client/mod/AvHSpores.o - .debug_info 0x000000000042fe6e 0xfe25 release/obj/hl1_client/mod/AvHStomp.o - .debug_info 0x000000000043fc93 0xfb97 release/obj/hl1_client/mod/AvHSwipe.o - .debug_info 0x000000000044f82a 0xbb34 release/obj/hl1_client/mod/AvHUmbraGun.o - .debug_info 0x000000000045b35e 0xbc8e release/obj/hl1_client/mod/AvHWebSpinner.o - .debug_info 0x0000000000466fec 0xb9f8 release/obj/hl1_client/mod/AvHWelder.o - .debug_info 0x00000000004729e4 0x8dcc release/obj/hl1_client/mod/AnimationUtil.o - .debug_info 0x000000000047b7b0 0x148c7 release/obj/hl1_client/mod/AvHActionButtons.o - .debug_info 0x0000000000490077 0x10999 release/obj/hl1_client/mod/AvHAlienWeapon.o - .debug_info 0x00000000004a0a10 0xc486 release/obj/hl1_client/mod/AvHAmbientSound.o - .debug_info 0x00000000004ace96 0x2ea release/obj/hl1_client/mod/AvHAssert.o - .debug_info 0x00000000004ad180 0x4b2e release/obj/hl1_client/mod/AvHBaseInfoLocation.o - .debug_info 0x00000000004b1cae 0xc78e release/obj/hl1_client/mod/AvHClientUtil.o - .debug_info 0x00000000004be43c 0x188ce release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .debug_info 0x00000000004d6d0a 0x25cb release/obj/hl1_client/mod/AvHConstants.o - .debug_info 0x00000000004d92d5 0xe56a release/obj/hl1_client/mod/AvHEntityHierarchy.o - .debug_info 0x00000000004e783f 0x1c6b6 release/obj/hl1_client/mod/AvHEvents.o - .debug_info 0x0000000000503ef5 0xa847 release/obj/hl1_client/mod/AvHFont.o - .debug_info 0x000000000050e73c 0xbf7c release/obj/hl1_client/mod/AvHHelp.o - .debug_info 0x000000000051a6b8 0x7bf13 release/obj/hl1_client/mod/AvHHud.o - .debug_info 0x00000000005965cb 0x433a7 release/obj/hl1_client/mod/AvHHudRender.o - .debug_info 0x00000000005d9972 0xe978 release/obj/hl1_client/mod/AvHLogoutComponent.o - .debug_info 0x00000000005e82ea 0x29ff release/obj/hl1_client/mod/AvHMapExtents.o - .debug_info 0x00000000005eace9 0xc707 release/obj/hl1_client/mod/AvHMiniMap.o - .debug_info 0x00000000005f73f0 0x3904 release/obj/hl1_client/mod/AvHMovementUtil.o - .debug_info 0x00000000005facf4 0x1b868 release/obj/hl1_client/mod/AvHNetworkMessages.o - .debug_info 0x000000000061655c 0x2bc9 release/obj/hl1_client/mod/AvHNexusClient.o - .debug_info 0x0000000000619125 0xd5f1 release/obj/hl1_client/mod/AvHOrder.o - .debug_info 0x0000000000626716 0xff6d release/obj/hl1_client/mod/AvHOverviewControl.o - .debug_info 0x0000000000636683 0x1e4bb release/obj/hl1_client/mod/AvHOverviewMap.o - .debug_info 0x0000000000654b3e 0x174d7 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .debug_info 0x000000000066c015 0xc9ac release/obj/hl1_client/mod/AvHPieMenuHandler.o - .debug_info 0x00000000006789c1 0x3667 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .debug_info 0x000000000067c028 0xe870 release/obj/hl1_client/mod/AvHScriptClient.o - .debug_info 0x000000000068a898 0x12d1a release/obj/hl1_client/mod/AvHScriptManager.o - .debug_info 0x000000000069d5b2 0xb831 release/obj/hl1_client/mod/AvHScriptShared.o - .debug_info 0x00000000006a8de3 0xbd70 release/obj/hl1_client/mod/AvHScrollHandler.o - .debug_info 0x00000000006b4b53 0xd5d4 release/obj/hl1_client/mod/AvHScrollPanel.o - .debug_info 0x00000000006c2127 0xcae4 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .debug_info 0x00000000006cec0b 0x1ce94 release/obj/hl1_client/mod/AvHSharedUtil.o - .debug_info 0x00000000006eba9f 0x6f21 release/obj/hl1_client/mod/AvHSpecials.o - .debug_info 0x00000000006f29c0 0xbcd9 release/obj/hl1_client/mod/AvHSpriteAPI.o - .debug_info 0x00000000006fe699 0x14ea6 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .debug_info 0x000000000071353f 0xfc3a release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .debug_info 0x0000000000723179 0x31fe release/obj/hl1_client/mod/AvHTechNode.o - .debug_info 0x0000000000726377 0x5cfc release/obj/hl1_client/mod/AvHTechSlotManager.o - .debug_info 0x000000000072c073 0x14efc release/obj/hl1_client/mod/AvHTechTree.o - .debug_info 0x0000000000740f6f 0xff0e release/obj/hl1_client/mod/AvHTooltip.o - .debug_info 0x0000000000750e7d 0xdb01 release/obj/hl1_client/mod/AvHUIFactory.o - .debug_info 0x000000000075e97e 0xb975 release/obj/hl1_client/mod/AvHVisibleBlipList.o - .debug_info 0x000000000076a2f3 0xe646 release/obj/hl1_client/mod/CollisionChecker.o - .debug_info 0x0000000000778939 0xb24b release/obj/hl1_client/mod/CollisionUtil.o - .debug_info 0x0000000000783b84 0x1229b release/obj/hl1_client/mod/AvHParticleSystem.o - .debug_info 0x0000000000795e1f 0x19da5 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .debug_info 0x00000000007afbc4 0xd0e5 release/obj/hl1_client/mod/AvHParticleTemplate.o - .debug_info 0x00000000007bcca9 0x10677 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .debug_info 0x00000000007cd320 0xfff3 release/obj/hl1_client/mod/AvHSelectionHelper.o - .debug_info 0x00000000007dd313 0xdba release/obj/hl1_client/common/interface.o - .debug_info 0x00000000007de0cd 0x1dc7 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .debug_info 0x00000000007dfe94 0x18cd release/obj/hl1_client/game_shared/vgui_grid.o - .debug_info 0x00000000007e1761 0x276 release/obj/hl1_client/game_shared/vgui_helpers.o - .debug_info 0x00000000007e19d7 0x13ab release/obj/hl1_client/game_shared/vgui_listbox.o - .debug_info 0x00000000007e2d82 0x4d61 release/obj/hl1_client/game_shared/vgui_loadtga.o - .debug_info 0x00000000007e7ae3 0x24d4 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .debug_info 0x00000000007e9fb7 0x23b0 release/obj/hl1_client/game_shared/vgui_slider2.o - .debug_info 0x00000000007ec367 0x324c release/obj/hl1_client/game_shared/voice_banmgr.o - .debug_info 0x00000000007ef5b3 0xee46 release/obj/hl1_client/game_shared/voice_status.o - .debug_info 0x00000000007fe3f9 0xc921 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .debug_info 0x000000000080ad1a 0xb24c release/obj/hl1_client/server/hl_wpn_glock.o - .debug_info 0x0000000000815f66 0x248b release/obj/hl1_client/pm_shared/pm_debug.o - .debug_info 0x00000000008183f1 0x1450c release/obj/hl1_client/pm_shared/pm_shared.o - .debug_info 0x000000000082c8fd 0x82b release/obj/hl1_client/pm_shared/pm_math.o - .debug_info 0x000000000082d128 0x344 release/obj/hl1_client/ui/bitmappng.o - .debug_info 0x000000000082d46c 0xc94e release/obj/hl1_client/ui/ChatPanel.o - .debug_info 0x0000000000839dba 0x9991 release/obj/hl1_client/ui/ColoredPanel.o - .debug_info 0x000000000084374b 0xaaf0 release/obj/hl1_client/ui/DummyPanel.o - .debug_info 0x000000000084e23b 0xe5af release/obj/hl1_client/ui/FadingImageLabel.o - .debug_info 0x000000000085c7ea 0x6236 release/obj/hl1_client/ui/loadpng.o - .debug_info 0x0000000000862a20 0x9eab release/obj/hl1_client/ui/MarqueeComponent.o - .debug_info 0x000000000086c8cb 0x912 release/obj/hl1_client/ui/MemoryInputStream.o - .debug_info 0x000000000086d1dd 0xc648 release/obj/hl1_client/ui/PieMenu.o - .debug_info 0x0000000000879825 0x1b34e release/obj/hl1_client/ui/PieNode.o - .debug_info 0x0000000000894b73 0x8baf release/obj/hl1_client/ui/ScoreboardIcon.o - .debug_info 0x000000000089d722 0x56c4 release/obj/hl1_client/ui/SliderPlus.o - .debug_info 0x00000000008a2de6 0xa979 release/obj/hl1_client/ui/SpritePanel.o - .debug_info 0x00000000008ad75f 0x8d98 release/obj/hl1_client/ui/UIComponent.o - .debug_info 0x00000000008b64f7 0x18be8 release/obj/hl1_client/ui/UIComponents.o - .debug_info 0x00000000008cf0df 0xf813 release/obj/hl1_client/ui/UIFactory.o - .debug_info 0x00000000008de8f2 0x1cd2a release/obj/hl1_client/ui/UIHud.o - .debug_info 0x00000000008fb61c 0x1c4f2 release/obj/hl1_client/ui/UIManager.o - .debug_info 0x0000000000917b0e 0x10122 release/obj/hl1_client/ui/UIPieMenu.o - .debug_info 0x0000000000927c30 0xe397 release/obj/hl1_client/ui/UIUtil.o - .debug_info 0x0000000000935fc7 0x96f8 release/obj/hl1_client/ui/InvisiblePanel.o - .debug_info 0x000000000093f6bf 0x40f15 release/obj/hl1_client/util/Balance.o - .debug_info 0x00000000009805d4 0xee41 release/obj/hl1_client/util/Checksum.o - .debug_info 0x000000000098f415 0x1360 release/obj/hl1_client/util/LinuxSupport.o - .debug_info 0x0000000000990775 0x26c9 release/obj/hl1_client/util/Mat3.o - .debug_info 0x0000000000992e3e 0x36d0 release/obj/hl1_client/util/MathUtil.o - .debug_info 0x000000000099650e 0xdb5 release/obj/hl1_client/util/Quat.o - .debug_info 0x00000000009972c3 0x3ab release/obj/hl1_client/util/Stacktrace.o - .debug_info 0x000000000099766e 0xa1ef release/obj/hl1_client/util/STLUtil.o - .debug_info 0x00000000009a185d 0x5b49 release/obj/hl1_client/util/Tokenizer.o - .debug_info 0x00000000009a73a6 0xf574 release/obj/hl1_client/textrep/TRDescription.o - .debug_info 0x00000000009b691a 0x10a94 release/obj/hl1_client/textrep/TRFactory.o - -.debug_abbrev 0x0000000000000000 0x7cc33 - *(.debug_abbrev) - .debug_abbrev 0x0000000000000000 0xcb8 release/obj/hl1_client/hl/hl_baseentity.o - .debug_abbrev 0x0000000000000cb8 0x94f release/obj/hl1_client/hl/hl_objects.o - .debug_abbrev 0x0000000000001607 0x10ba release/obj/hl1_client/hl/hl_weapons.o - .debug_abbrev 0x00000000000026c1 0xe62 release/obj/hl1_client/ammo.o - .debug_abbrev 0x0000000000003523 0xda8 release/obj/hl1_client/cdll_int.o - .debug_abbrev 0x00000000000042cb 0xa5a release/obj/hl1_client/ammo_secondary.o - .debug_abbrev 0x0000000000004d25 0xae2 release/obj/hl1_client/ammohistory.o - .debug_abbrev 0x0000000000005807 0xaa8 release/obj/hl1_client/battery.o - .debug_abbrev 0x00000000000062af 0xb5c release/obj/hl1_client/com_weapons.o - .debug_abbrev 0x0000000000006e0b 0xbfe release/obj/hl1_client/death.o - .debug_abbrev 0x0000000000007a09 0xc3b release/obj/hl1_client/entity.o - .debug_abbrev 0x0000000000008644 0xa37 release/obj/hl1_client/ev_common.o - .debug_abbrev 0x000000000000907b 0x902 release/obj/hl1_client/events.o - .debug_abbrev 0x000000000000997d 0xaf2 release/obj/hl1_client/flashlight.o - .debug_abbrev 0x000000000000a46f 0xa3b release/obj/hl1_client/GameStudioModelRenderer.o - .debug_abbrev 0x000000000000aeaa 0x9e3 release/obj/hl1_client/geiger.o - .debug_abbrev 0x000000000000b88d 0xda6 release/obj/hl1_client/hud.o - .debug_abbrev 0x000000000000c633 0x97a release/obj/hl1_client/hud_msg.o - .debug_abbrev 0x000000000000cfad 0xc65 release/obj/hl1_client/hud_redraw.o - .debug_abbrev 0x000000000000dc12 0xd0a release/obj/hl1_client/hud_servers.o - .debug_abbrev 0x000000000000e91c 0xdc8 release/obj/hl1_client/hud_spectator.o - .debug_abbrev 0x000000000000f6e4 0x97b release/obj/hl1_client/hud_update.o - .debug_abbrev 0x000000000001005f 0xb16 release/obj/hl1_client/in_camera.o - .debug_abbrev 0x0000000000010b75 0xf0e release/obj/hl1_client/input.o - .debug_abbrev 0x0000000000011a83 0xc13 release/obj/hl1_client/inputw32.o - .debug_abbrev 0x0000000000012696 0xb9f release/obj/hl1_client/menu.o - .debug_abbrev 0x0000000000013235 0xca0 release/obj/hl1_client/vgui_SpectatorPanel.o - .debug_abbrev 0x0000000000013ed5 0xee7 release/obj/hl1_client/vgui_TeamFortressViewport.o - .debug_abbrev 0x0000000000014dbc 0xc67 release/obj/hl1_client/vgui_teammenu.o - .debug_abbrev 0x0000000000015a23 0xc03 release/obj/hl1_client/view.o - .debug_abbrev 0x0000000000016626 0xc1b release/obj/hl1_client/message.o - .debug_abbrev 0x0000000000017241 0x176 release/obj/hl1_client/parsemsg.o - .debug_abbrev 0x00000000000173b7 0xc60 release/obj/hl1_client/saytext.o - .debug_abbrev 0x0000000000018017 0xb1c release/obj/hl1_client/status_icons.o - .debug_abbrev 0x0000000000018b33 0xbd3 release/obj/hl1_client/statusbar.o - .debug_abbrev 0x0000000000019706 0x9fe release/obj/hl1_client/studio_util.o - .debug_abbrev 0x000000000001a104 0xd0b release/obj/hl1_client/StudioModelRenderer.o - .debug_abbrev 0x000000000001ae0f 0xd14 release/obj/hl1_client/text_message.o - .debug_abbrev 0x000000000001bb23 0xa7c release/obj/hl1_client/train.o - .debug_abbrev 0x000000000001c59f 0xb6a release/obj/hl1_client/tri.o - .debug_abbrev 0x000000000001d109 0xa96 release/obj/hl1_client/vgui_int.o - .debug_abbrev 0x000000000001db9f 0xa29 release/obj/hl1_client/cl_util.o - .debug_abbrev 0x000000000001e5c8 0xc5e release/obj/hl1_client/ev_hldm.o - .debug_abbrev 0x000000000001f226 0xba1 release/obj/hl1_client/vgui_MOTDWindow.o - .debug_abbrev 0x000000000001fdc7 0xbd7 release/obj/hl1_client/vgui_SchemeManager.o - .debug_abbrev 0x000000000002099e 0xee6 release/obj/hl1_client/vgui_ScorePanel.o - .debug_abbrev 0x0000000000021884 0xc12 release/obj/hl1_client/vgui_ClassMenu.o - .debug_abbrev 0x0000000000022496 0xa6f release/obj/hl1_client/vgui_ConsolePanel.o - .debug_abbrev 0x0000000000022f05 0x4f6 release/obj/hl1_client/vgui_ControlConfigPanel.o - .debug_abbrev 0x00000000000233fb 0xd1e release/obj/hl1_client/vgui_CustomObjects.o - .debug_abbrev 0x0000000000024119 0xd23 release/obj/hl1_client/vgui_ServerBrowser.o - .debug_abbrev 0x0000000000024e3c 0xb7a release/obj/hl1_client/util.o - .debug_abbrev 0x00000000000259b6 0xbd7 release/obj/hl1_client/health.o - .debug_abbrev 0x000000000002658d 0xafa release/obj/hl1_client/demo.o - .debug_abbrev 0x0000000000027087 0xcc4 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .debug_abbrev 0x0000000000027d4b 0xd87 release/obj/hl1_client/mod/AvHAlienAbilities.o - .debug_abbrev 0x0000000000028ad2 0xef3 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .debug_abbrev 0x00000000000299c5 0xcdd release/obj/hl1_client/mod/AvHBileBombGun.o - .debug_abbrev 0x000000000002a6a2 0xce9 release/obj/hl1_client/mod/AvHBite.o - .debug_abbrev 0x000000000002b38b 0xcb0 release/obj/hl1_client/mod/AvHBite2.o - .debug_abbrev 0x000000000002c03b 0xd5c release/obj/hl1_client/mod/AvHBlink.o - .debug_abbrev 0x000000000002cd97 0xcdc release/obj/hl1_client/mod/AvHClaws.o - .debug_abbrev 0x000000000002da73 0xcfe release/obj/hl1_client/mod/AvHDevour.o - .debug_abbrev 0x000000000002e771 0xda9 release/obj/hl1_client/mod/AvHGrenade.o - .debug_abbrev 0x000000000002f51a 0xcd4 release/obj/hl1_client/mod/AvHDivineWind.o - .debug_abbrev 0x00000000000301ee 0xd18 release/obj/hl1_client/mod/AvHGrenadeGun.o - .debug_abbrev 0x0000000000030f06 0xcca release/obj/hl1_client/mod/AvHHealingSpray.o - .debug_abbrev 0x0000000000031bd0 0xd1b release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .debug_abbrev 0x00000000000328eb 0x9f9 release/obj/hl1_client/mod/AvHItemInfo.o - .debug_abbrev 0x00000000000332e4 0xcef release/obj/hl1_client/mod/AvHKnife.o - .debug_abbrev 0x0000000000033fd3 0xcb2 release/obj/hl1_client/mod/AvHMachineGun.o - .debug_abbrev 0x0000000000034c85 0xc63 release/obj/hl1_client/mod/AvHMarineWeapon.o - .debug_abbrev 0x00000000000358e8 0xd14 release/obj/hl1_client/mod/AvHMetabolize.o - .debug_abbrev 0x00000000000365fc 0xd39 release/obj/hl1_client/mod/AvHMine.o - .debug_abbrev 0x0000000000037335 0xcae release/obj/hl1_client/mod/AvHParasiteGun.o - .debug_abbrev 0x0000000000037fe3 0xcfd release/obj/hl1_client/mod/AvHPistol.o - .debug_abbrev 0x0000000000038ce0 0xcbe release/obj/hl1_client/mod/AvHPrimalScream.o - .debug_abbrev 0x000000000003999e 0xd26 release/obj/hl1_client/mod/AvHSonicGun.o - .debug_abbrev 0x000000000003a6c4 0xd02 release/obj/hl1_client/mod/AvHSpikeGun.o - .debug_abbrev 0x000000000003b3c6 0xcd8 release/obj/hl1_client/mod/AvHSpitGun.o - .debug_abbrev 0x000000000003c09e 0xccc release/obj/hl1_client/mod/AvHSpores.o - .debug_abbrev 0x000000000003cd6a 0xd1b release/obj/hl1_client/mod/AvHStomp.o - .debug_abbrev 0x000000000003da85 0xcf4 release/obj/hl1_client/mod/AvHSwipe.o - .debug_abbrev 0x000000000003e779 0xcba release/obj/hl1_client/mod/AvHUmbraGun.o - .debug_abbrev 0x000000000003f433 0xce5 release/obj/hl1_client/mod/AvHWebSpinner.o - .debug_abbrev 0x0000000000040118 0xc36 release/obj/hl1_client/mod/AvHWelder.o - .debug_abbrev 0x0000000000040d4e 0x822 release/obj/hl1_client/mod/AnimationUtil.o - .debug_abbrev 0x0000000000041570 0xdbc release/obj/hl1_client/mod/AvHActionButtons.o - .debug_abbrev 0x000000000004232c 0xd18 release/obj/hl1_client/mod/AvHAlienWeapon.o - .debug_abbrev 0x0000000000043044 0xab2 release/obj/hl1_client/mod/AvHAmbientSound.o - .debug_abbrev 0x0000000000043af6 0x9e release/obj/hl1_client/mod/AvHAssert.o - .debug_abbrev 0x0000000000043b94 0x838 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - .debug_abbrev 0x00000000000443cc 0xb88 release/obj/hl1_client/mod/AvHClientUtil.o - .debug_abbrev 0x0000000000044f54 0xd33 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .debug_abbrev 0x0000000000045c87 0x47c release/obj/hl1_client/mod/AvHConstants.o - .debug_abbrev 0x0000000000046103 0xb60 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .debug_abbrev 0x0000000000046c63 0xdf3 release/obj/hl1_client/mod/AvHEvents.o - .debug_abbrev 0x0000000000047a56 0xb30 release/obj/hl1_client/mod/AvHFont.o - .debug_abbrev 0x0000000000048586 0xa65 release/obj/hl1_client/mod/AvHHelp.o - .debug_abbrev 0x0000000000048feb 0x1215 release/obj/hl1_client/mod/AvHHud.o - .debug_abbrev 0x000000000004a200 0x1030 release/obj/hl1_client/mod/AvHHudRender.o - .debug_abbrev 0x000000000004b230 0xc08 release/obj/hl1_client/mod/AvHLogoutComponent.o - .debug_abbrev 0x000000000004be38 0x546 release/obj/hl1_client/mod/AvHMapExtents.o - .debug_abbrev 0x000000000004c37e 0xc1d release/obj/hl1_client/mod/AvHMiniMap.o - .debug_abbrev 0x000000000004cf9b 0x6b6 release/obj/hl1_client/mod/AvHMovementUtil.o - .debug_abbrev 0x000000000004d651 0xd23 release/obj/hl1_client/mod/AvHNetworkMessages.o - .debug_abbrev 0x000000000004e374 0x482 release/obj/hl1_client/mod/AvHNexusClient.o - .debug_abbrev 0x000000000004e7f6 0xbf9 release/obj/hl1_client/mod/AvHOrder.o - .debug_abbrev 0x000000000004f3ef 0xaec release/obj/hl1_client/mod/AvHOverviewControl.o - .debug_abbrev 0x000000000004fedb 0xda5 release/obj/hl1_client/mod/AvHOverviewMap.o - .debug_abbrev 0x0000000000050c80 0xd98 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .debug_abbrev 0x0000000000051a18 0xc55 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .debug_abbrev 0x000000000005266d 0x692 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .debug_abbrev 0x0000000000052cff 0xa7f release/obj/hl1_client/mod/AvHScriptClient.o - .debug_abbrev 0x000000000005377e 0xbd3 release/obj/hl1_client/mod/AvHScriptManager.o - .debug_abbrev 0x0000000000054351 0x969 release/obj/hl1_client/mod/AvHScriptShared.o - .debug_abbrev 0x0000000000054cba 0xb6b release/obj/hl1_client/mod/AvHScrollHandler.o - .debug_abbrev 0x0000000000055825 0xb87 release/obj/hl1_client/mod/AvHScrollPanel.o - .debug_abbrev 0x00000000000563ac 0xb48 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .debug_abbrev 0x0000000000056ef4 0xdc0 release/obj/hl1_client/mod/AvHSharedUtil.o - .debug_abbrev 0x0000000000057cb4 0x927 release/obj/hl1_client/mod/AvHSpecials.o - .debug_abbrev 0x00000000000585db 0xb95 release/obj/hl1_client/mod/AvHSpriteAPI.o - .debug_abbrev 0x0000000000059170 0xc5d release/obj/hl1_client/mod/AvHTeamHierarchy.o - .debug_abbrev 0x0000000000059dcd 0xc68 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .debug_abbrev 0x000000000005aa35 0x64c release/obj/hl1_client/mod/AvHTechNode.o - .debug_abbrev 0x000000000005b081 0x8cc release/obj/hl1_client/mod/AvHTechSlotManager.o - .debug_abbrev 0x000000000005b94d 0xafa release/obj/hl1_client/mod/AvHTechTree.o - .debug_abbrev 0x000000000005c447 0xc01 release/obj/hl1_client/mod/AvHTooltip.o - .debug_abbrev 0x000000000005d048 0xb2b release/obj/hl1_client/mod/AvHUIFactory.o - .debug_abbrev 0x000000000005db73 0xaeb release/obj/hl1_client/mod/AvHVisibleBlipList.o - .debug_abbrev 0x000000000005e65e 0xafa release/obj/hl1_client/mod/CollisionChecker.o - .debug_abbrev 0x000000000005f158 0xa3a release/obj/hl1_client/mod/CollisionUtil.o - .debug_abbrev 0x000000000005fb92 0xcb9 release/obj/hl1_client/mod/AvHParticleSystem.o - .debug_abbrev 0x000000000006084b 0xdec release/obj/hl1_client/mod/AvHParticleSystemManager.o - .debug_abbrev 0x0000000000061637 0xb20 release/obj/hl1_client/mod/AvHParticleTemplate.o - .debug_abbrev 0x0000000000062157 0xb6c release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .debug_abbrev 0x0000000000062cc3 0xc13 release/obj/hl1_client/mod/AvHSelectionHelper.o - .debug_abbrev 0x00000000000638d6 0x351 release/obj/hl1_client/common/interface.o - .debug_abbrev 0x0000000000063c27 0x47b release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .debug_abbrev 0x00000000000640a2 0x56c release/obj/hl1_client/game_shared/vgui_grid.o - .debug_abbrev 0x000000000006460e 0xc1 release/obj/hl1_client/game_shared/vgui_helpers.o - .debug_abbrev 0x00000000000646cf 0x3c6 release/obj/hl1_client/game_shared/vgui_listbox.o - .debug_abbrev 0x0000000000064a95 0x461 release/obj/hl1_client/game_shared/vgui_loadtga.o - .debug_abbrev 0x0000000000064ef6 0x588 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .debug_abbrev 0x000000000006547e 0x56a release/obj/hl1_client/game_shared/vgui_slider2.o - .debug_abbrev 0x00000000000659e8 0x70e release/obj/hl1_client/game_shared/voice_banmgr.o - .debug_abbrev 0x00000000000660f6 0xd66 release/obj/hl1_client/game_shared/voice_status.o - .debug_abbrev 0x0000000000066e5c 0xc74 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .debug_abbrev 0x0000000000067ad0 0xcc6 release/obj/hl1_client/server/hl_wpn_glock.o - .debug_abbrev 0x0000000000068796 0x3aa release/obj/hl1_client/pm_shared/pm_debug.o - .debug_abbrev 0x0000000000068b40 0xc48 release/obj/hl1_client/pm_shared/pm_shared.o - .debug_abbrev 0x0000000000069788 0x30f release/obj/hl1_client/pm_shared/pm_math.o - .debug_abbrev 0x0000000000069a97 0x1dc release/obj/hl1_client/ui/bitmappng.o - .debug_abbrev 0x0000000000069c73 0xb49 release/obj/hl1_client/ui/ChatPanel.o - .debug_abbrev 0x000000000006a7bc 0x9b5 release/obj/hl1_client/ui/ColoredPanel.o - .debug_abbrev 0x000000000006b171 0xa36 release/obj/hl1_client/ui/DummyPanel.o - .debug_abbrev 0x000000000006bba7 0xd63 release/obj/hl1_client/ui/FadingImageLabel.o - .debug_abbrev 0x000000000006c90a 0x3b9 release/obj/hl1_client/ui/loadpng.o - .debug_abbrev 0x000000000006ccc3 0x9fa release/obj/hl1_client/ui/MarqueeComponent.o - .debug_abbrev 0x000000000006d6bd 0x2d1 release/obj/hl1_client/ui/MemoryInputStream.o - .debug_abbrev 0x000000000006d98e 0xba9 release/obj/hl1_client/ui/PieMenu.o - .debug_abbrev 0x000000000006e537 0xef1 release/obj/hl1_client/ui/PieNode.o - .debug_abbrev 0x000000000006f428 0xa31 release/obj/hl1_client/ui/ScoreboardIcon.o - .debug_abbrev 0x000000000006fe59 0x94d release/obj/hl1_client/ui/SliderPlus.o - .debug_abbrev 0x00000000000707a6 0xb23 release/obj/hl1_client/ui/SpritePanel.o - .debug_abbrev 0x00000000000712c9 0xaf2 release/obj/hl1_client/ui/UIComponent.o - .debug_abbrev 0x0000000000071dbb 0xcef release/obj/hl1_client/ui/UIComponents.o - .debug_abbrev 0x0000000000072aaa 0xb37 release/obj/hl1_client/ui/UIFactory.o - .debug_abbrev 0x00000000000735e1 0xe13 release/obj/hl1_client/ui/UIHud.o - .debug_abbrev 0x00000000000743f4 0xe24 release/obj/hl1_client/ui/UIManager.o - .debug_abbrev 0x0000000000075218 0xc73 release/obj/hl1_client/ui/UIPieMenu.o - .debug_abbrev 0x0000000000075e8b 0xbf7 release/obj/hl1_client/ui/UIUtil.o - .debug_abbrev 0x0000000000076a82 0x94f release/obj/hl1_client/ui/InvisiblePanel.o - .debug_abbrev 0x00000000000773d1 0xe1d release/obj/hl1_client/util/Balance.o - .debug_abbrev 0x00000000000781ee 0xbbe release/obj/hl1_client/util/Checksum.o - .debug_abbrev 0x0000000000078dac 0x343 release/obj/hl1_client/util/LinuxSupport.o - .debug_abbrev 0x00000000000790ef 0x5ae release/obj/hl1_client/util/Mat3.o - .debug_abbrev 0x000000000007969d 0x772 release/obj/hl1_client/util/MathUtil.o - .debug_abbrev 0x0000000000079e0f 0x368 release/obj/hl1_client/util/Quat.o - .debug_abbrev 0x000000000007a177 0x142 release/obj/hl1_client/util/Stacktrace.o - .debug_abbrev 0x000000000007a2b9 0xac9 release/obj/hl1_client/util/STLUtil.o - .debug_abbrev 0x000000000007ad82 0x7ac release/obj/hl1_client/util/Tokenizer.o - .debug_abbrev 0x000000000007b52e 0xb26 release/obj/hl1_client/textrep/TRDescription.o - .debug_abbrev 0x000000000007c054 0xbdf release/obj/hl1_client/textrep/TRFactory.o - -.debug_line 0x0000000000000000 0xa1b9f - *(.debug_line .debug_line.* .debug_line_end) - .debug_line 0x0000000000000000 0xd22 release/obj/hl1_client/hl/hl_baseentity.o - .debug_line 0x0000000000000d22 0x734 release/obj/hl1_client/hl/hl_objects.o - .debug_line 0x0000000000001456 0x2015 release/obj/hl1_client/hl/hl_weapons.o - .debug_line 0x000000000000346b 0x1fdd release/obj/hl1_client/ammo.o - .debug_line 0x0000000000005448 0xaf7 release/obj/hl1_client/cdll_int.o - .debug_line 0x0000000000005f3f 0x842 release/obj/hl1_client/ammo_secondary.o - .debug_line 0x0000000000006781 0x859 release/obj/hl1_client/ammohistory.o - .debug_line 0x0000000000006fda 0x873 release/obj/hl1_client/battery.o - .debug_line 0x000000000000784d 0x7ba release/obj/hl1_client/com_weapons.o - .debug_line 0x0000000000008007 0xaff release/obj/hl1_client/death.o - .debug_line 0x0000000000008b06 0xbbf release/obj/hl1_client/entity.o - .debug_line 0x00000000000096c5 0x7a3 release/obj/hl1_client/ev_common.o - .debug_line 0x0000000000009e68 0x688 release/obj/hl1_client/events.o - .debug_line 0x000000000000a4f0 0x84e release/obj/hl1_client/flashlight.o - .debug_line 0x000000000000ad3e 0x784 release/obj/hl1_client/GameStudioModelRenderer.o - .debug_line 0x000000000000b4c2 0x797 release/obj/hl1_client/geiger.o - .debug_line 0x000000000000bc59 0xbf5 release/obj/hl1_client/hud.o - .debug_line 0x000000000000c84e 0x6ce release/obj/hl1_client/hud_msg.o - .debug_line 0x000000000000cf1c 0xa2a release/obj/hl1_client/hud_redraw.o - .debug_line 0x000000000000d946 0xf53 release/obj/hl1_client/hud_servers.o - .debug_line 0x000000000000e899 0x1211 release/obj/hl1_client/hud_spectator.o - .debug_line 0x000000000000faaa 0x6d8 release/obj/hl1_client/hud_update.o - .debug_line 0x0000000000010182 0xa55 release/obj/hl1_client/in_camera.o - .debug_line 0x0000000000010bd7 0x1dbc release/obj/hl1_client/input.o - .debug_line 0x0000000000012993 0xc8b release/obj/hl1_client/inputw32.o - .debug_line 0x000000000001361e 0x9b4 release/obj/hl1_client/menu.o - .debug_line 0x0000000000013fd2 0xd20 release/obj/hl1_client/vgui_SpectatorPanel.o - .debug_line 0x0000000000014cf2 0x376b release/obj/hl1_client/vgui_TeamFortressViewport.o - .debug_line 0x000000000001845d 0xcfc release/obj/hl1_client/vgui_teammenu.o - .debug_line 0x0000000000019159 0x13a3 release/obj/hl1_client/view.o - .debug_line 0x000000000001a4fc 0xef4 release/obj/hl1_client/message.o - .debug_line 0x000000000001b3f0 0x117 release/obj/hl1_client/parsemsg.o - .debug_line 0x000000000001b507 0xdae release/obj/hl1_client/saytext.o - .debug_line 0x000000000001c2b5 0x86d release/obj/hl1_client/status_icons.o - .debug_line 0x000000000001cb22 0xae9 release/obj/hl1_client/statusbar.o - .debug_line 0x000000000001d60b 0x7b0 release/obj/hl1_client/studio_util.o - .debug_line 0x000000000001ddbb 0x1551 release/obj/hl1_client/StudioModelRenderer.o - .debug_line 0x000000000001f30c 0xd54 release/obj/hl1_client/text_message.o - .debug_line 0x0000000000020060 0x7ea release/obj/hl1_client/train.o - .debug_line 0x000000000002084a 0x901 release/obj/hl1_client/tri.o - .debug_line 0x000000000002114b 0x736 release/obj/hl1_client/vgui_int.o - .debug_line 0x0000000000021881 0x6ff release/obj/hl1_client/cl_util.o - .debug_line 0x0000000000021f80 0x10bf release/obj/hl1_client/ev_hldm.o - .debug_line 0x000000000002303f 0x91b release/obj/hl1_client/vgui_MOTDWindow.o - .debug_line 0x000000000002395a 0xb45 release/obj/hl1_client/vgui_SchemeManager.o - .debug_line 0x000000000002449f 0x2244 release/obj/hl1_client/vgui_ScorePanel.o - .debug_line 0x00000000000266e3 0xc10 release/obj/hl1_client/vgui_ClassMenu.o - .debug_line 0x00000000000272f3 0x72e release/obj/hl1_client/vgui_ConsolePanel.o - .debug_line 0x0000000000027a21 0x4a5 release/obj/hl1_client/vgui_ControlConfigPanel.o - .debug_line 0x0000000000027ec6 0xfe1 release/obj/hl1_client/vgui_CustomObjects.o - .debug_line 0x0000000000028ea7 0xc4f release/obj/hl1_client/vgui_ServerBrowser.o - .debug_line 0x0000000000029af6 0x8bc release/obj/hl1_client/util.o - .debug_line 0x000000000002a3b2 0xe87 release/obj/hl1_client/health.o - .debug_line 0x000000000002b239 0x8f0 release/obj/hl1_client/demo.o - .debug_line 0x000000000002bb29 0xb92 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .debug_line 0x000000000002c6bb 0xdf6 release/obj/hl1_client/mod/AvHAlienAbilities.o - .debug_line 0x000000000002d4b1 0x13b6 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .debug_line 0x000000000002e867 0xbb5 release/obj/hl1_client/mod/AvHBileBombGun.o - .debug_line 0x000000000002f41c 0xda0 release/obj/hl1_client/mod/AvHBite.o - .debug_line 0x00000000000301bc 0xb97 release/obj/hl1_client/mod/AvHBite2.o - .debug_line 0x0000000000030d53 0xd65 release/obj/hl1_client/mod/AvHBlink.o - .debug_line 0x0000000000031ab8 0xd96 release/obj/hl1_client/mod/AvHClaws.o - .debug_line 0x000000000003284e 0xbcb release/obj/hl1_client/mod/AvHDevour.o - .debug_line 0x0000000000033419 0xcb9 release/obj/hl1_client/mod/AvHGrenade.o - .debug_line 0x00000000000340d2 0xd98 release/obj/hl1_client/mod/AvHDivineWind.o - .debug_line 0x0000000000034e6a 0xc2a release/obj/hl1_client/mod/AvHGrenadeGun.o - .debug_line 0x0000000000035a94 0xd8b release/obj/hl1_client/mod/AvHHealingSpray.o - .debug_line 0x000000000003681f 0xbcb release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .debug_line 0x00000000000373ea 0x922 release/obj/hl1_client/mod/AvHItemInfo.o - .debug_line 0x0000000000037d0c 0xb9f release/obj/hl1_client/mod/AvHKnife.o - .debug_line 0x00000000000388ab 0xba5 release/obj/hl1_client/mod/AvHMachineGun.o - .debug_line 0x0000000000039450 0xb5c release/obj/hl1_client/mod/AvHMarineWeapon.o - .debug_line 0x0000000000039fac 0xe0b release/obj/hl1_client/mod/AvHMetabolize.o - .debug_line 0x000000000003adb7 0xbe9 release/obj/hl1_client/mod/AvHMine.o - .debug_line 0x000000000003b9a0 0xb9a release/obj/hl1_client/mod/AvHParasiteGun.o - .debug_line 0x000000000003c53a 0xb9a release/obj/hl1_client/mod/AvHPistol.o - .debug_line 0x000000000003d0d4 0xbbe release/obj/hl1_client/mod/AvHPrimalScream.o - .debug_line 0x000000000003dc92 0xc47 release/obj/hl1_client/mod/AvHSonicGun.o - .debug_line 0x000000000003e8d9 0xc40 release/obj/hl1_client/mod/AvHSpikeGun.o - .debug_line 0x000000000003f519 0xda0 release/obj/hl1_client/mod/AvHSpitGun.o - .debug_line 0x00000000000402b9 0xb9b release/obj/hl1_client/mod/AvHSpores.o - .debug_line 0x0000000000040e54 0xdfa release/obj/hl1_client/mod/AvHStomp.o - .debug_line 0x0000000000041c4e 0xda3 release/obj/hl1_client/mod/AvHSwipe.o - .debug_line 0x00000000000429f1 0xba0 release/obj/hl1_client/mod/AvHUmbraGun.o - .debug_line 0x0000000000043591 0xbbf release/obj/hl1_client/mod/AvHWebSpinner.o - .debug_line 0x0000000000044150 0xb8d release/obj/hl1_client/mod/AvHWelder.o - .debug_line 0x0000000000044cdd 0x8ef release/obj/hl1_client/mod/AnimationUtil.o - .debug_line 0x00000000000455cc 0x174f release/obj/hl1_client/mod/AvHActionButtons.o - .debug_line 0x0000000000046d1b 0xe28 release/obj/hl1_client/mod/AvHAlienWeapon.o - .debug_line 0x0000000000047b43 0x8a1 release/obj/hl1_client/mod/AvHAmbientSound.o - .debug_line 0x00000000000483e4 0xa2 release/obj/hl1_client/mod/AvHAssert.o - .debug_line 0x0000000000048486 0x44c release/obj/hl1_client/mod/AvHBaseInfoLocation.o - .debug_line 0x00000000000488d2 0x8a5 release/obj/hl1_client/mod/AvHClientUtil.o - .debug_line 0x0000000000049177 0x135a release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .debug_line 0x000000000004a4d1 0x352 release/obj/hl1_client/mod/AvHConstants.o - .debug_line 0x000000000004a823 0xb1f release/obj/hl1_client/mod/AvHEntityHierarchy.o - .debug_line 0x000000000004b342 0x1eeb release/obj/hl1_client/mod/AvHEvents.o - .debug_line 0x000000000004d22d 0x864 release/obj/hl1_client/mod/AvHFont.o - .debug_line 0x000000000004da91 0x945 release/obj/hl1_client/mod/AvHHelp.o - .debug_line 0x000000000004e3d6 0x9633 release/obj/hl1_client/mod/AvHHud.o - .debug_line 0x0000000000057a09 0x4eb3 release/obj/hl1_client/mod/AvHHudRender.o - .debug_line 0x000000000005c8bc 0x9e6 release/obj/hl1_client/mod/AvHLogoutComponent.o - .debug_line 0x000000000005d2a2 0x399 release/obj/hl1_client/mod/AvHMapExtents.o - .debug_line 0x000000000005d63b 0xe0c release/obj/hl1_client/mod/AvHMiniMap.o - .debug_line 0x000000000005e447 0x4cb release/obj/hl1_client/mod/AvHMovementUtil.o - .debug_line 0x000000000005e912 0x1d63 release/obj/hl1_client/mod/AvHNetworkMessages.o - .debug_line 0x0000000000060675 0x27c release/obj/hl1_client/mod/AvHNexusClient.o - .debug_line 0x00000000000608f1 0x0 release/obj/hl1_client/mod/AvHNexusTunnelToServer.o - .debug_line 0x00000000000608f1 0xb6f release/obj/hl1_client/mod/AvHOrder.o - .debug_line 0x0000000000061460 0x8c5 release/obj/hl1_client/mod/AvHOverviewControl.o - .debug_line 0x0000000000061d25 0x1c8b release/obj/hl1_client/mod/AvHOverviewMap.o - .debug_line 0x00000000000639b0 0x1848 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .debug_line 0x00000000000651f8 0xa47 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .debug_line 0x0000000000065c3f 0x64a release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .debug_line 0x0000000000066289 0x874 release/obj/hl1_client/mod/AvHScriptClient.o - .debug_line 0x0000000000066afd 0x1b07 release/obj/hl1_client/mod/AvHScriptManager.o - .debug_line 0x0000000000068604 0x726 release/obj/hl1_client/mod/AvHScriptShared.o - .debug_line 0x0000000000068d2a 0x951 release/obj/hl1_client/mod/AvHScrollHandler.o - .debug_line 0x000000000006967b 0x89f release/obj/hl1_client/mod/AvHScrollPanel.o - .debug_line 0x0000000000069f1a 0x8b1 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .debug_line 0x000000000006a7cb 0x25af release/obj/hl1_client/mod/AvHSharedUtil.o - .debug_line 0x000000000006cd7a 0x96d release/obj/hl1_client/mod/AvHSpecials.o - .debug_line 0x000000000006d6e7 0xab1 release/obj/hl1_client/mod/AvHSpriteAPI.o - .debug_line 0x000000000006e198 0xc6e release/obj/hl1_client/mod/AvHTeamHierarchy.o - .debug_line 0x000000000006ee06 0xbf8 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .debug_line 0x000000000006f9fe 0x3f1 release/obj/hl1_client/mod/AvHTechNode.o - .debug_line 0x000000000006fdef 0x6d2 release/obj/hl1_client/mod/AvHTechSlotManager.o - .debug_line 0x00000000000704c1 0x1a43 release/obj/hl1_client/mod/AvHTechTree.o - .debug_line 0x0000000000071f04 0x1094 release/obj/hl1_client/mod/AvHTooltip.o - .debug_line 0x0000000000072f98 0x9d6 release/obj/hl1_client/mod/AvHUIFactory.o - .debug_line 0x000000000007396e 0xb5e release/obj/hl1_client/mod/AvHVisibleBlipList.o - .debug_line 0x00000000000744cc 0x1c40 release/obj/hl1_client/mod/CollisionChecker.o - .debug_line 0x000000000007610c 0x11ff release/obj/hl1_client/mod/CollisionUtil.o - .debug_line 0x000000000007730b 0x10d7 release/obj/hl1_client/mod/AvHParticleSystem.o - .debug_line 0x00000000000783e2 0x167f release/obj/hl1_client/mod/AvHParticleSystemManager.o - .debug_line 0x0000000000079a61 0x13cb release/obj/hl1_client/mod/AvHParticleTemplate.o - .debug_line 0x000000000007ae2c 0x11a8 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .debug_line 0x000000000007bfd4 0xec2 release/obj/hl1_client/mod/AvHSelectionHelper.o - .debug_line 0x000000000007ce96 0x181 release/obj/hl1_client/common/interface.o - .debug_line 0x000000000007d017 0x3ad release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .debug_line 0x000000000007d3c4 0x4ec release/obj/hl1_client/game_shared/vgui_grid.o - .debug_line 0x000000000007d8b0 0xa3 release/obj/hl1_client/game_shared/vgui_helpers.o - .debug_line 0x000000000007d953 0x284 release/obj/hl1_client/game_shared/vgui_listbox.o - .debug_line 0x000000000007dbd7 0x35a release/obj/hl1_client/game_shared/vgui_loadtga.o - .debug_line 0x000000000007df31 0x463 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .debug_line 0x000000000007e394 0x41a release/obj/hl1_client/game_shared/vgui_slider2.o - .debug_line 0x000000000007e7ae 0x56a release/obj/hl1_client/game_shared/voice_banmgr.o - .debug_line 0x000000000007ed18 0x116f release/obj/hl1_client/game_shared/voice_status.o - .debug_line 0x000000000007fe87 0xa83 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .debug_line 0x000000000008090a 0xe3a release/obj/hl1_client/server/hl_wpn_glock.o - .debug_line 0x0000000000081744 0x433 release/obj/hl1_client/pm_shared/pm_debug.o - .debug_line 0x0000000000081b77 0x370c release/obj/hl1_client/pm_shared/pm_shared.o - .debug_line 0x0000000000085283 0x1dc release/obj/hl1_client/pm_shared/pm_math.o - .debug_line 0x000000000008545f 0x111 release/obj/hl1_client/ui/bitmappng.o - .debug_line 0x0000000000085570 0xace release/obj/hl1_client/ui/ChatPanel.o - .debug_line 0x000000000008603e 0x706 release/obj/hl1_client/ui/ColoredPanel.o - .debug_line 0x0000000000086744 0x721 release/obj/hl1_client/ui/DummyPanel.o - .debug_line 0x0000000000086e65 0xd92 release/obj/hl1_client/ui/FadingImageLabel.o - .debug_line 0x0000000000087bf7 0x348 release/obj/hl1_client/ui/loadpng.o - .debug_line 0x0000000000087f3f 0x77e release/obj/hl1_client/ui/MarqueeComponent.o - .debug_line 0x00000000000886bd 0x18d release/obj/hl1_client/ui/MemoryInputStream.o - .debug_line 0x000000000008884a 0x90e release/obj/hl1_client/ui/PieMenu.o - .debug_line 0x0000000000089158 0x21de release/obj/hl1_client/ui/PieNode.o - .debug_line 0x000000000008b336 0x9c6 release/obj/hl1_client/ui/ScoreboardIcon.o - .debug_line 0x000000000008bcfc 0x625 release/obj/hl1_client/ui/SliderPlus.o - .debug_line 0x000000000008c321 0x8de release/obj/hl1_client/ui/SpritePanel.o - .debug_line 0x000000000008cbff 0x956 release/obj/hl1_client/ui/UIComponent.o - .debug_line 0x000000000008d555 0x1f29 release/obj/hl1_client/ui/UIComponents.o - .debug_line 0x000000000008f47e 0xceb release/obj/hl1_client/ui/UIFactory.o - .debug_line 0x0000000000090169 0x2229 release/obj/hl1_client/ui/UIHud.o - .debug_line 0x0000000000092392 0x1c22 release/obj/hl1_client/ui/UIManager.o - .debug_line 0x0000000000093fb4 0xbd3 release/obj/hl1_client/ui/UIPieMenu.o - .debug_line 0x0000000000094b87 0xab1 release/obj/hl1_client/ui/UIUtil.o - .debug_line 0x0000000000095638 0x6a9 release/obj/hl1_client/ui/InvisiblePanel.o - .debug_line 0x0000000000095ce1 0x5895 release/obj/hl1_client/util/Balance.o - .debug_line 0x000000000009b576 0x158d release/obj/hl1_client/util/Checksum.o - .debug_line 0x000000000009cb03 0x0 release/obj/hl1_client/util/GammaTable.o - .debug_line 0x000000000009cb03 0x31d release/obj/hl1_client/util/LinuxSupport.o - .debug_line 0x000000000009ce20 0x3a2 release/obj/hl1_client/util/Mat3.o - .debug_line 0x000000000009d1c2 0x739 release/obj/hl1_client/util/MathUtil.o - .debug_line 0x000000000009d8fb 0x253 release/obj/hl1_client/util/Quat.o - .debug_line 0x000000000009db4e 0xe3 release/obj/hl1_client/util/Stacktrace.o - .debug_line 0x000000000009dc31 0xee0 release/obj/hl1_client/util/STLUtil.o - .debug_line 0x000000000009eb11 0x68f release/obj/hl1_client/util/Tokenizer.o - .debug_line 0x000000000009f1a0 0x12aa release/obj/hl1_client/textrep/TRDescription.o - .debug_line 0x00000000000a044a 0x1755 release/obj/hl1_client/textrep/TRFactory.o - -.debug_frame - *(.debug_frame) - -.debug_str 0x0000000000000000 0xe88bc - *(.debug_str) - .debug_str 0x0000000000000000 0xb695 release/obj/hl1_client/hl/hl_baseentity.o - 0xc23e (size before relaxing) - .debug_str 0x000000000000b695 0x3448 release/obj/hl1_client/hl/hl_objects.o - 0x692f (size before relaxing) - .debug_str 0x000000000000eadd 0x76d0 release/obj/hl1_client/hl/hl_weapons.o - 0x13610 (size before relaxing) - .debug_str 0x00000000000161ad 0x202e release/obj/hl1_client/ammo.o - 0x98a2 (size before relaxing) - .debug_str 0x00000000000181db 0x5e2d release/obj/hl1_client/cdll_int.o - 0xea73 (size before relaxing) - .debug_str 0x000000000001e008 0x1ae release/obj/hl1_client/ammo_secondary.o - 0x72ff (size before relaxing) - .debug_str 0x000000000001e1b6 0x5d release/obj/hl1_client/ammohistory.o - 0x770b (size before relaxing) - .debug_str 0x000000000001e213 0x1b6 release/obj/hl1_client/battery.o - 0x736c (size before relaxing) - .debug_str 0x000000000001e3c9 0x2a5 release/obj/hl1_client/com_weapons.o - 0x6bea (size before relaxing) - .debug_str 0x000000000001e66e 0x572 release/obj/hl1_client/death.o - 0x7c47 (size before relaxing) - .debug_str 0x000000000001ebe0 0x29b release/obj/hl1_client/entity.o - 0xc749 (size before relaxing) - .debug_str 0x000000000001ee7b 0x25d release/obj/hl1_client/ev_common.o - 0x6abe (size before relaxing) - .debug_str 0x000000000001f0d8 0x5c release/obj/hl1_client/events.o - 0x667d (size before relaxing) - .debug_str 0x000000000001f134 0x20f release/obj/hl1_client/flashlight.o - 0x73bc (size before relaxing) - .debug_str 0x000000000001f343 0x985 release/obj/hl1_client/GameStudioModelRenderer.o - 0x742c (size before relaxing) - .debug_str 0x000000000001fcc8 0x12e release/obj/hl1_client/geiger.o - 0x6a59 (size before relaxing) - .debug_str 0x000000000001fdf6 0xafb release/obj/hl1_client/hud.o - 0x85f3 (size before relaxing) - .debug_str 0x00000000000208f1 0x97 release/obj/hl1_client/hud_msg.o - 0x6e67 (size before relaxing) - .debug_str 0x0000000000020988 0x1cb release/obj/hl1_client/hud_redraw.o - 0x77b8 (size before relaxing) - .debug_str 0x0000000000020b53 0xbcf release/obj/hl1_client/hud_servers.o - 0x74eb (size before relaxing) - .debug_str 0x0000000000021722 0x66a7 release/obj/hl1_client/hud_spectator.o - 0xfae6 (size before relaxing) - .debug_str 0x0000000000027dc9 0x81 release/obj/hl1_client/hud_update.o - 0x6eb7 (size before relaxing) - .debug_str 0x0000000000027e4a 0x1937 release/obj/hl1_client/in_camera.o - 0x8862 (size before relaxing) - .debug_str 0x0000000000029781 0x689d release/obj/hl1_client/input.o - 0x11704 (size before relaxing) - .debug_str 0x000000000003001e 0x9d8 release/obj/hl1_client/inputw32.o - 0x7fac (size before relaxing) - .debug_str 0x00000000000309f6 0x1b8 release/obj/hl1_client/menu.o - 0x7886 (size before relaxing) - .debug_str 0x0000000000030bae 0x8c1 release/obj/hl1_client/vgui_SpectatorPanel.o - 0x8304 (size before relaxing) - .debug_str 0x000000000003146f 0x3b84 release/obj/hl1_client/vgui_TeamFortressViewport.o - 0xd848 (size before relaxing) - .debug_str 0x0000000000034ff3 0x244 release/obj/hl1_client/vgui_teammenu.o - 0x84a6 (size before relaxing) - .debug_str 0x0000000000035237 0xd10 release/obj/hl1_client/view.o - 0x9173 (size before relaxing) - .debug_str 0x0000000000035f47 0x6bd release/obj/hl1_client/message.o - 0x794a (size before relaxing) - .debug_str 0x0000000000036604 0xa8 release/obj/hl1_client/parsemsg.o - 0x260 (size before relaxing) - .debug_str 0x00000000000366ac 0x419 release/obj/hl1_client/saytext.o - 0x7b82 (size before relaxing) - .debug_str 0x0000000000036ac5 0x18f release/obj/hl1_client/status_icons.o - 0x748a (size before relaxing) - .debug_str 0x0000000000036c54 0x355 release/obj/hl1_client/statusbar.o - 0x6f26 (size before relaxing) - .debug_str 0x0000000000036fa9 0x18c release/obj/hl1_client/studio_util.o - 0x6c9c (size before relaxing) - .debug_str 0x0000000000037135 0x1168 release/obj/hl1_client/StudioModelRenderer.o - 0x8d31 (size before relaxing) - .debug_str 0x000000000003829d 0xb23 release/obj/hl1_client/text_message.o - 0x9883 (size before relaxing) - .debug_str 0x0000000000038dc0 0xde release/obj/hl1_client/train.o - 0x6ae0 (size before relaxing) - .debug_str 0x0000000000038e9e 0x2f3 release/obj/hl1_client/tri.o - 0x11552 (size before relaxing) - .debug_str 0x0000000000039191 0x67 release/obj/hl1_client/vgui_int.o - 0x756f (size before relaxing) - .debug_str 0x00000000000391f8 0x63 release/obj/hl1_client/cl_util.o - 0x6942 (size before relaxing) - .debug_str 0x000000000003925b 0xa42 release/obj/hl1_client/ev_hldm.o - 0x878a (size before relaxing) - .debug_str 0x0000000000039c9d 0xdc release/obj/hl1_client/vgui_MOTDWindow.o - 0x7bc4 (size before relaxing) - .debug_str 0x0000000000039d79 0x413 release/obj/hl1_client/vgui_SchemeManager.o - 0x6ff8 (size before relaxing) - .debug_str 0x000000000003a18c 0x54ed release/obj/hl1_client/vgui_ScorePanel.o - 0xf690 (size before relaxing) - .debug_str 0x000000000003f679 0x1e5 release/obj/hl1_client/vgui_ClassMenu.o - 0x8403 (size before relaxing) - .debug_str 0x000000000003f85e 0x164 release/obj/hl1_client/vgui_ConsolePanel.o - 0x6b25 (size before relaxing) - .debug_str 0x000000000003f9c2 0x5ba release/obj/hl1_client/vgui_ControlConfigPanel.o - 0xb31 (size before relaxing) - .debug_str 0x000000000003ff7c 0x93a release/obj/hl1_client/vgui_CustomObjects.o - 0x92ac (size before relaxing) - .debug_str 0x00000000000408b6 0x54b release/obj/hl1_client/vgui_ServerBrowser.o - 0x89e6 (size before relaxing) - .debug_str 0x0000000000040e01 0x175 release/obj/hl1_client/util.o - 0x6a38 (size before relaxing) - .debug_str 0x0000000000040f76 0x41a release/obj/hl1_client/health.o - 0x76eb (size before relaxing) - .debug_str 0x0000000000041390 0x384 release/obj/hl1_client/demo.o - 0x6c62 (size before relaxing) - .debug_str 0x0000000000041714 0x39d release/obj/hl1_client/mod/AvHAcidRocketGun.o - 0x8ad9 (size before relaxing) - .debug_str 0x0000000000041ab1 0x4e8 release/obj/hl1_client/mod/AvHAlienAbilities.o - 0xa023 (size before relaxing) - .debug_str 0x0000000000041f99 0x1912 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - 0xf53f (size before relaxing) - .debug_str 0x00000000000438ab 0x20d release/obj/hl1_client/mod/AvHBileBombGun.o - 0x8a8f (size before relaxing) - .debug_str 0x0000000000043ab8 0x2a2 release/obj/hl1_client/mod/AvHBite.o - 0xb73f (size before relaxing) - .debug_str 0x0000000000043d5a 0x207 release/obj/hl1_client/mod/AvHBite2.o - 0x8a2e (size before relaxing) - .debug_str 0x0000000000043f61 0x338 release/obj/hl1_client/mod/AvHBlink.o - 0xa4b6 (size before relaxing) - .debug_str 0x0000000000044299 0x2a8 release/obj/hl1_client/mod/AvHClaws.o - 0xb715 (size before relaxing) - .debug_str 0x0000000000044541 0x2e3 release/obj/hl1_client/mod/AvHDevour.o - 0x8dda (size before relaxing) - .debug_str 0x0000000000044824 0x6db release/obj/hl1_client/mod/AvHGrenade.o - 0x8df8 (size before relaxing) - .debug_str 0x0000000000044eff 0x2d0 release/obj/hl1_client/mod/AvHDivineWind.o - 0xb749 (size before relaxing) - .debug_str 0x00000000000451cf 0x400 release/obj/hl1_client/mod/AvHGrenadeGun.o - 0x88c8 (size before relaxing) - .debug_str 0x00000000000455cf 0x22d release/obj/hl1_client/mod/AvHHealingSpray.o - 0xb6a4 (size before relaxing) - .debug_str 0x00000000000457fc 0x48b release/obj/hl1_client/mod/AvHHeavyMachineGun.o - 0x892d (size before relaxing) - .debug_str 0x0000000000045c87 0x5a0 release/obj/hl1_client/mod/AvHItemInfo.o - 0x8989 (size before relaxing) - .debug_str 0x0000000000046227 0x2be release/obj/hl1_client/mod/AvHKnife.o - 0x86c6 (size before relaxing) - .debug_str 0x00000000000464e5 0x25b release/obj/hl1_client/mod/AvHMachineGun.o - 0x862f (size before relaxing) - .debug_str 0x0000000000046740 0x4fb release/obj/hl1_client/mod/AvHMarineWeapon.o - 0x7aad (size before relaxing) - .debug_str 0x0000000000046c3b 0x310 release/obj/hl1_client/mod/AvHMetabolize.o - 0xc630 (size before relaxing) - .debug_str 0x0000000000046f4b 0x2a0 release/obj/hl1_client/mod/AvHMine.o - 0x8935 (size before relaxing) - .debug_str 0x00000000000471eb 0x217 release/obj/hl1_client/mod/AvHParasiteGun.o - 0x8a93 (size before relaxing) - .debug_str 0x0000000000047402 0x2b1 release/obj/hl1_client/mod/AvHPistol.o - 0x8691 (size before relaxing) - .debug_str 0x00000000000476b3 0x2fd release/obj/hl1_client/mod/AvHPrimalScream.o - 0x8bb3 (size before relaxing) - .debug_str 0x00000000000479b0 0x53d release/obj/hl1_client/mod/AvHSonicGun.o - 0x94bf (size before relaxing) - .debug_str 0x0000000000047eed 0x219 release/obj/hl1_client/mod/AvHSpikeGun.o - 0x953b (size before relaxing) - .debug_str 0x0000000000048106 0x1db release/obj/hl1_client/mod/AvHSpitGun.o - 0xb6b7 (size before relaxing) - .debug_str 0x00000000000482e1 0x1f6 release/obj/hl1_client/mod/AvHSpores.o - 0x8a94 (size before relaxing) - .debug_str 0x00000000000484d7 0x2b9 release/obj/hl1_client/mod/AvHStomp.o - 0xb926 (size before relaxing) - .debug_str 0x0000000000048790 0x24a release/obj/hl1_client/mod/AvHSwipe.o - 0xb73d (size before relaxing) - .debug_str 0x00000000000489da 0x1ed release/obj/hl1_client/mod/AvHUmbraGun.o - 0x8a7e (size before relaxing) - .debug_str 0x0000000000048bc7 0x24f release/obj/hl1_client/mod/AvHWebSpinner.o - 0x8bce (size before relaxing) - .debug_str 0x0000000000048e16 0x29e release/obj/hl1_client/mod/AvHWelder.o - 0x882e (size before relaxing) - .debug_str 0x00000000000490b4 0x45e release/obj/hl1_client/mod/AnimationUtil.o - 0x58b9 (size before relaxing) - .debug_str 0x0000000000049512 0x4206 release/obj/hl1_client/mod/AvHActionButtons.o - 0xe80d (size before relaxing) - .debug_str 0x000000000004d718 0x3e8 release/obj/hl1_client/mod/AvHAlienWeapon.o - 0xc103 (size before relaxing) - .debug_str 0x000000000004db00 0x19f1 release/obj/hl1_client/mod/AvHAmbientSound.o - 0x819f (size before relaxing) - .debug_str 0x000000000004f4f1 0x15 release/obj/hl1_client/mod/AvHAssert.o - 0x302 (size before relaxing) - .debug_str 0x000000000004f506 0x1c9 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - 0x312c (size before relaxing) - .debug_str 0x000000000004f6cf 0x21b release/obj/hl1_client/mod/AvHClientUtil.o - 0x8a49 (size before relaxing) - .debug_str 0x000000000004f8ea 0x330b release/obj/hl1_client/mod/AvHCommanderModeHandler.o - 0x139e3 (size before relaxing) - .debug_str 0x0000000000052bf5 0x80 release/obj/hl1_client/mod/AvHConstants.o - 0x16a5 (size before relaxing) - .debug_str 0x0000000000052c75 0x430e release/obj/hl1_client/mod/AvHEntityHierarchy.o - 0xb0bd (size before relaxing) - .debug_str 0x0000000000056f83 0x287f release/obj/hl1_client/mod/AvHEvents.o - 0x10eae (size before relaxing) - .debug_str 0x0000000000059802 0x1d5 release/obj/hl1_client/mod/AvHFont.o - 0x69cc (size before relaxing) - .debug_str 0x00000000000599d7 0x3e7 release/obj/hl1_client/mod/AvHHelp.o - 0x886a (size before relaxing) - .debug_str 0x0000000000059dbe 0x26ef0 release/obj/hl1_client/mod/AvHHud.o - 0x4cb86 (size before relaxing) - .debug_str 0x0000000000080cae 0x314a release/obj/hl1_client/mod/AvHHudRender.o - 0x2eab1 (size before relaxing) - .debug_str 0x0000000000083df8 0x200 release/obj/hl1_client/mod/AvHLogoutComponent.o - 0xbad3 (size before relaxing) - .debug_str 0x0000000000083ff8 0x4b release/obj/hl1_client/mod/AvHMapExtents.o - 0x19ab (size before relaxing) - .debug_str 0x0000000000084043 0x537 release/obj/hl1_client/mod/AvHMiniMap.o - 0x7170 (size before relaxing) - .debug_str 0x000000000008457a 0x284 release/obj/hl1_client/mod/AvHMovementUtil.o - 0x34c3 (size before relaxing) - .debug_str 0x00000000000847fe 0x148b release/obj/hl1_client/mod/AvHNetworkMessages.o - 0x12afd (size before relaxing) - .debug_str 0x0000000000085c89 0xe2 release/obj/hl1_client/mod/AvHNexusClient.o - 0x1e70 (size before relaxing) - .debug_str 0x0000000000085d6b 0x0 release/obj/hl1_client/mod/AvHNexusTunnelToServer.o - .debug_str 0x0000000000085d6b 0x496 release/obj/hl1_client/mod/AvHOrder.o - 0x96ed (size before relaxing) - .debug_str 0x0000000000086201 0x408 release/obj/hl1_client/mod/AvHOverviewControl.o - 0xe207 (size before relaxing) - .debug_str 0x0000000000086609 0x3ae3 release/obj/hl1_client/mod/AvHOverviewMap.o - 0x16065 (size before relaxing) - .debug_str 0x000000000008a0ec 0x1baa release/obj/hl1_client/mod/AvHParticleEditorHandler.o - 0xe60c (size before relaxing) - .debug_str 0x000000000008bc96 0x60e release/obj/hl1_client/mod/AvHPieMenuHandler.o - 0x9ada (size before relaxing) - .debug_str 0x000000000008c2a4 0x2e2 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - 0x252b (size before relaxing) - .debug_str 0x000000000008c586 0x4f release/obj/hl1_client/mod/AvHScriptClient.o - 0xbbd9 (size before relaxing) - .debug_str 0x000000000008c5d5 0x339d release/obj/hl1_client/mod/AvHScriptManager.o - 0xa71e (size before relaxing) - .debug_str 0x000000000008f972 0x3e release/obj/hl1_client/mod/AvHScriptShared.o - 0x8ecf (size before relaxing) - .debug_str 0x000000000008f9b0 0x8a6 release/obj/hl1_client/mod/AvHScrollHandler.o - 0x86b0 (size before relaxing) - .debug_str 0x0000000000090256 0x1b5 release/obj/hl1_client/mod/AvHScrollPanel.o - 0xb5eb (size before relaxing) - .debug_str 0x000000000009040b 0x4042 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - 0xae46 (size before relaxing) - .debug_str 0x000000000009444d 0x533c release/obj/hl1_client/mod/AvHSharedUtil.o - 0x11c2d (size before relaxing) - .debug_str 0x0000000000099789 0x11cb release/obj/hl1_client/mod/AvHSpecials.o - 0x587e (size before relaxing) - .debug_str 0x000000000009a954 0x25d release/obj/hl1_client/mod/AvHSpriteAPI.o - 0x7673 (size before relaxing) - .debug_str 0x000000000009abb1 0x242 release/obj/hl1_client/mod/AvHTeamHierarchy.o - 0x12a87 (size before relaxing) - .debug_str 0x000000000009adf3 0x4da release/obj/hl1_client/mod/AvHTechImpulsePanel.o - 0xc769 (size before relaxing) - .debug_str 0x000000000009b2cd 0x3cc release/obj/hl1_client/mod/AvHTechNode.o - 0x252f (size before relaxing) - .debug_str 0x000000000009b699 0x1004 release/obj/hl1_client/mod/AvHTechSlotManager.o - 0x4b8f (size before relaxing) - .debug_str 0x000000000009c69d 0xc3d3 release/obj/hl1_client/mod/AvHTechTree.o - 0xfd34 (size before relaxing) - .debug_str 0x00000000000a8a70 0x5e7 release/obj/hl1_client/mod/AvHTooltip.o - 0x978b (size before relaxing) - .debug_str 0x00000000000a9057 0x108 release/obj/hl1_client/mod/AvHUIFactory.o - 0xb3f8 (size before relaxing) - .debug_str 0x00000000000a915f 0xd6 release/obj/hl1_client/mod/AvHVisibleBlipList.o - 0x6d75 (size before relaxing) - .debug_str 0x00000000000a9235 0xcdf release/obj/hl1_client/mod/CollisionChecker.o - 0x50cb (size before relaxing) - .debug_str 0x00000000000a9f14 0x2210 release/obj/hl1_client/mod/CollisionUtil.o - 0x4ac3 (size before relaxing) - .debug_str 0x00000000000ac124 0x95e release/obj/hl1_client/mod/AvHParticleSystem.o - 0xd1e8 (size before relaxing) - .debug_str 0x00000000000aca82 0x671f release/obj/hl1_client/mod/AvHParticleSystemManager.o - 0x135fc (size before relaxing) - .debug_str 0x00000000000b31a1 0xa64 release/obj/hl1_client/mod/AvHParticleTemplate.o - 0x8461 (size before relaxing) - .debug_str 0x00000000000b3c05 0x1b6 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - 0xbd3d (size before relaxing) - .debug_str 0x00000000000b3dbb 0x18a release/obj/hl1_client/mod/AvHSelectionHelper.o - 0x94c7 (size before relaxing) - .debug_str 0x00000000000b3f45 0x1d2 release/obj/hl1_client/common/interface.o - 0x148e (size before relaxing) - .debug_str 0x00000000000b4117 0x30e release/obj/hl1_client/game_shared/vgui_checkbutton2.o - 0x14d8 (size before relaxing) - .debug_str 0x00000000000b4425 0x3b0 release/obj/hl1_client/game_shared/vgui_grid.o - 0x8a3 (size before relaxing) - .debug_str 0x00000000000b47d5 0x75 release/obj/hl1_client/game_shared/vgui_helpers.o - 0x1e4 (size before relaxing) - .debug_str 0x00000000000b484a 0x4be release/obj/hl1_client/game_shared/vgui_listbox.o - 0x8d4 (size before relaxing) - .debug_str 0x00000000000b4d08 0x2b5 release/obj/hl1_client/game_shared/vgui_loadtga.o - 0x3355 (size before relaxing) - .debug_str 0x00000000000b4fbd 0x653 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - 0xd89 (size before relaxing) - .debug_str 0x00000000000b5610 0x46a release/obj/hl1_client/game_shared/vgui_slider2.o - 0x12c5 (size before relaxing) - .debug_str 0x00000000000b5a7a 0x27c release/obj/hl1_client/game_shared/voice_banmgr.o - 0x13ca (size before relaxing) - .debug_str 0x00000000000b5cf6 0x8c6 release/obj/hl1_client/game_shared/voice_status.o - 0x9220 (size before relaxing) - .debug_str 0x00000000000b65bc 0x4b0 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - 0x823f (size before relaxing) - .debug_str 0x00000000000b6a6c 0x34b release/obj/hl1_client/server/hl_wpn_glock.o - 0x6c4b (size before relaxing) - .debug_str 0x00000000000b6db7 0x188 release/obj/hl1_client/pm_shared/pm_debug.o - 0xc27 (size before relaxing) - .debug_str 0x00000000000b6f3f 0x1d13 release/obj/hl1_client/pm_shared/pm_shared.o - 0x8412 (size before relaxing) - .debug_str 0x00000000000b8c52 0x108 release/obj/hl1_client/pm_shared/pm_math.o - 0x3fd (size before relaxing) - .debug_str 0x00000000000b8d5a 0x73 release/obj/hl1_client/ui/bitmappng.o - 0x255 (size before relaxing) - .debug_str 0x00000000000b8dcd 0x2083 release/obj/hl1_client/ui/ChatPanel.o - 0x9b8b (size before relaxing) - .debug_str 0x00000000000bae50 0xa8 release/obj/hl1_client/ui/ColoredPanel.o - 0x676e (size before relaxing) - .debug_str 0x00000000000baef8 0x5f release/obj/hl1_client/ui/DummyPanel.o - 0x7784 (size before relaxing) - .debug_str 0x00000000000baf57 0x96e release/obj/hl1_client/ui/FadingImageLabel.o - 0x89fe (size before relaxing) - .debug_str 0x00000000000bb8c5 0xdd9 release/obj/hl1_client/ui/loadpng.o - 0x404a (size before relaxing) - .debug_str 0x00000000000bc69e 0x162 release/obj/hl1_client/ui/MarqueeComponent.o - 0x68dd (size before relaxing) - .debug_str 0x00000000000bc800 0x1df release/obj/hl1_client/ui/MemoryInputStream.o - 0x549 (size before relaxing) - .debug_str 0x00000000000bc9df 0x782 release/obj/hl1_client/ui/PieMenu.o - 0x88a7 (size before relaxing) - .debug_str 0x00000000000bd161 0x100f release/obj/hl1_client/ui/PieNode.o - 0xd3aa (size before relaxing) - .debug_str 0x00000000000be170 0xe14 release/obj/hl1_client/ui/ScoreboardIcon.o - 0x4db7 (size before relaxing) - .debug_str 0x00000000000bef84 0x701 release/obj/hl1_client/ui/SliderPlus.o - 0x399e (size before relaxing) - .debug_str 0x00000000000bf685 0x270 release/obj/hl1_client/ui/SpritePanel.o - 0x6bf0 (size before relaxing) - .debug_str 0x00000000000bf8f5 0x26a6 release/obj/hl1_client/ui/UIComponent.o - 0x7fd9 (size before relaxing) - .debug_str 0x00000000000c1f9b 0x1877 release/obj/hl1_client/ui/UIComponents.o - 0xd621 (size before relaxing) - .debug_str 0x00000000000c3812 0x96 release/obj/hl1_client/ui/UIFactory.o - 0xb6b2 (size before relaxing) - .debug_str 0x00000000000c38a8 0x1ce0 release/obj/hl1_client/ui/UIHud.o - 0xee71 (size before relaxing) - .debug_str 0x00000000000c5588 0x2bc9 release/obj/hl1_client/ui/UIManager.o - 0x12d5a (size before relaxing) - .debug_str 0x00000000000c8151 0x204 release/obj/hl1_client/ui/UIPieMenu.o - 0xc244 (size before relaxing) - .debug_str 0x00000000000c8355 0x278 release/obj/hl1_client/ui/UIUtil.o - 0xae9c (size before relaxing) - .debug_str 0x00000000000c85cd 0x40 release/obj/hl1_client/ui/InvisiblePanel.o - 0x66c6 (size before relaxing) - .debug_str 0x00000000000c860d 0x1ddac release/obj/hl1_client/util/Balance.o - 0x271e6 (size before relaxing) - .debug_str 0x00000000000e63b9 0xde8 release/obj/hl1_client/util/Checksum.o - 0x758b (size before relaxing) - .debug_str 0x00000000000e71a1 0x0 release/obj/hl1_client/util/GammaTable.o - .debug_str 0x00000000000e71a1 0x2a0 release/obj/hl1_client/util/LinuxSupport.o - 0x152b (size before relaxing) - .debug_str 0x00000000000e7441 0x101 release/obj/hl1_client/util/Mat3.o - 0x11e5 (size before relaxing) - .debug_str 0x00000000000e7542 0x26e release/obj/hl1_client/util/MathUtil.o - 0x168e (size before relaxing) - .debug_str 0x00000000000e77b0 0x93 release/obj/hl1_client/util/Quat.o - 0x32e (size before relaxing) - .debug_str 0x00000000000e7843 0x3d release/obj/hl1_client/util/Stacktrace.o - 0x33f (size before relaxing) - .debug_str 0x00000000000e7880 0x914 release/obj/hl1_client/util/STLUtil.o - 0x4aa7 (size before relaxing) - .debug_str 0x00000000000e8194 0x41 release/obj/hl1_client/util/Tokenizer.o - 0x3c78 (size before relaxing) - .debug_str 0x00000000000e81d5 0x4ca release/obj/hl1_client/textrep/TRDescription.o - 0x9024 (size before relaxing) - .debug_str 0x00000000000e869f 0x21d release/obj/hl1_client/textrep/TRFactory.o - 0x9f77 (size before relaxing) - -.debug_loc 0x0000000000000000 0x1c93b2 - *(.debug_loc) - .debug_loc 0x0000000000000000 0x555 release/obj/hl1_client/hl/hl_baseentity.o - .debug_loc 0x0000000000000555 0xd4 release/obj/hl1_client/hl/hl_objects.o - .debug_loc 0x0000000000000629 0x44a6 release/obj/hl1_client/hl/hl_weapons.o - .debug_loc 0x0000000000004acf 0x7515 release/obj/hl1_client/ammo.o - .debug_loc 0x000000000000bfe4 0x5e4 release/obj/hl1_client/cdll_int.o - .debug_loc 0x000000000000c5c8 0x384 release/obj/hl1_client/ammo_secondary.o - .debug_loc 0x000000000000c94c 0x5bb release/obj/hl1_client/ammohistory.o - .debug_loc 0x000000000000cf07 0x36e release/obj/hl1_client/battery.o - .debug_loc 0x000000000000d275 0x428 release/obj/hl1_client/com_weapons.o - .debug_loc 0x000000000000d69d 0xd67 release/obj/hl1_client/death.o - .debug_loc 0x000000000000e404 0xa56 release/obj/hl1_client/entity.o - .debug_loc 0x000000000000ee5a 0x406 release/obj/hl1_client/ev_common.o - .debug_loc 0x000000000000f260 0x2c release/obj/hl1_client/events.o - .debug_loc 0x000000000000f28c 0x309 release/obj/hl1_client/flashlight.o - .debug_loc 0x000000000000f595 0x18f release/obj/hl1_client/GameStudioModelRenderer.o - .debug_loc 0x000000000000f724 0xe0 release/obj/hl1_client/geiger.o - .debug_loc 0x000000000000f804 0xe92 release/obj/hl1_client/hud.o - .debug_loc 0x0000000000010696 0xf2 release/obj/hl1_client/hud_msg.o - .debug_loc 0x0000000000010788 0xe7f release/obj/hl1_client/hud_redraw.o - .debug_loc 0x0000000000011607 0x2fcb release/obj/hl1_client/hud_servers.o - .debug_loc 0x00000000000145d2 0x28ed release/obj/hl1_client/hud_spectator.o - .debug_loc 0x0000000000016ebf 0x116 release/obj/hl1_client/hud_update.o - .debug_loc 0x0000000000016fd5 0xc8e release/obj/hl1_client/in_camera.o - .debug_loc 0x0000000000017c63 0x7192 release/obj/hl1_client/input.o - .debug_loc 0x000000000001edf5 0xb0a release/obj/hl1_client/inputw32.o - .debug_loc 0x000000000001f8ff 0x804 release/obj/hl1_client/menu.o - .debug_loc 0x0000000000020103 0x1999 release/obj/hl1_client/vgui_SpectatorPanel.o - .debug_loc 0x0000000000021a9c 0xc56f release/obj/hl1_client/vgui_TeamFortressViewport.o - .debug_loc 0x000000000002e00b 0x16a6 release/obj/hl1_client/vgui_teammenu.o - .debug_loc 0x000000000002f6b1 0x2cb3 release/obj/hl1_client/view.o - .debug_loc 0x0000000000032364 0x26b4 release/obj/hl1_client/message.o - .debug_loc 0x0000000000034a18 0x26a release/obj/hl1_client/parsemsg.o - .debug_loc 0x0000000000034c82 0x2a13 release/obj/hl1_client/saytext.o - .debug_loc 0x0000000000037695 0x4fa release/obj/hl1_client/status_icons.o - .debug_loc 0x0000000000037b8f 0xe7c release/obj/hl1_client/statusbar.o - .debug_loc 0x0000000000038a0b 0x648 release/obj/hl1_client/studio_util.o - .debug_loc 0x0000000000039053 0x4631 release/obj/hl1_client/StudioModelRenderer.o - .debug_loc 0x000000000003d684 0x1f93 release/obj/hl1_client/text_message.o - .debug_loc 0x000000000003f617 0x1fc release/obj/hl1_client/train.o - .debug_loc 0x000000000003f813 0x3fb release/obj/hl1_client/tri.o - .debug_loc 0x000000000003fc0e 0xbd release/obj/hl1_client/vgui_int.o - .debug_loc 0x000000000003fccb 0x17a release/obj/hl1_client/cl_util.o - .debug_loc 0x000000000003fe45 0x280a release/obj/hl1_client/ev_hldm.o - .debug_loc 0x000000000004264f 0x462 release/obj/hl1_client/vgui_MOTDWindow.o - .debug_loc 0x0000000000042ab1 0x195a release/obj/hl1_client/vgui_SchemeManager.o - .debug_loc 0x000000000004440b 0x6f42 release/obj/hl1_client/vgui_ScorePanel.o - .debug_loc 0x000000000004b34d 0x1562 release/obj/hl1_client/vgui_ClassMenu.o - .debug_loc 0x000000000004c8af 0x291 release/obj/hl1_client/vgui_ConsolePanel.o - .debug_loc 0x000000000004cb40 0xe92 release/obj/hl1_client/vgui_ControlConfigPanel.o - .debug_loc 0x000000000004d9d2 0x1f02 release/obj/hl1_client/vgui_CustomObjects.o - .debug_loc 0x000000000004f8d4 0xf4d release/obj/hl1_client/vgui_ServerBrowser.o - .debug_loc 0x0000000000050821 0x95c release/obj/hl1_client/util.o - .debug_loc 0x000000000005117d 0x2173 release/obj/hl1_client/health.o - .debug_loc 0x00000000000532f0 0xc42 release/obj/hl1_client/demo.o - .debug_loc 0x0000000000053f32 0x79f release/obj/hl1_client/mod/AvHAcidRocketGun.o - .debug_loc 0x00000000000546d1 0xa81 release/obj/hl1_client/mod/AvHAlienAbilities.o - .debug_loc 0x0000000000055152 0x1d16 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .debug_loc 0x0000000000056e68 0x78b release/obj/hl1_client/mod/AvHBileBombGun.o - .debug_loc 0x00000000000575f3 0x813 release/obj/hl1_client/mod/AvHBite.o - .debug_loc 0x0000000000057e06 0x7a0 release/obj/hl1_client/mod/AvHBite2.o - .debug_loc 0x00000000000585a6 0x83b release/obj/hl1_client/mod/AvHBlink.o - .debug_loc 0x0000000000058de1 0x7a0 release/obj/hl1_client/mod/AvHClaws.o - .debug_loc 0x0000000000059581 0x932 release/obj/hl1_client/mod/AvHDevour.o - .debug_loc 0x0000000000059eb3 0x9f1 release/obj/hl1_client/mod/AvHGrenade.o - .debug_loc 0x000000000005a8a4 0x76b release/obj/hl1_client/mod/AvHDivineWind.o - .debug_loc 0x000000000005b00f 0x9a4 release/obj/hl1_client/mod/AvHGrenadeGun.o - .debug_loc 0x000000000005b9b3 0x78b release/obj/hl1_client/mod/AvHHealingSpray.o - .debug_loc 0x000000000005c13e 0x766 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .debug_loc 0x000000000005c8a4 0x2c release/obj/hl1_client/mod/AvHItemInfo.o - .debug_loc 0x000000000005c8d0 0x7b4 release/obj/hl1_client/mod/AvHKnife.o - .debug_loc 0x000000000005d084 0x708 release/obj/hl1_client/mod/AvHMachineGun.o - .debug_loc 0x000000000005d78c 0x92b release/obj/hl1_client/mod/AvHMarineWeapon.o - .debug_loc 0x000000000005e0b7 0x845 release/obj/hl1_client/mod/AvHMetabolize.o - .debug_loc 0x000000000005e8fc 0x7fb release/obj/hl1_client/mod/AvHMine.o - .debug_loc 0x000000000005f0f7 0x708 release/obj/hl1_client/mod/AvHParasiteGun.o - .debug_loc 0x000000000005f7ff 0x727 release/obj/hl1_client/mod/AvHPistol.o - .debug_loc 0x000000000005ff26 0x7a1 release/obj/hl1_client/mod/AvHPrimalScream.o - .debug_loc 0x00000000000606c7 0x823 release/obj/hl1_client/mod/AvHSonicGun.o - .debug_loc 0x0000000000060eea 0x8fa release/obj/hl1_client/mod/AvHSpikeGun.o - .debug_loc 0x00000000000617e4 0x766 release/obj/hl1_client/mod/AvHSpitGun.o - .debug_loc 0x0000000000061f4a 0x7a1 release/obj/hl1_client/mod/AvHSpores.o - .debug_loc 0x00000000000626eb 0x8a8 release/obj/hl1_client/mod/AvHStomp.o - .debug_loc 0x0000000000062f93 0x7fd release/obj/hl1_client/mod/AvHSwipe.o - .debug_loc 0x0000000000063790 0x7a1 release/obj/hl1_client/mod/AvHUmbraGun.o - .debug_loc 0x0000000000063f31 0x766 release/obj/hl1_client/mod/AvHWebSpinner.o - .debug_loc 0x0000000000064697 0x602 release/obj/hl1_client/mod/AvHWelder.o - .debug_loc 0x0000000000064c99 0x1823 release/obj/hl1_client/mod/AnimationUtil.o - .debug_loc 0x00000000000664bc 0x48a6 release/obj/hl1_client/mod/AvHActionButtons.o - .debug_loc 0x000000000006ad62 0xa27 release/obj/hl1_client/mod/AvHAlienWeapon.o - .debug_loc 0x000000000006b789 0xc45 release/obj/hl1_client/mod/AvHAmbientSound.o - .debug_loc 0x000000000006c3ce 0x20e release/obj/hl1_client/mod/AvHBaseInfoLocation.o - .debug_loc 0x000000000006c5dc 0x731 release/obj/hl1_client/mod/AvHClientUtil.o - .debug_loc 0x000000000006cd0d 0x3902 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .debug_loc 0x000000000007060f 0x2c release/obj/hl1_client/mod/AvHConstants.o - .debug_loc 0x000000000007063b 0x18a8 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .debug_loc 0x0000000000071ee3 0x60eb release/obj/hl1_client/mod/AvHEvents.o - .debug_loc 0x0000000000077fce 0xa85 release/obj/hl1_client/mod/AvHFont.o - .debug_loc 0x0000000000078a53 0x780 release/obj/hl1_client/mod/AvHHelp.o - .debug_loc 0x00000000000791d3 0x32224 release/obj/hl1_client/mod/AvHHud.o - .debug_loc 0x00000000000ab3f7 0x1d256 release/obj/hl1_client/mod/AvHHudRender.o - .debug_loc 0x00000000000c864d 0x495 release/obj/hl1_client/mod/AvHLogoutComponent.o - .debug_loc 0x00000000000c8ae2 0x2c release/obj/hl1_client/mod/AvHMapExtents.o - .debug_loc 0x00000000000c8b0e 0x2c42 release/obj/hl1_client/mod/AvHMiniMap.o - .debug_loc 0x00000000000cb750 0x5d5 release/obj/hl1_client/mod/AvHMovementUtil.o - .debug_loc 0x00000000000cbd25 0x7520 release/obj/hl1_client/mod/AvHNetworkMessages.o - .debug_loc 0x00000000000d3245 0x110b release/obj/hl1_client/mod/AvHOrder.o - .debug_loc 0x00000000000d4350 0x4f0 release/obj/hl1_client/mod/AvHOverviewControl.o - .debug_loc 0x00000000000d4840 0x7504 release/obj/hl1_client/mod/AvHOverviewMap.o - .debug_loc 0x00000000000dbd44 0x5a20 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .debug_loc 0x00000000000e1764 0x7e5 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .debug_loc 0x00000000000e1f49 0x1080 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .debug_loc 0x00000000000e2fc9 0x2c release/obj/hl1_client/mod/AvHScriptClient.o - .debug_loc 0x00000000000e2ff5 0xa3d3 release/obj/hl1_client/mod/AvHScriptManager.o - .debug_loc 0x00000000000ed3c8 0x2c release/obj/hl1_client/mod/AvHScriptShared.o - .debug_loc 0x00000000000ed3f4 0x2b9 release/obj/hl1_client/mod/AvHScrollHandler.o - .debug_loc 0x00000000000ed6ad 0x1e2 release/obj/hl1_client/mod/AvHScrollPanel.o - .debug_loc 0x00000000000ed88f 0x981 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .debug_loc 0x00000000000ee210 0xa18e release/obj/hl1_client/mod/AvHSharedUtil.o - .debug_loc 0x00000000000f839e 0x35ae release/obj/hl1_client/mod/AvHSpecials.o - .debug_loc 0x00000000000fb94c 0x11b2 release/obj/hl1_client/mod/AvHSpriteAPI.o - .debug_loc 0x00000000000fcafe 0xc81 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .debug_loc 0x00000000000fd77f 0xc0b release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .debug_loc 0x00000000000fe38a 0x21e release/obj/hl1_client/mod/AvHTechNode.o - .debug_loc 0x00000000000fe5a8 0x129c release/obj/hl1_client/mod/AvHTechSlotManager.o - .debug_loc 0x00000000000ff844 0x7e4f release/obj/hl1_client/mod/AvHTechTree.o - .debug_loc 0x0000000000107693 0x3e4b release/obj/hl1_client/mod/AvHTooltip.o - .debug_loc 0x000000000010b4de 0x511 release/obj/hl1_client/mod/AvHUIFactory.o - .debug_loc 0x000000000010b9ef 0x2384 release/obj/hl1_client/mod/AvHVisibleBlipList.o - .debug_loc 0x000000000010dd73 0xb6c2 release/obj/hl1_client/mod/CollisionChecker.o - .debug_loc 0x0000000000119435 0x7b27 release/obj/hl1_client/mod/CollisionUtil.o - .debug_loc 0x0000000000120f5c 0x2d9c release/obj/hl1_client/mod/AvHParticleSystem.o - .debug_loc 0x0000000000123cf8 0x561e release/obj/hl1_client/mod/AvHParticleSystemManager.o - .debug_loc 0x0000000000129316 0x6dca release/obj/hl1_client/mod/AvHParticleTemplate.o - .debug_loc 0x00000000001300e0 0x418a release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .debug_loc 0x000000000013426a 0x282a release/obj/hl1_client/mod/AvHSelectionHelper.o - .debug_loc 0x0000000000136a94 0x246 release/obj/hl1_client/common/interface.o - .debug_loc 0x0000000000136cda 0x439 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .debug_loc 0x0000000000137113 0x186e release/obj/hl1_client/game_shared/vgui_grid.o - .debug_loc 0x0000000000138981 0x248 release/obj/hl1_client/game_shared/vgui_helpers.o - .debug_loc 0x0000000000138bc9 0xa24 release/obj/hl1_client/game_shared/vgui_listbox.o - .debug_loc 0x00000000001395ed 0x245 release/obj/hl1_client/game_shared/vgui_loadtga.o - .debug_loc 0x0000000000139832 0xee5 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .debug_loc 0x000000000013a717 0x12db release/obj/hl1_client/game_shared/vgui_slider2.o - .debug_loc 0x000000000013b9f2 0x12bf release/obj/hl1_client/game_shared/voice_banmgr.o - .debug_loc 0x000000000013ccb1 0x2521 release/obj/hl1_client/game_shared/voice_status.o - .debug_loc 0x000000000013f1d2 0x5f7 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .debug_loc 0x000000000013f7c9 0x14c0 release/obj/hl1_client/server/hl_wpn_glock.o - .debug_loc 0x0000000000140c89 0x1d01 release/obj/hl1_client/pm_shared/pm_debug.o - .debug_loc 0x000000000014298a 0x10e4b release/obj/hl1_client/pm_shared/pm_shared.o - .debug_loc 0x00000000001537d5 0x8fb release/obj/hl1_client/pm_shared/pm_math.o - .debug_loc 0x00000000001540d0 0x127 release/obj/hl1_client/ui/bitmappng.o - .debug_loc 0x00000000001541f7 0x9fb release/obj/hl1_client/ui/ChatPanel.o - .debug_loc 0x0000000000154bf2 0x1ad release/obj/hl1_client/ui/ColoredPanel.o - .debug_loc 0x0000000000154d9f 0x58 release/obj/hl1_client/ui/DummyPanel.o - .debug_loc 0x0000000000154df7 0x163b release/obj/hl1_client/ui/FadingImageLabel.o - .debug_loc 0x0000000000156432 0x553 release/obj/hl1_client/ui/loadpng.o - .debug_loc 0x0000000000156985 0x488 release/obj/hl1_client/ui/MarqueeComponent.o - .debug_loc 0x0000000000156e0d 0x2ae release/obj/hl1_client/ui/MemoryInputStream.o - .debug_loc 0x00000000001570bb 0x604 release/obj/hl1_client/ui/PieMenu.o - .debug_loc 0x00000000001576bf 0xbbdb release/obj/hl1_client/ui/PieNode.o - .debug_loc 0x000000000016329a 0x28c9 release/obj/hl1_client/ui/ScoreboardIcon.o - .debug_loc 0x0000000000165b63 0x5b8 release/obj/hl1_client/ui/SliderPlus.o - .debug_loc 0x000000000016611b 0x8f7 release/obj/hl1_client/ui/SpritePanel.o - .debug_loc 0x0000000000166a12 0x228d release/obj/hl1_client/ui/UIComponent.o - .debug_loc 0x0000000000168c9f 0x5bb0 release/obj/hl1_client/ui/UIComponents.o - .debug_loc 0x000000000016e84f 0x20df release/obj/hl1_client/ui/UIFactory.o - .debug_loc 0x000000000017092e 0xa2ff release/obj/hl1_client/ui/UIHud.o - .debug_loc 0x000000000017ac2d 0x8736 release/obj/hl1_client/ui/UIManager.o - .debug_loc 0x0000000000183363 0x1317 release/obj/hl1_client/ui/UIPieMenu.o - .debug_loc 0x000000000018467a 0x11be release/obj/hl1_client/ui/UIUtil.o - .debug_loc 0x0000000000185838 0x70 release/obj/hl1_client/ui/InvisiblePanel.o - .debug_loc 0x00000000001858a8 0x25c62 release/obj/hl1_client/util/Balance.o - .debug_loc 0x00000000001ab50a 0x6f6b release/obj/hl1_client/util/Checksum.o - .debug_loc 0x00000000001b2475 0x850 release/obj/hl1_client/util/LinuxSupport.o - .debug_loc 0x00000000001b2cc5 0x3b4 release/obj/hl1_client/util/Mat3.o - .debug_loc 0x00000000001b3079 0x18fc release/obj/hl1_client/util/MathUtil.o - .debug_loc 0x00000000001b4975 0xb73 release/obj/hl1_client/util/Quat.o - .debug_loc 0x00000000001b54e8 0x3d70 release/obj/hl1_client/util/STLUtil.o - .debug_loc 0x00000000001b9258 0x16de release/obj/hl1_client/util/Tokenizer.o - .debug_loc 0x00000000001ba936 0x6f78 release/obj/hl1_client/textrep/TRDescription.o - .debug_loc 0x00000000001c18ae 0x7b04 release/obj/hl1_client/textrep/TRFactory.o - -.debug_macinfo - *(.debug_macinfo) - -.debug_weaknames - *(.debug_weaknames) - -.debug_funcnames - *(.debug_funcnames) - -.debug_typenames - *(.debug_typenames) - -.debug_varnames - *(.debug_varnames) - -.debug_pubtypes - *(.debug_pubtypes) - -.debug_ranges 0x0000000000000000 0x6a360 - *(.debug_ranges) - .debug_ranges 0x0000000000000000 0x2f8 release/obj/hl1_client/hl/hl_baseentity.o - .debug_ranges 0x00000000000002f8 0x18 release/obj/hl1_client/hl/hl_objects.o - .debug_ranges 0x0000000000000310 0x9a8 release/obj/hl1_client/hl/hl_weapons.o - .debug_ranges 0x0000000000000cb8 0x1cf8 release/obj/hl1_client/ammo.o - .debug_ranges 0x00000000000029b0 0xa8 release/obj/hl1_client/cdll_int.o - .debug_ranges 0x0000000000002a58 0xe8 release/obj/hl1_client/ammo_secondary.o - .debug_ranges 0x0000000000002b40 0x100 release/obj/hl1_client/ammohistory.o - .debug_ranges 0x0000000000002c40 0xf0 release/obj/hl1_client/battery.o - .debug_ranges 0x0000000000002d30 0x138 release/obj/hl1_client/com_weapons.o - .debug_ranges 0x0000000000002e68 0x238 release/obj/hl1_client/death.o - .debug_ranges 0x00000000000030a0 0x268 release/obj/hl1_client/entity.o - .debug_ranges 0x0000000000003308 0xe0 release/obj/hl1_client/ev_common.o - .debug_ranges 0x00000000000033e8 0x18 release/obj/hl1_client/events.o - .debug_ranges 0x0000000000003400 0x100 release/obj/hl1_client/flashlight.o - .debug_ranges 0x0000000000003500 0x58 release/obj/hl1_client/GameStudioModelRenderer.o - .debug_ranges 0x0000000000003558 0x80 release/obj/hl1_client/geiger.o - .debug_ranges 0x00000000000035d8 0x3a0 release/obj/hl1_client/hud.o - .debug_ranges 0x0000000000003978 0x38 release/obj/hl1_client/hud_msg.o - .debug_ranges 0x00000000000039b0 0x2e8 release/obj/hl1_client/hud_redraw.o - .debug_ranges 0x0000000000003c98 0x720 release/obj/hl1_client/hud_servers.o - .debug_ranges 0x00000000000043b8 0x600 release/obj/hl1_client/hud_spectator.o - .debug_ranges 0x00000000000049b8 0x18 release/obj/hl1_client/hud_update.o - .debug_ranges 0x00000000000049d0 0xe0 release/obj/hl1_client/in_camera.o - .debug_ranges 0x0000000000004ab0 0x15d0 release/obj/hl1_client/input.o - .debug_ranges 0x0000000000006080 0x200 release/obj/hl1_client/inputw32.o - .debug_ranges 0x0000000000006280 0x1b0 release/obj/hl1_client/menu.o - .debug_ranges 0x0000000000006430 0x280 release/obj/hl1_client/vgui_SpectatorPanel.o - .debug_ranges 0x00000000000066b0 0x2fa8 release/obj/hl1_client/vgui_TeamFortressViewport.o - .debug_ranges 0x0000000000009658 0x3b0 release/obj/hl1_client/vgui_teammenu.o - .debug_ranges 0x0000000000009a08 0x688 release/obj/hl1_client/view.o - .debug_ranges 0x000000000000a090 0x7f0 release/obj/hl1_client/message.o - .debug_ranges 0x000000000000a880 0x118 release/obj/hl1_client/parsemsg.o - .debug_ranges 0x000000000000a998 0x900 release/obj/hl1_client/saytext.o - .debug_ranges 0x000000000000b298 0x128 release/obj/hl1_client/status_icons.o - .debug_ranges 0x000000000000b3c0 0x400 release/obj/hl1_client/statusbar.o - .debug_ranges 0x000000000000b7c0 0x78 release/obj/hl1_client/studio_util.o - .debug_ranges 0x000000000000b838 0xb60 release/obj/hl1_client/StudioModelRenderer.o - .debug_ranges 0x000000000000c398 0x648 release/obj/hl1_client/text_message.o - .debug_ranges 0x000000000000c9e0 0xe8 release/obj/hl1_client/train.o - .debug_ranges 0x000000000000cac8 0x118 release/obj/hl1_client/tri.o - .debug_ranges 0x000000000000cbe0 0x58 release/obj/hl1_client/vgui_int.o - .debug_ranges 0x000000000000cc38 0x60 release/obj/hl1_client/cl_util.o - .debug_ranges 0x000000000000cc98 0x678 release/obj/hl1_client/ev_hldm.o - .debug_ranges 0x000000000000d310 0x160 release/obj/hl1_client/vgui_MOTDWindow.o - .debug_ranges 0x000000000000d470 0x330 release/obj/hl1_client/vgui_SchemeManager.o - .debug_ranges 0x000000000000d7a0 0x1420 release/obj/hl1_client/vgui_ScorePanel.o - .debug_ranges 0x000000000000ebc0 0x3a8 release/obj/hl1_client/vgui_ClassMenu.o - .debug_ranges 0x000000000000ef68 0x38 release/obj/hl1_client/vgui_ConsolePanel.o - .debug_ranges 0x000000000000efa0 0x3b8 release/obj/hl1_client/vgui_ControlConfigPanel.o - .debug_ranges 0x000000000000f358 0x978 release/obj/hl1_client/vgui_CustomObjects.o - .debug_ranges 0x000000000000fcd0 0x390 release/obj/hl1_client/vgui_ServerBrowser.o - .debug_ranges 0x0000000000010060 0x2f0 release/obj/hl1_client/util.o - .debug_ranges 0x0000000000010350 0x688 release/obj/hl1_client/health.o - .debug_ranges 0x00000000000109d8 0x1f8 release/obj/hl1_client/demo.o - .debug_ranges 0x0000000000010bd0 0x260 release/obj/hl1_client/mod/AvHAcidRocketGun.o - .debug_ranges 0x0000000000010e30 0x310 release/obj/hl1_client/mod/AvHAlienAbilities.o - .debug_ranges 0x0000000000011140 0x7d8 release/obj/hl1_client/mod/AvHBasePlayerWeapon.o - .debug_ranges 0x0000000000011918 0x280 release/obj/hl1_client/mod/AvHBileBombGun.o - .debug_ranges 0x0000000000011b98 0x288 release/obj/hl1_client/mod/AvHBite.o - .debug_ranges 0x0000000000011e20 0x280 release/obj/hl1_client/mod/AvHBite2.o - .debug_ranges 0x00000000000120a0 0x288 release/obj/hl1_client/mod/AvHBlink.o - .debug_ranges 0x0000000000012328 0x288 release/obj/hl1_client/mod/AvHClaws.o - .debug_ranges 0x00000000000125b0 0x2d0 release/obj/hl1_client/mod/AvHDevour.o - .debug_ranges 0x0000000000012880 0x2c0 release/obj/hl1_client/mod/AvHGrenade.o - .debug_ranges 0x0000000000012b40 0x268 release/obj/hl1_client/mod/AvHDivineWind.o - .debug_ranges 0x0000000000012da8 0x2e8 release/obj/hl1_client/mod/AvHGrenadeGun.o - .debug_ranges 0x0000000000013090 0x280 release/obj/hl1_client/mod/AvHHealingSpray.o - .debug_ranges 0x0000000000013310 0x268 release/obj/hl1_client/mod/AvHHeavyMachineGun.o - .debug_ranges 0x0000000000013578 0x18 release/obj/hl1_client/mod/AvHItemInfo.o - .debug_ranges 0x0000000000013590 0x270 release/obj/hl1_client/mod/AvHKnife.o - .debug_ranges 0x0000000000013800 0x268 release/obj/hl1_client/mod/AvHMachineGun.o - .debug_ranges 0x0000000000013a68 0x2a8 release/obj/hl1_client/mod/AvHMarineWeapon.o - .debug_ranges 0x0000000000013d10 0x268 release/obj/hl1_client/mod/AvHMetabolize.o - .debug_ranges 0x0000000000013f78 0x298 release/obj/hl1_client/mod/AvHMine.o - .debug_ranges 0x0000000000014210 0x268 release/obj/hl1_client/mod/AvHParasiteGun.o - .debug_ranges 0x0000000000014478 0x260 release/obj/hl1_client/mod/AvHPistol.o - .debug_ranges 0x00000000000146d8 0x280 release/obj/hl1_client/mod/AvHPrimalScream.o - .debug_ranges 0x0000000000014958 0x2b8 release/obj/hl1_client/mod/AvHSonicGun.o - .debug_ranges 0x0000000000014c10 0x2e8 release/obj/hl1_client/mod/AvHSpikeGun.o - .debug_ranges 0x0000000000014ef8 0x280 release/obj/hl1_client/mod/AvHSpitGun.o - .debug_ranges 0x0000000000015178 0x280 release/obj/hl1_client/mod/AvHSpores.o - .debug_ranges 0x00000000000153f8 0x2b0 release/obj/hl1_client/mod/AvHStomp.o - .debug_ranges 0x00000000000156a8 0x268 release/obj/hl1_client/mod/AvHSwipe.o - .debug_ranges 0x0000000000015910 0x280 release/obj/hl1_client/mod/AvHUmbraGun.o - .debug_ranges 0x0000000000015b90 0x268 release/obj/hl1_client/mod/AvHWebSpinner.o - .debug_ranges 0x0000000000015df8 0x238 release/obj/hl1_client/mod/AvHWelder.o - .debug_ranges 0x0000000000016030 0x278 release/obj/hl1_client/mod/AnimationUtil.o - .debug_ranges 0x00000000000162a8 0x1128 release/obj/hl1_client/mod/AvHActionButtons.o - .debug_ranges 0x00000000000173d0 0x288 release/obj/hl1_client/mod/AvHAlienWeapon.o - .debug_ranges 0x0000000000017658 0x240 release/obj/hl1_client/mod/AvHAmbientSound.o - .debug_ranges 0x0000000000017898 0x30 release/obj/hl1_client/mod/AvHBaseInfoLocation.o - .debug_ranges 0x00000000000178c8 0x180 release/obj/hl1_client/mod/AvHClientUtil.o - .debug_ranges 0x0000000000017a48 0xcf8 release/obj/hl1_client/mod/AvHCommanderModeHandler.o - .debug_ranges 0x0000000000018740 0x18 release/obj/hl1_client/mod/AvHConstants.o - .debug_ranges 0x0000000000018758 0xe78 release/obj/hl1_client/mod/AvHEntityHierarchy.o - .debug_ranges 0x00000000000195d0 0x1300 release/obj/hl1_client/mod/AvHEvents.o - .debug_ranges 0x000000000001a8d0 0x250 release/obj/hl1_client/mod/AvHFont.o - .debug_ranges 0x000000000001ab20 0x118 release/obj/hl1_client/mod/AvHHelp.o - .debug_ranges 0x000000000001ac38 0xcf30 release/obj/hl1_client/mod/AvHHud.o - .debug_ranges 0x0000000000027b68 0x5370 release/obj/hl1_client/mod/AvHHudRender.o - .debug_ranges 0x000000000002ced8 0x198 release/obj/hl1_client/mod/AvHLogoutComponent.o - .debug_ranges 0x000000000002d070 0x18 release/obj/hl1_client/mod/AvHMapExtents.o - .debug_ranges 0x000000000002d088 0xa68 release/obj/hl1_client/mod/AvHMiniMap.o - .debug_ranges 0x000000000002daf0 0x100 release/obj/hl1_client/mod/AvHMovementUtil.o - .debug_ranges 0x000000000002dbf0 0x2258 release/obj/hl1_client/mod/AvHNetworkMessages.o - .debug_ranges 0x000000000002fe48 0x270 release/obj/hl1_client/mod/AvHOrder.o - .debug_ranges 0x00000000000300b8 0xc8 release/obj/hl1_client/mod/AvHOverviewControl.o - .debug_ranges 0x0000000000030180 0x1948 release/obj/hl1_client/mod/AvHOverviewMap.o - .debug_ranges 0x0000000000031ac8 0x14a8 release/obj/hl1_client/mod/AvHParticleEditorHandler.o - .debug_ranges 0x0000000000032f70 0x140 release/obj/hl1_client/mod/AvHPieMenuHandler.o - .debug_ranges 0x00000000000330b0 0x370 release/obj/hl1_client/mod/AvHPlayerUpgrade.o - .debug_ranges 0x0000000000033420 0x18 release/obj/hl1_client/mod/AvHScriptClient.o - .debug_ranges 0x0000000000033438 0x2ed0 release/obj/hl1_client/mod/AvHScriptManager.o - .debug_ranges 0x0000000000036308 0x10 release/obj/hl1_client/mod/AvHScriptShared.o - .debug_ranges 0x0000000000036318 0x128 release/obj/hl1_client/mod/AvHScrollHandler.o - .debug_ranges 0x0000000000036440 0xa0 release/obj/hl1_client/mod/AvHScrollPanel.o - .debug_ranges 0x00000000000364e0 0x478 release/obj/hl1_client/mod/AvHSharedMovementInfo.o - .debug_ranges 0x0000000000036958 0x1f68 release/obj/hl1_client/mod/AvHSharedUtil.o - .debug_ranges 0x00000000000388c0 0x7a8 release/obj/hl1_client/mod/AvHSpecials.o - .debug_ranges 0x0000000000039068 0x4c8 release/obj/hl1_client/mod/AvHSpriteAPI.o - .debug_ranges 0x0000000000039530 0x400 release/obj/hl1_client/mod/AvHTeamHierarchy.o - .debug_ranges 0x0000000000039930 0x380 release/obj/hl1_client/mod/AvHTechImpulsePanel.o - .debug_ranges 0x0000000000039cb0 0x88 release/obj/hl1_client/mod/AvHTechNode.o - .debug_ranges 0x0000000000039d38 0x2d0 release/obj/hl1_client/mod/AvHTechSlotManager.o - .debug_ranges 0x000000000003a008 0x3ab0 release/obj/hl1_client/mod/AvHTechTree.o - .debug_ranges 0x000000000003dab8 0xcf8 release/obj/hl1_client/mod/AvHTooltip.o - .debug_ranges 0x000000000003e7b0 0x1e0 release/obj/hl1_client/mod/AvHUIFactory.o - .debug_ranges 0x000000000003e990 0x740 release/obj/hl1_client/mod/AvHVisibleBlipList.o - .debug_ranges 0x000000000003f0d0 0x2558 release/obj/hl1_client/mod/CollisionChecker.o - .debug_ranges 0x0000000000041628 0x10d8 release/obj/hl1_client/mod/CollisionUtil.o - .debug_ranges 0x0000000000042700 0x548 release/obj/hl1_client/mod/AvHParticleSystem.o - .debug_ranges 0x0000000000042c48 0xcf8 release/obj/hl1_client/mod/AvHParticleSystemManager.o - .debug_ranges 0x0000000000043940 0x1a88 release/obj/hl1_client/mod/AvHParticleTemplate.o - .debug_ranges 0x00000000000453c8 0x1110 release/obj/hl1_client/mod/AvHParticleTemplateClient.o - .debug_ranges 0x00000000000464d8 0x8e8 release/obj/hl1_client/mod/AvHSelectionHelper.o - .debug_ranges 0x0000000000046dc0 0x70 release/obj/hl1_client/common/interface.o - .debug_ranges 0x0000000000046e30 0xe8 release/obj/hl1_client/game_shared/vgui_checkbutton2.o - .debug_ranges 0x0000000000046f18 0x328 release/obj/hl1_client/game_shared/vgui_grid.o - .debug_ranges 0x0000000000047240 0x28 release/obj/hl1_client/game_shared/vgui_helpers.o - .debug_ranges 0x0000000000047268 0x238 release/obj/hl1_client/game_shared/vgui_listbox.o - .debug_ranges 0x00000000000474a0 0xe8 release/obj/hl1_client/game_shared/vgui_loadtga.o - .debug_ranges 0x0000000000047588 0x2d0 release/obj/hl1_client/game_shared/vgui_scrollbar2.o - .debug_ranges 0x0000000000047858 0x220 release/obj/hl1_client/game_shared/vgui_slider2.o - .debug_ranges 0x0000000000047a78 0x238 release/obj/hl1_client/game_shared/voice_banmgr.o - .debug_ranges 0x0000000000047cb0 0x7f0 release/obj/hl1_client/game_shared/voice_status.o - .debug_ranges 0x00000000000484a0 0x230 release/obj/hl1_client/game_shared/voice_vgui_tweakdlg.o - .debug_ranges 0x00000000000486d0 0x530 release/obj/hl1_client/server/hl_wpn_glock.o - .debug_ranges 0x0000000000048c00 0xd0 release/obj/hl1_client/pm_shared/pm_debug.o - .debug_ranges 0x0000000000048cd0 0x2690 release/obj/hl1_client/pm_shared/pm_shared.o - .debug_ranges 0x000000000004b360 0xd0 release/obj/hl1_client/pm_shared/pm_math.o - .debug_ranges 0x000000000004b430 0x20 release/obj/hl1_client/ui/bitmappng.o - .debug_ranges 0x000000000004b450 0x288 release/obj/hl1_client/ui/ChatPanel.o - .debug_ranges 0x000000000004b6d8 0x48 release/obj/hl1_client/ui/ColoredPanel.o - .debug_ranges 0x000000000004b720 0x18 release/obj/hl1_client/ui/DummyPanel.o - .debug_ranges 0x000000000004b738 0x558 release/obj/hl1_client/ui/FadingImageLabel.o - .debug_ranges 0x000000000004bc90 0x120 release/obj/hl1_client/ui/loadpng.o - .debug_ranges 0x000000000004bdb0 0x88 release/obj/hl1_client/ui/MarqueeComponent.o - .debug_ranges 0x000000000004be38 0x48 release/obj/hl1_client/ui/MemoryInputStream.o - .debug_ranges 0x000000000004be80 0x130 release/obj/hl1_client/ui/PieMenu.o - .debug_ranges 0x000000000004bfb0 0x2a40 release/obj/hl1_client/ui/PieNode.o - .debug_ranges 0x000000000004e9f0 0x6c8 release/obj/hl1_client/ui/ScoreboardIcon.o - .debug_ranges 0x000000000004f0b8 0x150 release/obj/hl1_client/ui/SliderPlus.o - .debug_ranges 0x000000000004f208 0x278 release/obj/hl1_client/ui/SpritePanel.o - .debug_ranges 0x000000000004f480 0x890 release/obj/hl1_client/ui/UIComponent.o - .debug_ranges 0x000000000004fd10 0x1ad8 release/obj/hl1_client/ui/UIComponents.o - .debug_ranges 0x00000000000517e8 0x580 release/obj/hl1_client/ui/UIFactory.o - .debug_ranges 0x0000000000051d68 0x2260 release/obj/hl1_client/ui/UIHud.o - .debug_ranges 0x0000000000053fc8 0x1ba8 release/obj/hl1_client/ui/UIManager.o - .debug_ranges 0x0000000000055b70 0x420 release/obj/hl1_client/ui/UIPieMenu.o - .debug_ranges 0x0000000000055f90 0x2d0 release/obj/hl1_client/ui/UIUtil.o - .debug_ranges 0x0000000000056260 0x18 release/obj/hl1_client/ui/InvisiblePanel.o - .debug_ranges 0x0000000000056278 0xd3d8 release/obj/hl1_client/util/Balance.o - .debug_ranges 0x0000000000063650 0x1a30 release/obj/hl1_client/util/Checksum.o - .debug_ranges 0x0000000000065080 0x140 release/obj/hl1_client/util/LinuxSupport.o - .debug_ranges 0x00000000000651c0 0x30 release/obj/hl1_client/util/Mat3.o - .debug_ranges 0x00000000000651f0 0x4a0 release/obj/hl1_client/util/MathUtil.o - .debug_ranges 0x0000000000065690 0x1b0 release/obj/hl1_client/util/Quat.o - .debug_ranges 0x0000000000065840 0xfd0 release/obj/hl1_client/util/STLUtil.o - .debug_ranges 0x0000000000066810 0x4d0 release/obj/hl1_client/util/Tokenizer.o - .debug_ranges 0x0000000000066ce0 0x1360 release/obj/hl1_client/textrep/TRDescription.o - .debug_ranges 0x0000000000068040 0x2320 release/obj/hl1_client/textrep/TRFactory.o - -.debug_macro - *(.debug_macro) - -.gnu.attributes - *(.gnu.attributes) - -/DISCARD/ - *(.note.GNU-stack) - *(.gnu_debuglink) - *(.gnu.lto_*) -OUTPUT(release/client.so elf32-i386) diff --git a/main/source/linux/libparticleMP.a b/main/source/linux/libparticleMP.a index 65416ff9..39516034 100644 Binary files a/main/source/linux/libparticleMP.a and b/main/source/linux/libparticleMP.a differ diff --git a/main/source/linux/vgui.so b/main/source/linux/vgui.so old mode 100755 new mode 100644 index 186f9851..69cc297c Binary files a/main/source/linux/vgui.so and b/main/source/linux/vgui.so differ diff --git a/main/source/mod/AvHHud.cpp b/main/source/mod/AvHHud.cpp index b1f10f88..75d7cce5 100644 --- a/main/source/mod/AvHHud.cpp +++ b/main/source/mod/AvHHud.cpp @@ -228,10 +228,10 @@ extern int CL_ButtonBits(int); extern int g_iVisibleMouse; //@2014 make this work for linux -/* + GammaTable AvHHud::sPregameGammaTable; GammaTable AvHHud::sGameGammaTable; -*/ + bool AvHHud::sShowMap = false; @@ -347,10 +347,11 @@ sPregameGammaTable.InitializeToVideoState(); bool AvHHud::OnKeyEvent(int virtualKey, int scanCode, bool pressed) { + if (gViewPort != NULL && !mSteamUIActive) { - - ChatPanel* theChatPanel = gViewPort->GetChatPanel(); + //@linux no chat Panel for Linux + /*ChatPanel* theChatPanel = gViewPort->GetChatPanel(); if (theChatPanel && theChatPanel->isVisible()) { @@ -365,8 +366,8 @@ bool AvHHud::OnKeyEvent(int virtualKey, int scanCode, bool pressed) // the key up needs to go to HL. return theChatPanel->WasKeyPushed(virtualKey); } - } - //@2014 VK_ESCAPE --> KEY_ESCAPE + }*/ + //@linux VK_ESCAPE --> KEY_ESCAPE if (virtualKey == KEY_ESCAPE && GetInTopDownMode() && mGhostBuilding != MESSAGE_NULL) { if (pressed) @@ -1766,12 +1767,9 @@ AvHMessageID AvHHud::HotKeyHit(char inChar) return gCommanderHandler.HotKeyHit(inChar); } //@2014 make this work for linux - float AvHHud::GetGammaSlope() const { - //return sGameGammaTable.GetGammaSlope(); - float mSlope = 1.0f; - return mSlope; + return sGameGammaTable.GetGammaSlope(); } string AvHHud::GetMapName(bool inLocalOnly) const { @@ -6765,7 +6763,6 @@ bool AvHHud::GetSafeForSpriteDrawing() const bool theSafeForDrawing = false; const char* theLevelName = gEngfuncs.pfnGetLevelName(); - string theCurrentMapName = this->GetMapName(true); if(theLevelName && (theCurrentMapName != "")) { diff --git a/main/source/mod/AvHHud.cpp~ b/main/source/mod/AvHHud.cpp~ index 65a2b711..4091507b 100644 --- a/main/source/mod/AvHHud.cpp~ +++ b/main/source/mod/AvHHud.cpp~ @@ -1767,13 +1767,12 @@ AvHMessageID AvHHud::HotKeyHit(char inChar) return gCommanderHandler.HotKeyHit(inChar); } //@2014 make this work for linux - +#ifdef _WIN float AvHHud::GetGammaSlope() const { - //return sGameGammaTable.GetGammaSlope(); - float mSlope = 1.0f; - return mSlope; + return sGameGammaTable.GetGammaSlope(); } +#endif string AvHHud::GetMapName(bool inLocalOnly) const { string theMapName = this->mMapName; @@ -6766,7 +6765,6 @@ bool AvHHud::GetSafeForSpriteDrawing() const bool theSafeForDrawing = false; const char* theLevelName = gEngfuncs.pfnGetLevelName(); - string theCurrentMapName = this->GetMapName(true); if(theLevelName && (theCurrentMapName != "")) { diff --git a/main/source/mod/AvHHud.h b/main/source/mod/AvHHud.h index a4797398..166ad895 100644 --- a/main/source/mod/AvHHud.h +++ b/main/source/mod/AvHHud.h @@ -128,7 +128,7 @@ #include "AvHVisibleBlipList.h" #include "AvHMapExtents.h" #include "AvHSpecials.h" -//#include "GammaTable.h" +#include "GammaTable.h" #include "AvHBaseInfoLocation.h" #include "AvHTooltip.h" #include "AvHTechSlotManager.h" @@ -671,10 +671,9 @@ private: int mNumLocalSelectEvents; AvHMapMode mMapMode; //@2014 make this work for linux - /* static GammaTable sPregameGammaTable; static GammaTable sGameGammaTable; - */ + float mDesiredGammaSlope; diff --git a/main/source/mod/AvHHud.h~ b/main/source/mod/AvHHud.h~ deleted file mode 100644 index 166ad895..00000000 --- a/main/source/mod/AvHHud.h~ +++ /dev/null @@ -1,871 +0,0 @@ -//======== (C) Copyright 2001 Charles G. Cleveland All rights reserved. ========= -// -// The copyright to the contents herein is the property of Charles G. Cleveland. -// The contents may be used and/or copied only with the written permission of -// Charles G. Cleveland, or in accordance with the terms and conditions stipulated in -// the agreement/contract under which the contents have been supplied. -// -// Purpose: Main NS HUD, also interface to client network messages -// -// $Workfile: AvHHud.h $ -// $Date: 2002/10/24 21:29:49 $ -// -//------------------------------------------------------------------------------- -// $Log: AvHHud.h,v $ -// Revision 1.60 2002/10/24 21:29:49 Flayra -// - Moved help client-side -// - Fixed particle/changelevel crash -// - Reworked marine upgrade drawing -// - Added lots of utility functions for help system (mirrors functions on server) -// - Removed gamma message unless it failed or if maxplayers is 1 -// - Fixed alien hive sight crash -// - Show players under reticle while in ready room and spectating -// - Removed ugly/too-prevalent user3 icons -// -// Revision 1.59 2002/10/03 20:24:39 Flayra -// - Changes for "more resources required" -// -// Revision 1.58 2002/10/03 18:54:31 Flayra -// - Allow right-click to cancel building placement -// - Fixed help icons -// - Added a couple utility functions -// - Reworked order notification -// - Reworked blip network messages to avoid hard-coded limit -// - Sent max resources down with current resources -// - Countdown sound no longer prevents other hud sounds -// - Alien trigger sounds -// - New order sounds -// - No longer disable nodes out of our cost range -// -// Revision 1.57 2002/09/25 20:47:22 Flayra -// - Don't draw elements on HUD when dead -// - UI refactoring -// - Split reticle help into help text and reticle text -// - Removed use order -// - Added separate select sound for alien -// - Multiple move sounds -// - Only draw entity build/health status when under reticle (no more scanning around you) -// - Added 3 new sayings -// -// Revision 1.56 2002/09/23 22:18:25 Flayra -// - Added alien build circles -// - Game status changes so particles aren't sent every time -// - Demo playback changes (save restore basic data that HUD already has) -// - New alert sounds -// - Skin support -// -// Revision 1.55 2002/09/09 19:55:24 Flayra -// - Added hive info indicator -// - Fixed bug where reticle tooltip help text wasn't being set until a weapon was selected -// - Fixed release mode bug where tooltips weren't expiring -// - Fixed bug where marine upgrades blinked -// - "No commander" indicator now blinks -// -// Revision 1.54 2002/08/31 18:01:01 Flayra -// - Work at VALVe -// -// Revision 1.53 2002/08/16 02:37:49 Flayra -// - HUD sounds no longer cut each other off (they won't play instead of cutting off another sound) -// - Tooltip sounds -// - Selection issues -// - Draw rings around buildings that need to be built -// - Removed old overwatch code -// -// Revision 1.52 2002/08/09 01:02:51 Flayra -// - Added hooks for demo playback, removed prediction selection -// -// Revision 1.51 2002/08/02 22:51:28 Flayra -// - Fixed memory overwrite...eek! -// -// Revision 1.50 2002/08/02 21:59:12 Flayra -// - Added reticle help, new tooltip system and much nicer order drawing! Refactored view model drawing a bit, hoping to make texture blending work for it. -// -// Revision 1.49 2002/07/26 23:05:01 Flayra -// - Generate numerical feedback for damage events -// - Refactoring for more info when looking at something (instead of bad-looking player names only) -// -// Revision 1.48 2002/07/23 17:07:37 Flayra -// - Added visually-smooth energy level, added versatile location code, new hive sight info, refactored to remove extra sprites (128 HUD sprites bug), commander tech help fixes -// -// Revision 1.47 2002/07/08 17:07:56 Flayra -// - Started to add display of marine upgrade sprite, fixed bug where building indicators aren't displayed after a map change, info_location drawing changes, primal scream color tweak, removed old hive drawing code -// -// Revision 1.46 2002/07/01 21:35:05 Flayra -// - Removed lots of outdated sprites and sprite code, added building ranges, fixed ghost building problem (bug #82) -// -// Revision 1.45 2002/06/25 18:03:09 Flayra -// - Added info_locations, removed old weapon help system, added smooth resource swelling, lots of alien UI usability changes, fixed problem with ghost building -// -// Revision 1.44 2002/06/10 19:55:36 Flayra -// - New commander UI (bindable via hotkeys, added REMOVE_SELECTION for when clicking menu options when no players selected) -// -// Revision 1.43 2002/06/03 16:48:45 Flayra -// - Help sprites moved into one animated sprite, select sound volume reduced (now that sound is normalized) -// -// Revision 1.42 2002/05/28 17:48:14 Flayra -// - Minimap refactoring, reinforcement refactoring, new hive sight fixes, recycling support -// -// Revision 1.41 2002/05/23 02:33:42 Flayra -// - Post-crash checkin. Restored @Backup from around 4/16. Contains changes for last four weeks of development. -// -//=============================================================================== -#ifndef AVHHUD_H -#define AVHHUD_H - -#include "UIHud.h" -#include "AvHConstants.h" -#include "AvHSpecials.h" -#include "AvHSharedTypes.h" -#include "AvHParticleSystem.h" -#include "entity_state.h" -#include "VGUI_ProgressBar.h" -#include "AvHEntityHierarchy.h" -#include "MarqueeComponent.h" -#include "AvHOrder.h" -#include "AvHMessage.h" -#include "AvHAmbientSound.h" -#include "AvHTechTree.h" -#include "AvHVisibleBlipList.h" -#include "AvHMapExtents.h" -#include "AvHSpecials.h" -#include "GammaTable.h" -#include "AvHBaseInfoLocation.h" -#include "AvHTooltip.h" -#include "AvHTechSlotManager.h" -#include "AvHHudConstants.h" -#include "AvHOverviewMap.h" - -class AvHTeamHierarchy; -class PieMenu; -class FadingImageLabel; -using vgui::Cursor; - -struct AnimatedSprite -{ - float mCurrentFrame; - int mData; -}; - -class SelectionEffect -{ -public: - SelectionEffect() : mEntIndex(-1), mAngleOffset(0) - {} - - int mEntIndex; - int mAngleOffset; -}; - -typedef enum -{ - MAIN_MODE, - EDITPS_MODE, - SCOREBOARD_MODE -} UIMode; - -typedef vector SelectionListType; - -class NumericalInfoEffect -{ -public: - NumericalInfoEffect(float inPosition[3], float inNumber, int inEventType, float inTimeCreated); - void GetPosition(float* outPosition) const; - float GetNumber() const; - int GetEventType() const; - float GetTimeCreated() const; - void SetPosition(float inPosition[3]); - -private: - float mPosition[3]; - float mNumber; - int mEventType; - float mTimeCreated; -}; - -const int kNumUpgradeLines = 5; - -class AvHHud : public UIHud -{ -public: - AvHHud(const string& inFilename, UIFactory* inFactory); - virtual ~AvHHud(void); - - void OnActivateSteamUI(); - void OnDeactivateSteamUI(); - void OnLostFocus(); - bool OnKeyEvent(int virtualKey, int scanCode, bool pressed); - - void AddMiniMapAlert(float x, float y); - void AddNumericalInfoMessage(float inOrigin[3], float inNumber, int inEventType); - void AddTooltip(const char* inMessageText, bool inIsToolTip = true, float inTooltipWidth = kToolTipMaxWidth); - bool AddTooltipOnce(const char* inMessageText, bool inIsToolTip = true); - void Cancel(); - - void ClearSelection(); - - void ClientProcessEntity(struct entity_state_s* inEntity); - - void ComponentJustPainted(Panel* inPanel); - - bool GetAndClearAlienAbility(AvHMessageID& outMessageID); - bool GetAndClearGroupEvent(AvHMessageID& outMessageID); - bool GetAndClearTechEvent(AvHMessageID& outMessageID); - bool GetLastHotkeySelectionEvent(AvHMessageID& outMessageID); - void SetLastHotkeySelectionEvent(AvHMessageID inMessageID); - - // Returns true if particles should be rendered in the HUD. - bool GetParticlesVisible() const; - bool GetSafeForSpriteDrawing() const; - - void ClearTrackingEntity(); - int GetTrackingEntity() const; - - bool GetIsRegionBlockedByUI(float inNormX, float inNormY); - - //int GetArmorLevel(void) const; - int GetCommanderIndex() const; - bool GetHasJetpack() const; - int GetHelpIconFrameFromUser3(AvHUser3 inUser3); - HSPRITE GetHelpSprite() const; - bool GetHasAlienUpgradesAvailable() const; - bool GetIsAlien() const; - bool GetIsBeingDigested() const; - bool GetIsEnsnared() const; - bool GetIsDigesting() const; - bool GetIsStunned() const; - bool GetIsNotInControl() const; - bool GetIsInTopDownMode() const; - bool GetIsMarine() const; - bool GetIsRelevant() const; - bool GetIsShowingMap() const; - AvHPlayMode GetPlayMode(void) const; - bool GetAlienHelpForMessage(int inMessageID, string& outHelpText, int& outPointCost) const; - bool GetDoesPlayerHaveOrder() const; - bool GetHelpForMessage(int inMessageID, string& outHelpText) const; - bool GetInTopDownMode() const; - bool GetIsSelecting() const; - OrderListType GetOrderList() const; - AvHOrderType GetOrderMode() const; - bool GetCenterPositionForGroup(int inGroupNumber, vec3_t& outCenterPosition) const; - bool GetMouseOneDown() const; - bool GetMouseTwoDown() const; - bool GetAndClearTopDownScrollAmount(int& outX, int& outY, int& outZ); - bool GetAndClearSelectionEvent(vec3_t& outSelectionXY, AvHMessageID& outMessageID); - EntityListType GetSelected() const; - const AvHTechSlotManager& GetTechSlotManager() const; - bool GetTranslatedUser3Name(AvHUser3 inUser3, string& outString) const; - bool GetTranslatedUser3Description(AvHUser3 inUser3, bool inFriendly, string& outString) const; - vec3_t GetVisualOrigin() const; - - AvHMessageID HotKeyHit(char inChar); - - virtual void Init(void); - virtual void PostUIInit(void); - virtual void VidInit(void); - virtual void InitHUDData( void ); - virtual void InitExploitPrevention( void ); - void UpdateExploitPrevention(); - - bool GetGameStarted() const; - int GetGameTime() const; - int GetGameTimeLimit() const; - int GetCombatAttackingTeamNumber() const; - static bool GetShowingMap(); - - static void PlayStream(); - static void StopStream(); - - bool GetIsAlive(bool inIncludeSpectating = true) const; - void GhostBuildingCallback( struct tempent_s *ent, float frametime, float currenttime); - void CancelBuilding(); - - void PlayHUDSound(const char *szSound, float vol, float inSoundLength = 0.0f); - void PlayHUDSound(int iSound, float vol, float inSoundLength = 0.0f); - void PlayHUDSound(AvHHUDSound inSound); - - float GetHUDExperience() const; - int GetHUDExperienceLevel() const; - float GetHUDHandicap() const; - AvHUser3 GetHUDUser3() const; - AvHPlayMode GetHUDPlayMode() const; - AvHTeamNumber GetHUDTeam() const; - int GetHUDUpgrades() const; - int GetHUDMaxArmor() const; - int GetHUDMaxHealth() const; - void GetPrimaryHudColor(int& outR, int& outG, int& outB, bool inIgnoreUpgrades = false, bool gammaCorrect = true) const; - float GetTimeOfLastUpdate() const; - int GetMenuTechSlots() const; - - //void GetVisibleBlips(VisibleBlipListType& outBlipList); - - virtual int Redraw( float flTime, int intermission ); - virtual void ResetComponentsForUser3(); - void SetSelectingWeaponID(int inWeaponID, int inR = -1, int inG = -1, int inB = -1); - void SetTechHelpText(const string& inTechHelpText); - void DrawSelectionCircleOnGroundAtPoint(vec3_t inOrigin, int inRadius); - // : 0000988 - void DrawBuildHealthEffectsForEntity(int inEntityIndex, float inAlpha = 1.0f); - // : - void DrawSelectionAndBuildEffects(); - void DrawHUDNumber(int inX, int inY, int inFlags, int inNumber); - - int InitializeDemoPlayback(int inSize, unsigned char* inBuffer); - int InitializeDemoPlayback2(int inSize, unsigned char* inBuffer); - int InitializeWeaponInfoPlayback(int inSize, unsigned char* inBuffer); - - virtual bool Update(float inCurrentTime, string& outErrorString); - virtual void UpdateMusic(float inCurrentTime); - - bool SlotInput(int inSlot); - - const AvHMapExtents& GetMapExtents(); - float GetGammaSlope() const; - string GetMapName(bool inLocalOnly = false) const; - int GetMaxAlienResources() const; - int GetNumActiveHives() const; - void HideProgressStatus(); - void SetProgressStatus(float inPercentage, int inProgressbarType = 0); - - AvHVisibleBlipList& GetEnemyBlipList(); - AvHVisibleBlipList& GetFriendlyBlipList(); - - AvHEntityHierarchy& GetEntityHierarchy(); - - int GetLocalUpgrades() const; - string GetNameOfLocation(vec3_t inLocation) const; - const AvHTechTree& GetTechNodes() const; - - UIMode GetUIMode() const; - bool SwitchUIMode(UIMode inNewMode); - bool GetIsCombatMode() const; - bool GetIsNSMode() const; - - void HideResearchProgressStatus(); - void SetResearchProgressStatus(float inPercentage); - - AvHMessageID GetGhostBuilding() const; - void SetGhostBuildingMode(AvHMessageID inGhostBuilding); - - void SetAlienAbility(AvHMessageID inAlienAbility); - void SetRenderingSelectionView(bool inState); - - void SetClientDebugCSP(weapon_data_t* inWeaponData, float inNextPlayerAttack); - void SetCurrentWeaponData(int inCurrentWeaponID, bool inEnabled); - int GetCurrentWeaponID(void); - - void DrawTopDownBG(); - void DrawTranslatedString(int inX, int inY, const char* inStringToTranslate, bool inCentered = false, bool inIgnoreUpgrades = false, bool inTrimExtraInfo = false, float alpha = 1.0f); - void HandleFog(); - void PostModelRender(char* inModelName); - void PreRenderFrame(); - void PostRenderFrame(); - void RenderNoZBuffering(); - - void Render(); - void RenderCommonUI(); - void RenderMarineUI(); - void RenderCommanderUI(); - void RenderAlienUI(); - void RenderProgressBar(char *spriteName); - void RenderMiniMap(int inX, int inY, int inWidth, int inHeight); - - void RenderStructureRanges(); - void RenderStructureRange(vec3_t inOrigin, int inRadius, HSPRITE inSprite, int inRenderMode = kRenderNormal, int inFrame = 0, float inR = 0, float inG = 0.5, float inB = 0, float inAlpha = 1.0f); - - void DrawWarpedOverlaySprite(int spriteHandle, int numXFrames, int numYFrames, - float inWarpXAmount = 0.0f, float inWarpYAmount = 0.0f, - float inWarpXSpeed = 0.0f, float inWarpYSpeed = 0.0f); - - void DrawActionButtons(); - void DrawHotgroups(); - void DrawPendingRequests(); - - void SetCurrentUseableEnergyLevel(float inEnergyLevel); - - // Network messages - int MsgFunc_AlienInfo(const char* pszName, int iSize, void* pbuf); - int MsgFunc_BlipList(const char* pszName, int iSize, void* pbuf); - int MsgFunc_ClScript(const char *pszName, int iSize, void *pbuf); - int MsgFunc_Countdown(const char* pszName, int iSize, void* pbuf); - int MsgFunc_DebugCSP(const char* pszName, int iSize, void* pbuf); - int MsgFunc_EditPS(const char* pszName, int iSize, void* pbuf); - int MsgFunc_DelEntHier(const char *pszName, int iSize, void *pbuf); - int MsgFunc_EntHier(const char *pszName, int iSize, void *pbuf); - int MsgFunc_Fog(const char* pszName, int iSize, void* pbuf); - int MsgFunc_SetUpgrades(const char* pszName, int iSize, void* pbuf); - int MsgFunc_ListPS(const char* pszName, int iSize, void* pbuf); - int MsgFunc_DelParts(const char *pszName, int iSize, void *pbuf); - int MsgFunc_Particles(const char *pszName, int iSize, void *pbuf); - int MsgFunc_SoundNames(const char *pszName, int iSize, void *pbuf); - int MsgFunc_PlayHUDNot(const char* pszName, int iSize, void* pbuf); - - int MsgFunc_BalanceVar(const char* pszName, int iSize, void* pbuf); - int MsgFunc_ServerVar(const char* pszName, int iSize, void* pbuf); - - int MsgFunc_GameStatus(const char* pszName, int iSize, void* pbuf); - int MsgFunc_MiniMap(const char* pszName, int iSize, void* pbuf); - // : 0000971 - int MsgFunc_IssueOrder(const char* pszName, int iSize, void* pbuf); - // : - int MsgFunc_Progress(const char* pszName, int iSize, void* pbuf); - int MsgFunc_SetGmma(const char* pszName, int iSize, void* pbuf); - int MsgFunc_SetSelect(const char* pszName, int iSize, void* pbuf); - int MsgFunc_SetRequest(const char* pszName, int iSize, void* pbuf); - int MsgFunc_SetOrder(const char* pszName, int iSize, void* pbuf); - int MsgFunc_SetupMap(const char* pszName, int iSize, void* pbuf); - int MsgFunc_SetTopDown(const char* pszName, int iSize, void* pbuf); - int MsgFunc_SetTech(const char* pszName, int iSize, void* pbuf); - int MsgFunc_TechSlots(const char* pszName, int iSize, void* pbuf); - - void GetSpriteForUser3(AvHUser3 inUser3, int& outSprite, int& outFrame, int& outRenderMode); - - int GetCurrentSquad() const; - AvHOverviewMap& GetOverviewMap(); - - void ShowCrosshair(); - void HideCrosshair(); - - // This function should be used instead of the global SetCrosshair. - void SetCurrentCrosshair(HSPRITE hspr, wrect_t rc, int r, int g, int b); - - static void ResetGammaAtExit(); - static int ResetGammaAtExitForOnExit(); - static void ResetGammaAtExit(int inSig); - - void SetViewport(const int inViewport[4]); - void GetViewport(int outViewport[4]) const; - - const AvHFont& GetSmallFont() const; - cl_entity_s* GetVisiblePlayer() const; - - float GetServerVariableFloat(const char* inName) const; - - // : - void SetCenterText(const char* inText); - void DrawCenterText(); - void ClearCenterText(); - // : - -private: - - // : - std::string mCenterText; - float mCenterTextTime; - // : - - bool GetCommanderLabelText(std::string& outCommanderName) const; - - void AddCommands(); - void ClearData(); - void DisplayCombatUpgradeMenu(bool inVisible); - void DrawMouseCursor(int inBaseX, int inBaseY); - void DrawOrders(); - void DrawHelpIcons(); - // : 0000971 - void GetOrderDirection(vec3_t inTarget, int inOrderType); - void DrawTeammateOrders(); - // : 0000992 - void DrawDisplayOrder(); - void SetDisplayOrder(int inOrderType, int inOrderIndex, string inText1, string inText2, string inText3); - // : - void DrawHUDStructureNotification(); - void DrawInfoLocationText(); - void DrawPlayerNames(); - void DrawReticleInfo(); - void DrawToolTips(); - // : 0000971 -- added inAlpha - void DrawWorldSprite(int inSpriteHandle, int inRenderMode, vec3_t inWorldPosition, int inFrame, float inWorldSize, float inAlpha = 1.0f); - // : - void DrawOrderIcon(const AvHOrder& inOrder); - void DrawOrderText(const AvHOrder& inOrder); - int GetFrameForOrderType(AvHOrderType inOrderType) const; - void GetReticleTextDrawingInfo(float& outNormX, float& outNormY, bool& outCentered) const; - void DrawTechTreeSprite(AvHMessageID inMessageID, int inPosX, int inPosY, int inWidth, int inHeight, int inFrame); - int GetTechTreeSprite(AvHMessageID inMessageID); - void GetTooltipDrawingInfo(float& outNormX, float& outNormY) const; - string GetRankTitle(bool inShowUnspentLevels = false) const; - bool GetShouldDisplayUser3(AvHUser3 inUser3) const; - void InitCommanderMode(); - void InitializeDemoRecording(); - void InitMenu(const string& inMenuName); - void ChangeUpgradeCosts(int inOldMessageID, int inNewMessageID, const char* inText); - void ChangeUpgradeCostsForMenu(PieMenu* inMenu, int inOldMessageID, int inNewMessageID, const char* inText); - void DisplayMessage(const char* inMessage); - bool GetAmbientSoundNameFromIndex(string& outSoundName, int inSoundIndex) const; - EntityListType GetDrawPlayerOrders() const; - bool GetEntityInfoString(int inEntityID, string& outEntityInfoString, bool& outIsEnemy); - void ModifyAmbientSoundEntryIfChanged(bool inSoundOn, int inSoundIndex, int inEntIndex, float inTimeStarted, int inVolume, int inFadeDistance, int inFlags, Vector inOrigin); - void ResetTopDownUI(); - bool SetGamma(float inSlope); - void SetReinforcements(int inReinforcements); - void SetHelpMessage(const string& inHelpText, bool inForce = false, float inNormX = -1, float inNormY = -1); - void SetActionButtonHelpMessage(const string& inHelpText); - void SetReticleMessage(const string& inHelpText); - void OrderNotification(const AvHOrder& inOrder); - virtual void ResetGame(bool inMapChanged = false); - - bool SetCursor(AvHOrderType inOrderType); - void GetCursor(HSPRITE& outSprite, int& outFrame); - - void SetSelectionEffects(EntityListType& inUnitList); - //void UpdateSelectionEffects(float inTimePassed); - void TraceEntityID(int& outEntityID); - bool GetIsMouseInRegion(int inX, int inY, int inWidth, int inHeight); - void GetMousePos(int& outX, int& outY) const; - - // Help system - void InternalHelpTextThink(); - bool ProcessAlien(); - bool ProcessAlienHelp(); - bool ProcessEntityHelp(); - bool ProcessGeneralHelp(); - bool ProcessOrderHelp(); - bool ProcessWeaponsHelp(); - - //void ResetUpgradeCosts(); - //void ResetUpgradeCostsForMenu(PieMenu* inMenu); - void UpdateAlienUI(float inCurrentTime); - void UpdateCommonUI(); - void UpdateDataFromVuser4(float inCurrentTime); - void UpdateMarineUI(float inCurrentTime); - void UpdateUpgradeCosts(); - void UpdateEnableState(PieMenu* inMenu); - void UpdateCountdown(float inCurrentTime); - void UpdateHierarchy(); - void UpdateInfoLocation(); - void UpdatePieMenuControl(); - void UpdateEntityID(float inCurrentTime); - void UpdateTooltips(float inCurrentTime); - void UpdateStructureNotification(float inCurrentTime); - void UpdateProgressBar(); - void UpdateDemoRecordPlayback(); - void UpdateBuildingPlacement(); - void UpdateResources(float inTimePassed); - void UpdateSelection(); - void UpdateSpectating(); - void UpdateBuildResearchText(); - void UpdateHelpText(); - void UpdateTechNodes(); - void UpdateAmbientSounds(); - void UpdateFromEntities(float inCurrentTime); - void UpdateViewModelEffects(); - - int mResources; - int mUser2OfLastResourceMessage; - int mMaxResources; - int mVisualResources; - float mExperience; - int mExperienceLevel; - int mExperienceLevelLastDrawn; - int mExperienceLevelSpent; - float mTimeOfLastLevelUp; - AvHMessageID mMenuImpulses[kNumUpgradeLines]; - - float mCountDownClock; - int mLastTickPlayed; - int mNumTicksToPlay; - float mTimeOfLastUpdate; - float mTimeOfNextHudSound; - AvHHUDSound mLastHUDSoundPlayed; - float mTimeOfCurrentUpdate; - - AvHOverviewMap mOverviewMap; - - AvHTeamHierarchy* mHierarchy; - AvHTeamHierarchy* mShowMapHierarchy; - AvHEntityHierarchy mEntityHierarchy; - - EntityListType mSelected; - EntityListType mGroups[kNumHotkeyGroups]; - EntityListType mSelectAllGroup; - AvHUser3 mGroupTypes[kNumHotkeyGroups]; - AvHAlertType mGroupAlerts[kNumHotkeyGroups]; - - typedef map PendingRequestListType; - PendingRequestListType mPendingRequests; - - AvHUser3 mLastUser3; - AvHTeamNumber mLastTeamNumber; - AvHPlayMode mLastPlayMode; - - bool mSelectionJustChanged; - bool mMouseOneDown; - bool mMouseTwoDown; - int mMouseOneStartX; - int mMouseOneStartY; - bool mLeftMouseStarted; - bool mLeftMouseEnded; - bool mPlacingBuilding; - int mMouseTwoStartX; - int mMouseTwoStartY; - bool mRightMouseStarted; - bool mRightMouseEnded; - vec3_t mMouseWorldPosition; - vec3_t mLeftMouseWorldStart; - vec3_t mLeftMouseWorldEnd; - vec3_t mRightMouseWorldStart; - vec3_t mRightMouseWorldEnd; - MarqueeComponent* mSelectionBox; - int mMouseCursorX; - int mMouseCursorY; - string mPieMenuControl; - - OrderListType mOrders; - //AvHOrderType mOrderMode; - - // : 0000971 - map< int, TeammateOrderType > mTeammateOrder; - // : 0000992 - float mDisplayOrderTime; - int mDisplayOrderType; - int mDisplayOrderDirection; - int mDisplayOrderIndex; - string mDisplayOrderText1; - string mDisplayOrderText2; - string mDisplayOrderText3; - int mCurrentOrderTarget; - int mCurrentOrderType; - float mCurrentOrderTime; - // : - AvHMessageID mTechEvent; - AvHMessageID mAlienAbility; - AvHMessageID mGroupEvent; - AvHMessageID mLastHotkeySelectionEvent; - int mTrackingEntity; - - AvHAlienUpgradeListType mUpgrades; - AvHAlienUpgradeCategory mCurrentUpgradeCategory[ALIEN_UPGRADE_CATEGORY_MAX_PLUS_ONE]; - int mNumUpgradesAvailable; - - Label* mCommanderResourceLabel; - Label* mOverwatchRangeLabel; - ProgressBar* mGenericProgressBar; - ProgressBar* mResearchProgressBar; - ProgressBar* mAlienProgressBar; - Label* mResearchLabel; - string mPreviousHelpText; - float mTimeLastHelpTextChanged; - - int mNumMovement; - int mNumSensory; - int mNumDefense; - - bool mHasGrenades; - bool mHasWelder; - bool mHasMines; - - int mSelectedNodeResourceCost; - float mCurrentUseableEnergyLevel; - float mVisualEnergyLevel; - int mUser2OfLastEnergyLevel; - - static void PlayRandomSongHook(); - static void ShowMap(); - static void HideMap(); - - static void ShowCommandMenu(); - static void HideCommandMenu(); - - float mTimeLastOverwatchPulse; - bool mInTopDownMode; - int mNumLocalSelectEvents; - AvHMapMode mMapMode; - //@2014 make this work for linux - static GammaTable sPregameGammaTable; - static GammaTable sGameGammaTable; - - - float mDesiredGammaSlope; - - typedef vector AmbientSoundListType; - AmbientSoundListType mAmbientSounds; - - AvHTechTree mTechNodes; - - string mMapName; - AvHMapExtents mMapExtents; - - // If this isn't MESSAGE_NULL, it means we are trying to build a building of this tech - AvHMessageID mGhostBuilding; - AvHMessageID mValidatedBuilding; - bool mCreatedGhost; - bool mCancelBuilding; - bool mCurrentGhostIsValid; - vec3_t mNormBuildLocation; - vec3_t mGhostWorldLocation; - - // Added by mmcguire. - int mSelectionBoxX1; - int mSelectionBoxY1; - int mSelectionBoxX2; - int mSelectionBoxY2; - bool mSelectionBoxVisible; - - Vector mCommanderPAS; - - StringList mSoundNameList; - - AvHVisibleBlipList mEnemyBlips; - AvHVisibleBlipList mFriendlyBlips; - - bool mMarineUIDrawUI; - HSPRITE mMarineUIJetpackSprite; - - HSPRITE mAlienUIEnergySprite; - HSPRITE mAlienUICloakSprite; - - HSPRITE mMembraneSprite; - HSPRITE mDigestingSprite; - HSPRITE mBackgroundSprite; - HSPRITE mTopDownTopSprite; - HSPRITE mTopDownBottomSprite; - HSPRITE mMarineTopSprite; - HSPRITE mLogoutSprite; - HSPRITE mCommandButtonSprite; - HSPRITE mCommandStatusSprite; - HSPRITE mSelectAllSprite; - - HSPRITE mMarineOrderIndicator; - HSPRITE mMarineUpgradesSprite; - - // : 0000971 - HSPRITE mTeammateOrderSprite; - // : - typedef map SpriteListType; - SpriteListType mActionButtonSprites; - //SpriteListType mHelpSprites; - int mHelpSprite; - - typedef vector< pair > HelpIconListType; - HelpIconListType mHelpIcons; - EntityListType mHelpEnts; - - EntityListType mBuildingEffectsEntityList; - float mTimeOfLastEntityUpdate; - - HSPRITE mAlienUIUpgrades; - HSPRITE mAlienUIUpgradeCategories; - - HSPRITE mAlienBuildSprite; - HSPRITE mMarineBuildSprite; - - HSPRITE mAlienHealthSprite; - HSPRITE mMarineHealthSprite; - - HSPRITE mHealthEffectsSprite; - HSPRITE mBuildCircleSprite; - //HSPRITE mSiegeTurretSprite; - SelectionListType mSelectionEffects; - - - //HSPRITE mMappingTechSprite; - - HSPRITE mHiveInfoSprite; - HSPRITE mHiveHealthSprite; - HSPRITE mOrderSprite; - HSPRITE mCursorSprite; - HSPRITE mMarineCursor; - HSPRITE mAlienCursor; - HSPRITE mAlienLifeformsCursor; - int mCurrentCursorFrame; - - int mProgressBarEntityIndex; - int mProgressBarParam; - int mProgressBarCompleted; - float mProgressBarStatus; - float mProgressBarLastDrawn; - int mProgressBarDrawframe; - - bool mFogActive; - vec3_t mFogColor; - float mFogStart; - float mFogEnd; - - HSPRITE mExperienceBarSprite; - HSPRITE mProgressBarSprite; - - AvHBaseInfoLocationListType mInfoLocationList; - string mLocationText; - - string mReticleInfoText; - //int mReticleInfoColorR; - //int mReticleInfoColorG; - //int mReticleInfoColorB; - //float mReticleInfoColorA; - //int mReticleInfoScreenX; - //int mReticleInfoScreenY; - int mSelectingWeaponID; - string mTechHelpText; - AvHMessageID mSelectingNodeID; - - struct tempent_s* mLastGhostBuilding; - - typedef vector NumericalInfoEffectListType; - NumericalInfoEffectListType mNumericalInfoEffects; - - AvHTooltip mHelpMessage; - AvHTooltip mReticleMessage; - AvHTooltip mTopDownPlayerNameMessage; - AvHTooltip mTopDownActionButtonHelp; - AvHTooltip mCombatUpgradeMenu; - bool mDrawCombatUpgradeMenu; - - typedef vector AvHTooltipListType; - AvHTooltipListType mTooltips; - - HiveInfoListType mHiveInfoList; - - bool mRecordingLastFrame; - - float mTimeOfLastHelpText; - StringList mDisplayedToolTipList; - - int mCurrentWeaponID; - bool mCurrentWeaponEnabled; - - AvHTechSlotManager mTechSlotManager; - UIMode mCurrentUIMode; - - int mMenuTechSlots; - int mCurrentSquad; - int mBlinkingAlertType; - - float mGameTime; - int mTimeLimit; - int mCombatAttackingTeamNumber; - bool mGameStarted; - bool mGameEnded; - - AvHTeamNumber mLastTeamSpectated; - - typedef struct - { - AvHMessageID mStructureID; - float mTime; - int mPlayerIndex; - Vector mLocation; - } HUDNotificationType; - - typedef vector< HUDNotificationType > StructureHUDNotificationListType; - StructureHUDNotificationListType mStructureNotificationList; - - int mCrosshairShowCount; - HSPRITE mCrosshairSprite; - wrect_t mCrosshairRect; - int mCrosshairR; - int mCrosshairG; - int mCrosshairB; - - int mViewport[4]; // the viewport coordinates x ,y , width, height - int mSpecialViewport[4]; // the viewport coordinates x ,y , width, height - - bool mSteamUIActive; - - typedef std::map ServerVariableMapType; - ServerVariableMapType mServerVariableMap; - - static bool sShowMap; - -}; - -#endif diff --git a/main/source/mod/AvHMarineEquipment.cpp b/main/source/mod/AvHMarineEquipment.cpp index 9f300f8b..33531bc7 100644 --- a/main/source/mod/AvHMarineEquipment.cpp +++ b/main/source/mod/AvHMarineEquipment.cpp @@ -12,6 +12,9 @@ // //------------------------------------------------------------------------------- // $Log: AvHMarineEquipment.cpp,v $ +// Revision 1.51 2015/12/03 fmoraw +// - observatory detection method no longer uses vector2d +// // Revision 1.50 2002/11/22 21:28:16 Flayra // - mp_consistency changes // @@ -2414,7 +2417,7 @@ void AvHObservatory::ObservatoryThink() if(theEntity->GetIsRelevant() && (theEntity->pev->team != this->pev->team)) { // Check that entity is in range of scan - float theDistance = VectorDistance2D(theEntity->pev->origin, this->pev->origin); + float theDistance = VectorDistance(theEntity->pev->origin, this->pev->origin); if(theDistance < BALANCE_VAR(kObservatoryXYDetectionRadius)) { // Remove cloaking, if player has it diff --git a/main/source/mod/AvHParticleSystem.cpp b/main/source/mod/AvHParticleSystem.cpp index 8d10a779..b6d0cad0 100644 --- a/main/source/mod/AvHParticleSystem.cpp +++ b/main/source/mod/AvHParticleSystem.cpp @@ -54,7 +54,7 @@ #include "../engine/cdll_int.h" #include "../common/event_api.h" #include "../common/cl_entity.h" - #include + #include #include #include "../common/usercmd.h" #include "../pm_shared/pm_shared.h" @@ -1124,6 +1124,4 @@ AvHParticleSystem::UpdateFirst() //// this->mBaseEntityPos.y = this->mOrigin[1]; //// this->mBaseEntityPos.z = this->mOrigin[2]; //// } -//} - - +//} \ No newline at end of file diff --git a/main/source/mod/AvHParticleSystem.cpp~ b/main/source/mod/AvHParticleSystem.cpp~ index 08eceb62..79cb4f93 100644 --- a/main/source/mod/AvHParticleSystem.cpp~ +++ b/main/source/mod/AvHParticleSystem.cpp~ @@ -39,9 +39,7 @@ //=============================================================================== #include "AvHParticleSystem.h" #include "AvHParticleTemplate.h" -#include "winsani_in.h" #include -#include "winsani_out.h" #ifdef AVH_CLIENT #include "cl_dll/cl_util.h" @@ -50,16 +48,16 @@ #include "../common/const.h" #include "../engine/progdefs.h" #include "../engine/edict.h" - #include "../pm_shared/pm_defs.h" + #include "pm_shared/pm_defs.h" #include "../engine/cdll_int.h" #include "../common/event_api.h" #include "../common/cl_entity.h" // #include //@2014 already included via #include #include "../common/usercmd.h" - #include "../pm_shared/pm_shared.h" - #include "../pm_shared/pm_movevars.h" - #include "../pm_shared/pm_debug.h" + #include "pm_shared/pm_shared.h" + #include "pm_shared/pm_movevars.h" + #include "pm_shared/pm_debug.h" #include "AvHParticleSystemManager.h" #include "cl_dll/ev_hldm.h" #include "AvHParticleTemplateClient.h" diff --git a/main/source/mod/AvHPlayer.cpp b/main/source/mod/AvHPlayer.cpp index bbc1fdc1..0a3564da 100644 --- a/main/source/mod/AvHPlayer.cpp +++ b/main/source/mod/AvHPlayer.cpp @@ -8034,7 +8034,6 @@ void AvHPlayer::SetUser3(AvHUser3 inUser3, bool inForceChange, bool inGiveWeapon mSavedJetpackEnergy = this->pev->fuser3; this->ClearUserVariables(); - switch(inUser3) { case AVH_USER3_NONE: @@ -8413,7 +8412,6 @@ void AvHPlayer::StartTopDownMode() // GetGameRules()->GetMapExtents(theMinViewHeight, theMaxViewHeight, theMinX, theMinY, theMaxX, theMaxY, theDrawMapBG); this->pev->origin.z = GetGameRules()->GetMapExtents().GetMaxViewHeight(); - this->mInTopDownMode = true; // Cheesy way to make sure player class change is sent to everyone diff --git a/main/source/mod/AvHWorldUpdate.cpp b/main/source/mod/AvHWorldUpdate.cpp index 28fdcf57..0e4927a0 100644 --- a/main/source/mod/AvHWorldUpdate.cpp +++ b/main/source/mod/AvHWorldUpdate.cpp @@ -11,7 +11,9 @@ // $Date: $ // //------------------------------------------------------------------------------- -// $Log: $ +// $Log: AvHWorldUpdate.cpp $ +// 2015/12/02 fmoraw +// - removed infinite detection range of the observatory on the z axis //=============================================================================== #include "../util/nowarnings.h" #include "../dlls/extdll.h" @@ -98,7 +100,7 @@ bool AvHSUGetInViewOfEnemy(CBaseEntity* inEntity, int& outSightedStatus) if((*theObservatoryIter)->pev->team != inEntity->pev->team && ( inEntity->pev->team != TEAM_IND ) && !(*theObservatoryIter)->GetIsRecycling() ) { // Check that entity is in range of scan (only check XY distance, for commander's purposes) - float theDistance = VectorDistance2D((*theObservatoryIter)->pev->origin, inEntity->pev->origin); + float theDistance = VectorDistance((*theObservatoryIter)->pev->origin, inEntity->pev->origin); if(theDistance < BALANCE_VAR(kObservatoryXYDetectionRadius)) { outSightedStatus |= MASK_VIS_DETECTED; diff --git a/main/source/particle/Makefile b/main/source/particle/Makefile index 98e62f92..9e4913a1 100644 --- a/main/source/particle/Makefile +++ b/main/source/particle/Makefile @@ -19,7 +19,7 @@ CFLAGS = $(COPT) $(COMPFLAGS) -I. -I.. -I$(GLUT_HOME)/include -I/usr/include/c++ POBJS =action_api.o actions.o HLRender.o opengl.o system.o -ALL = libparticleMP.a SPDir +ALL = libparticleMP.a all: $(ALL) @@ -34,10 +34,9 @@ libparticleMP.a: $(POBJS) ar clq $@ $(POBJS) SPDir: - (cd SP ; smake) + (make) clean: - (cd SP ; smake clean) rm -f libpar* rm -f *.o rm -rf *ii_files diff --git a/main/source/particle/Readme.txt b/main/source/particle/Readme.txt deleted file mode 100644 index 470ea46f..00000000 --- a/main/source/particle/Readme.txt +++ /dev/null @@ -1,4 +0,0 @@ -For SGI we make a version of the library that's made for -multiprocessing in this directory and a version that's made for single -processing in the SP directory. Typing make in this directory will make both. - diff --git a/main/source/particle/general.h b/main/source/particle/general.h index a4f661dc..20e3a1c8 100644 --- a/main/source/particle/general.h +++ b/main/source/particle/general.h @@ -9,12 +9,13 @@ #include "papi.h" #include "p_vector.h" - -#ifdef _WIN32 -#pragma warning (disable:4244) -#endif + +#ifdef _WIN32 +#pragma warning (disable:4244) +#endif // A single particle +/* struct Particle { pVector pos; @@ -61,7 +62,7 @@ struct ParticleGroup return true; } } -}; +};*/ struct pDomain { diff --git a/main/source/particle/libparticleMP.a b/main/source/particle/libparticleMP.a index 90bf865a..f34920fe 100644 Binary files a/main/source/particle/libparticleMP.a and b/main/source/particle/libparticleMP.a differ diff --git a/main/source/particle/papi.h b/main/source/particle/papi.h index c485c062..4c50f9f8 100644 --- a/main/source/particle/papi.h +++ b/main/source/particle/papi.h @@ -9,7 +9,8 @@ #define _particle_api_h #include - +#include +#include // This is the major and minor version number of this release of the API. #define P_VERSION 120 @@ -23,7 +24,7 @@ #endif #else -#define PARTICLEDLL_API +#define PARTICLEDLL_API extern "C" #endif // Actually this must be < sqrt(MAXFLOAT) since we store this value squared. diff --git a/main/source/particle/system.cpp b/main/source/particle/system.cpp index 79b53668..78dbce1b 100644 --- a/main/source/particle/system.cpp +++ b/main/source/particle/system.cpp @@ -12,24 +12,28 @@ #include // using namespace std; +// <<< cgc >>> removed DllMain() because I'm linking statically // For Windows DLL. -#ifdef WIN32 -BOOL APIENTRY DllMain( HANDLE hModule, - DWORD ul_reason_for_call, - LPVOID lpReserved - ) -{ - switch (ul_reason_for_call) - { - case DLL_PROCESS_ATTACH: - case DLL_THREAD_ATTACH: - case DLL_THREAD_DETACH: - case DLL_PROCESS_DETACH: - break; - } - return TRUE; -} -#endif +//#ifdef WIN32 +//BOOL APIENTRY DllMain( HANDLE hModule, +// DWORD ul_reason_for_call, +// LPVOID lpReserved +// ) +//{ +// switch (ul_reason_for_call) +// { +// case DLL_PROCESS_ATTACH: +// case DLL_THREAD_ATTACH: +// case DLL_THREAD_DETACH: +// case DLL_PROCESS_DETACH: +// break; +// } +// return TRUE; +//} +//#endif + +// <<< cgc >>> added this pre-declaration +extern void _pSendAction(ParticleAction *S, PActionEnum type, int size); float ParticleAction::dt; @@ -604,7 +608,8 @@ PARTICLEDLL_API void pCallActionList(int action_list_num) if(_ps.in_new_list) { // Add this call as an action to the current list. - extern void _pSendAction(ParticleAction *S, PActionEnum type, int size); + // <<< cgc >>> commented out predeclaration + //void _pSendAction(ParticleAction *S, PActionEnum type, int size); PACallActionList S; S.action_list_num = action_list_num; @@ -704,6 +709,13 @@ PARTICLEDLL_API void pCurrentGroup(int p_group_num) _ps.group_id = -1; } +PARTICLEDLL_API ParticleGroup* pGetCurrentGroup(void) +{ + _ParticleState &_ps = _GetPState(); + ParticleGroup *pg = _ps.pgrp; + return pg; +} + // Change the maximum number of particles in the current group. PARTICLEDLL_API int pSetMaxParticles(int max_count) { @@ -797,6 +809,19 @@ PARTICLEDLL_API void pCopyGroup(int p_src_group_num, int index, int copy_count) destgrp->p_count += ccount; } +PARTICLEDLL_API ParticleGroup* pGetParticleGroupRef(int p_group_num) +{ + ParticleGroup* theGroup = NULL; + + _ParticleState &_ps = _GetPState(); + + if(!_ps.in_new_list) + { + theGroup = _ps.GetGroupPtr(p_group_num); + } + return theGroup; +} + // Copy from the current group to application memory. PARTICLEDLL_API int pGetParticles(int index, int count, float *verts, float *color, float *vel, float *size, float *age) diff --git a/main/source/particles/Makefile b/main/source/particles/Makefile index 98e62f92..9e4913a1 100644 --- a/main/source/particles/Makefile +++ b/main/source/particles/Makefile @@ -19,7 +19,7 @@ CFLAGS = $(COPT) $(COMPFLAGS) -I. -I.. -I$(GLUT_HOME)/include -I/usr/include/c++ POBJS =action_api.o actions.o HLRender.o opengl.o system.o -ALL = libparticleMP.a SPDir +ALL = libparticleMP.a all: $(ALL) @@ -34,10 +34,9 @@ libparticleMP.a: $(POBJS) ar clq $@ $(POBJS) SPDir: - (cd SP ; smake) + (make) clean: - (cd SP ; smake clean) rm -f libpar* rm -f *.o rm -rf *ii_files diff --git a/main/source/particles/Release/particles.lastbuildstate b/main/source/particles/Release/particles.lastbuildstate deleted file mode 100644 index 308d264d..00000000 --- a/main/source/particles/Release/particles.lastbuildstate +++ /dev/null @@ -1,2 +0,0 @@ -#v4.0:v100 -Release|Win32|C:\Users\fabian\Downloads\NS\main\source\particles\| diff --git a/main/source/particles/Release/particles.lib b/main/source/particles/Release/particles.lib deleted file mode 100644 index 0fcbb530..00000000 Binary files a/main/source/particles/Release/particles.lib and /dev/null differ diff --git a/main/source/particles/libparticleMP.a b/main/source/particles/libparticleMP.a index 65416ff9..39516034 100644 Binary files a/main/source/particles/libparticleMP.a and b/main/source/particles/libparticleMP.a differ diff --git a/main/source/pm_shared/pm_math.cpp b/main/source/pm_shared/pm_math.cpp index 35208ad3..1aa5a0ce 100644 --- a/main/source/pm_shared/pm_math.cpp +++ b/main/source/pm_shared/pm_math.cpp @@ -18,6 +18,9 @@ #include "const.h" #include +float AngleBetweenVectors( float * v1, float * v2 ); +void InterpolateAngles( float *start, float *end, float *output, float frac ); + // up / down #define PITCH 0 // left / right @@ -170,84 +173,6 @@ void AngleIMatrix (const vec3_t angles, float matrix[3][4] ) } #endif -void NormalizeAngles( float *angles ) -{ - int i; - // Normalize angles - for ( i = 0; i < 3; i++ ) - { - if ( angles[i] > 180.0 ) - { - angles[i] -= 360.0; - } - else if ( angles[i] < -180.0 ) - { - angles[i] += 360.0; - } - } -} - -/* -=================== -InterpolateAngles - -Interpolate Euler angles. -FIXME: Use Quaternions to avoid discontinuities -Frac is 0.0 to 1.0 ( i.e., should probably be clamped, but doesn't have to be ) -=================== -*/ -void InterpolateAngles( float *start, float *end, float *output, float frac ) -{ - int i; - float ang1, ang2; - float d; - - NormalizeAngles( start ); - NormalizeAngles( end ); - - for ( i = 0 ; i < 3 ; i++ ) - { - ang1 = start[i]; - ang2 = end[i]; - - d = ang2 - ang1; - if ( d > 180 ) - { - d -= 360; - } - else if ( d < -180 ) - { - d += 360; - } - - output[i] = ang1 + d * frac; - } - - NormalizeAngles( output ); -} - - -/* -=================== -AngleBetweenVectors - -=================== -*/ -float AngleBetweenVectors( const vec3_t v1, const vec3_t v2 ) -{ - float angle; - float l1 = Length( v1 ); - float l2 = Length( v2 ); - - if ( !l1 || !l2 ) - return 0.0f; - - angle = acos( DotProduct( v1, v2 ) ) / (l1*l2); - angle = ( angle * 180.0f ) / M_PI; - - return angle; -} - #ifndef DISABLE_VEC_FUNCS void VectorTransform (const vec3_t in1, float in2[3][4], vec3_t out) { diff --git a/main/source/pm_shared/pm_shared.cpp b/main/source/pm_shared/pm_shared.cpp index f31af863..b4bcff94 100644 --- a/main/source/pm_shared/pm_shared.cpp +++ b/main/source/pm_shared/pm_shared.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 1999, Valve LLC. All rights reserved. +//Copyright (c) 1999, Valve LLC. All rights reserved. // // This product contains software technology licensed from Id // Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc. @@ -182,7 +182,7 @@ float gTopDownViewAngles[3]; static int pm_shared_initialized = 0; -void InterpolateAngles( float *start, float *end, float *output, float frac ); +//void InterpolateAngles( float *start, float *end, float *output, float frac ); #pragma warning( disable : 4305 ) @@ -6076,11 +6076,11 @@ bool PM_TopDown() //theMaxZ = min(theMaxZ, theNewStartPos[2]); - #ifdef AVH_CLIENT /* - extern DebugPointListType gSquareDebugLocations; - DebugPoint theDebugPoint(theNewStartPos[0], theNewStartPos[1], theMaxZ - theNewStartPos[2]); - gSquareDebugLocations.push_back(theDebugPoint);*/ - #endif + //#ifdef AVH_CLIENT /* + //extern DebugPointListType gSquareDebugLocations; + //DebugPoint theDebugPoint(theNewStartPos[0], theNewStartPos[1], theMaxZ - theNewStartPos[2]); + //gSquareDebugLocations.push_back(theDebugPoint);*/ + //#endif float speed, drop, friction, control, newspeed; float currentspeed, addspeed, accelspeed; @@ -6222,8 +6222,8 @@ bool PM_TopDown() theAngles[2] = kTopDownRoll; // Set angles facing down so observer knows which way to point - VectorCopy(theAngles, pmove->angles); - + VectorCopy(theAngles,pmove->angles); + // Set origin //pmove->origin[2] = 1080; //pmove->origin[2] = PM_GetDesiredTopDownCameraHeight(); diff --git a/main/source/putsrc.bat b/main/source/putsrc.bat deleted file mode 100755 index c2956bce..00000000 --- a/main/source/putsrc.bat +++ /dev/null @@ -1,3 +0,0 @@ -@echo off -pscp NS-server-src.zip flayra@www.jarhedz.com:/home/flayra/build/ - diff --git a/main/source/ui/ChatPanel.cpp b/main/source/ui/ChatPanel.cpp index b764342b..199d5820 100644 --- a/main/source/ui/ChatPanel.cpp +++ b/main/source/ui/ChatPanel.cpp @@ -3,7 +3,6 @@ #include "VGUI_App.h" #include "cl_dll/hud.h" #include -#include #ifdef _WIN32 #include "winsani_in.h" #include @@ -48,17 +47,17 @@ void ChatPanel::CancelChat() void ChatPanel::KeyDown(int virtualKey, int scanCode) //void ChatPanel:VGUI::isKeyDown(KeyCode code) { - sprintf(virtualKey,"%s"); + if (virtualKey >= 0 && virtualKey < 256) { mKeyPushed[virtualKey] = true; } - if (virtualKey == SDLK_ESCAPE) + if (virtualKey == KEY_ESCAPE) { CancelChat(); } - else if (virtualKey ==SDLK_RETURN/*VK_RETURN*/) + else if (virtualKey == KEY_ENTER/*VK_RETURN*/) { std::string theCommand; diff --git a/main/source/ui/ChatPanel.cpp~ b/main/source/ui/ChatPanel.cpp~ deleted file mode 100644 index 7f7f8796..00000000 --- a/main/source/ui/ChatPanel.cpp~ +++ /dev/null @@ -1,196 +0,0 @@ -#include "ChatPanel.h" -#include "VGUI_KeyCode.h" -#include "VGUI_App.h" -#include "cl_dll/hud.h" -#include -#include -#ifdef _WIN32 -#include "winsani_in.h" -#include -#include "winsani_out.h" -#endif - - -using namespace vgui; - -const char* ChatPanel::chatModeAll = "say"; -const char* ChatPanel::chatModeTeam = "say_team"; - -ChatPanel::ChatPanel(int x, int y, int wide, int tall) - : Panel(x, y, wide, tall) -{ - - for (int i = 0; i < 256; ++i) - { - mKeyPushed[i] = false; - } - -} - -void ChatPanel::SetChatMode(string sChatMode) -{ - mChatMode = sChatMode; -} - -void ChatPanel::CancelChat() -{ - - mText = ""; - setVisible(false); - - for (int i = 0; i < 256; ++i) - { - mKeyPushed[i] = false; - } - -} -//@2014 so many evil inputs -void ChatPanel::KeyDown(int virtualKey, int scanCode) -//void ChatPanel:VGUI::isKeyDown(KeyCode code) -{ - - if (virtualKey >= 0 && virtualKey < 256) - { - mKeyPushed[virtualKey] = true; - } - - if (virtualKey == SDLK_ESCAPE) - { - CancelChat(); - } - else if (virtualKey ==SDLK_RETURN/*VK_RETURN*/) - { - - std::string theCommand; - - theCommand += mChatMode; - - theCommand += " \""; - - // Replace all ';' characters with ':' characters since we can't have - // ';' characters on a console message. - - for (unsigned int i = 0; i < mText.length(); ++i) - { - if (mText[i] == ';') - { - mText[i] = ':'; - } - } - - theCommand += mText; - - theCommand += "\""; - - //say_x "the message here" instead of - //say_x the message here (ever word was treated as another argument) - gEngfuncs.pfnClientCmd((char*)theCommand.c_str()); - - CancelChat(); - - } - else if (virtualKey == KEY_BACKSPACE/*VK_BACK*/) - { - if (mText.length() > 0) - { - mText.erase(mText.length() - 1, mText.length()); - } - } - else - { - - byte keyState[256]; // BYTE to byte - // GetKeyboardState(keyState); evil - - - // Turn off caps lock since some people use it for voice comm. - - keyState[KEY_CAPSLOCK] = 0; - - // Turn off control since some people use it for crouching. - - keyState[KEY_LCONTROL] = 0; - keyState[KEY_RCONTROL] = 0; - //@2014 removed keyState[VK_CONTROL] = 0; - - char buffer[3] = { 0 }; - //@2014 LPWORD is evil - // int count = toascii(virtualKey, scanCode, keyState, (LPWORD)buffer, 0); - int count = 1; - if (count > 0) - { - mText += buffer; - } - - } - -} - -void ChatPanel::paint() -{ - - const AvHFont& theFont = gHUD.GetSmallFont(); - int thePadSize = 5; - - //requestFocus(); - - int width; - int height; - - getSize(width, height); - - int x = thePadSize; - int y = (height - theFont.GetStringHeight()) / 2; - - char prompt[128]; - strncpy(prompt, mChatMode.c_str(), 127); - - prompt[0] = toupper( prompt[0] ); - - // Remove any _'s (say_team becomes say team) - for ( char *pApersand = prompt; pApersand != NULL && *pApersand != 0; pApersand++ ) - { - // Replace it with a space - if ( *pApersand == '_' ) - *pApersand = ' '; - } - - strcat(prompt, ": "); - - x = theFont.DrawString(x, y, prompt, 128, 128, 128); - - const char* text = mText.c_str(); - - while (x + theFont.GetStringWidth(text) > width - thePadSize) - { - ++text; - } - - x = theFont.DrawString(x, y, text, 255, 255, 255); - -} - -void ChatPanel::paintBackground() -{ - - int width; - int height; - - getSize(width, height); - - drawSetColor(0,0,0, 80); - drawFilledRect(0,0, width, height); - -} - -bool ChatPanel::WasKeyPushed(int virtualKey) const -{ - if (virtualKey >= 0 && virtualKey < 256) - { - return mKeyPushed[virtualKey]; - } - else - { - return true; - } -} diff --git a/main/source/ui/UIHud.cpp b/main/source/ui/UIHud.cpp index 0cd0e172..35b44a90 100644 --- a/main/source/ui/UIHud.cpp +++ b/main/source/ui/UIHud.cpp @@ -7,7 +7,8 @@ #include "mod/AvHClientVariables.h" #include "VGUI_App.h" #include -// for FindFirst and FindNext //@2014 implement those for linux +//@linux support +#include "../util/LinuxSupport.h" #ifdef _WIN32 #include "winsani_in.h" #include @@ -199,16 +200,19 @@ void UIHud::LoadSchemes(void) // this->InitializeScheme("Heading1", pScheme); } +// @linux needs to be reinplementet for linux bool UIHud::PickRandomSong(string& outRelativeSongName) const { - bool theFoundSong = false; - /* @2014 needs to be reinplementet for linux - WIN32_FIND_DATA theFindData; - HANDLE theFileHandle; + #ifdef WIN32 + const string kDelimiter("\\"); + #else + const string kDelimiter("/"); + #endif + StringList theSongList; bool theFoundSong = false; size_t theNumSongs; - + // Find random song in directory string thePath; if(strcmp(cl_musicdir->string, "")) @@ -217,16 +221,19 @@ bool UIHud::PickRandomSong(string& outRelativeSongName) const } else { - thePath = string(getModDirectory()) + string("\\") + string(kMusicDirectory); + thePath = string(getModDirectory()) + kDelimiter + string(kMusicDirectory); } - - string theFileQualifier = thePath + string("\\*.mp3"); + string theFileQualifier = thePath + kDelimiter +string("*.mp3"); + #ifdef WIN32 + WIN32_FIND_DATA theFindData; + HANDLE theFileHandle; theFileHandle = FindFirstFile(theFileQualifier.c_str(), &theFindData); + if (theFileHandle != INVALID_HANDLE_VALUE) { do { - theSongList.push_back(thePath + string("\\") + string(theFindData.cFileName)); + theSongList.push_back(thePath + kDelimiter + string(theFindData.cFileName)); } while(FindNextFile(theFileHandle, &theFindData)); @@ -234,7 +241,20 @@ bool UIHud::PickRandomSong(string& outRelativeSongName) const theFileHandle = INVALID_HANDLE_VALUE; } + #else + string theFoundFilename; + FIND_DATA theFindData; + int theRC = FindFirstFile(theFileQualifier.c_str(), &theFindData); + if(theRC != -1) + { + do + { + theSongList.push_back(thePath + kDelimiter + string(theFindData.cFileName)); + } + while(FindNextFile(0, &theFindData)); + } + #endif // Pick a random song in the list theNumSongs = theSongList.size(); if(theNumSongs > 0) @@ -243,7 +263,7 @@ bool UIHud::PickRandomSong(string& outRelativeSongName) const outRelativeSongName = string(theSongList[theSongOffset]); theFoundSong = true; } - */ + return theFoundSong; } diff --git a/main/source/util/Balance.txt b/main/source/util/Balance.txt index f0a54140..734dccbc 100644 --- a/main/source/util/Balance.txt +++ b/main/source/util/Balance.txt @@ -47,7 +47,7 @@ #define kCatalystDuration 8 #define kCatalystResearchCost 20 #define kCatalystResearchTime 40 -#define kChargeDamage 320 +#define kChargeDamage 80 #define kClawsDamage 90 #define kCombatBaseExperience 100 #define kCombatBaseRespawnTime 5 @@ -84,7 +84,7 @@ #define kDefenseChamberThinkInterval 2 #define kDefensiveChamberHealRange 400 #define kDefensiveChamberRegenAmount 10 -#define kDefensiveChamberRegenPercent 1 +#define kDefensiveChamberRegenPercent 3 #define kDevourDamage 3 #define kDevourRange 100 #define kDistressBeaconCost 15 @@ -121,7 +121,7 @@ #define kGameHDSpaceNeeded 300 #define kGameVersionMajor 3 #define kGameVersionMinor 2 -#define kGameVersionRevision 0 +#define kGameVersionRevision 1 #define kGestateBaseArmor 150 #define kGestateHealth 200 #define kGorgeArmorUpgrade 50 @@ -224,7 +224,7 @@ #define kOnosBaseSpeed 240 #define kOnosCost 75 #define kOnosGestateTime 35 -#define kOnosHealth 700 +#define kOnosHealth 950 #define kOrganicStructureHealRate 5 #define kParasiteDamage 10 #define kPhaseGateBuildTime 12 @@ -245,7 +245,7 @@ #define kResourceTowerBuildDistanceTolerance 250 #define kResourceTowerBuildTime 15 #define kResourceTowerCost 15 -#define kResourceTowerHealth 6000 +#define kResourceTowerHealth 5500 #define kSGBulletsPerShot 10 #define kSGDamage 17 #define kSGMaxAmmo 40 @@ -265,7 +265,7 @@ #define kScoringKillPlayerLerk 3 #define kScoringKillPlayerOnos 5 #define kScoringMarineBuildableValue 2 -#define kScoringResourceTowerValue 3 +#define kScoringResourceTowerValue 5 #define kScoringSiegeValue 3 #define kScoringTurretValue 2 #define kSensoryChamberBuildTime 14 @@ -353,7 +353,7 @@ #define kCatalystROFFactor 0.25 #define kCatalystSpeedIncrease 0.25 #define kChargeEnergyCost 0.15 -#define kChargeMaxPushbackSpeedFactor 2.50 +#define kChargeMaxPushbackSpeedFactor 2.75 #define kChargeMaxPushbackForce 100.0 #define kChargePushbackRadius 100.0 #define kChargeSpeed 1.00 @@ -361,7 +361,7 @@ #define kChargingEnergyScalar 2.80 #define kClawsEnergyCost 0.07 #define kClawsROF 0.90 -#define kCloakTime 6.00 +#define kCloakTime 12.0 #define kCombatAdditiveRespawnTime 2.00 #define kCombatDistressBeaconDeadPercentage 0.70 #define kCombatExperienceAlienGrowthRate 0.00 @@ -423,7 +423,7 @@ #define kParasiteEnergyCost 0.30 #define kParasiteROF 0.50 #define kPhaseGateDelay 2.00 -#define kPhaseGateDepartureInterval 0.50 +#define kPhaseGateDepartureInterval 0.40 #define kPrimalScreamDamageModifier 0.30 #define kPrimalScreamDuration 4.00 #define kPrimalScreamEnergyCost 0.45 @@ -431,7 +431,7 @@ #define kPrimalScreamROF 5.00 #define kPrimalScreamROFFactor 0.30 #define kRecycleResourcePercentage 0.50 -#define kRecloakTime 3.0f +#define kRecloakTime 1.0 #define kRedemptionChance 0.45 #define kRedemptionThreshold 0.40 #define kReinforcementMinimumWaitLevelScalar 0.20 diff --git a/main/source/util/GammaTable.cpp b/main/source/util/GammaTable.cpp index 737cd3f3..450b605a 100644 --- a/main/source/util/GammaTable.cpp +++ b/main/source/util/GammaTable.cpp @@ -1,4 +1,3 @@ -#ifdef _WIN32 #include "GammaTable.h" // Include windows gamma functions @@ -12,7 +11,7 @@ GammaTable::GammaTable() { this->mSlope = 1.0f; - this->InitializeToFlat(); + //this->InitializeToFlat(); // will cause @linux client to crash at start this->mDirect3DMode = false; } @@ -121,4 +120,3 @@ void GammaTable::ProcessSlope(float inSlope) } } } -#endif diff --git a/main/source/util/GammaTable.h b/main/source/util/GammaTable.h index 7bd9de74..27e4ef2e 100644 --- a/main/source/util/GammaTable.h +++ b/main/source/util/GammaTable.h @@ -1,4 +1,4 @@ -#ifdef _WIN32 + #ifndef GAMMATABLE_H #define GAMMATABLE_H @@ -44,4 +44,4 @@ private: }; #endif -#endif + diff --git a/main/source/util/MathUtil.cpp b/main/source/util/MathUtil.cpp index 69559844..bdf54264 100644 --- a/main/source/util/MathUtil.cpp +++ b/main/source/util/MathUtil.cpp @@ -32,7 +32,6 @@ #include "common/vec_op.h" #include "common/mathlib.h" - #define max(a,b) (((a) > (b)) ? (a) : (b)) #define min(a,b) (((a) < (b)) ? (a) : (b)) @@ -140,49 +139,6 @@ bool IsVectorBetweenBoundingVectors(const float* inOrigin, const float* inRay, c return theSuccess; } -void AngleMatrix(const float* angles, float matrix[3][4]) -{ - float angle; - float sr, sp, sy, cr, cp, cy; - - angle = angles[2] * (M_PI*2 / 360); - sy = sin(angle); - cy = cos(angle); - angle = angles[1] * (M_PI*2 / 360); - sp = sin(angle); - cp = cos(angle); - angle = angles[0] * (M_PI*2 / 360); - sr = sin(angle); - cr = cos(angle); - - // matrix = (Z * Y) * X - matrix[0][0] = cp*cy; - matrix[1][0] = cp*sy; - matrix[2][0] = -sp; - matrix[0][1] = sr*sp*cy+cr*-sy; - matrix[1][1] = sr*sp*sy+cr*cy; - matrix[2][1] = sr*cp; - matrix[0][2] = (cr*sp*cy+-sr*-sy); - matrix[1][2] = (cr*sp*sy+-sr*cy); - matrix[2][2] = cr*cp; - matrix[0][3] = 0.0; - matrix[1][3] = 0.0; - matrix[2][3] = 0.0; -} - -float Length(const float *v) -{ - int i; - float length; - - length = 0; - for (i=0 ; i< 3 ; i++) - length += v[i]*v[i]; - length = sqrt (length); // FIXME - - return length; -} - void RotateFloatValuesByVector(float& ioX, float& ioY, float& ioZ, /*const float* inBaseVector,*/ const float* inVector) { // Get rotation vector @@ -285,7 +241,7 @@ void RotateValuesByVector(int32& ioX, int32& ioY, int32& ioZ, /*const float* inB ioY = (int32)ioFloatY; ioZ = (int32)ioFloatZ; } - +//#ifndef AVH_SERVER void VectorAngles( const float *forward, float *angles ) { float tmp, yaw, pitch; @@ -329,6 +285,19 @@ void VectorMA (const float *veca, float scale, const float *vecb, float *vecc) vecc[2] = veca[2] + scale*vecb[2]; } +float Length(const float *v) +{ + int i; + float length; + + length = 0; + for (i=0 ; i< 3 ; i++) + length += v[i]*v[i]; + length = sqrt (length); // FIXME + + return length; +} + float VectorNormalize (float *v) { float length, ilength; @@ -348,19 +317,20 @@ float VectorNormalize (float *v) } -void VectorRotate (const float* in1, const float in2[3][4], float* out) -{ - out[0] = DotProduct(in1, in2[0]); - out[1] = DotProduct(in1, in2[1]); - out[2] = DotProduct(in1, in2[2]); -} - void VectorScale (const float *in, float scale, float *out) { out[0] = in[0]*scale; out[1] = in[1]*scale; out[2] = in[2]*scale; } +//#endif + +void VectorRotate (const float* in1, const float in2[3][4], float* out) +{ + out[0] = DotProduct(in1, in2[0]); + out[1] = DotProduct(in1, in2[1]); + out[2] = DotProduct(in1, in2[2]); +} double VectorDistance(const float* in1, const float* in2) { diff --git a/main/source/util/MathUtil.cpp~ b/main/source/util/MathUtil.cpp~ index 0d2bbdef..50cbbbbc 100644 --- a/main/source/util/MathUtil.cpp~ +++ b/main/source/util/MathUtil.cpp~ @@ -19,6 +19,8 @@ // - Added VectorDistance2D, added document headers // //=============================================================================== +#ifdef MATH_UTIL +#define MATH_UTIL #include #include "stdio.h" #include "stdlib.h" @@ -285,7 +287,7 @@ void RotateValuesByVector(int32& ioX, int32& ioY, int32& ioZ, /*const float* inB ioY = (int32)ioFloatY; ioZ = (int32)ioFloatZ; } -/* + void VectorAngles( const float *forward, float *angles ) { float tmp, yaw, pitch; @@ -313,7 +315,7 @@ void VectorAngles( const float *forward, float *angles ) angles[0] = pitch; angles[1] = yaw; angles[2] = 0; -}*/ +} void VectorInverse ( float *v ) { @@ -380,7 +382,6 @@ double VectorDistance2D(const float* in1, const float* in2) } // Added by mmcguire. - void VectorsToAngles(const float forward[3], const float right[3], const float up[3], float angles[3]) { @@ -412,3 +413,4 @@ void VectorsToAngles(const float forward[3], const float right[3], const float u angles[0] = p * (180 / M_PI); // Pitch angles[1] = y * (180 / M_PI); // Yaw } +#endif diff --git a/main/source/util/MathUtil.h b/main/source/util/MathUtil.h index 393c726b..8cc3b953 100644 --- a/main/source/util/MathUtil.h +++ b/main/source/util/MathUtil.h @@ -25,7 +25,7 @@ #define M_PI 3.14159265358979323846 // matches value in gcc v2 math.h #endif -void AngleMatrix(const float* angles, float matrix[3][4]); +//void AngleMatrix(const float* angles, float matrix[3][4]); double sqrt(double x); float Length(const float *v); void CreateOrthoNormalBasis(float inZAxis[3], float outXAxis[3], float outYAxis[3]); diff --git a/main/steam_appid.txt b/main/steam_appid.txt index 2bbd69c2..356ea80c 100644 --- a/main/steam_appid.txt +++ b/main/steam_appid.txt @@ -1 +1 @@ -70 +70