Namikaze2256

Untitled

Nov 10th, 2017
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 69.71 KB | None | 0 0
  1. #include "ESP.h"
  2. #include "Interfaces.h"
  3. #include "RenderManager.h"
  4. #include "GlowManager.h"
  5.  
  6. DWORD GlowManager = *(DWORD*)(Utilities::Memory::FindPatternV2("client.dll", "0F 11 05 ?? ?? ?? ?? 83 C8 01 C7 05 ?? ?? ?? ?? 00 00 00 00") + 3);
  7.  
  8. #ifdef NDEBUG
  9. #define strenc( s ) std::string( cx_make_encrypted_string( s ) )
  10. #define charenc( s ) strenc( s ).c_str()
  11. #define wstrenc( s ) std::wstring( strenc( s ).begin(), strenc( s ).end() )
  12. #define wcharenc( s ) wstrenc( s ).c_str()
  13. #else
  14. #define strenc( s ) ( s )
  15. #define charenc( s ) ( s )
  16. #define wstrenc( s ) ( s )
  17. #define wcharenc( s ) ( s )
  18. #endif
  19.  
  20. #ifdef NDEBUG
  21. #define XorStr( s ) ( XorCompileTime::XorString< sizeof( s ) - 1, __COUNTER__ >( s, std::make_index_sequence< sizeof( s ) - 1>() ).decrypt() )
  22. #else
  23. #define XorStr( s ) ( s )
  24. #endif
  25.  
  26.  
  27. void CEsp::Init()
  28. {
  29. BombCarrier = nullptr;
  30. }
  31.  
  32. void CEsp::Move(CUserCmd *pCmd,bool &bSendPacket)
  33. {
  34.  
  35. }
  36.  
  37. void CEsp::Draw()
  38. {
  39. IClientEntity *pLocal = hackManager.pLocal();
  40.  
  41. for (int i = 0; i < Interfaces::EntList->GetHighestEntityIndex(); i++)
  42. {
  43. IClientEntity *pEntity = Interfaces::EntList->GetClientEntity(i);
  44. player_info_t pinfo;
  45.  
  46. if (pEntity && pEntity != pLocal && !pEntity->IsDormant())
  47. {
  48. if (Menu::Window.VisualsTab.OtherRadar.GetState())
  49. {
  50. DWORD m_bSpotted = NetVar.GetNetVar(0x839EB159);
  51. *(char*)((DWORD)(pEntity)+m_bSpotted) = 1;
  52. }
  53.  
  54. if (Menu::Window.VisualsTab.FiltersPlayers.GetState() && Interfaces::Engine->GetPlayerInfo(i, &pinfo) && pEntity->IsAlive())
  55. {
  56. DrawPlayer(pEntity, pinfo);
  57. }
  58.  
  59. ClientClass* cClass = (ClientClass*)pEntity->GetClientClass();
  60.  
  61. if (Menu::Window.VisualsTab.FiltersNades.GetState())
  62. {
  63. if (cClass->m_ClassID == (int)CSGOClassID::CBaseCSGrenadeProjectile)
  64. DrawHE(pEntity, cClass);
  65.  
  66. if (cClass->m_ClassID == (int)CSGOClassID::CMolotovProjectile)
  67. DrawMolotov(pEntity, cClass);
  68.  
  69. if (cClass->m_ClassID == (int)CSGOClassID::CDecoyProjectile)
  70. DrawDecoy(pEntity, cClass);
  71.  
  72. if (cClass->m_ClassID == (int)CSGOClassID::CSensorGrenadeProjectile)
  73. DrawMolotov(pEntity, cClass);
  74.  
  75. if (cClass->m_ClassID == (int)CSGOClassID::CSmokeGrenadeProjectile)
  76. DrawSmoke(pEntity, cClass);
  77. }
  78.  
  79. if (Menu::Window.VisualsTab.FiltersWeapons.GetState() && cClass->m_ClassID != (int)CSGOClassID::CBaseWeaponWorldModel && ((strstr(cClass->m_pNetworkName, "Weapon") || cClass->m_ClassID == (int)CSGOClassID::CDEagle || cClass->m_ClassID == (int)CSGOClassID::CAK47)))
  80. {
  81. DrawDrop(pEntity, cClass);
  82. }
  83.  
  84. if (Menu::Window.VisualsTab.FiltersC4.GetState())
  85. {
  86. if (cClass->m_ClassID == (int)CSGOClassID::CPlantedC4)
  87. DrawBombPlanted(pEntity, cClass);
  88.  
  89. if (cClass->m_ClassID == (int)CSGOClassID::CC4)
  90. DrawBomb(pEntity, cClass);
  91. }
  92.  
  93. if (Menu::Window.VisualsTab.FiltersChickens.GetState())
  94. {
  95. if (cClass->m_ClassID == (int)CSGOClassID::CChicken)
  96. DrawChicken(pEntity, cClass);
  97. }
  98. }
  99. }
  100.  
  101. if (Menu::Window.VisualsTab.OtherNoFlash.GetState())
  102. {
  103. DWORD m_flFlashMaxAlpha = NetVar.GetNetVar(0xFE79FB98);
  104. *(float*)((DWORD)pLocal + m_flFlashMaxAlpha) = 0;
  105. }
  106.  
  107. if (Menu::Window.VisualsTab.OptionsGlow.GetState())
  108. {
  109. DrawGlow();
  110. }
  111. if (Menu::Window.VisualsTab.EntityGlow.GetState())
  112. {
  113. EntityGlow();
  114. }
  115.  
  116. if (Menu::Window.VisualsTab.GrenadeTrace.GetState())
  117. {
  118. GrenadeTrace();
  119. }
  120. }
  121.  
  122. void CEsp::DrawPlayer(IClientEntity* pEntity, player_info_t pinfo)
  123. {
  124. ESPBox Box;
  125. Color Color;
  126.  
  127. if (Menu::Window.VisualsTab.FiltersEnemiesOnly.GetState() && (pEntity->GetTeamNum() == hackManager.pLocal()->GetTeamNum()))
  128. return;
  129.  
  130. if (GetBox(pEntity, Box))
  131. {
  132. Color = GetPlayerColor(pEntity);
  133.  
  134. switch (Menu::Window.VisualsTab.OptionsBox.GetIndex())
  135. {
  136. case 0:
  137. break;
  138. case 1:
  139. DrawBox(Box, Color);
  140. break;
  141. case 2:
  142. FilledBox(Box, Color);
  143. break;
  144. case 3:
  145. Corners(Box, Color, pEntity);
  146. break;
  147. }
  148.  
  149. switch (Menu::Window.VisualsTab.OptionsWeapon.GetState())
  150. {
  151. case 0:
  152. break;
  153. case 1:
  154. DrawWeapon(pEntity, Box);
  155. break;
  156. }
  157.  
  158. if (Menu::Window.VisualsTab.OptionsName.GetState())
  159. DrawName(pinfo, Box);
  160.  
  161. if (Menu::Window.VisualsTab.OptionsHealth.GetState())
  162. DrawHealth(pEntity, Box);
  163.  
  164. if (Menu::Window.VisualsTab.OptionsInfo.GetState())
  165. DrawInfo(pEntity, Box);
  166.  
  167. if (Menu::Window.VisualsTab.OptionsArmor.GetState())
  168. Armor(pEntity, Box);
  169.  
  170. if (Menu::Window.VisualsTab.Barrels.GetState())
  171. Barrel(Box, Color, pEntity);
  172.  
  173. if (Menu::Window.VisualsTab.OptionsDefusing.GetState())
  174. IsPlayerDefusing(pinfo, Box, pEntity);
  175.  
  176. if (Menu::Window.VisualsTab.OptionsAimSpot.GetState())
  177. DrawCross(pEntity);
  178.  
  179. if (Menu::Window.VisualsTab.OptionsSkeleton.GetState())
  180. DrawSkeleton(pEntity);
  181.  
  182. if (Menu::Window.VisualsTab.Money.GetState())
  183. DrawMoney(pEntity, Box);
  184.  
  185. if (Menu::Window.VisualsTab.Distance.GetState())
  186. DrawDistance(Box, pEntity);
  187.  
  188. Info(pEntity, Box);
  189.  
  190. }
  191. }
  192.  
  193. bool CEsp::GetBox(IClientEntity* pEntity, CEsp::ESPBox &result)
  194. {
  195. Vector vOrigin, min, max, sMin, sMax, sOrigin,
  196. flb, brt, blb, frt, frb, brb, blt, flt;
  197. float left, top, right, bottom;
  198.  
  199. vOrigin = pEntity->GetOrigin();
  200. min = pEntity->collisionProperty()->GetMins() + vOrigin;
  201. max = pEntity->collisionProperty()->GetMaxs() + vOrigin;
  202.  
  203. Vector points[] = { Vector(min.x, min.y, min.z),
  204. Vector(min.x, max.y, min.z),
  205. Vector(max.x, max.y, min.z),
  206. Vector(max.x, min.y, min.z),
  207. Vector(max.x, max.y, max.z),
  208. Vector(min.x, max.y, max.z),
  209. Vector(min.x, min.y, max.z),
  210. Vector(max.x, min.y, max.z) };
  211.  
  212. if (!Render::WorldToScreen(points[3], flb) || !Render::WorldToScreen(points[5], brt)
  213. || !Render::WorldToScreen(points[0], blb) || !Render::WorldToScreen(points[4], frt)
  214. || !Render::WorldToScreen(points[2], frb) || !Render::WorldToScreen(points[1], brb)
  215. || !Render::WorldToScreen(points[6], blt) || !Render::WorldToScreen(points[7], flt))
  216. return false;
  217.  
  218. Vector arr[] = { flb, brt, blb, frt, frb, brb, blt, flt };
  219.  
  220. left = flb.x;
  221. top = flb.y;
  222. right = flb.x;
  223. bottom = flb.y;
  224.  
  225. for (int i = 1; i < 8; i++)
  226. {
  227. if (left > arr[i].x)
  228. left = arr[i].x;
  229. if (bottom < arr[i].y)
  230. bottom = arr[i].y;
  231. if (right < arr[i].x)
  232. right = arr[i].x;
  233. if (top > arr[i].y)
  234. top = arr[i].y;
  235. }
  236.  
  237. result.x = left;
  238. result.y = top;
  239. result.w = right - left;
  240. result.h = bottom - top;
  241.  
  242. return true;
  243. }
  244.  
  245. Color CEsp::GetPlayerColor(IClientEntity* pEntity)
  246. {
  247. int TeamNum = pEntity->GetTeamNum();
  248. bool IsVis = GameUtils::IsVisible(hackManager.pLocal(), pEntity, (int)CSGOHitboxID::Head);
  249.  
  250. Color color;
  251.  
  252. if (TeamNum == TEAM_CS_T)
  253. {
  254. if (IsVis)
  255. color = Color(Menu::Window.ColorsTab.TColorVisR.GetValue(), Menu::Window.ColorsTab.TColorVisG.GetValue(), Menu::Window.ColorsTab.TColorVisB.GetValue(), 255);
  256. else
  257. color = Color(Menu::Window.ColorsTab.TColorNoVisR.GetValue(), Menu::Window.ColorsTab.TColorNoVisG.GetValue(), Menu::Window.ColorsTab.TColorNoVisB.GetValue(), 255);
  258. }
  259. else
  260. {
  261. if (IsVis)
  262. color = Color(Menu::Window.ColorsTab.CTColorVisR.GetValue(), Menu::Window.ColorsTab.CTColorVisG.GetValue(), Menu::Window.ColorsTab.CTColorVisB.GetValue(), 255);
  263. else
  264. color = Color(Menu::Window.ColorsTab.CTColorNoVisR.GetValue(), Menu::Window.ColorsTab.CTColorNoVisG.GetValue(), Menu::Window.ColorsTab.CTColorNoVisB.GetValue(), 255);
  265. }
  266.  
  267. return color;
  268. }
  269.  
  270. void CEsp::Corners(CEsp::ESPBox size, Color color, IClientEntity* pEntity)
  271. {
  272. int VertLine = (((float)size.w) * (0.20f));
  273. int HorzLine = (((float)size.h) * (0.30f));
  274.  
  275. Render::Clear(size.x, size.y - 1, VertLine, 1, Color(0, 0, 0, 255));
  276. Render::Clear(size.x + size.w - VertLine, size.y - 1, VertLine, 1, Color(0, 0, 0, 255));
  277. Render::Clear(size.x, size.y + size.h - 1, VertLine, 1, Color(0, 0, 0, 255));
  278. Render::Clear(size.x + size.w - VertLine, size.y + size.h - 1, VertLine, 1, Color(0, 0, 0, 255));
  279.  
  280. Render::Clear(size.x - 1, size.y, 1, HorzLine, Color(0, 0, 0, 255));
  281. Render::Clear(size.x - 1, size.y + size.h - HorzLine, 1, HorzLine, Color(0, 0, 0, 255));
  282. Render::Clear(size.x + size.w - 1, size.y, 1, HorzLine, Color(0, 0, 0, 255));
  283. Render::Clear(size.x + size.w - 1, size.y + size.h - HorzLine, 1, HorzLine, Color(0, 0, 0, 255));
  284.  
  285. Render::Clear(size.x, size.y, VertLine, 1, color);
  286. Render::Clear(size.x + size.w - VertLine, size.y, VertLine, 1, color);
  287. Render::Clear(size.x, size.y + size.h, VertLine, 1, color);
  288. Render::Clear(size.x + size.w - VertLine, size.y + size.h, VertLine, 1, color);
  289.  
  290. Render::Clear(size.x, size.y, 1, HorzLine, color);
  291. Render::Clear(size.x, size.y + size.h - HorzLine, 1, HorzLine, color);
  292. Render::Clear(size.x + size.w, size.y, 1, HorzLine, color);
  293. Render::Clear(size.x + size.w, size.y + size.h - HorzLine, 1, HorzLine, color);
  294. }
  295.  
  296. void CEsp::FilledBox(CEsp::ESPBox size, Color color)
  297. {
  298. int VertLine = (((float)size.w) * (0.20f));
  299. int HorzLine = (((float)size.h) * (0.20f));
  300.  
  301. Render::Clear(size.x + 1, size.y + 1, size.w - 2, size.h - 2, Color(0, 0, 0, 40));
  302. Render::Clear(size.x + 1, size.y + 1, size.w - 2, size.h - 2, Color(0, 0, 0, 40));
  303. Render::Clear(size.x, size.y, VertLine, 1, color);
  304. Render::Clear(size.x + size.w - VertLine, size.y, VertLine, 1, color);
  305. Render::Clear(size.x, size.y + size.h, VertLine, 1, color);
  306. Render::Clear(size.x + size.w - VertLine, size.y + size.h, VertLine, 1, color);
  307. Render::Clear(size.x + 1, size.y + 1, size.w - 2, size.h - 2, Color(0, 0, 0, 40));
  308. Render::Clear(size.x, size.y, 1, HorzLine, color);
  309. Render::Clear(size.x, size.y + size.h - HorzLine, 1, HorzLine, color);
  310. Render::Clear(size.x + size.w, size.y, 1, HorzLine, color);
  311. Render::Clear(size.x + size.w, size.y + size.h - HorzLine, 1, HorzLine, color);
  312. Render::Clear(size.x + 1, size.y + 1, size.w - 2, size.h - 2, Color(0, 0, 0, 40));
  313. }
  314.  
  315. void CEsp::DrawBox(CEsp::ESPBox size, Color color)
  316. {
  317. Render::Outline(size.x, size.y, size.w, size.h, color);
  318. Render::Outline(size.x - 1, size.y - 1, size.w + 2, size.h + 2, Color(10, 10, 10, 150));
  319. Render::Outline(size.x + 1, size.y + 1, size.w - 2, size.h - 2, Color(10, 10, 10, 150));
  320. }
  321.  
  322. void CEsp::Barrel(CEsp::ESPBox size, Color color, IClientEntity* pEntity)
  323. {
  324. Vector src3D, src;
  325. src3D = pEntity->GetOrigin() - Vector(0, 0, 0);
  326.  
  327. if (!Render::WorldToScreen(src3D, src))
  328. return;
  329.  
  330. int ScreenWidth, ScreenHeight;
  331. Interfaces::Engine->GetScreenSize(ScreenWidth, ScreenHeight);
  332.  
  333. int x = (int)(ScreenWidth * 0.5f);
  334. int y = 0;
  335.  
  336.  
  337. y = ScreenHeight;
  338.  
  339. Render::Line((int)(src.x), (int)(src.y), x, y, Color(0, 255, 0, 255));
  340. }
  341.  
  342. void CEsp::DrawWeapon(IClientEntity* pEntity, CEsp::ESPBox size)
  343. {
  344. IClientEntity* pWeapon = Interfaces::EntList->GetClientEntityFromHandle((HANDLE)pEntity->GetActiveWeaponHandle());
  345. if (Menu::Window.VisualsTab.OptionsWeapon.GetState() && pWeapon)
  346. {
  347. RECT nameSize = Render::GetTextSize(Render::Fonts::ESP, pWeapon->GetpWeaponName());
  348. Render::Text(size.x + (size.w / 2) - (nameSize.right / 2), size.y + size.h + 8,
  349. Color(255, 255, 255, 255), Render::Fonts::ESP, pWeapon->GetpWeaponName());
  350. }
  351. }
  352.  
  353.  
  354. void CEsp::DrawGlow()
  355. {
  356. int GlowR = Menu::Window.ColorsTab.GlowR.GetValue();
  357. int GlowG = Menu::Window.ColorsTab.GlowG.GetValue();
  358. int GlowB = Menu::Window.ColorsTab.GlowB.GetValue();
  359. int GlowZ = Menu::Window.VisualsTab.GlowZ.GetValue();
  360.  
  361. CGlowObjectManager* GlowObjectManager = (CGlowObjectManager*)GlowManager;
  362.  
  363. for (int i = 0; i < GlowObjectManager->size; ++i)
  364. {
  365. CGlowObjectManager::GlowObjectDefinition_t* glowEntity = &GlowObjectManager->m_GlowObjectDefinitions[i];
  366. IClientEntity* Entity = glowEntity->getEntity();
  367.  
  368. if (glowEntity->IsEmpty() || !Entity)
  369. continue;
  370.  
  371. switch (Entity->GetClientClass()->m_ClassID)
  372. {
  373. case 35:
  374. if (Menu::Window.VisualsTab.OptionsGlow.GetState())
  375. {
  376. if (!Menu::Window.VisualsTab.FiltersPlayers.GetState() && !(Entity->GetTeamNum() == hackManager.pLocal()->GetTeamNum()))
  377. break;
  378. if (Menu::Window.VisualsTab.FiltersEnemiesOnly.GetState() && (Entity->GetTeamNum() == hackManager.pLocal()->GetTeamNum()))
  379. break;
  380.  
  381. if (GameUtils::IsVisible(hackManager.pLocal(), Entity, 0))
  382. {
  383. glowEntity->set((Entity->GetTeamNum() == hackManager.pLocal()->GetTeamNum()) ? Color(GlowR, GlowG, GlowB, GlowZ) : Color(GlowR, GlowG, GlowB, GlowZ));
  384. }
  385.  
  386. else
  387. {
  388. glowEntity->set((Entity->GetTeamNum() == hackManager.pLocal()->GetTeamNum()) ? Color(GlowR, GlowG, GlowB, GlowZ) : Color(GlowR, GlowG, GlowB, GlowZ));
  389. }
  390. }
  391. }
  392. }
  393. }
  394.  
  395. void CEsp::EntityGlow()
  396. {
  397. int GlowR = Menu::Window.ColorsTab.GlowR.GetValue();
  398. int GlowG = Menu::Window.ColorsTab.GlowG.GetValue();
  399. int GlowB = Menu::Window.ColorsTab.GlowB.GetValue();
  400. int GlowZ = Menu::Window.VisualsTab.GlowZ.GetValue();
  401.  
  402. CGlowObjectManager* GlowObjectManager = (CGlowObjectManager*)GlowManager;
  403.  
  404. for (int i = 0; i < GlowObjectManager->size; ++i)
  405. {
  406. CGlowObjectManager::GlowObjectDefinition_t* glowEntity = &GlowObjectManager->m_GlowObjectDefinitions[i];
  407. IClientEntity* Entity = glowEntity->getEntity();
  408.  
  409. if (glowEntity->IsEmpty() || !Entity)
  410. continue;
  411.  
  412. switch (Entity->GetClientClass()->m_ClassID)
  413. {
  414. case 1:
  415. if (Menu::Window.VisualsTab.EntityGlow.GetState())
  416. {
  417. if (Menu::Window.VisualsTab.EntityGlow.GetState())
  418. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  419. }
  420. case 9:
  421. if (Menu::Window.VisualsTab.FiltersNades.GetState())
  422. {
  423. if (Menu::Window.VisualsTab.EntityGlow.GetState())
  424. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  425. }
  426. case 29:
  427. if (Menu::Window.VisualsTab.EntityGlow.GetState())
  428. {
  429. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  430. }
  431. case 39:
  432. if (Menu::Window.VisualsTab.EntityGlow.GetState())
  433. {
  434. if (Menu::Window.VisualsTab.FiltersC4.GetState())
  435. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  436. }
  437. case 41:
  438. if (Menu::Window.VisualsTab.EntityGlow.GetState())
  439. {
  440. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  441. }
  442. case 66:
  443. if (Menu::Window.VisualsTab.EntityGlow.GetState())
  444. {
  445. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  446. }
  447. case 87:
  448. if (Menu::Window.VisualsTab.FiltersNades.GetState())
  449. {
  450. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  451. }
  452. case 98:
  453. if (Menu::Window.VisualsTab.FiltersNades.GetState())
  454. {
  455. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  456. }
  457. case 108:
  458. if (Menu::Window.VisualsTab.FiltersC4.GetState())
  459. {
  460. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  461. }
  462. case 130:
  463. if (Menu::Window.VisualsTab.FiltersNades.GetState())
  464. {
  465. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  466. }
  467. case 134:
  468. if (Menu::Window.VisualsTab.FiltersNades.GetState())
  469. {
  470. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  471. }
  472. default:
  473. if (Menu::Window.VisualsTab.EntityGlow.GetState())
  474. {
  475. if (strstr(Entity->GetClientClass()->m_pNetworkName, "Weapon"))
  476. glowEntity->set(Color(GlowR, GlowG, GlowB, GlowZ));
  477. }
  478. }
  479. }
  480. }
  481.  
  482. static wchar_t* CharToWideChar(const char* text)
  483. {
  484. size_t size = strlen(text) + 1;
  485. wchar_t* wa = new wchar_t[size];
  486. mbstowcs_s(NULL, wa, size/4, text, size);
  487. return wa;
  488. }
  489.  
  490. void CEsp::DrawName(player_info_t pinfo, CEsp::ESPBox size)
  491. {
  492. RECT nameSize = Render::GetTextSize(Render::Fonts::ESP, pinfo.name);
  493. Render::Text(size.x + (size.w / 2) - (nameSize.right / 2), size.y - 16,
  494. Color(255, 255, 255, 255), Render::Fonts::ESP, pinfo.name);
  495. }
  496.  
  497. void CEsp::DrawHealth(IClientEntity* pEntity, CEsp::ESPBox size)
  498. {
  499. int HPEnemy = 100;
  500. HPEnemy = pEntity->GetHealth();
  501. char nameBuffer[512];
  502. sprintf_s(nameBuffer, "%d", HPEnemy);
  503.  
  504.  
  505. float h = (size.h);
  506. float offset = (h / 4.f) + 5;
  507. float w = h / 64.f;
  508. float health = pEntity->GetHealth();
  509. UINT hp = h - (UINT)((h * health) / 100);
  510.  
  511. int Red = 255 - (health*2.55);
  512. int Green = health*2.55;
  513.  
  514. Render::DrawOutlinedRect((size.x - 6) - 1, size.y - 1, 3, h + 2, Color(0, 0, 0, 180));
  515.  
  516. Render::DrawLine((size.x - 6), size.y + hp, (size.x - 6), size.y + h, Color(Red, Green, 0, 180));
  517.  
  518. if (health < 100) {
  519.  
  520. Render::Text(size.x - 9, size.y + hp, Color(255, 255, 255, 255), Render::Fonts::ESP, nameBuffer);
  521. }
  522. }
  523.  
  524. std::string CleanItemName(std::string name)
  525. {
  526. std::string Name = name;
  527. if (Name[0] == 'C')
  528. Name.erase(Name.begin());
  529.  
  530. auto startOfWeap = Name.find("Weapon");
  531. if (startOfWeap != std::string::npos)
  532. Name.erase(Name.begin() + startOfWeap, Name.begin() + startOfWeap + 6);
  533.  
  534. return Name;
  535. }
  536.  
  537. void CEsp::DrawInfo(IClientEntity* pEntity, CEsp::ESPBox size)
  538. {
  539. std::vector<std::string> Info;
  540.  
  541. if (Menu::Window.VisualsTab.OptionsInfo.GetState() && pEntity == BombCarrier)
  542. {
  543. Info.push_back("Bomb Carrier");
  544. }
  545.  
  546. static RECT Size = Render::GetTextSize(Render::Fonts::Default, "Hi");
  547. int i = 0;
  548. for (auto Text : Info)
  549. {
  550. Render::Text(size.x + size.w + 3, size.y + (i*(Size.bottom + 2)), Color(255, 255, 255, 255), Render::Fonts::ESP, Text.c_str());
  551. i++;
  552. }
  553. }
  554.  
  555. void CEsp::DrawCross(IClientEntity* pEntity)
  556. {
  557. Vector cross = pEntity->GetHeadPos(), screen;
  558. static int Scale = 2;
  559. if (Render::WorldToScreen(cross, screen))
  560. {
  561. Render::Clear(screen.x - Scale, screen.y - (Scale * 2), (Scale * 2), (Scale * 4), Color(20, 20, 20, 160));
  562. Render::Clear(screen.x - (Scale * 2), screen.y - Scale, (Scale * 4), (Scale * 2), Color(20, 20, 20, 160));
  563. Render::Clear(screen.x - Scale - 1, screen.y - (Scale * 2) - 1, (Scale * 2) - 2, (Scale * 4) - 2, Color(250, 250, 250, 160));
  564. Render::Clear(screen.x - (Scale * 2) - 1, screen.y - Scale - 1, (Scale * 4) - 2, (Scale * 2) - 2, Color(250, 250, 250, 160));
  565. }
  566. }
  567.  
  568. void CEsp::DrawDrop(IClientEntity* pEntity, ClientClass* cClass)
  569. {
  570. Vector Box;
  571. IClientEntity* Weapon = (IClientEntity*)pEntity;
  572. IClientEntity* plr = Interfaces::EntList->GetClientEntityFromHandle((HANDLE)Weapon->GetOwnerHandle());
  573. if (!plr && Render::WorldToScreen(Weapon->GetOrigin(), Box))
  574. {
  575. if (Menu::Window.VisualsTab.FiltersWeapons.GetState())
  576. {
  577. Render::Outline(Box.x - 6, Box.y - 6, 12, 12, Color(255, 255, 255, 255));
  578. }
  579. if (Menu::Window.VisualsTab.FiltersWeapons.GetState())
  580. {
  581. RECT TextSize = Render::GetTextSize(Render::Fonts::Icon, Weapon->GetGunIcon());
  582. Render::Text(Box.x - (TextSize.right / 1), Box.y - 16, Color(255, 255, 255, 255), Render::Fonts::Icon, Weapon->GetGunIcon());
  583. }
  584. }
  585. }
  586.  
  587. void CEsp::DrawChicken(IClientEntity* pEntity, ClientClass* cClass)
  588. {
  589. ESPBox Box;
  590.  
  591. if (GetBox(pEntity, Box))
  592. {
  593. player_info_t pinfo; strcpy_s(pinfo.name, "Chicken");
  594. if (Menu::Window.VisualsTab.FiltersChickens.GetState())
  595. DrawBox(Box, Color(255,255,255,255));
  596.  
  597. if (Menu::Window.VisualsTab.FiltersChickens.GetState())
  598. DrawName(pinfo, Box);
  599. }
  600. }
  601.  
  602. void CEsp::DrawBombPlanted(IClientEntity* pEntity, ClientClass* cClass)
  603. {
  604. BombCarrier = nullptr;
  605.  
  606. Vector vOrig; Vector vScreen;
  607. vOrig = pEntity->GetOrigin();
  608. CCSBomb* Bomb = (CCSBomb*)pEntity;
  609.  
  610. if (Render::WorldToScreen(vOrig, vScreen))
  611. {
  612. float flBlow = Bomb->GetC4BlowTime();
  613. float TimeRemaining = flBlow - (Interfaces::Globals->interval_per_tick * hackManager.pLocal()->GetTickBase());
  614. char buffer[64];
  615. sprintf_s(buffer, "explodes in %.1f", TimeRemaining);
  616. Render::Text(vScreen.x, vScreen.y, Color(255, 255, 255, 255), Render::Fonts::ESP, buffer);
  617. }
  618. }
  619.  
  620. void CEsp::DrawBomb(IClientEntity* pEntity, ClientClass* cClass)
  621. {
  622. BombCarrier = nullptr;
  623. CBaseCombatWeapon *BombWeapon = (CBaseCombatWeapon *)pEntity;
  624. Vector vOrig; Vector vScreen;
  625. vOrig = pEntity->GetOrigin();
  626. bool adopted = true;
  627. HANDLE parent = BombWeapon->GetOwnerHandle();
  628. if (parent || (vOrig.x == 0 && vOrig.y == 0 && vOrig.z == 0))
  629. {
  630. IClientEntity* pParentEnt = (Interfaces::EntList->GetClientEntityFromHandle(parent));
  631. if (pParentEnt && pParentEnt->IsAlive())
  632. {
  633. BombCarrier = pParentEnt;
  634. adopted = false;
  635. }
  636. }
  637.  
  638. if (adopted)
  639. {
  640. if (Render::WorldToScreen(vOrig, vScreen))
  641. {
  642. Render::Text(vScreen.x, vScreen.y, Color(112, 230, 20, 255), Render::Fonts::ESP, "Bomb");
  643. }
  644. }
  645. }
  646.  
  647. void CEsp::DrawGranades()
  648. {
  649. auto granade = Interfaces::CVar->FindVar("sv_grenade_trajectory");
  650. auto granadespoof = new SpoofedConvar(granade);
  651. granadespoof->SetInt(1);
  652. }
  653.  
  654. void DrawBoneArray(int* boneNumbers, int amount, IClientEntity* pEntity, Color color)
  655. {
  656. Vector LastBoneScreen;
  657. for (int i = 0; i < amount; i++)
  658. {
  659. Vector Bone = pEntity->GetBonePos(boneNumbers[i]);
  660. Vector BoneScreen;
  661.  
  662. if (Render::WorldToScreen(Bone, BoneScreen))
  663. {
  664. if (i>0)
  665. {
  666. Render::Line(LastBoneScreen.x, LastBoneScreen.y, BoneScreen.x, BoneScreen.y, color);
  667. }
  668. }
  669. LastBoneScreen = BoneScreen;
  670. }
  671. }
  672.  
  673. void DrawBoneTest(IClientEntity *pEntity)
  674. {
  675. for (int i = 0; i < 127; i++)
  676. {
  677. Vector BoneLoc = pEntity->GetBonePos(i);
  678. Vector BoneScreen;
  679. if (Render::WorldToScreen(BoneLoc, BoneScreen))
  680. {
  681. char buf[10];
  682. _itoa_s(i, buf, 10);
  683. Render::Text(BoneScreen.x, BoneScreen.y, Color(255, 255, 255, 180), Render::Fonts::ESP, buf);
  684. }
  685. }
  686. }
  687.  
  688. void CEsp::DrawSkeleton(IClientEntity* pEntity)
  689. {
  690. studiohdr_t* pStudioHdr = Interfaces::ModelInfo->GetStudiomodel(pEntity->GetModel());
  691.  
  692. if (!pStudioHdr)
  693. return;
  694.  
  695. Vector vParent, vChild, sParent, sChild;
  696.  
  697. for (int j = 0; j < pStudioHdr->numbones; j++)
  698. {
  699. mstudiobone_t* pBone = pStudioHdr->GetBone(j);
  700.  
  701. if (pBone && (pBone->flags & BONE_USED_BY_HITBOX) && (pBone->parent != -1))
  702. {
  703. vChild = pEntity->GetBonePos(j);
  704. vParent = pEntity->GetBonePos(pBone->parent);
  705.  
  706. if (Render::WorldToScreen(vParent, sParent) && Render::WorldToScreen(vChild, sChild))
  707. {
  708. Render::Line(sParent[0], sParent[1], sChild[0], sChild[1], Color(255,255,255,255));
  709. }
  710. }
  711. }
  712. }
  713.  
  714. void CEsp::IsPlayerDefusing(player_info_t pinfo, CEsp::ESPBox size, IClientEntity* pEntity)
  715. {
  716. RECT defSize = Render::GetTextSize(Render::Fonts::ESP, "");
  717. if (pEntity->IsDefusing())
  718. {
  719. Render::Text(size.x + size.w + 3, size.y + (0.3*(defSize.bottom + 15)),
  720. Color(255, 0, 0, 255), Render::Fonts::ESP, charenc("Defusing"));
  721. }
  722. }
  723.  
  724. void CEsp::DrawMoney(IClientEntity* pEntity, CEsp::ESPBox size)
  725. {
  726. ESPBox ArmorBar = size;
  727.  
  728. int MoneyEnemy = 100;
  729. MoneyEnemy = pEntity->GetMoney();
  730. char nameBuffer[512];
  731. sprintf_s(nameBuffer, "%d $", MoneyEnemy);
  732.  
  733. RECT nameSize = Render::GetTextSize(Render::Fonts::ESP, nameBuffer);
  734. Render::Text(size.x + (size.w / 2) - (nameSize.right / 2), size.y - 27, Color(255, 255, 0, 255), Render::Fonts::ESP, nameBuffer);
  735. }
  736.  
  737. void CEsp::Armor(IClientEntity* pEntity, CEsp::ESPBox size)
  738. {
  739. ESPBox ArBar = size;
  740. ArBar.y += (ArBar.h + 3);
  741. ArBar.h = 6;
  742.  
  743. float ArValue = pEntity->ArmorValue();
  744. float ArPerc = ArValue / 100.f;
  745. float Width = (size.w * ArPerc);
  746. ArBar.w = Width;
  747.  
  748. Vertex_t Verts[4];
  749. Verts[0].Init(Vector2D(ArBar.x, ArBar.y));
  750. Verts[1].Init(Vector2D(ArBar.x + size.w + 0, ArBar.y));
  751. Verts[2].Init(Vector2D(ArBar.x + size.w, ArBar.y + 2));
  752. Verts[3].Init(Vector2D(ArBar.x - 0, ArBar.y + 2));
  753.  
  754. Render::PolygonOutline(4, Verts, Color(50, 50, 50, 255), Color(50, 50, 50, 255));
  755.  
  756. Vertex_t Verts2[4];
  757. Verts2[0].Init(Vector2D(ArBar.x, ArBar.y + 1));
  758. Verts2[1].Init(Vector2D(ArBar.x + ArBar.w + 0, ArBar.y + 1));
  759. Verts2[2].Init(Vector2D(ArBar.x + ArBar.w, ArBar.y + 2));
  760. Verts2[3].Init(Vector2D(ArBar.x, ArBar.y + 2));
  761.  
  762. Color c = GetPlayerColor(pEntity);
  763. Render::Polygon(4, Verts2, Color(0, 120, 255, 200));
  764. }
  765.  
  766.  
  767. void CEsp::DrawMolotov(IClientEntity* pEntity, ClientClass* cClass)
  768. {
  769. ESPBox Box;
  770.  
  771. if (GetBox(pEntity, Box))
  772. {
  773. player_info_t pinfo; strcpy_s(pinfo.name, "Fire");
  774.  
  775. if (Menu::Window.VisualsTab.FiltersNades.GetState())
  776. DrawName(pinfo, Box);
  777. }
  778. }
  779.  
  780. void CEsp::DrawSmoke(IClientEntity* pEntity, ClientClass* cClass)
  781. {
  782. ESPBox Box;
  783.  
  784. if (GetBox(pEntity, Box))
  785. {
  786. player_info_t pinfo; strcpy_s(pinfo.name, "Smoke");
  787.  
  788. if (Menu::Window.VisualsTab.FiltersNades.GetState() == 1)
  789. DrawName(pinfo, Box);
  790. }
  791. }
  792.  
  793. void CEsp::DrawDecoy(IClientEntity* pEntity, ClientClass* cClass)
  794. {
  795. ESPBox Box;
  796.  
  797. if (GetBox(pEntity, Box))
  798. {
  799. player_info_t pinfo; strcpy_s(pinfo.name, "Decoy");
  800.  
  801. if (Menu::Window.VisualsTab.FiltersNades.GetState())
  802. DrawName(pinfo, Box);
  803. }
  804. }
  805.  
  806. void CEsp::DrawHE(IClientEntity* pEntity, ClientClass* cClass)
  807. {
  808. ESPBox Box;
  809.  
  810. if (GetBox(pEntity, Box))
  811. {
  812. player_info_t pinfo; strcpy_s(pinfo.name, "HE or Flash");
  813.  
  814. if (Menu::Window.VisualsTab.FiltersNades.GetState())
  815. DrawName(pinfo, Box);
  816. }
  817. }
  818.  
  819. void CEsp::Info(IClientEntity* pEntity, CEsp::ESPBox size)
  820. {
  821. std::vector<std::string> Info;
  822.  
  823. if (Menu::Window.VisualsTab.HasDefuser.GetState() && pEntity->HasDefuser())
  824. {
  825. Info.push_back("Has Defuser");
  826. }
  827.  
  828. if (Menu::Window.VisualsTab.IsScoped.GetState() && pEntity->IsScoped())
  829. {
  830. Info.push_back("Scoped");
  831. }
  832.  
  833. static RECT Size = Render::GetTextSize(Render::Fonts::ESP, "Hi");
  834. int i = 0;
  835. for (auto Text : Info)
  836. {
  837. Render::Text(size.x + size.w + 3, size.y + (i*(Size.bottom + 2)), Color(255, 255, 255, 255), Render::Fonts::ESP, Text.c_str());
  838. i++;
  839. }
  840. }
  841.  
  842. void CEsp::GrenadeTrace()
  843. {
  844. auto granade = Interfaces::CVar->FindVar("sv_grenade_trajectory");
  845. auto granadespoof = new SpoofedConvar(granade);
  846. granadespoof->SetInt(1);
  847. }
  848.  
  849. void CEsp::DrawDistance(CEsp::ESPBox size, IClientEntity* pEntity)
  850. {
  851. IClientEntity *pLocal = hackManager.pLocal();
  852.  
  853. Vector vecOrigin = pEntity->GetOrigin();
  854. Vector vecOriginLocal = pLocal->GetOrigin();
  855. static RECT defSize = Render::GetTextSize(Render::Fonts::Default, "");
  856.  
  857. char dist_to[32];
  858. sprintf_s(dist_to, "%.0f ft", DistanceTo(vecOriginLocal, vecOrigin));
  859.  
  860. Render::Text(size.x + size.w + 3, size.y + (0.6*(defSize.bottom + 28)), Color(255, 255, 255, 255), Render::Fonts::ESP, dist_to);
  861. }
  862.  
  863. float CEsp::DistanceTo(Vector vecSrc, Vector vecDst)
  864. {
  865. Vector vDelta = vecDst - vecSrc;
  866.  
  867. float fDistance = ::sqrtf((vDelta.Length()));
  868.  
  869. if (fDistance < 1.0f)
  870. return 1.0f;
  871.  
  872. return fDistance;
  873. }
  874.  
  875. void CEsp::Junk()
  876. {
  877.  
  878. float Junkeefafe = 115616516515165165;
  879. Junkeefafe = 1616516516513241165;
  880. Junkeefafe = 2165165465151656544;
  881. Junkeefafe = 4155654464654561651;
  882. if (Junkeefafe = 6151516546546465451);
  883. Junkeefafe = 1516515646545456411;
  884. Junkeefafe = 1556416151654564165;
  885. if (Junkeefafe = 4616516516544654654);
  886. Junkeefafe = 7818984564615415511;
  887. Junkeefafe = 1561065156116551651;
  888. Junkeefafe = 4615645461641561561;
  889. if (Junkeefafe = 4984818418989418198);
  890. Junkeefafe = 6516641651464546564;
  891. Junkeefafe = 5116565451651654545;
  892. if (Junkeefafe = 11561655644556454564);
  893. Junkeefafe = 1651564456151564156;
  894. Junkeefafe = 4551561654546465416;
  895. Junkeefafe = 6451578916574165744;
  896. if (Junkeefafe = 4441546165456154165);
  897. Junkeefafe = 6515645165416151656;
  898. Junkeefafe = 5166544156644655644;
  899. if (Junkeefafe = 2251514651464165415);
  900. Junkeefafe = 4651665785674654654;
  901. Junkeefafe = 4516516516546544651;
  902. Junkeefafe = 4194148612374165161;
  903. if (Junkeefafe = 1561525416516545654);
  904. Junkeefafe = 1516516516512465165;
  905. Junkeefafe = 1515165165324353454;
  906. if (Junkeefafe = 4515761519656549854);
  907. Junkeefafe = 4564964516489652596;
  908. Junkeefafe = 4156165446554465465;
  909. Junkeefafe = 6578929955955654656;
  910. }
  911. #include <stdio.h>
  912. #include <string>
  913. #include <iostream>
  914.  
  915. using namespace std;
  916.  
  917. class albvyfp {
  918. public:
  919. string dxhgtmai;
  920. double xsjll;
  921. bool aymanamzfm;
  922. albvyfp();
  923. string kjuqmmkdprdnignvglr(bool airtmvfdfso, bool hstyhcrzlcr, string zoukampxnjmedy, double rszihdeanyvrnw, string cwvswzlmnnvssde, string gldmcpadlxwps, bool oiqvmtzqaycw);
  924. string mrueytzfat(int ngrvuakvovxhrx, bool ylpprrlcbynf, string wgjjmpsmsto, bool hjrwkqkcekhyo, bool mhavhwldkgth, double pafvyzik);
  925. void zxvrqoxahsxgmgyewbich(double otgshyfbsjhqq, double yuytfoyroxua, double levnofb, int dshyyrca, string ohtkww, string piqvjjnpixay, bool hkwberjqnuijqlp, double chsbnrmeyiiw, int hvwhngn, int fzquitusbqp);
  926. void gqhtdcahutzvvmu(int ncyfqym, string dhbmnhbu, bool hcggmy, double uvkruwbfjcz, double ulntuoptba, string qmmduta, double crcqmfkzpvh, int itrzilpfwaf);
  927.  
  928. protected:
  929. bool jxamlt;
  930. double fdnlyshnukn;
  931.  
  932. double ixxsvoprefwbhlarsar(int vxhjxircqop, string ivvshwyzienv, double hqizzbkda, double ayhrumawkyhjju, string oexrbnopfbr, int gdtkpbqksz, bool sibmls, string bempfxanda, bool xsipsfyf);
  933.  
  934. private:
  935. bool oidmfuudeqqo;
  936. bool utpoeccsvenro;
  937. string vflcfqxnhrbouu;
  938. string zholbnpxzjmmad;
  939.  
  940. int btxnclnbgfamnf(int gzujsdob, bool eyrkctfag, double yhhuymgnxqtw, double lwyexsoftrcf, int caheart, bool avudbxnh, double upgxqoh, string xjtqqapejliyuwe);
  941. double uicouggmdwdffcc(int zpmkqltgewiyvt, string innfjgasjte, int wgmwv, double ogmnvvggq, bool ktkcnqftkl, int hnvyojfyu, bool ipgccybjxtmnpo, bool pkmvwzbtnboh, string urkzd, bool pxtjk);
  942. double cetftyfkmxsy(string rwubigrgxw, int yeiecyginf, bool olcvfty, bool lrpgxhdrt, bool saqxw, double piwgiohcdqjcjzc, double ontweqmynhu);
  943. bool oppojtjaaqigieafhz(string toysw, bool bqdecu, int mcejzzh, double jgppuyd, bool uvoxhlxlqms, int lchfwlcjtjhcij, int uhbrpw, double kmnniuzbwi);
  944. void yknxqprgxl(double eldabhdmw, bool ckssqs, int yxakidjrhyhimuq, string youftisq, bool rdgiqsmrapb, string fihgtkoryihk, int nrpxxddcuoft, string pkcdq, int xkfaurcnqyxvuq, string tcwxyy);
  945. void nboaiywrycnmdbcvhferg(double yperxnli, int ddscrtntdsxb, int bcmtznymvuhu, double pwvulersqeanh, bool xorvqrm, bool suvgjfdtrufn, string cqswwjivu, bool fnazwlko, double jajhjnwa);
  946. double hncdrivdyqoxuiljboqf(int bsmteazjzcffst, double oqiubzwzz, double enmdsy, int eemuzomtwlkvucr, string sdmwzk, bool exlmewcze, string omybtyztis, int kjdsf);
  947.  
  948. };
  949.  
  950.  
  951. int albvyfp::btxnclnbgfamnf(int gzujsdob, bool eyrkctfag, double yhhuymgnxqtw, double lwyexsoftrcf, int caheart, bool avudbxnh, double upgxqoh, string xjtqqapejliyuwe) {
  952. bool ekkxqoc = false;
  953. string hotdghsihwvwpd = "xcnqtkxjstqofcxhwqrnysjhrofsjczszckjgparezlflkzohesluhjgm";
  954. if (false != false) {
  955. int oedtcm;
  956. for (oedtcm = 27; oedtcm > 0; oedtcm--) {
  957. continue;
  958. }
  959. }
  960. return 28483;
  961. }
  962.  
  963. double albvyfp::uicouggmdwdffcc(int zpmkqltgewiyvt, string innfjgasjte, int wgmwv, double ogmnvvggq, bool ktkcnqftkl, int hnvyojfyu, bool ipgccybjxtmnpo, bool pkmvwzbtnboh, string urkzd, bool pxtjk) {
  964. bool pdnnecosphw = false;
  965. return 70785;
  966. }
  967.  
  968. double albvyfp::cetftyfkmxsy(string rwubigrgxw, int yeiecyginf, bool olcvfty, bool lrpgxhdrt, bool saqxw, double piwgiohcdqjcjzc, double ontweqmynhu) {
  969. double oayjpbfhdmsyqgk = 4389;
  970. int tirrig = 100;
  971. int atzgdzonnko = 116;
  972. int asntqybfyhwmxq = 3502;
  973. double jyacalk = 34455;
  974. if (3502 == 3502) {
  975. int ynyncrusq;
  976. for (ynyncrusq = 42; ynyncrusq > 0; ynyncrusq--) {
  977. continue;
  978. }
  979. }
  980. if (100 == 100) {
  981. int ipih;
  982. for (ipih = 49; ipih > 0; ipih--) {
  983. continue;
  984. }
  985. }
  986. if (4389 == 4389) {
  987. int ypew;
  988. for (ypew = 59; ypew > 0; ypew--) {
  989. continue;
  990. }
  991. }
  992. if (116 == 116) {
  993. int vgp;
  994. for (vgp = 5; vgp > 0; vgp--) {
  995. continue;
  996. }
  997. }
  998. if (34455 != 34455) {
  999. int wiiagquoa;
  1000. for (wiiagquoa = 70; wiiagquoa > 0; wiiagquoa--) {
  1001. continue;
  1002. }
  1003. }
  1004. return 59931;
  1005. }
  1006.  
  1007. bool albvyfp::oppojtjaaqigieafhz(string toysw, bool bqdecu, int mcejzzh, double jgppuyd, bool uvoxhlxlqms, int lchfwlcjtjhcij, int uhbrpw, double kmnniuzbwi) {
  1008. bool mfqgvedw = true;
  1009. string yhafdksz = "fxupanfrfshutqklhmmnekqgeyrehzphufixqorfvbuiuixapsmptq";
  1010. return false;
  1011. }
  1012.  
  1013. void albvyfp::yknxqprgxl(double eldabhdmw, bool ckssqs, int yxakidjrhyhimuq, string youftisq, bool rdgiqsmrapb, string fihgtkoryihk, int nrpxxddcuoft, string pkcdq, int xkfaurcnqyxvuq, string tcwxyy) {
  1014. string paxir = "kzfucblsajxdnvmhxsecwuppvsgsbdowwashbdhnrcachoel";
  1015. int ukjwhqrecqwszgt = 2669;
  1016.  
  1017. }
  1018.  
  1019. void albvyfp::nboaiywrycnmdbcvhferg(double yperxnli, int ddscrtntdsxb, int bcmtznymvuhu, double pwvulersqeanh, bool xorvqrm, bool suvgjfdtrufn, string cqswwjivu, bool fnazwlko, double jajhjnwa) {
  1020. bool ndqswr = false;
  1021. string ocmixv = "vjdosugkxqguevgpcwsm";
  1022. bool gtoft = true;
  1023. int zodxdrlu = 2648;
  1024. bool pcrlifqzklhvt = true;
  1025. string dvper = "odruxqaxaottrtrhjzqvtrxxgwnxoyytbwmkgkjgihvfkpeifljvxyvwqdmtnviyaumdqzgiexkhckfptcgqssgeyzm";
  1026. if (false != false) {
  1027. int vn;
  1028. for (vn = 67; vn > 0; vn--) {
  1029. continue;
  1030. }
  1031. }
  1032. if (2648 != 2648) {
  1033. int gbyzjwhn;
  1034. for (gbyzjwhn = 46; gbyzjwhn > 0; gbyzjwhn--) {
  1035. continue;
  1036. }
  1037. }
  1038.  
  1039. }
  1040.  
  1041. double albvyfp::hncdrivdyqoxuiljboqf(int bsmteazjzcffst, double oqiubzwzz, double enmdsy, int eemuzomtwlkvucr, string sdmwzk, bool exlmewcze, string omybtyztis, int kjdsf) {
  1042. double mrxwmiehasjha = 3784;
  1043. string ajordxmxwau = "auspyisyujkkffydjhsqvfbwuvfnmdcrvnxpextqptsbpzagdptrosznogeysupoaxhkbmwahegszpnyevixsxclihsblpcmxblk";
  1044. double icnhgmdhjua = 24812;
  1045. int odhjfjonetljlvd = 290;
  1046. if (string("auspyisyujkkffydjhsqvfbwuvfnmdcrvnxpextqptsbpzagdptrosznogeysupoaxhkbmwahegszpnyevixsxclihsblpcmxblk") == string("auspyisyujkkffydjhsqvfbwuvfnmdcrvnxpextqptsbpzagdptrosznogeysupoaxhkbmwahegszpnyevixsxclihsblpcmxblk")) {
  1047. int tkixa;
  1048. for (tkixa = 83; tkixa > 0; tkixa--) {
  1049. continue;
  1050. }
  1051. }
  1052. if (290 != 290) {
  1053. int xyoradgj;
  1054. for (xyoradgj = 50; xyoradgj > 0; xyoradgj--) {
  1055. continue;
  1056. }
  1057. }
  1058. if (3784 != 3784) {
  1059. int vu;
  1060. for (vu = 22; vu > 0; vu--) {
  1061. continue;
  1062. }
  1063. }
  1064. if (3784 == 3784) {
  1065. int wtjumwddep;
  1066. for (wtjumwddep = 16; wtjumwddep > 0; wtjumwddep--) {
  1067. continue;
  1068. }
  1069. }
  1070. if (24812 != 24812) {
  1071. int kparvmyrh;
  1072. for (kparvmyrh = 39; kparvmyrh > 0; kparvmyrh--) {
  1073. continue;
  1074. }
  1075. }
  1076. return 60479;
  1077. }
  1078.  
  1079. double albvyfp::ixxsvoprefwbhlarsar(int vxhjxircqop, string ivvshwyzienv, double hqizzbkda, double ayhrumawkyhjju, string oexrbnopfbr, int gdtkpbqksz, bool sibmls, string bempfxanda, bool xsipsfyf) {
  1080. double xkvuweq = 18909;
  1081. int hiuufk = 1709;
  1082. double jugfwiwiztvvt = 41020;
  1083. double bgxlxzcecw = 2075;
  1084. double omxrjpgrq = 717;
  1085. int atorziyfnxp = 1218;
  1086. double fyncoxray = 35684;
  1087. int jnyhcfgxjdv = 7581;
  1088. bool xypnws = false;
  1089. return 57501;
  1090. }
  1091.  
  1092. string albvyfp::kjuqmmkdprdnignvglr(bool airtmvfdfso, bool hstyhcrzlcr, string zoukampxnjmedy, double rszihdeanyvrnw, string cwvswzlmnnvssde, string gldmcpadlxwps, bool oiqvmtzqaycw) {
  1093. string ojaidmi = "ijhyjgtwsxjywcqqojycrlhukveqfkqjxiyoxuczrjrgqosjpmaokbuhnbmnebwhcrybgqzlnmalx";
  1094. double emuaw = 17064;
  1095. int pafftegxlc = 2827;
  1096. if (17064 == 17064) {
  1097. int bvjerd;
  1098. for (bvjerd = 65; bvjerd > 0; bvjerd--) {
  1099. continue;
  1100. }
  1101. }
  1102. if (17064 != 17064) {
  1103. int lpcehb;
  1104. for (lpcehb = 4; lpcehb > 0; lpcehb--) {
  1105. continue;
  1106. }
  1107. }
  1108. if (17064 == 17064) {
  1109. int nnxwbt;
  1110. for (nnxwbt = 4; nnxwbt > 0; nnxwbt--) {
  1111. continue;
  1112. }
  1113. }
  1114. if (2827 != 2827) {
  1115. int iub;
  1116. for (iub = 33; iub > 0; iub--) {
  1117. continue;
  1118. }
  1119. }
  1120. return string("exgteittrelmorek");
  1121. }
  1122.  
  1123. string albvyfp::mrueytzfat(int ngrvuakvovxhrx, bool ylpprrlcbynf, string wgjjmpsmsto, bool hjrwkqkcekhyo, bool mhavhwldkgth, double pafvyzik) {
  1124. int xbnqpecls = 1462;
  1125. string leumkxm = "kiyxdojj";
  1126. string bjyemlahuxif = "ysbttuvmpvwriklbhfoayidxkda";
  1127. string gjeihjbwj = "eeyusvcdrzrnlsalyzgydbazprpulxjwcp";
  1128. string nafqom = "sainnxoviwhoaqhzqphueoyjlykenngdzfdshhzumyjdmvj";
  1129. int rpjobuopf = 4603;
  1130. int ljvou = 3414;
  1131. if (1462 != 1462) {
  1132. int ofsvpgpwml;
  1133. for (ofsvpgpwml = 34; ofsvpgpwml > 0; ofsvpgpwml--) {
  1134. continue;
  1135. }
  1136. }
  1137. if (string("ysbttuvmpvwriklbhfoayidxkda") == string("ysbttuvmpvwriklbhfoayidxkda")) {
  1138. int nliamwe;
  1139. for (nliamwe = 45; nliamwe > 0; nliamwe--) {
  1140. continue;
  1141. }
  1142. }
  1143. if (3414 == 3414) {
  1144. int qysp;
  1145. for (qysp = 37; qysp > 0; qysp--) {
  1146. continue;
  1147. }
  1148. }
  1149. if (string("eeyusvcdrzrnlsalyzgydbazprpulxjwcp") != string("eeyusvcdrzrnlsalyzgydbazprpulxjwcp")) {
  1150. int clin;
  1151. for (clin = 28; clin > 0; clin--) {
  1152. continue;
  1153. }
  1154. }
  1155. if (4603 != 4603) {
  1156. int piolgmryu;
  1157. for (piolgmryu = 96; piolgmryu > 0; piolgmryu--) {
  1158. continue;
  1159. }
  1160. }
  1161. return string("wtntubqshedlqint");
  1162. }
  1163.  
  1164. void albvyfp::zxvrqoxahsxgmgyewbich(double otgshyfbsjhqq, double yuytfoyroxua, double levnofb, int dshyyrca, string ohtkww, string piqvjjnpixay, bool hkwberjqnuijqlp, double chsbnrmeyiiw, int hvwhngn, int fzquitusbqp) {
  1165. int hycoatsjmtlkbr = 1770;
  1166. int hvwieyshht = 4144;
  1167. string zxdzspgpfhjdnld = "actmqijyzitzbvtkqeapjzpevbdrutbhorjoqaxrposewmtuxpxsrttmtmmfzthcsozuuuotjgqagzvipxxiysbzaclcmdcezjtv";
  1168. double hxqwxiqjgjey = 28928;
  1169. string ouvrsaomrke = "ljxhoufxcpndslydpmjughbcwuetrnpgpzbgzglzhmvbouhnwgderqxynlgjibyixbenpfxttlwyqgfdihib";
  1170. int txtqhtfrnxlsqs = 1437;
  1171. if (string("actmqijyzitzbvtkqeapjzpevbdrutbhorjoqaxrposewmtuxpxsrttmtmmfzthcsozuuuotjgqagzvipxxiysbzaclcmdcezjtv") == string("actmqijyzitzbvtkqeapjzpevbdrutbhorjoqaxrposewmtuxpxsrttmtmmfzthcsozuuuotjgqagzvipxxiysbzaclcmdcezjtv")) {
  1172. int ator;
  1173. for (ator = 84; ator > 0; ator--) {
  1174. continue;
  1175. }
  1176. }
  1177. if (4144 == 4144) {
  1178. int canbagczzs;
  1179. for (canbagczzs = 61; canbagczzs > 0; canbagczzs--) {
  1180. continue;
  1181. }
  1182. }
  1183. if (string("actmqijyzitzbvtkqeapjzpevbdrutbhorjoqaxrposewmtuxpxsrttmtmmfzthcsozuuuotjgqagzvipxxiysbzaclcmdcezjtv") != string("actmqijyzitzbvtkqeapjzpevbdrutbhorjoqaxrposewmtuxpxsrttmtmmfzthcsozuuuotjgqagzvipxxiysbzaclcmdcezjtv")) {
  1184. int fkcyaqgc;
  1185. for (fkcyaqgc = 93; fkcyaqgc > 0; fkcyaqgc--) {
  1186. continue;
  1187. }
  1188. }
  1189.  
  1190. }
  1191.  
  1192. void albvyfp::gqhtdcahutzvvmu(int ncyfqym, string dhbmnhbu, bool hcggmy, double uvkruwbfjcz, double ulntuoptba, string qmmduta, double crcqmfkzpvh, int itrzilpfwaf) {
  1193. double fpmrohw = 34720;
  1194. int xfcnlfqiiqbas = 3076;
  1195. if (3076 != 3076) {
  1196. int pm;
  1197. for (pm = 95; pm > 0; pm--) {
  1198. continue;
  1199. }
  1200. }
  1201. if (34720 == 34720) {
  1202. int jea;
  1203. for (jea = 26; jea > 0; jea--) {
  1204. continue;
  1205. }
  1206. }
  1207. if (34720 != 34720) {
  1208. int nfxbx;
  1209. for (nfxbx = 2; nfxbx > 0; nfxbx--) {
  1210. continue;
  1211. }
  1212. }
  1213. if (3076 != 3076) {
  1214. int ydchf;
  1215. for (ydchf = 3; ydchf > 0; ydchf--) {
  1216. continue;
  1217. }
  1218. }
  1219. if (34720 == 34720) {
  1220. int wqdxrkgo;
  1221. for (wqdxrkgo = 47; wqdxrkgo > 0; wqdxrkgo--) {
  1222. continue;
  1223. }
  1224. }
  1225.  
  1226. }
  1227.  
  1228.  
  1229.  
  1230.  
  1231. albvyfp::albvyfp() {
  1232. this->kjuqmmkdprdnignvglr(false, false, string("uyzoqzvqkuaroovggvbbhdwojyrdjrhkhhkgtiutuabcdldfntaeiyckoclkg"), 3015, string("ikghyrndmvldomhedmvtrbnitbucxdpyqslmwsuacmxuxycostdwgttvekbus"), string("gaqpsjgjnfofiuzylrnvdqegwccdgwamkijhcwoqzwzhebjkuiprrompjedhm"), true);
  1233. this->mrueytzfat(6361, true, string("ndnjlxxsbqdcopkmypiwejppg"), true, true, 55674);
  1234. this->zxvrqoxahsxgmgyewbich(20962, 4130, 58956, 643, string("ifjdbkorfafljskextzqbfyittpvmj"), string("hysvvtxtpaezapihqxirpctokeyuvrkcfcghokltvaxegwjwvqdzjdzoonkgadxltvoatdxzfmldm"), true, 63076, 1398, 6245);
  1235. this->gqhtdcahutzvvmu(77, string("nnpsdosttepdntlitkbemnipczuitdzigicnjxvepifiqcfqxksrlqkdrdyawg"), true, 47463, 18709, string("kokzdimkyqxdpokpxrwqagx"), 27243, 73);
  1236. this->ixxsvoprefwbhlarsar(2496, string("omzcoxwksyrhwizybk"), 50641, 16907, string("ystxkfkzhznpgosskktniglhqhkfkbftaooywcshlhahjmvicflk"), 4343, true, string("turmpoxlxd"), true);
  1237. this->btxnclnbgfamnf(1552, false, 22530, 1542, 2646, true, 52734, string("ixtjeexwzvptlubfxhmrwxcubtwqaubw"));
  1238. this->uicouggmdwdffcc(7530, string("gileixsmnthjhpjcarlijzgmtioffvxpjbzflihqgtlzquncwcuowgizgvfqbcrxtedu"), 1510, 31139, true, 582, true, false, string("keluxiampzltosjvrbbiixxglnvjfcbemogjc"), false);
  1239. this->cetftyfkmxsy(string("ozyqeuooznnmnedlbqgraciqosdjfhwzllxmqrusnmyjconrfrixlesjcqjrnabextlwwmsbttxlzqegcjusgc"), 3400, true, false, false, 12476, 7375);
  1240. this->oppojtjaaqigieafhz(string("bmwclhewahqnkmsfrqkiedvciyvtsvwtknvspkktssksbpnvnxqgvwibhjhrhdrsauldj"), true, 708, 35083, true, 95, 1173, 19031);
  1241. this->yknxqprgxl(54223, false, 5667, string("qoysfgudvgkhhtpjyjddhydbs"), true, string("srufzioyflfqzmtxksxljmnhfqywojhyxrgfrye"), 4970, string("ngf"), 1795, string("uzevdefqcjtuyzkbaopyeaxeqqkapioyi"));
  1242. this->nboaiywrycnmdbcvhferg(84781, 21, 3538, 64576, false, true, string("vbpxvyiuzplwezzhiphbwbbplcxlmpjf"), true, 35448);
  1243. this->hncdrivdyqoxuiljboqf(1693, 37817, 13611, 2140, string("sgijbzgaocamxybsevexebeorjeebjjyjbwqztlzfcdajgmcpqkxctsi"), false, string("dqpyvutpvidymxnhrqnxsmzcrnsnaphuyxhahystvnd"), 4340);
  1244. }
  1245.  
  1246.  
  1247. #include <stdio.h>
  1248. #include <string>
  1249. #include <iostream>
  1250.  
  1251. using namespace std;
  1252.  
  1253. class yemszsx {
  1254. public:
  1255. string fisafjbls;
  1256. int vrpbdo;
  1257. bool ugtfpavui;
  1258. double grbwvfjtuokgb;
  1259. yemszsx();
  1260. void qbviwsbaifigco(int ylqmi, double wihtyvm, int culwufsngujzp, string hnjfsgbhuppvs);
  1261. double whprjacdcfrr(double okxrtgoeher, string nljqwfzuzccey, int fvnxzydswynbk, int tzbzpgd, string azutaudontnuw, int jdnehgrruvbg);
  1262. bool ewdvgygiqqgmrnbiwfnw(int wiaebwox, string poumecmwyydcbgm, bool pxcdybbwsabj, double fzznxrnpv, bool ihefehdgxp);
  1263. int frjjkrwsjjoqre();
  1264. double wtdmfostjc(string nqzxkqfinrsmubs, string cxmtadi);
  1265. void tfjjvmfcfdqwisics(int rssomrjkvsdo, int jtmwvisqmf, string uhwbaiacndnpn, bool meoqjqobcae, int bhguzmqpztmkafp);
  1266. void jctltwznrxodyz();
  1267.  
  1268. protected:
  1269. string vyfkmbvhvflhpi;
  1270. string xmsiyv;
  1271. string ybmvcvzpszf;
  1272. double nfbbmopsylfsj;
  1273.  
  1274. int enlflrjkaeutxahswsfayckbj(string ngaqj, bool iwxhibkxnemsqs, bool zfgwmcvz, bool ereqthttubiimoz, int mjuhzkhpyoakur, bool mhkthjgknnei, string czytktvhemv, string ubwqfns, int vwgfitc, double rqxxeqocupqxaod);
  1275. double wiiuhsvrzcwwbjwuajzwfvs();
  1276. bool eykqfyyxfmntqqdnffe(string hqkplly, int qvcjywwqysgluk, int jrmbpggv, bool inalznpzoouvk, double aendbfu, double jnccf, string zyuswg, string bpjiqzi, double hmvpdwjorjzfz);
  1277.  
  1278. private:
  1279. bool mxsycq;
  1280. int psttaagjyu;
  1281. bool qlkidrrczicu;
  1282.  
  1283. double fjbzotgwckdqqxzfrdif(bool qnjfbuajqtlwoy, string zgkiklfkqyvrr, bool msrfvyvvnsys, int ouoyr, int wufyesyeu);
  1284. void ipcbqydfsqjncuhwglgxxl();
  1285. void cfxmpfikhxepab(bool wxrrb, string jpoeboe);
  1286. void pkagekbjfnsufdazbnst(string hwsvnzzwjz);
  1287. void qgtdicvspcvjoigkumws(bool hxsgzvwbbiq, int jlgnfugykqo, int fvrgpfseczpj);
  1288. void odrwiglavlefzbhap(double nxenbcdzp, int bbkwxwsg, int hppestmcmz, int ghktkpiwz, bool xyeoq, string wbafyefvzsdwj);
  1289.  
  1290. };
  1291.  
  1292.  
  1293. double yemszsx::fjbzotgwckdqqxzfrdif(bool qnjfbuajqtlwoy, string zgkiklfkqyvrr, bool msrfvyvvnsys, int ouoyr, int wufyesyeu) {
  1294. int sxwxgj = 960;
  1295. double jkotsp = 57695;
  1296. if (57695 != 57695) {
  1297. int ilvk;
  1298. for (ilvk = 4; ilvk > 0; ilvk--) {
  1299. continue;
  1300. }
  1301. }
  1302. if (57695 != 57695) {
  1303. int mbbfhqhwlr;
  1304. for (mbbfhqhwlr = 99; mbbfhqhwlr > 0; mbbfhqhwlr--) {
  1305. continue;
  1306. }
  1307. }
  1308. if (960 != 960) {
  1309. int qknbbdgepm;
  1310. for (qknbbdgepm = 70; qknbbdgepm > 0; qknbbdgepm--) {
  1311. continue;
  1312. }
  1313. }
  1314. return 85980;
  1315. }
  1316.  
  1317. void yemszsx::ipcbqydfsqjncuhwglgxxl() {
  1318. string rovfiqdqcxvbc = "myjzopdbclufexwdgfbcppfcpaalyxoafrxabtjxpmuynohceqccwgpvjwbadjckouuhh";
  1319. string hcorrrtfjj = "fmswvnjfupzzubkuxlugdimzrvuozxkbzhpfhekgwlmpwfo";
  1320. double qwyncbmegy = 29462;
  1321. double egnaqtsgkz = 632;
  1322. int jdlkwinlji = 1152;
  1323. bool nrgsrmexkzh = false;
  1324. int qxxrdrekevq = 5502;
  1325. bool nhpyncsnpkma = false;
  1326. int hifiadvupywv = 3112;
  1327. double ewabrluqe = 8341;
  1328. if (1152 == 1152) {
  1329. int oeal;
  1330. for (oeal = 47; oeal > 0; oeal--) {
  1331. continue;
  1332. }
  1333. }
  1334. if (1152 == 1152) {
  1335. int hmzncycxj;
  1336. for (hmzncycxj = 33; hmzncycxj > 0; hmzncycxj--) {
  1337. continue;
  1338. }
  1339. }
  1340.  
  1341. }
  1342.  
  1343. void yemszsx::cfxmpfikhxepab(bool wxrrb, string jpoeboe) {
  1344. double iprapub = 13432;
  1345. bool fqpqmreqr = false;
  1346. int rykmzzwpcgcdk = 1235;
  1347. bool mglwmuyk = true;
  1348. string wepcokrw = "gqhjtvcbrisykijehvnudfgcvwiguxhrbgedypbfxolcrxxryzoobschchanupjjuqrosduwnqhiapufks";
  1349. double wgdxwkwfdsjs = 7063;
  1350. int knawjdbuzk = 5118;
  1351. string gloolnvmnk = "yrdhg";
  1352. if (false != false) {
  1353. int enagzpvpli;
  1354. for (enagzpvpli = 17; enagzpvpli > 0; enagzpvpli--) {
  1355. continue;
  1356. }
  1357. }
  1358. if (true != true) {
  1359. int tzeoqkyacy;
  1360. for (tzeoqkyacy = 73; tzeoqkyacy > 0; tzeoqkyacy--) {
  1361. continue;
  1362. }
  1363. }
  1364. if (5118 == 5118) {
  1365. int wdkf;
  1366. for (wdkf = 97; wdkf > 0; wdkf--) {
  1367. continue;
  1368. }
  1369. }
  1370. if (true == true) {
  1371. int pceoke;
  1372. for (pceoke = 23; pceoke > 0; pceoke--) {
  1373. continue;
  1374. }
  1375. }
  1376. if (true != true) {
  1377. int ioztpjtcnn;
  1378. for (ioztpjtcnn = 71; ioztpjtcnn > 0; ioztpjtcnn--) {
  1379. continue;
  1380. }
  1381. }
  1382.  
  1383. }
  1384.  
  1385. void yemszsx::pkagekbjfnsufdazbnst(string hwsvnzzwjz) {
  1386. int bpgtbxpz = 6890;
  1387. bool yitcv = false;
  1388. if (false == false) {
  1389. int catxoyq;
  1390. for (catxoyq = 74; catxoyq > 0; catxoyq--) {
  1391. continue;
  1392. }
  1393. }
  1394. if (false == false) {
  1395. int rh;
  1396. for (rh = 29; rh > 0; rh--) {
  1397. continue;
  1398. }
  1399. }
  1400. if (false == false) {
  1401. int bdbu;
  1402. for (bdbu = 9; bdbu > 0; bdbu--) {
  1403. continue;
  1404. }
  1405. }
  1406.  
  1407. }
  1408.  
  1409. void yemszsx::qgtdicvspcvjoigkumws(bool hxsgzvwbbiq, int jlgnfugykqo, int fvrgpfseczpj) {
  1410. string bmwnytris = "hgzpemihqrltxdxsshlwlavlsttxxpfncwybzzrmydepxvqpuhgrfjdjffibirunlyxocowoo";
  1411. double dtqgngvqfztfanp = 39608;
  1412. bool gfoyzcy = false;
  1413. int bdtgsgkeowmik = 4427;
  1414. string xckaxtoiswuh = "mnmsswpxvzhdscr";
  1415. double nmadgoxohaitdgh = 48309;
  1416. double oooyzx = 12228;
  1417. int getcqsw = 1981;
  1418.  
  1419. }
  1420.  
  1421. void yemszsx::odrwiglavlefzbhap(double nxenbcdzp, int bbkwxwsg, int hppestmcmz, int ghktkpiwz, bool xyeoq, string wbafyefvzsdwj) {
  1422. double otngnz = 1589;
  1423. double awraukf = 17766;
  1424. int gckdsn = 2375;
  1425. int slqiervokcl = 1290;
  1426. double vcyjlwwgfddhfnc = 9570;
  1427. int cdtoyrupqsigs = 903;
  1428. if (17766 == 17766) {
  1429. int iwjt;
  1430. for (iwjt = 90; iwjt > 0; iwjt--) {
  1431. continue;
  1432. }
  1433. }
  1434. if (9570 == 9570) {
  1435. int ar;
  1436. for (ar = 22; ar > 0; ar--) {
  1437. continue;
  1438. }
  1439. }
  1440. if (9570 != 9570) {
  1441. int irrb;
  1442. for (irrb = 63; irrb > 0; irrb--) {
  1443. continue;
  1444. }
  1445. }
  1446. if (1290 == 1290) {
  1447. int btnqmrxfo;
  1448. for (btnqmrxfo = 16; btnqmrxfo > 0; btnqmrxfo--) {
  1449. continue;
  1450. }
  1451. }
  1452. if (9570 == 9570) {
  1453. int pjbrkxjj;
  1454. for (pjbrkxjj = 77; pjbrkxjj > 0; pjbrkxjj--) {
  1455. continue;
  1456. }
  1457. }
  1458.  
  1459. }
  1460.  
  1461. int yemszsx::enlflrjkaeutxahswsfayckbj(string ngaqj, bool iwxhibkxnemsqs, bool zfgwmcvz, bool ereqthttubiimoz, int mjuhzkhpyoakur, bool mhkthjgknnei, string czytktvhemv, string ubwqfns, int vwgfitc, double rqxxeqocupqxaod) {
  1462. bool mjwukjophjvj = true;
  1463. double rgefxkidthcso = 41478;
  1464. double zikmpxgpfzgpu = 78097;
  1465. int pwyvtzrkzyr = 4709;
  1466. string umrfteicpde = "ccopvovcivapmuwevxnbfkjhtboemjotjqzuwdkqpeeazoymdeetrpw";
  1467. string ednkesip = "afxledruurrhqrvnntgiiphxshzpiagsxdstipmpgisxtgujojicfpfmehuuozzbotmburjejuaxnirnxf";
  1468. bool mynkvyntj = true;
  1469. int umhzplhjkglkiw = 3784;
  1470. if (true != true) {
  1471. int rgb;
  1472. for (rgb = 85; rgb > 0; rgb--) {
  1473. continue;
  1474. }
  1475. }
  1476. if (4709 == 4709) {
  1477. int nwiguy;
  1478. for (nwiguy = 9; nwiguy > 0; nwiguy--) {
  1479. continue;
  1480. }
  1481. }
  1482. if (true != true) {
  1483. int yfpgcnlh;
  1484. for (yfpgcnlh = 44; yfpgcnlh > 0; yfpgcnlh--) {
  1485. continue;
  1486. }
  1487. }
  1488. if (78097 == 78097) {
  1489. int vvicqdgmr;
  1490. for (vvicqdgmr = 36; vvicqdgmr > 0; vvicqdgmr--) {
  1491. continue;
  1492. }
  1493. }
  1494. if (string("ccopvovcivapmuwevxnbfkjhtboemjotjqzuwdkqpeeazoymdeetrpw") != string("ccopvovcivapmuwevxnbfkjhtboemjotjqzuwdkqpeeazoymdeetrpw")) {
  1495. int mes;
  1496. for (mes = 71; mes > 0; mes--) {
  1497. continue;
  1498. }
  1499. }
  1500. return 37907;
  1501. }
  1502.  
  1503. double yemszsx::wiiuhsvrzcwwbjwuajzwfvs() {
  1504. return 75302;
  1505. }
  1506.  
  1507. bool yemszsx::eykqfyyxfmntqqdnffe(string hqkplly, int qvcjywwqysgluk, int jrmbpggv, bool inalznpzoouvk, double aendbfu, double jnccf, string zyuswg, string bpjiqzi, double hmvpdwjorjzfz) {
  1508. int inbqjrff = 3504;
  1509. string abmwuezhyrkirv = "zixeyyhtlc";
  1510. double ojxku = 19071;
  1511. double kmzpeyjhaxa = 4999;
  1512. int ijhhzeztrncrx = 3167;
  1513. return false;
  1514. }
  1515.  
  1516. void yemszsx::qbviwsbaifigco(int ylqmi, double wihtyvm, int culwufsngujzp, string hnjfsgbhuppvs) {
  1517.  
  1518. }
  1519.  
  1520. double yemszsx::whprjacdcfrr(double okxrtgoeher, string nljqwfzuzccey, int fvnxzydswynbk, int tzbzpgd, string azutaudontnuw, int jdnehgrruvbg) {
  1521. double tuzad = 52641;
  1522. bool mmjhzmmmhhrxzw = true;
  1523. bool knlhtmkki = true;
  1524. bool heewnizudj = false;
  1525. string dtqsjjearnct = "aauljexxwdfztkffhhs";
  1526. bool vitnxteegixbere = true;
  1527. double yypeiy = 3667;
  1528. int xyjyqavrybvdnm = 3216;
  1529. double ltkneygeqw = 7807;
  1530. if (52641 != 52641) {
  1531. int qbm;
  1532. for (qbm = 40; qbm > 0; qbm--) {
  1533. continue;
  1534. }
  1535. }
  1536. return 67472;
  1537. }
  1538.  
  1539. bool yemszsx::ewdvgygiqqgmrnbiwfnw(int wiaebwox, string poumecmwyydcbgm, bool pxcdybbwsabj, double fzznxrnpv, bool ihefehdgxp) {
  1540. bool hztxfzyctdmlf = true;
  1541. bool fdmyhr = false;
  1542. double otqag = 26162;
  1543. string phmewrxktovjw = "idagdckdshigicivfdlcequivnjtlgbgiwtmqfwykazglhalfymonadgvieadlncervtkvpoghkoygtz";
  1544. int yowokpckbms = 5264;
  1545. double bniylskkxhddu = 10606;
  1546. string nwrmosvasakgq = "dfaj";
  1547. string gerdiagzdpvll = "lafjfzqiingoosqpmbxswwqvhijcqpowfrbxbkbgvfl";
  1548. bool wsqsvqyscw = false;
  1549. if (true == true) {
  1550. int lssgnbf;
  1551. for (lssgnbf = 4; lssgnbf > 0; lssgnbf--) {
  1552. continue;
  1553. }
  1554. }
  1555. if (string("lafjfzqiingoosqpmbxswwqvhijcqpowfrbxbkbgvfl") != string("lafjfzqiingoosqpmbxswwqvhijcqpowfrbxbkbgvfl")) {
  1556. int jdtlr;
  1557. for (jdtlr = 94; jdtlr > 0; jdtlr--) {
  1558. continue;
  1559. }
  1560. }
  1561. if (26162 == 26162) {
  1562. int kp;
  1563. for (kp = 24; kp > 0; kp--) {
  1564. continue;
  1565. }
  1566. }
  1567. if (string("dfaj") != string("dfaj")) {
  1568. int uloxkspvpp;
  1569. for (uloxkspvpp = 47; uloxkspvpp > 0; uloxkspvpp--) {
  1570. continue;
  1571. }
  1572. }
  1573. if (false == false) {
  1574. int vjr;
  1575. for (vjr = 86; vjr > 0; vjr--) {
  1576. continue;
  1577. }
  1578. }
  1579. return false;
  1580. }
  1581.  
  1582. int yemszsx::frjjkrwsjjoqre() {
  1583. bool vqoavzpkrka = true;
  1584. double iaszlvffumzkrmz = 10580;
  1585. string laghfrbwzwameh = "ymexysr";
  1586. bool rnxtn = true;
  1587. double rvrlzelhxggbxoc = 4366;
  1588. bool ehbuijogfn = false;
  1589. bool yttvjdzrak = false;
  1590. if (10580 != 10580) {
  1591. int lzxygzugi;
  1592. for (lzxygzugi = 96; lzxygzugi > 0; lzxygzugi--) {
  1593. continue;
  1594. }
  1595. }
  1596. if (false == false) {
  1597. int yamovqqh;
  1598. for (yamovqqh = 58; yamovqqh > 0; yamovqqh--) {
  1599. continue;
  1600. }
  1601. }
  1602. if (10580 == 10580) {
  1603. int wtl;
  1604. for (wtl = 2; wtl > 0; wtl--) {
  1605. continue;
  1606. }
  1607. }
  1608. return 39832;
  1609. }
  1610.  
  1611. double yemszsx::wtdmfostjc(string nqzxkqfinrsmubs, string cxmtadi) {
  1612. bool vpejlqglpgqzhgx = false;
  1613. double ijtyeudizkxbb = 56707;
  1614. string tndbced = "yenypsdpoeccpgzcwvqvfjrquypnmtujydmaicicie";
  1615. double fqnzybisandov = 11846;
  1616. string itgxjcq = "dpugjmtuwfztogujkmvvggvqxsyjidtjnmeotguzqgikgnqxoamjdlaxtjdjdcpezgvzfhnueeisfcymgdmzrjy";
  1617. if (56707 != 56707) {
  1618. int knstxhri;
  1619. for (knstxhri = 38; knstxhri > 0; knstxhri--) {
  1620. continue;
  1621. }
  1622. }
  1623. if (56707 == 56707) {
  1624. int gcyy;
  1625. for (gcyy = 84; gcyy > 0; gcyy--) {
  1626. continue;
  1627. }
  1628. }
  1629. if (11846 != 11846) {
  1630. int afxifykxi;
  1631. for (afxifykxi = 48; afxifykxi > 0; afxifykxi--) {
  1632. continue;
  1633. }
  1634. }
  1635. return 74827;
  1636. }
  1637.  
  1638. void yemszsx::tfjjvmfcfdqwisics(int rssomrjkvsdo, int jtmwvisqmf, string uhwbaiacndnpn, bool meoqjqobcae, int bhguzmqpztmkafp) {
  1639. string difqe = "ezltvuwonlaovofqotcuzdumwmufxsbrqghlkwlnsmtazlvdjsnbwohpmelvvnlqntjbfmycafqnlbytmyizpltsx";
  1640. if (string("ezltvuwonlaovofqotcuzdumwmufxsbrqghlkwlnsmtazlvdjsnbwohpmelvvnlqntjbfmycafqnlbytmyizpltsx") != string("ezltvuwonlaovofqotcuzdumwmufxsbrqghlkwlnsmtazlvdjsnbwohpmelvvnlqntjbfmycafqnlbytmyizpltsx")) {
  1641. int qcebosmtt;
  1642. for (qcebosmtt = 17; qcebosmtt > 0; qcebosmtt--) {
  1643. continue;
  1644. }
  1645. }
  1646.  
  1647. }
  1648.  
  1649. void yemszsx::jctltwznrxodyz() {
  1650.  
  1651. }
  1652.  
  1653. yemszsx::yemszsx() {
  1654. this->qbviwsbaifigco(3487, 8869, 3829, string("pebicjufcviyudyjhhzwpajczlckmnwntfqcrxwuhxqohljmnyasasnyuguwfqljxloqhyapsngertsjzdwjrffinxmnxjyte"));
  1655. this->whprjacdcfrr(13856, string("tczfjnqpcvheaeuzuztcsgahywhkthogvilglyeoyusmlzmykupdfbgyzrcnjtfkl"), 534, 24, string("ajspcxjvuliengakbvblmfxugykoyjpjsrzgvdjlpmzpzexcscdjemyjadyimlsomkyyqobnawdceaslotodeqlgqrvhiy"), 4682);
  1656. this->ewdvgygiqqgmrnbiwfnw(2988, string("hgxvzsueazqfhkmkocwokmd"), false, 36394, true);
  1657. this->frjjkrwsjjoqre();
  1658. this->wtdmfostjc(string("abatsxthssuhfjysfffrdpxhmqqipewqvqgcgvhaxyxqzfochhxawwgxlzpqxnkgwkbsote"), string("kccibcdciachewivmsvdspisyttukroxbsehtzdtqxeeiuunkktasfmjhkbhegjerdjhcflvhfgvqehzhnf"));
  1659. this->tfjjvmfcfdqwisics(3997, 694, string("qtcyxjytmnojerskqzdowomfjxpmmqipzdmqgm"), false, 5076);
  1660. this->jctltwznrxodyz();
  1661. this->enlflrjkaeutxahswsfayckbj(string("drzsixwptzmxtpgthwasmwsjsvsdcreyrbdywlkdmq"), true, false, true, 1088, true, string("stchwicvlglpkctdemaqan"), string("vcfdeqodhnilbyhlannjo"), 2347, 83585);
  1662. this->wiiuhsvrzcwwbjwuajzwfvs();
  1663. this->eykqfyyxfmntqqdnffe(string("sppzqnsrhrzdanwbwcicisoubxudn"), 7306, 1501, true, 43831, 11581, string("dxfryffpdfzwyimaddpcqxnwvkkwdocjbjpvnzerblnzvqckvpsljldjgdcdkcfahjjchifymaefywlenacpxwysdpze"), string("iivwaykarjrsayhfkqudgrdlkbxbnkxg"), 32053);
  1664. this->fjbzotgwckdqqxzfrdif(false, string("wdvdanjxeyqwucujwlqujhavkswzburtmjkmymayhfffvevaynv"), false, 4146, 310);
  1665. this->ipcbqydfsqjncuhwglgxxl();
  1666. this->cfxmpfikhxepab(false, string("gnxuhuedhijmjqzlpokpkdatrskpldtrzfoayfvyss"));
  1667. this->pkagekbjfnsufdazbnst(string("ogxzcbblornyrsuvcgqyguijqlcozxomiecsweixocpxafdbqrprdhmzpivrafbzhqswg"));
  1668. this->qgtdicvspcvjoigkumws(true, 6331, 2962);
  1669. this->odrwiglavlefzbhap(57572, 3295, 7, 5619, true, string("uwbirxaxgtlkbvtempksl"));
  1670. }
  1671.  
  1672. #include <stdio.h>
  1673. #include <string>
  1674. #include <iostream>
  1675.  
  1676. using namespace std;
  1677.  
  1678. class vfpnpwr {
  1679. public:
  1680. int nmsftqxcq;
  1681. string bubeqg;
  1682. int ixmfar;
  1683. string izxrlqctpkmjxb;
  1684. bool hezplgypn;
  1685. vfpnpwr();
  1686. string biqqfwhuvloihlpguxmcvlau(string enpbn, string ekbzovlgkwinhic);
  1687. bool pisbfyiqtafnygcirhxn(double zclsstngmne, int nvkigdsz, int iqellj, string tgjgglcfrepykx);
  1688. bool fkgeiylaol(double pmfiqnud, string xbmqpwthohnhnu, double oublxnivbpb);
  1689. int wqpsiomvagjevgojyzjpy(bool nzrilbalnhzsp, string nadrbrs, int bgtaahbvynj, double pgtfkbeyemyxnyb, bool apjjyka, double pcgsrxpp, double xboiwr, double srbdbwuxhch, bool qiepna, string wufvhhrbbvalo);
  1690. string jvyukpsvhbrf(double xfsfiksjv, double enotgz, double udxvi, bool knafnecgyy);
  1691.  
  1692. protected:
  1693. double vaewxnbpfegzgwb;
  1694.  
  1695. double borpjoddzymphxi(string gqcmbwhedv, double mxdqqpoouwx, string pzhue);
  1696. int xyniqoslznhygotwduiurxv(string gvzssfdoictf, int jxanrcmgqo);
  1697.  
  1698. private:
  1699. double ctxdoqtfcvaaehl;
  1700. string feirwllofvv;
  1701.  
  1702. void khiexrggtfdipiqiojybvjif(bool zotamjpv, string snlxhtvjwcd, int ncuvjuhyxqjrwic, double yhxfplkpkyt, bool yltjrs, int xtstcz, double qkvjsyguqtl, string qewmipt, int kyptbmt);
  1703. void wyhzushsewgom(int njkiirjwbha, bool eexooim, int yxeef, int yjggidx, int wghybcu, double cvrzuh, int jkjjwh, bool onrdmehgwegr);
  1704. double hdcpaykqgcrzjn(string vjftpln, bool ykpbnzic, double badqaqgdry, string mmycbb, double ydwhbhkon);
  1705.  
  1706. };
  1707.  
  1708.  
  1709. void vfpnpwr::khiexrggtfdipiqiojybvjif(bool zotamjpv, string snlxhtvjwcd, int ncuvjuhyxqjrwic, double yhxfplkpkyt, bool yltjrs, int xtstcz, double qkvjsyguqtl, string qewmipt, int kyptbmt) {
  1710. string zghnuicmaknme = "onowtbuhhigjaubllkjrdccjcungwjxkveaqtxjembfjys";
  1711. bool ybelxqczrxt = false;
  1712. string crojchyfqc = "hnlwsczwcymgpibuyayhtzsqsmjmpcsdbkkdejibqubytlkwbajtvixqrxivgztowch";
  1713. int wohtsof = 1014;
  1714. double kqyltokhlhox = 21275;
  1715. double nqamaddcvvejohs = 22075;
  1716. if (21275 == 21275) {
  1717. int hbbdijq;
  1718. for (hbbdijq = 48; hbbdijq > 0; hbbdijq--) {
  1719. continue;
  1720. }
  1721. }
  1722. if (1014 == 1014) {
  1723. int ar;
  1724. for (ar = 66; ar > 0; ar--) {
  1725. continue;
  1726. }
  1727. }
  1728. if (string("onowtbuhhigjaubllkjrdccjcungwjxkveaqtxjembfjys") != string("onowtbuhhigjaubllkjrdccjcungwjxkveaqtxjembfjys")) {
  1729. int wzlib;
  1730. for (wzlib = 41; wzlib > 0; wzlib--) {
  1731. continue;
  1732. }
  1733. }
  1734. if (1014 == 1014) {
  1735. int jgcngfj;
  1736. for (jgcngfj = 1; jgcngfj > 0; jgcngfj--) {
  1737. continue;
  1738. }
  1739. }
  1740.  
  1741. }
  1742.  
  1743. void vfpnpwr::wyhzushsewgom(int njkiirjwbha, bool eexooim, int yxeef, int yjggidx, int wghybcu, double cvrzuh, int jkjjwh, bool onrdmehgwegr) {
  1744.  
  1745. }
  1746.  
  1747. double vfpnpwr::hdcpaykqgcrzjn(string vjftpln, bool ykpbnzic, double badqaqgdry, string mmycbb, double ydwhbhkon) {
  1748. int swrkkildaze = 316;
  1749. int cjrhobez = 3115;
  1750. string xqgliatqqtwj = "hbogsnvvuwlyozyybqhoilnlsrdvufbbw";
  1751. double dbjgzdrvnos = 78592;
  1752. bool zzhns = false;
  1753. double okgdmfwocr = 7231;
  1754. int ulzpuydicw = 5753;
  1755. string acqzdr = "ltleuskgqgyahobpbvuvarasaifpqiffojqqkirwywxuhwdtebcinuetqcxsytvcprmnbrozhvybiudpeklmi";
  1756. double sonvpd = 3382;
  1757. double fiahlgqj = 22288;
  1758. if (22288 == 22288) {
  1759. int fgvmkcz;
  1760. for (fgvmkcz = 51; fgvmkcz > 0; fgvmkcz--) {
  1761. continue;
  1762. }
  1763. }
  1764. if (5753 != 5753) {
  1765. int xiagijgvh;
  1766. for (xiagijgvh = 61; xiagijgvh > 0; xiagijgvh--) {
  1767. continue;
  1768. }
  1769. }
  1770. if (5753 != 5753) {
  1771. int uvp;
  1772. for (uvp = 96; uvp > 0; uvp--) {
  1773. continue;
  1774. }
  1775. }
  1776. return 64893;
  1777. }
  1778.  
  1779. double vfpnpwr::borpjoddzymphxi(string gqcmbwhedv, double mxdqqpoouwx, string pzhue) {
  1780. double oqrivqdzblc = 12799;
  1781. int abwsq = 309;
  1782. int skgrbszyeeb = 916;
  1783. double tcziw = 73223;
  1784. bool hiipvpx = true;
  1785. if (309 != 309) {
  1786. int yufzkruw;
  1787. for (yufzkruw = 85; yufzkruw > 0; yufzkruw--) {
  1788. continue;
  1789. }
  1790. }
  1791. return 58838;
  1792. }
  1793.  
  1794. int vfpnpwr::xyniqoslznhygotwduiurxv(string gvzssfdoictf, int jxanrcmgqo) {
  1795. string yngwhybc = "cpxjgtbtstzhysqulrbyqefwvhgswauczewhcggzooec";
  1796. double fubnllpotnqkljm = 2658;
  1797. int ftvloazzcvu = 1470;
  1798. bool snhoccjlzouup = true;
  1799. string ajmrauvqsq = "eocwjfippeyfslwsjunkmxyykwrjkyhmubxxuopvlkciwcjritycueulluqjkypmzlhwjjluopr";
  1800. if (1470 != 1470) {
  1801. int evfsjdrcbo;
  1802. for (evfsjdrcbo = 7; evfsjdrcbo > 0; evfsjdrcbo--) {
  1803. continue;
  1804. }
  1805. }
  1806. if (string("eocwjfippeyfslwsjunkmxyykwrjkyhmubxxuopvlkciwcjritycueulluqjkypmzlhwjjluopr") == string("eocwjfippeyfslwsjunkmxyykwrjkyhmubxxuopvlkciwcjritycueulluqjkypmzlhwjjluopr")) {
  1807. int gjocrnvcrm;
  1808. for (gjocrnvcrm = 37; gjocrnvcrm > 0; gjocrnvcrm--) {
  1809. continue;
  1810. }
  1811. }
  1812. return 287;
  1813. }
  1814.  
  1815. string vfpnpwr::biqqfwhuvloihlpguxmcvlau(string enpbn, string ekbzovlgkwinhic) {
  1816. string xqgafzrgsrjpove = "xjhxlap";
  1817. string kldaslvzgkafq = "wuojfdgzultdyoeuhcgeraqcskcvugkpzfliffctkzcvntisxocoucfidniwlooajapnuvmqykew";
  1818. bool oxxcys = false;
  1819. double ninybucq = 28863;
  1820. int vkffte = 1834;
  1821. return string("jehbs");
  1822. }
  1823.  
  1824. bool vfpnpwr::pisbfyiqtafnygcirhxn(double zclsstngmne, int nvkigdsz, int iqellj, string tgjgglcfrepykx) {
  1825. double msteefkyfe = 31463;
  1826. bool mzsmycxagui = false;
  1827. if (false != false) {
  1828. int nzbr;
  1829. for (nzbr = 11; nzbr > 0; nzbr--) {
  1830. continue;
  1831. }
  1832. }
  1833. if (31463 == 31463) {
  1834. int zntlxzft;
  1835. for (zntlxzft = 37; zntlxzft > 0; zntlxzft--) {
  1836. continue;
  1837. }
  1838. }
  1839. if (false != false) {
  1840. int ixi;
  1841. for (ixi = 58; ixi > 0; ixi--) {
  1842. continue;
  1843. }
  1844. }
  1845. if (31463 != 31463) {
  1846. int qeln;
  1847. for (qeln = 17; qeln > 0; qeln--) {
  1848. continue;
  1849. }
  1850. }
  1851. if (31463 == 31463) {
  1852. int apqxba;
  1853. for (apqxba = 60; apqxba > 0; apqxba--) {
  1854. continue;
  1855. }
  1856. }
  1857. return true;
  1858. }
  1859.  
  1860. bool vfpnpwr::fkgeiylaol(double pmfiqnud, string xbmqpwthohnhnu, double oublxnivbpb) {
  1861. bool kvsajbqiscq = true;
  1862. bool rkusphsfyrl = false;
  1863. string mfzppbwutjhf = "sxrqc";
  1864. bool dxyewuab = true;
  1865. bool qfzsiu = true;
  1866. double rimyed = 930;
  1867. int eqxrleenezjqi = 5313;
  1868. bool gelangebpoymly = false;
  1869. string lwtmandzjjn = "gyageiitbkwbpxuvuczcyzqbknhfkvimqextnobylwitfrcjqzfmatjasxqeirgpdzzx";
  1870. if (string("gyageiitbkwbpxuvuczcyzqbknhfkvimqextnobylwitfrcjqzfmatjasxqeirgpdzzx") == string("gyageiitbkwbpxuvuczcyzqbknhfkvimqextnobylwitfrcjqzfmatjasxqeirgpdzzx")) {
  1871. int ku;
  1872. for (ku = 73; ku > 0; ku--) {
  1873. continue;
  1874. }
  1875. }
  1876. if (true == true) {
  1877. int mfx;
  1878. for (mfx = 27; mfx > 0; mfx--) {
  1879. continue;
  1880. }
  1881. }
  1882. return false;
  1883. }
  1884.  
  1885. int vfpnpwr::wqpsiomvagjevgojyzjpy(bool nzrilbalnhzsp, string nadrbrs, int bgtaahbvynj, double pgtfkbeyemyxnyb, bool apjjyka, double pcgsrxpp, double xboiwr, double srbdbwuxhch, bool qiepna, string wufvhhrbbvalo) {
  1886. bool tezpflhgjfyhgv = true;
  1887. string kjkfphv = "ceszggnevsokvxpbiwhcfnqfeeltravshubvbpnvrnwhnymcsxuhuexxgxvtnxgjgxckerexkzpeokxoxmomnxgm";
  1888. bool yjgjjkiypirqoj = false;
  1889. double qcnolntwj = 26157;
  1890. int mrfgwspq = 497;
  1891. int xaixlpjxinzi = 1083;
  1892. int ehndfabqw = 3067;
  1893. bool oabwng = true;
  1894. string gwjdujfmrw = "bkiaaudmwvhfzzvmxfwlycdgrucbmmylnredhiwhfjrujnjdfdptoimwbogfqujxxevtvjsfqz";
  1895. string emcmbopli = "bbjcbzmcignodglhtkrqnujiodeqbcijyfwxpvrrcmezagmpfgozwublcrmpetih";
  1896. if (string("bkiaaudmwvhfzzvmxfwlycdgrucbmmylnredhiwhfjrujnjdfdptoimwbogfqujxxevtvjsfqz") != string("bkiaaudmwvhfzzvmxfwlycdgrucbmmylnredhiwhfjrujnjdfdptoimwbogfqujxxevtvjsfqz")) {
  1897. int dwlfazoctw;
  1898. for (dwlfazoctw = 25; dwlfazoctw > 0; dwlfazoctw--) {
  1899. continue;
  1900. }
  1901. }
  1902. if (string("bbjcbzmcignodglhtkrqnujiodeqbcijyfwxpvrrcmezagmpfgozwublcrmpetih") == string("bbjcbzmcignodglhtkrqnujiodeqbcijyfwxpvrrcmezagmpfgozwublcrmpetih")) {
  1903. int kcj;
  1904. for (kcj = 80; kcj > 0; kcj--) {
  1905. continue;
  1906. }
  1907. }
  1908. if (497 == 497) {
  1909. int jfshz;
  1910. for (jfshz = 2; jfshz > 0; jfshz--) {
  1911. continue;
  1912. }
  1913. }
  1914. if (string("ceszggnevsokvxpbiwhcfnqfeeltravshubvbpnvrnwhnymcsxuhuexxgxvtnxgjgxckerexkzpeokxoxmomnxgm") != string("ceszggnevsokvxpbiwhcfnqfeeltravshubvbpnvrnwhnymcsxuhuexxgxvtnxgjgxckerexkzpeokxoxmomnxgm")) {
  1915. int vjdy;
  1916. for (vjdy = 87; vjdy > 0; vjdy--) {
  1917. continue;
  1918. }
  1919. }
  1920. return 88459;
  1921. }
  1922.  
  1923. string vfpnpwr::jvyukpsvhbrf(double xfsfiksjv, double enotgz, double udxvi, bool knafnecgyy) {
  1924. return string("zvrvsxum");
  1925. }
  1926.  
  1927. vfpnpwr::vfpnpwr() {
  1928. this->biqqfwhuvloihlpguxmcvlau(string("qxwlcpqr"), string("nwhhxildwcxachfsswxorrnctjsrnfzdvpqwoihfwytpjcpuzzhscdutoaxmgktp"));
  1929. this->pisbfyiqtafnygcirhxn(8684, 5183, 141, string("yvvtsefcachiuzjxwpwjkbaujy"));
  1930. this->fkgeiylaol(21321, string("qsywwuqkolrxhslhgrynlawzmeyayffcnmdildoeyobnjizdxvromvcuqhcxsgegpxaayarbzuj"), 23612);
  1931. this->wqpsiomvagjevgojyzjpy(false, string("sruyoyjhvgvokymdsvhdbgcbxrzcxepyxryqslywkfqtpqpleaznkpnyqxltfzrscxubkxlqevpn"), 2838, 10777, true, 11057, 38004, 47477, true, string("shhvlyzfnx"));
  1932. this->jvyukpsvhbrf(31704, 18176, 20912, true);
  1933. this->borpjoddzymphxi(string("bialrwqmhmxcxzsdmhurijmbdeyreqkupxkhmrcbbzpxubiytsd"), 8094, string("gxdkybxgfisbldmejnchdlzoopfwnyqvunsdorulnvtvdyanwglhzahx"));
  1934. this->xyniqoslznhygotwduiurxv(string("yvbfgoakciepujrmweikqytaprteuruabucuskvuekanoxocopdrhp"), 49);
  1935. this->khiexrggtfdipiqiojybvjif(false, string("wsltstzdtmearphslzvyevuolqygbmwdzmnidiqestvfctaurmhxbxhohajdq"), 3699, 9050, true, 5438, 4652, string("tdgjwjjztrrnwypoipkxdiqtijrbexcptluxnlcmskbkfncfjxzjxvhbvunwjeghv"), 676);
  1936. this->wyhzushsewgom(3044, false, 5787, 3496, 2792, 39077, 3573, true);
  1937. this->hdcpaykqgcrzjn(string("fesbuecnxshmkfutqkpnsocfxojom"), false, 13517, string("ltwkkcfkunhdymwsrtycbldnjubbmkxiahmnedsdbiwmzmmkzxjsiwnxpospexlcsmgvactfehgc"), 39766);
  1938. }
  1939.  
  1940.  
  1941. #include <stdio.h>
  1942. #include <string>
  1943. #include <iostream>
  1944.  
  1945. using namespace std;
  1946.  
  1947. class ynglxmd {
  1948. public:
  1949. double ltorvjdziloxr;
  1950. bool nuzmurs;
  1951. double fmgvkeyxw;
  1952. string ayeqvffdaxdpji;
  1953. ynglxmd();
  1954. int qsoknhkjjmfcgkiwsjpp(double lotbmycwhuamnbw, string zrbrfyiizywspo, int msdkozbzpq, int ynkpdduuhhrqq);
  1955.  
  1956. protected:
  1957. string ugkjglrn;
  1958.  
  1959. double dwnvyumjymifnnk(bool ltodfmipfywp, int oiwieomctcpjycu, int znxaycu, string zgnemzgnqdcjh, string gjyomuncmimn);
  1960. bool mpbpvhjqzrmftlczkogq(bool gctuesejxiqwd, int vlmxapwmvqi, string nidyqotzgilzdd);
  1961.  
  1962. private:
  1963. bool anybkdyhuxfydsu;
  1964. int hjkrcmddncpeew;
  1965. string bailawp;
  1966.  
  1967. void mydmprktvbcxfykcg(bool jrlvjpd);
  1968. int cbcwdxyagpwt();
  1969. void oyqagonrbv(int edrfdtwgkgakmvh, int ehgjzfrk);
  1970. string dinvcfnfqzltvisvkh(int zvacqk, string wtbmkjfkuyoxfz, string msaponel, bool focfywqszu);
  1971. bool rlgqhvizcakeacvjchenv(double amldwuwrdugy, bool mesnbnmwhemft, bool mzuwqoec, int rsexrbkqym);
  1972. double ixulwmuyandhjazuijfflpxk(string fagdri, int trfrafclm, int gwhapbbm, bool huzbaqnxvuik, string ipeilzp, bool qypfrbvqncqmgcf, string vxiaycklwxl, int fdrljxftgbbuw, int vsngkxrvbdjgjr, int szgtuopdrq);
  1973. string xxxhuvdssgdowuafavmobj(int mvopxywnnlrynm, string bjpdsethyzkdsav, bool mhunuebu, double pafxqcu, double grrue, double pmbmfygqnckifg);
  1974. bool sgmgaxtbcodseeo(double lswegvqyu, int epqboriiy, bool gqmpmm, string xqkdcnvorp, double iwyvmyhsnytr, bool rzgaplrlmct, int xfbcnjhytj);
  1975. int pxcscfsrlnqad();
  1976.  
  1977. };
  1978.  
  1979.  
  1980. void ynglxmd::mydmprktvbcxfykcg(bool jrlvjpd) {
  1981. bool jngbpp = false;
  1982. double nvwqmzakvzwbbkk = 12025;
  1983. int aqorvftgbndjl = 5972;
  1984. int bwxvjmzsgnke = 5325;
  1985. string ndcobtrskyrvp = "oycrzopzknnolgfizrjmlcroatvwfisxstfsfzjdfvagibkxymerckigmrqidkqmephbpcghe";
  1986. int oymqrme = 567;
  1987. double giomnuatyjcyhc = 12034;
  1988. double cuvrcppo = 60037;
  1989. bool rfesfdlhqnavb = true;
  1990. if (12025 == 12025) {
  1991. int upvkyv;
  1992. for (upvkyv = 5; upvkyv > 0; upvkyv--) {
  1993. continue;
  1994. }
  1995. }
  1996. if (5972 == 5972) {
  1997. int bwp;
  1998. for (bwp = 98; bwp > 0; bwp--) {
  1999. continue;
  2000. }
  2001. }
  2002.  
  2003. }
  2004.  
  2005. int ynglxmd::cbcwdxyagpwt() {
  2006. bool zejtwxn = false;
  2007. if (false != false) {
  2008. int woarmkxlfd;
  2009. for (woarmkxlfd = 77; woarmkxlfd > 0; woarmkxlfd--) {
  2010. continue;
  2011. }
  2012. }
  2013. if (false == false) {
  2014. int mazohd;
  2015. for (mazohd = 89; mazohd > 0; mazohd--) {
  2016. continue;
  2017. }
  2018. }
  2019. return 68963;
  2020. }
  2021.  
  2022. void ynglxmd::oyqagonrbv(int edrfdtwgkgakmvh, int ehgjzfrk) {
  2023. string qtjmyqqaplvt = "tyljdvyhhhytsqgcthuwousmholgrdyfzyeaaxezzobhhvmipnqaklsjplexizpkeocw";
  2024. double bongwdmlloo = 52607;
  2025. string negdefzktaldv = "qxbcqsgfjgaswmteiailwxxpabkyzongrijfzmf";
  2026. bool emxzut = true;
  2027. double gqbov = 49291;
  2028. int eiyvsspltir = 4424;
  2029. bool nqhhmhotj = true;
  2030. if (4424 != 4424) {
  2031. int gkaugee;
  2032. for (gkaugee = 98; gkaugee > 0; gkaugee--) {
  2033. continue;
  2034. }
  2035. }
  2036. if (true != true) {
  2037. int pnaajm;
  2038. for (pnaajm = 18; pnaajm > 0; pnaajm--) {
  2039. continue;
  2040. }
  2041. }
  2042. if (string("qxbcqsgfjgaswmteiailwxxpabkyzongrijfzmf") != string("qxbcqsgfjgaswmteiailwxxpabkyzongrijfzmf")) {
  2043. int vwwlpppirf;
  2044. for (vwwlpppirf = 86; vwwlpppirf > 0; vwwlpppirf--) {
  2045. continue;
  2046. }
  2047. }
  2048.  
  2049. }
  2050.  
  2051. string ynglxmd::dinvcfnfqzltvisvkh(int zvacqk, string wtbmkjfkuyoxfz, string msaponel, bool focfywqszu) {
  2052. int aqoshfojjemfcig = 1567;
  2053. int xwtqpqhsdrueswu = 5252;
  2054. string rrxnscjynokkv = "qjpw";
  2055. string szzvjt = "ecufnenmarffcmyeemczcsqeeszeheccfhhtjjtvfvoexmqmwypvv";
  2056. bool jdlncuxfbcsvykd = true;
  2057. int dilqsrvvqrglwc = 1021;
  2058. if (1021 != 1021) {
  2059. int sw;
  2060. for (sw = 85; sw > 0; sw--) {
  2061. continue;
  2062. }
  2063. }
  2064. if (1021 != 1021) {
  2065. int jww;
  2066. for (jww = 75; jww > 0; jww--) {
  2067. continue;
  2068. }
  2069. }
  2070. if (true == true) {
  2071. int iszqyxzkbf;
  2072. for (iszqyxzkbf = 57; iszqyxzkbf > 0; iszqyxzkbf--) {
  2073. continue;
  2074. }
  2075. }
  2076. if (string("qjpw") == string("qjpw")) {
  2077. int xg;
  2078. for (xg = 0; xg > 0; xg--) {
  2079. continue;
  2080. }
  2081. }
  2082. return string("nvbvxvdnt");
  2083. }
  2084.  
  2085. bool ynglxmd::rlgqhvizcakeacvjchenv(double amldwuwrdugy, bool mesnbnmwhemft, bool mzuwqoec, int rsexrbkqym) {
  2086. string wiusdkomjtxybro = "fcddnwefodaoxnasfafaxeysmdlbtw";
  2087. bool zajkaedbpzt = true;
  2088. string rpoxahohrwy = "ynbifmpggfksldyrxnnogzdfwrlcfghpnpzyrqkdqnrmqxyrzogb";
  2089. return true;
  2090. }
  2091.  
  2092. double ynglxmd::ixulwmuyandhjazuijfflpxk(string fagdri, int trfrafclm, int gwhapbbm, bool huzbaqnxvuik, string ipeilzp, bool qypfrbvqncqmgcf, string vxiaycklwxl, int fdrljxftgbbuw, int vsngkxrvbdjgjr, int szgtuopdrq) {
  2093. string diqzevsjekwwkup = "yhgcqvlefgxxljxyfmpfjedfvmngsqwfpdmfkvqhwbyvieyhchn";
  2094. string vwbyhctvf = "lxxmdgqsgatgkuyrqypronzbcirubfyaxodoxrpgdpjefaptjhjbdexpngijkcaetncjfgoctrwscjlrhf";
  2095. string jshqfff = "bljarekgubuzbyrmlpbngenppxgzcpfjenjkrfyqsfmhokwhlhxvevyxcbdwfmgkpjnnjaesaz";
  2096. string rmpcv = "artonoxhygxbrncyvk";
  2097. int njfdjyvijjbv = 2232;
  2098. double tbflksfg = 29588;
  2099. int fgeuvmrkpkf = 3763;
  2100. double eyivtstnf = 23305;
  2101. string jfscccpcar = "sronmwgpnvxebxxcdeqlweudntzutvlwnrphutjinvxjgbsyucibwkkztdwwpcrzogsbcellvukullismyevzlqvctand";
  2102. if (string("sronmwgpnvxebxxcdeqlweudntzutvlwnrphutjinvxjgbsyucibwkkztdwwpcrzogsbcellvukullismyevzlqvctand") == string("sronmwgpnvxebxxcdeqlweudntzutvlwnrphutjinvxjgbsyucibwkkztdwwpcrzogsbcellvukullismyevzlqvctand")) {
  2103. int vmjpvyguor;
  2104. for (vmjpvyguor = 77; vmjpvyguor > 0; vmjpvyguor--) {
  2105. continue;
  2106. }
  2107. }
  2108. return 9701;
  2109. }
  2110.  
  2111. string ynglxmd::xxxhuvdssgdowuafavmobj(int mvopxywnnlrynm, string bjpdsethyzkdsav, bool mhunuebu, double pafxqcu, double grrue, double pmbmfygqnckifg) {
  2112. return string("jsj");
  2113. }
  2114.  
  2115. bool ynglxmd::sgmgaxtbcodseeo(double lswegvqyu, int epqboriiy, bool gqmpmm, string xqkdcnvorp, double iwyvmyhsnytr, bool rzgaplrlmct, int xfbcnjhytj) {
  2116. bool ggyxvbfvcoegbrb = true;
  2117. if (true != true) {
  2118. int mcxrysg;
  2119. for (mcxrysg = 18; mcxrysg > 0; mcxrysg--) {
  2120. continue;
  2121. }
  2122. }
  2123. return true;
  2124. }
  2125.  
  2126. int ynglxmd::pxcscfsrlnqad() {
  2127. return 4382;
  2128. }
  2129.  
  2130. double ynglxmd::dwnvyumjymifnnk(bool ltodfmipfywp, int oiwieomctcpjycu, int znxaycu, string zgnemzgnqdcjh, string gjyomuncmimn) {
  2131. double dzyzwfeduo = 26799;
  2132. bool jmfcqg = false;
  2133. int ecfspecd = 2079;
  2134. bool bpcbarbojapeajg = true;
  2135. int ontvqqjxsf = 3520;
  2136. if (2079 != 2079) {
  2137. int zxoirt;
  2138. for (zxoirt = 48; zxoirt > 0; zxoirt--) {
  2139. continue;
  2140. }
  2141. }
  2142. if (3520 != 3520) {
  2143. int bghtblca;
  2144. for (bghtblca = 74; bghtblca > 0; bghtblca--) {
  2145. continue;
  2146. }
  2147. }
  2148. if (false == false) {
  2149. int ivaoeneui;
  2150. for (ivaoeneui = 69; ivaoeneui > 0; ivaoeneui--) {
  2151. continue;
  2152. }
  2153. }
  2154. return 80114;
  2155. }
  2156.  
  2157. bool ynglxmd::mpbpvhjqzrmftlczkogq(bool gctuesejxiqwd, int vlmxapwmvqi, string nidyqotzgilzdd) {
  2158. double sgpsrygtxf = 2938;
  2159. double dizssg = 416;
  2160. bool pmpovzl = false;
  2161. return false;
  2162. }
  2163.  
  2164. int ynglxmd::qsoknhkjjmfcgkiwsjpp(double lotbmycwhuamnbw, string zrbrfyiizywspo, int msdkozbzpq, int ynkpdduuhhrqq) {
  2165. bool krjek = true;
  2166. int kihvuakc = 1031;
  2167. bool qkniewqyyo = false;
  2168. string ewnbcrrrrafru = "wiljzlpangmsvqbwlwbodrnaiozwlcb";
  2169. double pwdjugeygndc = 5781;
  2170. double dbaysn = 34910;
  2171. bool tmlcjbpjiz = true;
  2172. bool obzxczimvgv = false;
  2173. if (true == true) {
  2174. int hm;
  2175. for (hm = 20; hm > 0; hm--) {
  2176. continue;
  2177. }
  2178. }
  2179. if (false != false) {
  2180. int etforwesiw;
  2181. for (etforwesiw = 2; etforwesiw > 0; etforwesiw--) {
  2182. continue;
  2183. }
  2184. }
  2185. if (5781 != 5781) {
  2186. int wkohkuvrk;
  2187. for (wkohkuvrk = 6; wkohkuvrk > 0; wkohkuvrk--) {
  2188. continue;
  2189. }
  2190. }
  2191. return 91075;
  2192. }
  2193.  
  2194. ynglxmd::ynglxmd() {
  2195. this->qsoknhkjjmfcgkiwsjpp(16565, string("taifkiipoiwstgfgkkjwpznufamxmbhkqxaxxduvbwpyervljdbzxlxsfimlxsplcosoqjzlkmidadfyngjbax"), 1261, 1733);
  2196. this->dwnvyumjymifnnk(true, 528, 6455, string("ckirnhlkfwgyvejicnnluigbppdbhcugdqhroxdgpqcmvoerxdrswuglujozsunqfkvrfjtllkickowndysyqpxuroh"), string("okkcuwmtpp"));
  2197. this->mpbpvhjqzrmftlczkogq(false, 1303, string("iacjyejgevgxekmdcqdssztftydhdkwtmkisncwxurjlctbnfpbqytkfkpldbhztrfmmqzuedmbxnjznfyojrpdblwijjygcod"));
  2198. this->mydmprktvbcxfykcg(false);
  2199. this->cbcwdxyagpwt();
  2200. this->oyqagonrbv(282, 1524);
  2201. this->dinvcfnfqzltvisvkh(2073, string("emqbdyqjvhparxmtjivjtxgsjsovpdqliwgxfdqoupeyckfimwblhpavionwxogeygfrerhxhbhljcalf"), string("sozvhbyglmwiaodpuhhrifvrpxcurrgjqeiujzcmgzjfyutlyqcczzphorigeskbbatmobxcbxioclkcplt"), false);
  2202. this->rlgqhvizcakeacvjchenv(7373, true, true, 3930);
  2203. this->ixulwmuyandhjazuijfflpxk(string("bbqxnwdtjdqhkgo"), 654, 1945, true, string("readi"), true, string("wrvrkjwvbjmxkdafxlqnbfrxftbwwnhkllvjondmszsrmjyburxj"), 8339, 73, 3266);
  2204. this->xxxhuvdssgdowuafavmobj(7245, string("ciiehrhtrcourxvoitsrzzkosbguxvprrdozeipdfk"), false, 4626, 21623, 6201);
  2205. this->sgmgaxtbcodseeo(57404, 549, false, string("prsravdfcirbzrogjyvatptfyyfaqvigboapiihbrvpichnbhoecapqhizrzqtjsgmysugepdbvnhxlftmhpo"), 43680, true, 509);
  2206. this->pxcscfsrlnqad();
  2207. }
  2208.  
  2209.  
  2210.  
  2211.  
  2212. Please help :(
Advertisement
Add Comment
Please, Sign In to add comment