This commit is contained in:
tapok 2025-02-23 21:54:44 +03:00
commit d515a0b181
20 changed files with 13739 additions and 0 deletions

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

8
.idea/final_task.iml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

7
.idea/misc.xml Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="C:\ProgramData\anaconda3" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="C:\ProgramData\anaconda3" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/final_task.iml" filepath="$PROJECT_DIR$/.idea/final_task.iml" />
</modules>
</component>
</project>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,6 @@
{
"cells": [],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 5
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

694
module A.ipynb Normal file

File diff suppressed because one or more lines are too long

633
module B.ipynb Normal file

File diff suppressed because one or more lines are too long

77
module G.ipynb Normal file
View File

@ -0,0 +1,77 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"id": "286b8920-1e0b-4b9b-b524-a2ac1122104c",
"metadata": {},
"outputs": [],
"source": [
"import asyncio\n",
"import websockets\n",
"import base64\n",
"from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes\n",
"from cryptography.hazmat.backends import default_backend\n",
"import json\n",
"\n",
"# Конфигурация шифрования\n",
"KEY = b'8888888888888888'\n",
"IV_LENGTH = 16\n",
"\n",
"async def decrypt_message(encrypted_message):\n",
" # Декодируем base64\n",
" encrypted_data = base64.b64decode(encrypted_message)\n",
"\n",
" # Извлекаем IV и зашифрованный текст\n",
" iv = encrypted_data[:IV_LENGTH]\n",
" cipher_text = encrypted_data[IV_LENGTH:]\n",
"\n",
" # Создаем объект Cipher для расшифровки\n",
" cipher = Cipher(algorithms.AES(KEY), modes.CBC(iv), backend=default_backend())\n",
" decryptor = cipher.decryptor()\n",
"\n",
" # Расшифровываем данные\n",
" decrypted_data = decryptor.update(cipher_text) + decryptor.finalize()\n",
"\n",
" # Удаляем PKCS5Padding\n",
" padding_length = decrypted_data[-1]\n",
" decrypted_data = decrypted_data[:-padding_length]\n",
"\n",
" return decrypted_data.decode('utf-8')\n",
"\n",
"async def listen():\n",
" uri = \"ws://45.67.56.214:8088/users\"\n",
" async with websockets.connect(uri) as websocket:\n",
" while True:\n",
" message = await websocket.recv()\n",
" encrypted_messages = json.loads(message)\n",
" for encrypted_message in encrypted_messages:\n",
" decrypted_message = await decrypt_message(encrypted_message)\n",
" print(decrypted_message)\n",
"\n",
"asyncio.get_event_loop().run_until_complete(listen())"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.4"
}
},
"nbformat": 4,
"nbformat_minor": 5
}

43
module G.py Normal file
View File

@ -0,0 +1,43 @@
import asyncio
import websockets
import base64
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
from cryptography.hazmat.backends import default_backend
import json
# Конфигурация шифрования
KEY = b'8888888888888888'
IV_LENGTH = 16
async def decrypt_message(encrypted_message):
# Декодируем base64
encrypted_data = base64.b64decode(encrypted_message)
# Извлекаем IV и зашифрованный текст
iv = encrypted_data[:IV_LENGTH]
cipher_text = encrypted_data[IV_LENGTH:]
# Создаем объект Cipher для расшифровки
cipher = Cipher(algorithms.AES(KEY), modes.CBC(iv), backend=default_backend())
decryptor = cipher.decryptor()
# Расшифровываем данные
decrypted_data = decryptor.update(cipher_text) + decryptor.finalize()
# Удаляем PKCS5Padding
padding_length = decrypted_data[-1]
decrypted_data = decrypted_data[:-padding_length]
return decrypted_data.decode('utf-8')
async def listen():
uri = "ws://45.67.56.214:8088/users"
async with websockets.connect(uri) as websocket:
while True:
message = await websocket.recv()
encrypted_messages = json.loads(message)
for encrypted_message in encrypted_messages:
decrypted_message = await decrypt_message(encrypted_message)
print(decrypted_message)
asyncio.get_event_loop().run_until_complete(listen())

1108
module V.ipynb Normal file

File diff suppressed because it is too large Load Diff

101
module_a.csv Normal file
View File

@ -0,0 +1,101 @@
Rank,Image Link,Title,Current,24h Peak,All-Time Peak,Genre
1.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/730/capsule_sm_120.jpg?t=1720754127,counter-strike 2,1015721,1276702,1818773,first-person shooter
2.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/570/capsule_sm_120.jpg?t=1720831729,dota 2,702487,805624,1295114,moba (multiplayer online battle arena)
3.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2923300/capsule_sm_120.jpg?t=1720939184,banana,409758,428540,917272,unknown
4.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/578080/capsule_sm_120.jpg?t=1720671891,pubg: battlegrounds,371000,688475,3257248,battle royale
5.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1245620/capsule_sm_120.jpg?t=1720837728,elden ring,294359,319707,953426,action rpg
6.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2139460/capsule_sm_120.jpg?t=1720950990,once human,229441,231668,231668,unknown
7.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2074920/capsule_sm_120.jpg?t=1720939196,the first descendant,196521,201888,264860,unknown
8.0,https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gct5gyathsyug2qcrwsqpvkuxhokdmv31jfr3q&s,source sdk base 2007,182694,191413,221857,tool / sdk
9.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/271590/capsule_sm_120.jpg?t=1720699639,grand theft auto v,148141,170541,364548,action-adventure
10.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1172470/capsule_sm_120.jpg?t=1720779450,apex legends,139352,240658,624473,battle royale / first-person shooter
11.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1203220/capsule_sm_120.jpg?t=1720756538,naraka: bladepoint,124890,297754,385770,battle royale / action
12.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252490/capsule_sm_120.jpg?t=1720880565,rust,115551,123112,245243,survival / sandbox
13.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/413150/capsule_sm_120.jpg?t=1720928908,stardew valley,109307,150950,236614,simulation / rpg
14.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1086940/capsule_sm_120.jpg?t=1720739088,baldur's gate 3,100654,101337,875343,rpg
15.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/431960/capsule_sm_120.jpg?t=1720563193,wallpaper engine,94331,124003,150375,utility / design
16.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1938090/capsule_sm_120.jpg?t=1720803562,call of duty®,79702,87063,491670,first-person shooter
17.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/251570/capsule_sm_120.jpg?t=1720912426,7 days to die,75659,90603,105073,survival / sandbox
18.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2195250/capsule_sm_120.jpg?t=1720812850,ea sports fc™ 24,75181,77536,107359,sports / simulation
19.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236390/capsule_sm_120.jpg?t=1720895983,war thunder,74915,83778,121318,vehicle combat / simulation
20.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/440/capsule_sm_120.jpg?t=1720698215,team fortress 2,74876,80300,253997,first-person shooter
21.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1085660/capsule_sm_120.jpg?t=1720717050,destiny 2,74671,83638,316750,mmo / fps
22.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623730/capsule_sm_120.jpg?t=1720975573,palworld,73466,96526,2101867,simulation / adventure
23.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2252570/capsule_sm_120.jpg?t=1720635355,football manager 2024,70632,75494,89478,sports / simulation
24.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/289070/capsule_sm_120.jpg?t=1720860499,sid meier's civilization vi,69668,82733,162657,turn-based strategy / 4x
25.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1782210/capsule_sm_120.jpg?t=1719605295,crab game,64568,65291,75967,party / social deduction
26.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/359550/capsule_sm_120.jpg?t=1720834417,tom clancy's rainbow six siege,61878,67413,201933,first-person shooter
27.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/39210/capsule_sm_120.jpg?t=1719944221,final fantasy xiv online,55015,60783,95150,mmorpg
28.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/227300/capsule_sm_120.jpg?t=1720804466,euro truck simulator 2,54086,58047,69754,simulation
29.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/221100/capsule_sm_120.jpg?t=1720776764,dayz,53994,53994,73418,survival
30.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/899770/capsule_sm_120.jpg?t=1720967986,last epoch,50958,53752,264708,action rpg
31.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/230410/capsule_sm_120.jpg?t=1719413680,warframe,49480,54044,189837,action rpg
32.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/394360/capsule_sm_120.jpg?t=1720539829,hearts of iron iv,48521,54407,78108,grand strategy
33.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1248130/capsule_sm_120.jpg?t=1719891785,farming simulator 22,44913,44913,105636,simulation
34.0,https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gctclctwrca7xurqzka5d_z9m9ex1rj207fmdg&s,spacewar,44881,47188,102705,unknown
35.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1222670/capsule_sm_120.jpg?t=1720739737,the sims™ 4,43455,43473,96328,life simulation
36.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/381210/capsule_sm_120.jpg?t=1720635163,dead by daylight,42183,47382,105093,survival horror
37.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582010/capsule_sm_120.jpg?t=1717545541,monster hunter: world,39313,63740,334684,action rpg
38.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/105600/capsule_sm_120.jpg?t=1719265442,terraria,39188,45947,489886,sandbox / action-adventure
39.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1174180/capsule_sm_120.jpg?t=1720699639,red dead redemption 2,38568,45365,77655,action-adventure
40.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1091500/capsule_sm_120.jpg?t=1720704999,cyberpunk 2077,36270,42155,1054388,action rpg
41.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1281930/capsule_sm_120.jpg?t=1720636933,tmodloader,35940,45863,47602,mod / utility
42.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2016590/capsule_sm_120.jpg?t=1720910384,dark and darker,35553,37279,57164,horror / survival
43.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322330/capsule_sm_120.jpg?t=1720721410,don't starve together,34484,58731,115925,survival
44.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/892970/capsule_sm_120.jpg?t=1720776783,valheim,34334,35765,502387,first-person shooter
45.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2357570/capsule_sm_120.jpg?t=1720817710,overwatch® 2,33668,44311,75608,turn-based strategy / rts
46.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1142710/capsule_sm_120.jpg?t=1720905040,total war: warhammer iii,33395,35502,166754,survival / sandbox
47.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/108600/capsule_sm_120.jpg?t=1720970275,project zomboid,33039,33799,65505,survival / action
48.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/346110/capsule_sm_120.jpg?t=1718918625,ark: survival evolved,32575,37480,248405,action rpg
49.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/377160/capsule_sm_120.jpg?t=1720584279,fallout 4,31696,31696,472962,sandbox
50.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/4000/capsule_sm_120.jpg?t=1720916026,garry's mod,31585,31671,73863,action rpg
51.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/292030/capsule_sm_120.jpg?t=1717668034,the witcher 3: wild hunt,29769,37650,103329,top-down shooter / action
52.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/553850/capsule_sm_120.jpg?t=1720793422,helldivers™ 2,29558,36877,458709,first-person shooter
53.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/550/capsule_sm_120.jpg?t=1719588609,left 4 dead 2,29442,39896,162399,mmo / social
54.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/438100/capsule_sm_120.jpg?t=1720939196,vrchat,29157,42862,52956,unknown
55.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2977660/capsule_sm_120.jpg?t=1720890706,cats,28597,31426,90669,simulation / strategy
56.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/294100/capsule_sm_120.jpg?t=1720785993,rimworld,28360,29351,62257,unknown
57.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2567870/capsule_sm_120.jpg?t=1720910384,chained together,27831,38098,94480,sandbox / survival
58.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/304930/capsule_sm_120.jpg?t=1720809314,unturned,27757,32778,112703,action / rpg
59.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/261550/capsule_sm_120.jpg?t=1720843512,mount & blade ii: bannerlord,27744,33460,248216,horror / rpg
60.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1366800/capsule_sm_120.jpg?t=1720896978,crosshair x,27698,28453,29634,action rpg
61.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/489830/capsule_sm_120.jpg?t=1720929041,the elder scrolls v: skyrim special edition,25582,25582,69906,racing / open world
62.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1293830/capsule_sm_120.jpg?t=1720739737,forza horizon 4,23269,40476,75689,mmorpg
63.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1599340/capsule_sm_120.jpg?t=1719385764,lost ark,22824,24218,1325305,survival horror
64.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/739630/capsule_sm_120.jpg?t=1720704515,phasmophobia,22625,26081,112717,mmorpg
65.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582660/capsule_sm_120.jpg?t=1720666179,black desert,22068,22068,60395,grand strategy
66.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1158310/capsule_sm_120.jpg?t=1720776783,crusader kings iii,21874,22336,98872,rts
67.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/813780/capsule_sm_120.jpg?t=1720825113,age of empires ii: definitive edition,21619,23397,38725,sports / action
68.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252950/capsule_sm_120.jpg?t=1720843347,rocket league,21002,27634,147632,fighting
69.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1364780/capsule_sm_120.jpg?t=1720761011,street fighter™ 6,20954,30067,70573,simulation
70.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1818450/capsule_sm_120.jpg?t=1720950975,stalcraft: x,20919,21334,25307,pvpve shooter
71.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/594650/capsule_sm_120.jpg?t=1720959660,hunt: showdown,20873,24203,45091,first-person shooter
72.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/218620/capsule_sm_120.jpg?t=1720752297,payday 2,20811,23145,247709,tower defense
73.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/960090/capsule_sm_120.jpg?t=1720776764,bloons td 6,20557,21292,53943,grand strategy
74.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236850/capsule_sm_120.jpg?t=1720717513,europa universalis iv,20481,21289,48165,turn-based strategy / 4x
75.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/8930/capsule_sm_120.jpg?t=1717875048,sid meier's civilization v,20406,20433,91363,survival / sandbox
76.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2399830/capsule_sm_120.jpg?t=1720953816,ark: survival ascended,20327,20362,98047,card game
77.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1449850/capsule_sm_120.jpg?t=1720805561,yu-gi-oh! master duel,20291,28691,262689,first-person shooter
78.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1238810/capsule_sm_120.jpg?t=1720033044,battlefield™ v,19777,43617,116104,mmorpg
79.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1151340/capsule_sm_120.jpg?t=1720890058,fallout 76,19247,19247,73368,roguelike
80.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/250900/capsule_sm_120.jpg?t=1720829573,the binding of isaac: rebirth,19169,21331,70701,action / fps
81.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/548430/capsule_sm_120.jpg?t=1720492554,deep rock galactic,18863,24727,54160,factory building / simulation
82.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/526870/capsule_sm_120.jpg?t=1720913526,satisfactory,18328,18452,34238,vehicle simulation / physics
83.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/284160/capsule_sm_120.jpg?t=1720898342,beamng.drive,18104,18233,26844,survival / pvpve
84.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/513710/capsule_sm_120.jpg?t=1720761178,scum,17929,22288,68322,first-person shooter
85.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1517290/capsule_sm_120.jpg?t=1720518446,battlefield™ 2042,17912,25106,107376,rhythm
86.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322170/capsule_sm_120.jpg?t=1718250381,geometry dash,17786,19342,88346,pvp / shooter
87.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1966720/capsule_sm_120.jpg?t=1720368921,lethal company,17526,24165,240817,mmorpg
88.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623660/capsule_sm_120.jpg?t=1720516220,mir4,17496,18214,97173,factory building / strategy
89.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/427520/capsule_sm_120.jpg?t=1720173548,factorio,17291,17291,34700,grand strategy
90.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/281990/capsule_sm_120.jpg?t=1719577258,stellaris,17173,18545,68602,military simulation
91.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/107410/capsule_sm_120.jpg?t=1720790810,arma 3,17158,20052,56679,racing / open world
92.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1551360/capsule_sm_120.jpg?t=1720870052,forza horizon 5,17070,22071,81096,mmorpg
93.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/306130/capsule_sm_120.jpg?t=1719695331,the elder scrolls online,16481,16505,49234,action rpg
94.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/990080/capsule_sm_120.jpg?t=1720974577,hogwarts legacy,16430,16712,879308,sports / basketball simulation
95.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2338770/capsule_sm_120.jpg?t=1720838729,nba 2k24,16255,23565,30363,utility / audio
96.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/629520/capsule_sm_120.jpg?t=1720529823,soundpad,16028,17064,21920,simulation / tycoon
97.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2670630/capsule_sm_120.jpg?t=1720692973,supermarket simulator,15817,15875,51363,vampire / open world
98.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1604030/capsule_sm_120.jpg?t=1720939184,v rising,15803,16275,150645,tactical shooter
99.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/393380/capsule_sm_120.jpg?t=1720734698,squad,15729,19288,35151,grand strategy
100.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/529340/capsule_sm_120.jpg?t=1720773937,victoria 3,15609,17598,70100,unknown
1 Rank Image Link Title Current 24h Peak All-Time Peak Genre
2 1.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/730/capsule_sm_120.jpg?t=1720754127 counter-strike 2 1015721 1276702 1818773 first-person shooter
3 2.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/570/capsule_sm_120.jpg?t=1720831729 dota 2 702487 805624 1295114 moba (multiplayer online battle arena)
4 3.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2923300/capsule_sm_120.jpg?t=1720939184 banana 409758 428540 917272 unknown
5 4.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/578080/capsule_sm_120.jpg?t=1720671891 pubg: battlegrounds 371000 688475 3257248 battle royale
6 5.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1245620/capsule_sm_120.jpg?t=1720837728 elden ring 294359 319707 953426 action rpg
7 6.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2139460/capsule_sm_120.jpg?t=1720950990 once human 229441 231668 231668 unknown
8 7.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2074920/capsule_sm_120.jpg?t=1720939196 the first descendant 196521 201888 264860 unknown
9 8.0 https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gct5gyathsyug2qcrwsqpvkuxhokdmv31jfr3q&s source sdk base 2007 182694 191413 221857 tool / sdk
10 9.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/271590/capsule_sm_120.jpg?t=1720699639 grand theft auto v 148141 170541 364548 action-adventure
11 10.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1172470/capsule_sm_120.jpg?t=1720779450 apex legends 139352 240658 624473 battle royale / first-person shooter
12 11.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1203220/capsule_sm_120.jpg?t=1720756538 naraka: bladepoint 124890 297754 385770 battle royale / action
13 12.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252490/capsule_sm_120.jpg?t=1720880565 rust 115551 123112 245243 survival / sandbox
14 13.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/413150/capsule_sm_120.jpg?t=1720928908 stardew valley 109307 150950 236614 simulation / rpg
15 14.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1086940/capsule_sm_120.jpg?t=1720739088 baldur's gate 3 100654 101337 875343 rpg
16 15.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/431960/capsule_sm_120.jpg?t=1720563193 wallpaper engine 94331 124003 150375 utility / design
17 16.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1938090/capsule_sm_120.jpg?t=1720803562 call of duty® 79702 87063 491670 first-person shooter
18 17.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/251570/capsule_sm_120.jpg?t=1720912426 7 days to die 75659 90603 105073 survival / sandbox
19 18.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2195250/capsule_sm_120.jpg?t=1720812850 ea sports fc™ 24 75181 77536 107359 sports / simulation
20 19.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236390/capsule_sm_120.jpg?t=1720895983 war thunder 74915 83778 121318 vehicle combat / simulation
21 20.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/440/capsule_sm_120.jpg?t=1720698215 team fortress 2 74876 80300 253997 first-person shooter
22 21.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1085660/capsule_sm_120.jpg?t=1720717050 destiny 2 74671 83638 316750 mmo / fps
23 22.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623730/capsule_sm_120.jpg?t=1720975573 palworld 73466 96526 2101867 simulation / adventure
24 23.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2252570/capsule_sm_120.jpg?t=1720635355 football manager 2024 70632 75494 89478 sports / simulation
25 24.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/289070/capsule_sm_120.jpg?t=1720860499 sid meier's civilization vi 69668 82733 162657 turn-based strategy / 4x
26 25.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1782210/capsule_sm_120.jpg?t=1719605295 crab game 64568 65291 75967 party / social deduction
27 26.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/359550/capsule_sm_120.jpg?t=1720834417 tom clancy's rainbow six siege 61878 67413 201933 first-person shooter
28 27.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/39210/capsule_sm_120.jpg?t=1719944221 final fantasy xiv online 55015 60783 95150 mmorpg
29 28.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/227300/capsule_sm_120.jpg?t=1720804466 euro truck simulator 2 54086 58047 69754 simulation
30 29.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/221100/capsule_sm_120.jpg?t=1720776764 dayz 53994 53994 73418 survival
31 30.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/899770/capsule_sm_120.jpg?t=1720967986 last epoch 50958 53752 264708 action rpg
32 31.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/230410/capsule_sm_120.jpg?t=1719413680 warframe 49480 54044 189837 action rpg
33 32.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/394360/capsule_sm_120.jpg?t=1720539829 hearts of iron iv 48521 54407 78108 grand strategy
34 33.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1248130/capsule_sm_120.jpg?t=1719891785 farming simulator 22 44913 44913 105636 simulation
35 34.0 https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gctclctwrca7xurqzka5d_z9m9ex1rj207fmdg&s spacewar 44881 47188 102705 unknown
36 35.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1222670/capsule_sm_120.jpg?t=1720739737 the sims™ 4 43455 43473 96328 life simulation
37 36.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/381210/capsule_sm_120.jpg?t=1720635163 dead by daylight 42183 47382 105093 survival horror
38 37.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582010/capsule_sm_120.jpg?t=1717545541 monster hunter: world 39313 63740 334684 action rpg
39 38.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/105600/capsule_sm_120.jpg?t=1719265442 terraria 39188 45947 489886 sandbox / action-adventure
40 39.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1174180/capsule_sm_120.jpg?t=1720699639 red dead redemption 2 38568 45365 77655 action-adventure
41 40.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1091500/capsule_sm_120.jpg?t=1720704999 cyberpunk 2077 36270 42155 1054388 action rpg
42 41.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1281930/capsule_sm_120.jpg?t=1720636933 tmodloader 35940 45863 47602 mod / utility
43 42.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2016590/capsule_sm_120.jpg?t=1720910384 dark and darker 35553 37279 57164 horror / survival
44 43.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322330/capsule_sm_120.jpg?t=1720721410 don't starve together 34484 58731 115925 survival
45 44.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/892970/capsule_sm_120.jpg?t=1720776783 valheim 34334 35765 502387 first-person shooter
46 45.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2357570/capsule_sm_120.jpg?t=1720817710 overwatch® 2 33668 44311 75608 turn-based strategy / rts
47 46.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1142710/capsule_sm_120.jpg?t=1720905040 total war: warhammer iii 33395 35502 166754 survival / sandbox
48 47.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/108600/capsule_sm_120.jpg?t=1720970275 project zomboid 33039 33799 65505 survival / action
49 48.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/346110/capsule_sm_120.jpg?t=1718918625 ark: survival evolved 32575 37480 248405 action rpg
50 49.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/377160/capsule_sm_120.jpg?t=1720584279 fallout 4 31696 31696 472962 sandbox
51 50.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/4000/capsule_sm_120.jpg?t=1720916026 garry's mod 31585 31671 73863 action rpg
52 51.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/292030/capsule_sm_120.jpg?t=1717668034 the witcher 3: wild hunt 29769 37650 103329 top-down shooter / action
53 52.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/553850/capsule_sm_120.jpg?t=1720793422 helldivers™ 2 29558 36877 458709 first-person shooter
54 53.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/550/capsule_sm_120.jpg?t=1719588609 left 4 dead 2 29442 39896 162399 mmo / social
55 54.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/438100/capsule_sm_120.jpg?t=1720939196 vrchat 29157 42862 52956 unknown
56 55.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2977660/capsule_sm_120.jpg?t=1720890706 cats 28597 31426 90669 simulation / strategy
57 56.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/294100/capsule_sm_120.jpg?t=1720785993 rimworld 28360 29351 62257 unknown
58 57.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2567870/capsule_sm_120.jpg?t=1720910384 chained together 27831 38098 94480 sandbox / survival
59 58.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/304930/capsule_sm_120.jpg?t=1720809314 unturned 27757 32778 112703 action / rpg
60 59.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/261550/capsule_sm_120.jpg?t=1720843512 mount & blade ii: bannerlord 27744 33460 248216 horror / rpg
61 60.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1366800/capsule_sm_120.jpg?t=1720896978 crosshair x 27698 28453 29634 action rpg
62 61.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/489830/capsule_sm_120.jpg?t=1720929041 the elder scrolls v: skyrim special edition 25582 25582 69906 racing / open world
63 62.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1293830/capsule_sm_120.jpg?t=1720739737 forza horizon 4 23269 40476 75689 mmorpg
64 63.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1599340/capsule_sm_120.jpg?t=1719385764 lost ark 22824 24218 1325305 survival horror
65 64.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/739630/capsule_sm_120.jpg?t=1720704515 phasmophobia 22625 26081 112717 mmorpg
66 65.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582660/capsule_sm_120.jpg?t=1720666179 black desert 22068 22068 60395 grand strategy
67 66.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1158310/capsule_sm_120.jpg?t=1720776783 crusader kings iii 21874 22336 98872 rts
68 67.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/813780/capsule_sm_120.jpg?t=1720825113 age of empires ii: definitive edition 21619 23397 38725 sports / action
69 68.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252950/capsule_sm_120.jpg?t=1720843347 rocket league 21002 27634 147632 fighting
70 69.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1364780/capsule_sm_120.jpg?t=1720761011 street fighter™ 6 20954 30067 70573 simulation
71 70.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1818450/capsule_sm_120.jpg?t=1720950975 stalcraft: x 20919 21334 25307 pvpve shooter
72 71.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/594650/capsule_sm_120.jpg?t=1720959660 hunt: showdown 20873 24203 45091 first-person shooter
73 72.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/218620/capsule_sm_120.jpg?t=1720752297 payday 2 20811 23145 247709 tower defense
74 73.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/960090/capsule_sm_120.jpg?t=1720776764 bloons td 6 20557 21292 53943 grand strategy
75 74.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236850/capsule_sm_120.jpg?t=1720717513 europa universalis iv 20481 21289 48165 turn-based strategy / 4x
76 75.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/8930/capsule_sm_120.jpg?t=1717875048 sid meier's civilization v 20406 20433 91363 survival / sandbox
77 76.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2399830/capsule_sm_120.jpg?t=1720953816 ark: survival ascended 20327 20362 98047 card game
78 77.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1449850/capsule_sm_120.jpg?t=1720805561 yu-gi-oh! master duel 20291 28691 262689 first-person shooter
79 78.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1238810/capsule_sm_120.jpg?t=1720033044 battlefield™ v 19777 43617 116104 mmorpg
80 79.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1151340/capsule_sm_120.jpg?t=1720890058 fallout 76 19247 19247 73368 roguelike
81 80.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/250900/capsule_sm_120.jpg?t=1720829573 the binding of isaac: rebirth 19169 21331 70701 action / fps
82 81.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/548430/capsule_sm_120.jpg?t=1720492554 deep rock galactic 18863 24727 54160 factory building / simulation
83 82.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/526870/capsule_sm_120.jpg?t=1720913526 satisfactory 18328 18452 34238 vehicle simulation / physics
84 83.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/284160/capsule_sm_120.jpg?t=1720898342 beamng.drive 18104 18233 26844 survival / pvpve
85 84.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/513710/capsule_sm_120.jpg?t=1720761178 scum 17929 22288 68322 first-person shooter
86 85.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1517290/capsule_sm_120.jpg?t=1720518446 battlefield™ 2042 17912 25106 107376 rhythm
87 86.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322170/capsule_sm_120.jpg?t=1718250381 geometry dash 17786 19342 88346 pvp / shooter
88 87.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1966720/capsule_sm_120.jpg?t=1720368921 lethal company 17526 24165 240817 mmorpg
89 88.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623660/capsule_sm_120.jpg?t=1720516220 mir4 17496 18214 97173 factory building / strategy
90 89.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/427520/capsule_sm_120.jpg?t=1720173548 factorio 17291 17291 34700 grand strategy
91 90.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/281990/capsule_sm_120.jpg?t=1719577258 stellaris 17173 18545 68602 military simulation
92 91.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/107410/capsule_sm_120.jpg?t=1720790810 arma 3 17158 20052 56679 racing / open world
93 92.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1551360/capsule_sm_120.jpg?t=1720870052 forza horizon 5 17070 22071 81096 mmorpg
94 93.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/306130/capsule_sm_120.jpg?t=1719695331 the elder scrolls online 16481 16505 49234 action rpg
95 94.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/990080/capsule_sm_120.jpg?t=1720974577 hogwarts legacy 16430 16712 879308 sports / basketball simulation
96 95.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2338770/capsule_sm_120.jpg?t=1720838729 nba 2k24 16255 23565 30363 utility / audio
97 96.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/629520/capsule_sm_120.jpg?t=1720529823 soundpad 16028 17064 21920 simulation / tycoon
98 97.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2670630/capsule_sm_120.jpg?t=1720692973 supermarket simulator 15817 15875 51363 vampire / open world
99 98.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1604030/capsule_sm_120.jpg?t=1720939184 v rising 15803 16275 150645 tactical shooter
100 99.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/393380/capsule_sm_120.jpg?t=1720734698 squad 15729 19288 35151 grand strategy
101 100.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/529340/capsule_sm_120.jpg?t=1720773937 victoria 3 15609 17598 70100 unknown

101
module_b.csv Normal file
View File

@ -0,0 +1,101 @@
,Rank,Image Link,Title,Current,24h Peak,All-Time Peak,Genre,Current/All-Time Ratio,Current/24h Peak Ratio
0,1.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/730/capsule_sm_120.jpg?t=1720754127,counter-strike 2,1015721,1276702,1818773,first-person shooter,0.5584649651165924,0.7955818977333786
1,2.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/570/capsule_sm_120.jpg?t=1720831729,dota 2,702487,805624,1295114,moba (multiplayer online battle arena),0.5424132547405093,0.8719787394615851
2,3.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2923300/capsule_sm_120.jpg?t=1720939184,banana,409758,428540,917272,unknown,0.4467137337670833,0.9561721192887478
3,4.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/578080/capsule_sm_120.jpg?t=1720671891,pubg: battlegrounds,371000,688475,3257248,battle royale,0.11389983200542299,0.5388721449580595
4,5.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1245620/capsule_sm_120.jpg?t=1720837728,elden ring,294359,319707,953426,action rpg,0.3087381716042986,0.9207149045845102
5,6.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2139460/capsule_sm_120.jpg?t=1720950990,once human,229441,231668,231668,unknown,0.9903871056857226,0.9903871056857226
6,7.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2074920/capsule_sm_120.jpg?t=1720939196,the first descendant,196521,201888,264860,unknown,0.7419806690326965,0.9734159533999049
7,8.0,https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gct5gyathsyug2qcrwsqpvkuxhokdmv31jfr3q&s,source sdk base 2007,182694,191413,221857,tool / sdk,0.8234763834361774,0.9544492798294787
8,9.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/271590/capsule_sm_120.jpg?t=1720699639,grand theft auto v,148141,170541,364548,action-adventure,0.40636898295971996,0.8686532857201494
9,10.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1172470/capsule_sm_120.jpg?t=1720779450,apex legends,139352,240658,624473,battle royale / first-person shooter,0.22315136122778728,0.5790457828121234
10,11.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1203220/capsule_sm_120.jpg?t=1720756538,naraka: bladepoint,124890,297754,385770,battle royale / action,0.3237421261373357,0.4194402090316167
11,12.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252490/capsule_sm_120.jpg?t=1720880565,rust,115551,123112,245243,survival / sandbox,0.47116941156322506,0.9385843784521412
12,13.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/413150/capsule_sm_120.jpg?t=1720928908,stardew valley,109307,150950,236614,simulation / rpg,0.4619633664956427,0.7241271944352434
13,14.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1086940/capsule_sm_120.jpg?t=1720739088,baldur's gate 3,100654,101337,875343,rpg,0.11498806753466927,0.9932601122985681
14,15.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/431960/capsule_sm_120.jpg?t=1720563193,wallpaper engine,94331,124003,150375,utility / design,0.6273050706566916,0.7607154665612929
15,16.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1938090/capsule_sm_120.jpg?t=1720803562,call of duty®,79702,87063,491670,first-person shooter,0.16210466369719528,0.9154520289905012
16,17.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/251570/capsule_sm_120.jpg?t=1720912426,7 days to die,75659,90603,105073,survival / sandbox,0.7200612907216888,0.8350606492058762
17,18.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2195250/capsule_sm_120.jpg?t=1720812850,ea sports fc™ 24,75181,77536,107359,sports / simulation,0.7002766419210313,0.9696270119686339
18,19.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236390/capsule_sm_120.jpg?t=1720895983,war thunder,74915,83778,121318,vehicle combat / simulation,0.6175093555779027,0.8942085034257203
19,20.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/440/capsule_sm_120.jpg?t=1720698215,team fortress 2,74876,80300,253997,first-person shooter,0.29479088335689,0.932453300124533
20,21.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1085660/capsule_sm_120.jpg?t=1720717050,destiny 2,74671,83638,316750,mmo / fps,0.23574112075769535,0.8927879671919462
21,22.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623730/capsule_sm_120.jpg?t=1720975573,palworld,73466,96526,2101867,simulation / adventure,0.034952734878086957,0.7611006360980461
22,23.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2252570/capsule_sm_120.jpg?t=1720635355,football manager 2024,70632,75494,89478,sports / simulation,0.7893783946891973,0.9355975309296103
23,24.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/289070/capsule_sm_120.jpg?t=1720860499,sid meier's civilization vi,69668,82733,162657,turn-based strategy / 4x,0.4283123382332147,0.8420823613310288
24,25.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1782210/capsule_sm_120.jpg?t=1719605295,crab game,64568,65291,75967,party / social deduction,0.8499480037384654,0.9889264982922608
25,26.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/359550/capsule_sm_120.jpg?t=1720834417,tom clancy's rainbow six siege,61878,67413,201933,first-person shooter,0.30642836980582666,0.917894174714076
26,27.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/39210/capsule_sm_120.jpg?t=1719944221,final fantasy xiv online,55015,60783,95150,mmorpg,0.5781923279033105,0.9051050458187322
27,28.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/227300/capsule_sm_120.jpg?t=1720804466,euro truck simulator 2,54086,58047,69754,simulation,0.775382056942971,0.9317621927059108
28,29.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/221100/capsule_sm_120.jpg?t=1720776764,dayz,53994,53994,73418,survival,0.7354327276689641,1.0
29,30.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/899770/capsule_sm_120.jpg?t=1720967986,last epoch,50958,53752,264708,action rpg,0.1925064599483204,0.9480205387706504
30,31.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/230410/capsule_sm_120.jpg?t=1719413680,warframe,49480,54044,189837,action rpg,0.2606446583121309,0.9155502923543779
31,32.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/394360/capsule_sm_120.jpg?t=1720539829,hearts of iron iv,48521,54407,78108,grand strategy,0.621203973984739,0.8918153914018416
32,33.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1248130/capsule_sm_120.jpg?t=1719891785,farming simulator 22,44913,44913,105636,simulation,0.4251675565148245,1.0
33,34.0,https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gctclctwrca7xurqzka5d_z9m9ex1rj207fmdg&s,spacewar,44881,47188,102705,unknown,0.4369894357626211,0.9511104518097822
34,35.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1222670/capsule_sm_120.jpg?t=1720739737,the sims™ 4,43455,43473,96328,life simulation,0.4511149406195499,0.9995859498999379
35,36.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/381210/capsule_sm_120.jpg?t=1720635163,dead by daylight,42183,47382,105093,survival horror,0.40138734263937653,0.890274787894137
36,37.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582010/capsule_sm_120.jpg?t=1717545541,monster hunter: world,39313,63740,334684,action rpg,0.1174630397628808,0.6167712582365862
37,38.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/105600/capsule_sm_120.jpg?t=1719265442,terraria,39188,45947,489886,sandbox / action-adventure,0.07999412108123115,0.8528957276862472
38,39.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1174180/capsule_sm_120.jpg?t=1720699639,red dead redemption 2,38568,45365,77655,action-adventure,0.4966582963106046,0.8501708365479995
39,40.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1091500/capsule_sm_120.jpg?t=1720704999,cyberpunk 2077,36270,42155,1054388,action rpg,0.03439910165897184,0.8603961570394971
40,41.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1281930/capsule_sm_120.jpg?t=1720636933,tmodloader,35940,45863,47602,mod / utility,0.7550102936851393,0.7836382268931382
41,42.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2016590/capsule_sm_120.jpg?t=1720910384,dark and darker,35553,37279,57164,horror / survival,0.6219473794695962,0.9537004747981437
42,43.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322330/capsule_sm_120.jpg?t=1720721410,don't starve together,34484,58731,115925,survival,0.29746819064050034,0.5871515894502052
43,44.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/892970/capsule_sm_120.jpg?t=1720776783,valheim,34334,35765,502387,first-person shooter,0.06834173654971168,0.9599888158814484
44,45.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2357570/capsule_sm_120.jpg?t=1720817710,overwatch® 2,33668,44311,75608,turn-based strategy / rts,0.44529679399005395,0.7598113335289206
45,46.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1142710/capsule_sm_120.jpg?t=1720905040,total war: warhammer iii,33395,35502,166754,survival / sandbox,0.20026506110797943,0.9406512309165681
46,47.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/108600/capsule_sm_120.jpg?t=1720970275,project zomboid,33039,33799,65505,survival / action,0.504373711930387,0.9775141276369124
47,48.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/346110/capsule_sm_120.jpg?t=1718918625,ark: survival evolved,32575,37480,248405,action rpg,0.1311366518387311,0.8691302027748132
48,49.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/377160/capsule_sm_120.jpg?t=1720584279,fallout 4,31696,31696,472962,sandbox,0.06701595477015067,1.0
49,50.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/4000/capsule_sm_120.jpg?t=1720916026,garry's mod,31585,31671,73863,action rpg,0.4276159917685445,0.9972845821098165
50,51.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/292030/capsule_sm_120.jpg?t=1717668034,the witcher 3: wild hunt,29769,37650,103329,top-down shooter / action,0.2880991783526406,0.7906772908366534
51,52.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/553850/capsule_sm_120.jpg?t=1720793422,helldivers™ 2,29558,36877,458709,first-person shooter,0.06443736660933184,0.8015294085744502
52,53.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/550/capsule_sm_120.jpg?t=1719588609,left 4 dead 2,29442,39896,162399,mmo / social,0.18129421979199378,0.7379687186685382
53,54.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/438100/capsule_sm_120.jpg?t=1720939196,vrchat,29157,42862,52956,unknown,0.5505891683661908,0.680252904670804
54,55.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2977660/capsule_sm_120.jpg?t=1720890706,cats,28597,31426,90669,simulation / strategy,0.3153999713242674,0.9099789982816776
55,56.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/294100/capsule_sm_120.jpg?t=1720785993,rimworld,28360,29351,62257,unknown,0.45553110493599114,0.9662362440802699
56,57.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2567870/capsule_sm_120.jpg?t=1720910384,chained together,27831,38098,94480,sandbox / survival,0.29457027942421676,0.7305107879678723
57,58.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/304930/capsule_sm_120.jpg?t=1720809314,unturned,27757,32778,112703,action / rpg,0.24628448222318838,0.8468179876746599
58,59.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/261550/capsule_sm_120.jpg?t=1720843512,mount & blade ii: bannerlord,27744,33460,248216,horror / rpg,0.11177361652754053,0.82916915720263
59,60.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1366800/capsule_sm_120.jpg?t=1720896978,crosshair x,27698,28453,29634,action rpg,0.9346696362286563,0.973465012476716
60,61.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/489830/capsule_sm_120.jpg?t=1720929041,the elder scrolls v: skyrim special edition,25582,25582,69906,racing / open world,0.36594855949417787,1.0
61,62.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1293830/capsule_sm_120.jpg?t=1720739737,forza horizon 4,23269,40476,75689,mmorpg,0.3074290848075678,0.5748838818065026
62,63.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1599340/capsule_sm_120.jpg?t=1719385764,lost ark,22824,24218,1325305,survival horror,0.01722169613787015,0.9424395078041127
63,64.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/739630/capsule_sm_120.jpg?t=1720704515,phasmophobia,22625,26081,112717,mmorpg,0.20072393693941465,0.8674897434914306
64,65.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582660/capsule_sm_120.jpg?t=1720666179,black desert,22068,22068,60395,grand strategy,0.36539448629853466,1.0
65,66.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1158310/capsule_sm_120.jpg?t=1720776783,crusader kings iii,21874,22336,98872,rts,0.22123553685573266,0.9793159025787965
66,67.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/813780/capsule_sm_120.jpg?t=1720825113,age of empires ii: definitive edition,21619,23397,38725,sports / action,0.5582698515171078,0.9240073513698337
67,68.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252950/capsule_sm_120.jpg?t=1720843347,rocket league,21002,27634,147632,fighting,0.14225913081174812,0.7600057899688789
68,69.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1364780/capsule_sm_120.jpg?t=1720761011,street fighter™ 6,20954,30067,70573,simulation,0.2969124169299874,0.6969102338111551
69,70.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1818450/capsule_sm_120.jpg?t=1720950975,stalcraft: x,20919,21334,25307,pvpve shooter,0.8266092385505986,0.9805474828911597
70,71.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/594650/capsule_sm_120.jpg?t=1720959660,hunt: showdown,20873,24203,45091,first-person shooter,0.462908340910603,0.8624137503615255
71,72.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/218620/capsule_sm_120.jpg?t=1720752297,payday 2,20811,23145,247709,tower defense,0.0840139034108571,0.8991574854180169
72,73.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/960090/capsule_sm_120.jpg?t=1720776764,bloons td 6,20557,21292,53943,grand strategy,0.3810874441540144,0.9654799924854406
73,74.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236850/capsule_sm_120.jpg?t=1720717513,europa universalis iv,20481,21289,48165,turn-based strategy / 4x,0.4252257863593896,0.962046127107896
74,75.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/8930/capsule_sm_120.jpg?t=1717875048,sid meier's civilization v,20406,20433,91363,survival / sandbox,0.22335080940862276,0.9986786081339011
75,76.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2399830/capsule_sm_120.jpg?t=1720953816,ark: survival ascended,20327,20362,98047,card game,0.20731893887625322,0.9982811118750614
76,77.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1449850/capsule_sm_120.jpg?t=1720805561,yu-gi-oh! master duel,20291,28691,262689,first-person shooter,0.07724343234775724,0.7072252622773693
77,78.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1238810/capsule_sm_120.jpg?t=1720033044,battlefield™ v,19777,43617,116104,mmorpg,0.1703386618893406,0.45342412362152373
78,79.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1151340/capsule_sm_120.jpg?t=1720890058,fallout 76,19247,19247,73368,roguelike,0.2623350779631447,1.0
79,80.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/250900/capsule_sm_120.jpg?t=1720829573,the binding of isaac: rebirth,19169,21331,70701,action / fps,0.2711277068216857,0.898645164314847
80,81.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/548430/capsule_sm_120.jpg?t=1720492554,deep rock galactic,18863,24727,54160,factory building / simulation,0.34828286558345645,0.7628503255550613
81,82.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/526870/capsule_sm_120.jpg?t=1720913526,satisfactory,18328,18452,34238,vehicle simulation / physics,0.5353116420351656,0.9932798612616519
82,83.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/284160/capsule_sm_120.jpg?t=1720898342,beamng.drive,18104,18233,26844,survival / pvpve,0.6744151393234987,0.9929249163604453
83,84.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/513710/capsule_sm_120.jpg?t=1720761178,scum,17929,22288,68322,first-person shooter,0.2624191329293639,0.8044239052404881
84,85.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1517290/capsule_sm_120.jpg?t=1720518446,battlefield™ 2042,17912,25106,107376,rhythm,0.16681567575622114,0.7134549510077273
85,86.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322170/capsule_sm_120.jpg?t=1718250381,geometry dash,17786,19342,88346,pvp / shooter,0.20132207457043896,0.9195533036914486
86,87.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1966720/capsule_sm_120.jpg?t=1720368921,lethal company,17526,24165,240817,mmorpg,0.07277725409750972,0.7252638112973309
87,88.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623660/capsule_sm_120.jpg?t=1720516220,mir4,17496,18214,97173,factory building / strategy,0.180050013892748,0.9605797738003733
88,89.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/427520/capsule_sm_120.jpg?t=1720173548,factorio,17291,17291,34700,grand strategy,0.498299711815562,1.0
89,90.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/281990/capsule_sm_120.jpg?t=1719577258,stellaris,17173,18545,68602,military simulation,0.250327978776129,0.9260177945537881
90,91.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/107410/capsule_sm_120.jpg?t=1720790810,arma 3,17158,20052,56679,racing / open world,0.3027223486652905,0.8556752443646519
91,92.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1551360/capsule_sm_120.jpg?t=1720870052,forza horizon 5,17070,22071,81096,mmorpg,0.21049126960639242,0.7734130759820579
92,93.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/306130/capsule_sm_120.jpg?t=1719695331,the elder scrolls online,16481,16505,49234,action rpg,0.334748344639883,0.9985458951832777
93,94.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/990080/capsule_sm_120.jpg?t=1720974577,hogwarts legacy,16430,16712,879308,sports / basketball simulation,0.018685147866276664,0.9831258975586405
94,95.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2338770/capsule_sm_120.jpg?t=1720838729,nba 2k24,16255,23565,30363,utility / audio,0.5353555314033528,0.6897941862932315
95,96.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/629520/capsule_sm_120.jpg?t=1720529823,soundpad,16028,17064,21920,simulation / tycoon,0.7312043795620438,0.9392873886544773
96,97.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2670630/capsule_sm_120.jpg?t=1720692973,supermarket simulator,15817,15875,51363,vampire / open world,0.3079454081731986,0.9963464566929134
97,98.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1604030/capsule_sm_120.jpg?t=1720939184,v rising,15803,16275,150645,tactical shooter,0.10490225364266985,0.9709984639016898
98,99.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/393380/capsule_sm_120.jpg?t=1720734698,squad,15729,19288,35151,grand strategy,0.4474694887769907,0.8154811281625881
99,100.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/529340/capsule_sm_120.jpg?t=1720773937,victoria 3,15609,17598,70100,unknown,0.2226676176890157,0.8869757927037163
1 Rank Image Link Title Current 24h Peak All-Time Peak Genre Current/All-Time Ratio Current/24h Peak Ratio
2 0 1.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/730/capsule_sm_120.jpg?t=1720754127 counter-strike 2 1015721 1276702 1818773 first-person shooter 0.5584649651165924 0.7955818977333786
3 1 2.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/570/capsule_sm_120.jpg?t=1720831729 dota 2 702487 805624 1295114 moba (multiplayer online battle arena) 0.5424132547405093 0.8719787394615851
4 2 3.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2923300/capsule_sm_120.jpg?t=1720939184 banana 409758 428540 917272 unknown 0.4467137337670833 0.9561721192887478
5 3 4.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/578080/capsule_sm_120.jpg?t=1720671891 pubg: battlegrounds 371000 688475 3257248 battle royale 0.11389983200542299 0.5388721449580595
6 4 5.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1245620/capsule_sm_120.jpg?t=1720837728 elden ring 294359 319707 953426 action rpg 0.3087381716042986 0.9207149045845102
7 5 6.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2139460/capsule_sm_120.jpg?t=1720950990 once human 229441 231668 231668 unknown 0.9903871056857226 0.9903871056857226
8 6 7.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2074920/capsule_sm_120.jpg?t=1720939196 the first descendant 196521 201888 264860 unknown 0.7419806690326965 0.9734159533999049
9 7 8.0 https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gct5gyathsyug2qcrwsqpvkuxhokdmv31jfr3q&s source sdk base 2007 182694 191413 221857 tool / sdk 0.8234763834361774 0.9544492798294787
10 8 9.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/271590/capsule_sm_120.jpg?t=1720699639 grand theft auto v 148141 170541 364548 action-adventure 0.40636898295971996 0.8686532857201494
11 9 10.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1172470/capsule_sm_120.jpg?t=1720779450 apex legends 139352 240658 624473 battle royale / first-person shooter 0.22315136122778728 0.5790457828121234
12 10 11.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1203220/capsule_sm_120.jpg?t=1720756538 naraka: bladepoint 124890 297754 385770 battle royale / action 0.3237421261373357 0.4194402090316167
13 11 12.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252490/capsule_sm_120.jpg?t=1720880565 rust 115551 123112 245243 survival / sandbox 0.47116941156322506 0.9385843784521412
14 12 13.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/413150/capsule_sm_120.jpg?t=1720928908 stardew valley 109307 150950 236614 simulation / rpg 0.4619633664956427 0.7241271944352434
15 13 14.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1086940/capsule_sm_120.jpg?t=1720739088 baldur's gate 3 100654 101337 875343 rpg 0.11498806753466927 0.9932601122985681
16 14 15.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/431960/capsule_sm_120.jpg?t=1720563193 wallpaper engine 94331 124003 150375 utility / design 0.6273050706566916 0.7607154665612929
17 15 16.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1938090/capsule_sm_120.jpg?t=1720803562 call of duty® 79702 87063 491670 first-person shooter 0.16210466369719528 0.9154520289905012
18 16 17.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/251570/capsule_sm_120.jpg?t=1720912426 7 days to die 75659 90603 105073 survival / sandbox 0.7200612907216888 0.8350606492058762
19 17 18.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2195250/capsule_sm_120.jpg?t=1720812850 ea sports fc™ 24 75181 77536 107359 sports / simulation 0.7002766419210313 0.9696270119686339
20 18 19.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236390/capsule_sm_120.jpg?t=1720895983 war thunder 74915 83778 121318 vehicle combat / simulation 0.6175093555779027 0.8942085034257203
21 19 20.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/440/capsule_sm_120.jpg?t=1720698215 team fortress 2 74876 80300 253997 first-person shooter 0.29479088335689 0.932453300124533
22 20 21.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1085660/capsule_sm_120.jpg?t=1720717050 destiny 2 74671 83638 316750 mmo / fps 0.23574112075769535 0.8927879671919462
23 21 22.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623730/capsule_sm_120.jpg?t=1720975573 palworld 73466 96526 2101867 simulation / adventure 0.034952734878086957 0.7611006360980461
24 22 23.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2252570/capsule_sm_120.jpg?t=1720635355 football manager 2024 70632 75494 89478 sports / simulation 0.7893783946891973 0.9355975309296103
25 23 24.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/289070/capsule_sm_120.jpg?t=1720860499 sid meier's civilization vi 69668 82733 162657 turn-based strategy / 4x 0.4283123382332147 0.8420823613310288
26 24 25.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1782210/capsule_sm_120.jpg?t=1719605295 crab game 64568 65291 75967 party / social deduction 0.8499480037384654 0.9889264982922608
27 25 26.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/359550/capsule_sm_120.jpg?t=1720834417 tom clancy's rainbow six siege 61878 67413 201933 first-person shooter 0.30642836980582666 0.917894174714076
28 26 27.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/39210/capsule_sm_120.jpg?t=1719944221 final fantasy xiv online 55015 60783 95150 mmorpg 0.5781923279033105 0.9051050458187322
29 27 28.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/227300/capsule_sm_120.jpg?t=1720804466 euro truck simulator 2 54086 58047 69754 simulation 0.775382056942971 0.9317621927059108
30 28 29.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/221100/capsule_sm_120.jpg?t=1720776764 dayz 53994 53994 73418 survival 0.7354327276689641 1.0
31 29 30.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/899770/capsule_sm_120.jpg?t=1720967986 last epoch 50958 53752 264708 action rpg 0.1925064599483204 0.9480205387706504
32 30 31.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/230410/capsule_sm_120.jpg?t=1719413680 warframe 49480 54044 189837 action rpg 0.2606446583121309 0.9155502923543779
33 31 32.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/394360/capsule_sm_120.jpg?t=1720539829 hearts of iron iv 48521 54407 78108 grand strategy 0.621203973984739 0.8918153914018416
34 32 33.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1248130/capsule_sm_120.jpg?t=1719891785 farming simulator 22 44913 44913 105636 simulation 0.4251675565148245 1.0
35 33 34.0 https://encrypted-tbn0.gstatic.com/images?q=tbn:and9gctclctwrca7xurqzka5d_z9m9ex1rj207fmdg&s spacewar 44881 47188 102705 unknown 0.4369894357626211 0.9511104518097822
36 34 35.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1222670/capsule_sm_120.jpg?t=1720739737 the sims™ 4 43455 43473 96328 life simulation 0.4511149406195499 0.9995859498999379
37 35 36.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/381210/capsule_sm_120.jpg?t=1720635163 dead by daylight 42183 47382 105093 survival horror 0.40138734263937653 0.890274787894137
38 36 37.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582010/capsule_sm_120.jpg?t=1717545541 monster hunter: world 39313 63740 334684 action rpg 0.1174630397628808 0.6167712582365862
39 37 38.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/105600/capsule_sm_120.jpg?t=1719265442 terraria 39188 45947 489886 sandbox / action-adventure 0.07999412108123115 0.8528957276862472
40 38 39.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1174180/capsule_sm_120.jpg?t=1720699639 red dead redemption 2 38568 45365 77655 action-adventure 0.4966582963106046 0.8501708365479995
41 39 40.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1091500/capsule_sm_120.jpg?t=1720704999 cyberpunk 2077 36270 42155 1054388 action rpg 0.03439910165897184 0.8603961570394971
42 40 41.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1281930/capsule_sm_120.jpg?t=1720636933 tmodloader 35940 45863 47602 mod / utility 0.7550102936851393 0.7836382268931382
43 41 42.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2016590/capsule_sm_120.jpg?t=1720910384 dark and darker 35553 37279 57164 horror / survival 0.6219473794695962 0.9537004747981437
44 42 43.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322330/capsule_sm_120.jpg?t=1720721410 don't starve together 34484 58731 115925 survival 0.29746819064050034 0.5871515894502052
45 43 44.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/892970/capsule_sm_120.jpg?t=1720776783 valheim 34334 35765 502387 first-person shooter 0.06834173654971168 0.9599888158814484
46 44 45.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2357570/capsule_sm_120.jpg?t=1720817710 overwatch® 2 33668 44311 75608 turn-based strategy / rts 0.44529679399005395 0.7598113335289206
47 45 46.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1142710/capsule_sm_120.jpg?t=1720905040 total war: warhammer iii 33395 35502 166754 survival / sandbox 0.20026506110797943 0.9406512309165681
48 46 47.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/108600/capsule_sm_120.jpg?t=1720970275 project zomboid 33039 33799 65505 survival / action 0.504373711930387 0.9775141276369124
49 47 48.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/346110/capsule_sm_120.jpg?t=1718918625 ark: survival evolved 32575 37480 248405 action rpg 0.1311366518387311 0.8691302027748132
50 48 49.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/377160/capsule_sm_120.jpg?t=1720584279 fallout 4 31696 31696 472962 sandbox 0.06701595477015067 1.0
51 49 50.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/4000/capsule_sm_120.jpg?t=1720916026 garry's mod 31585 31671 73863 action rpg 0.4276159917685445 0.9972845821098165
52 50 51.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/292030/capsule_sm_120.jpg?t=1717668034 the witcher 3: wild hunt 29769 37650 103329 top-down shooter / action 0.2880991783526406 0.7906772908366534
53 51 52.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/553850/capsule_sm_120.jpg?t=1720793422 helldivers™ 2 29558 36877 458709 first-person shooter 0.06443736660933184 0.8015294085744502
54 52 53.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/550/capsule_sm_120.jpg?t=1719588609 left 4 dead 2 29442 39896 162399 mmo / social 0.18129421979199378 0.7379687186685382
55 53 54.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/438100/capsule_sm_120.jpg?t=1720939196 vrchat 29157 42862 52956 unknown 0.5505891683661908 0.680252904670804
56 54 55.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2977660/capsule_sm_120.jpg?t=1720890706 cats 28597 31426 90669 simulation / strategy 0.3153999713242674 0.9099789982816776
57 55 56.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/294100/capsule_sm_120.jpg?t=1720785993 rimworld 28360 29351 62257 unknown 0.45553110493599114 0.9662362440802699
58 56 57.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2567870/capsule_sm_120.jpg?t=1720910384 chained together 27831 38098 94480 sandbox / survival 0.29457027942421676 0.7305107879678723
59 57 58.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/304930/capsule_sm_120.jpg?t=1720809314 unturned 27757 32778 112703 action / rpg 0.24628448222318838 0.8468179876746599
60 58 59.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/261550/capsule_sm_120.jpg?t=1720843512 mount & blade ii: bannerlord 27744 33460 248216 horror / rpg 0.11177361652754053 0.82916915720263
61 59 60.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1366800/capsule_sm_120.jpg?t=1720896978 crosshair x 27698 28453 29634 action rpg 0.9346696362286563 0.973465012476716
62 60 61.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/489830/capsule_sm_120.jpg?t=1720929041 the elder scrolls v: skyrim special edition 25582 25582 69906 racing / open world 0.36594855949417787 1.0
63 61 62.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1293830/capsule_sm_120.jpg?t=1720739737 forza horizon 4 23269 40476 75689 mmorpg 0.3074290848075678 0.5748838818065026
64 62 63.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1599340/capsule_sm_120.jpg?t=1719385764 lost ark 22824 24218 1325305 survival horror 0.01722169613787015 0.9424395078041127
65 63 64.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/739630/capsule_sm_120.jpg?t=1720704515 phasmophobia 22625 26081 112717 mmorpg 0.20072393693941465 0.8674897434914306
66 64 65.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582660/capsule_sm_120.jpg?t=1720666179 black desert 22068 22068 60395 grand strategy 0.36539448629853466 1.0
67 65 66.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1158310/capsule_sm_120.jpg?t=1720776783 crusader kings iii 21874 22336 98872 rts 0.22123553685573266 0.9793159025787965
68 66 67.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/813780/capsule_sm_120.jpg?t=1720825113 age of empires ii: definitive edition 21619 23397 38725 sports / action 0.5582698515171078 0.9240073513698337
69 67 68.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252950/capsule_sm_120.jpg?t=1720843347 rocket league 21002 27634 147632 fighting 0.14225913081174812 0.7600057899688789
70 68 69.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1364780/capsule_sm_120.jpg?t=1720761011 street fighter™ 6 20954 30067 70573 simulation 0.2969124169299874 0.6969102338111551
71 69 70.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1818450/capsule_sm_120.jpg?t=1720950975 stalcraft: x 20919 21334 25307 pvpve shooter 0.8266092385505986 0.9805474828911597
72 70 71.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/594650/capsule_sm_120.jpg?t=1720959660 hunt: showdown 20873 24203 45091 first-person shooter 0.462908340910603 0.8624137503615255
73 71 72.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/218620/capsule_sm_120.jpg?t=1720752297 payday 2 20811 23145 247709 tower defense 0.0840139034108571 0.8991574854180169
74 72 73.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/960090/capsule_sm_120.jpg?t=1720776764 bloons td 6 20557 21292 53943 grand strategy 0.3810874441540144 0.9654799924854406
75 73 74.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236850/capsule_sm_120.jpg?t=1720717513 europa universalis iv 20481 21289 48165 turn-based strategy / 4x 0.4252257863593896 0.962046127107896
76 74 75.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/8930/capsule_sm_120.jpg?t=1717875048 sid meier's civilization v 20406 20433 91363 survival / sandbox 0.22335080940862276 0.9986786081339011
77 75 76.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2399830/capsule_sm_120.jpg?t=1720953816 ark: survival ascended 20327 20362 98047 card game 0.20731893887625322 0.9982811118750614
78 76 77.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1449850/capsule_sm_120.jpg?t=1720805561 yu-gi-oh! master duel 20291 28691 262689 first-person shooter 0.07724343234775724 0.7072252622773693
79 77 78.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1238810/capsule_sm_120.jpg?t=1720033044 battlefield™ v 19777 43617 116104 mmorpg 0.1703386618893406 0.45342412362152373
80 78 79.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1151340/capsule_sm_120.jpg?t=1720890058 fallout 76 19247 19247 73368 roguelike 0.2623350779631447 1.0
81 79 80.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/250900/capsule_sm_120.jpg?t=1720829573 the binding of isaac: rebirth 19169 21331 70701 action / fps 0.2711277068216857 0.898645164314847
82 80 81.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/548430/capsule_sm_120.jpg?t=1720492554 deep rock galactic 18863 24727 54160 factory building / simulation 0.34828286558345645 0.7628503255550613
83 81 82.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/526870/capsule_sm_120.jpg?t=1720913526 satisfactory 18328 18452 34238 vehicle simulation / physics 0.5353116420351656 0.9932798612616519
84 82 83.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/284160/capsule_sm_120.jpg?t=1720898342 beamng.drive 18104 18233 26844 survival / pvpve 0.6744151393234987 0.9929249163604453
85 83 84.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/513710/capsule_sm_120.jpg?t=1720761178 scum 17929 22288 68322 first-person shooter 0.2624191329293639 0.8044239052404881
86 84 85.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1517290/capsule_sm_120.jpg?t=1720518446 battlefield™ 2042 17912 25106 107376 rhythm 0.16681567575622114 0.7134549510077273
87 85 86.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322170/capsule_sm_120.jpg?t=1718250381 geometry dash 17786 19342 88346 pvp / shooter 0.20132207457043896 0.9195533036914486
88 86 87.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1966720/capsule_sm_120.jpg?t=1720368921 lethal company 17526 24165 240817 mmorpg 0.07277725409750972 0.7252638112973309
89 87 88.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623660/capsule_sm_120.jpg?t=1720516220 mir4 17496 18214 97173 factory building / strategy 0.180050013892748 0.9605797738003733
90 88 89.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/427520/capsule_sm_120.jpg?t=1720173548 factorio 17291 17291 34700 grand strategy 0.498299711815562 1.0
91 89 90.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/281990/capsule_sm_120.jpg?t=1719577258 stellaris 17173 18545 68602 military simulation 0.250327978776129 0.9260177945537881
92 90 91.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/107410/capsule_sm_120.jpg?t=1720790810 arma 3 17158 20052 56679 racing / open world 0.3027223486652905 0.8556752443646519
93 91 92.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1551360/capsule_sm_120.jpg?t=1720870052 forza horizon 5 17070 22071 81096 mmorpg 0.21049126960639242 0.7734130759820579
94 92 93.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/306130/capsule_sm_120.jpg?t=1719695331 the elder scrolls online 16481 16505 49234 action rpg 0.334748344639883 0.9985458951832777
95 93 94.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/990080/capsule_sm_120.jpg?t=1720974577 hogwarts legacy 16430 16712 879308 sports / basketball simulation 0.018685147866276664 0.9831258975586405
96 94 95.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2338770/capsule_sm_120.jpg?t=1720838729 nba 2k24 16255 23565 30363 utility / audio 0.5353555314033528 0.6897941862932315
97 95 96.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/629520/capsule_sm_120.jpg?t=1720529823 soundpad 16028 17064 21920 simulation / tycoon 0.7312043795620438 0.9392873886544773
98 96 97.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2670630/capsule_sm_120.jpg?t=1720692973 supermarket simulator 15817 15875 51363 vampire / open world 0.3079454081731986 0.9963464566929134
99 97 98.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1604030/capsule_sm_120.jpg?t=1720939184 v rising 15803 16275 150645 tactical shooter 0.10490225364266985 0.9709984639016898
100 98 99.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/393380/capsule_sm_120.jpg?t=1720734698 squad 15729 19288 35151 grand strategy 0.4474694887769907 0.8154811281625881
101 99 100.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/529340/capsule_sm_120.jpg?t=1720773937 victoria 3 15609 17598 70100 unknown 0.2226676176890157 0.8869757927037163

View File

@ -0,0 +1,101 @@
Rank,Image Link,Title,Current,24h Peak,All-Time Peak,Genre
1.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/730/capsule_sm_120.jpg?t=1720754127,Counter-Strike 2,"1,015,721","1,276,702","1,818,773",First-person Shooter
2.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/570/capsule_sm_120.jpg?t=1720831729,Dota 2,"702,487","805,624","1,295,114",MOBA (Multiplayer Online Battle Arena)
3.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2923300/capsule_sm_120.jpg?t=1720939184,Banana,"409,758","428,540","917,272",Unknown
4.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/578080/capsule_sm_120.jpg?t=1720671891,PUBG: BATTLEGROUNDS,"371,000","688,475","3,257,248",Battle Royale
5.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1245620/capsule_sm_120.jpg?t=1720837728,ELDEN RING,"294,359","319,707","953,426",Action RPG
6.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2139460/capsule_sm_120.jpg?t=1720950990,Once Human,"229,441","231,668","231,668",Unknown
7.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2074920/capsule_sm_120.jpg?t=1720939196,The First Descendant,"196,521","201,888","264,860",Unknown
8.0,https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT5GYATHSyug2QcrwsQpvKUXHOKDMV31jfR3Q&s,Source SDK Base 2007,"182,694","191,413","221,857",Tool / SDK
9.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/271590/capsule_sm_120.jpg?t=1720699639,Grand Theft Auto V,"148,141","170,541","364,548",Action-Adventure
10.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1172470/capsule_sm_120.jpg?t=1720779450,Apex Legends,"139,352","240,658","624,473",Battle Royale / First-person Shooter
11.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1203220/capsule_sm_120.jpg?t=1720756538,NARAKA: BLADEPOINT,"124,890","297,754","385,770",Battle Royale / Action
12.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252490/capsule_sm_120.jpg?t=1720880565,Rust,"115,551","123,112","245,243",Survival / Sandbox
13.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/413150/capsule_sm_120.jpg?t=1720928908,Stardew Valley,"109,307","150,950","236,614",Simulation / RPG
14.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1086940/capsule_sm_120.jpg?t=1720739088,Baldur's Gate 3,"100,654","101,337","875,343",RPG
15.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/431960/capsule_sm_120.jpg?t=1720563193,Wallpaper Engine,"94,331","124,003","150,375",Utility / Design
16.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1938090/capsule_sm_120.jpg?t=1720803562,Call of Duty®,"79,702","87,063","491,670",First-person Shooter
17.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/251570/capsule_sm_120.jpg?t=1720912426,7 Days to Die,"75,659","90,603","105,073",Survival / Sandbox
18.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2195250/capsule_sm_120.jpg?t=1720812850,EA SPORTS FC™ 24,"75,181","77,536","107,359",Sports / Simulation
19.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236390/capsule_sm_120.jpg?t=1720895983,War Thunder,"74,915","83,778","121,318",Vehicle Combat / Simulation
20.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/440/capsule_sm_120.jpg?t=1720698215,Team Fortress 2,"74,876","80,300","253,997",First-person Shooter
21.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1085660/capsule_sm_120.jpg?t=1720717050,Destiny 2,"74,671","83,638","316,750",MMO / FPS
22.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623730/capsule_sm_120.jpg?t=1720975573,Palworld,"73,466","96,526","2,101,867",Simulation / Adventure
23.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2252570/capsule_sm_120.jpg?t=1720635355,Football Manager 2024,"70,632","75,494","89,478",Sports / Simulation
24.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/289070/capsule_sm_120.jpg?t=1720860499,Sid Meier's Civilization VI,"69,668","82,733","162,657",Turn-Based Strategy / 4X
25.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1782210/capsule_sm_120.jpg?t=1719605295,Crab Game,"64,568","65,291","75,967",Party / Social Deduction
26.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/359550/capsule_sm_120.jpg?t=1720834417,Tom Clancy's Rainbow Six Siege,"61,878","67,413","201,933",First-person Shooter
27.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/39210/capsule_sm_120.jpg?t=1719944221,FINAL FANTASY XIV Online,"55,015","60,783","95,150",MMORPG
28.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/227300/capsule_sm_120.jpg?t=1720804466,Euro Truck Simulator 2,"54,086","58,047","69,754",Simulation
29.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/221100/capsule_sm_120.jpg?t=1720776764,DayZ,"53,994","53,994","73,418",Survival
30.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/899770/capsule_sm_120.jpg?t=1720967986,Last Epoch,"50,958","53,752","264,708",Action RPG
31.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/230410/capsule_sm_120.jpg?t=1719413680,Warframe,"49,480","54,044","189,837",Action RPG
32.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/394360/capsule_sm_120.jpg?t=1720539829,Hearts of Iron IV,"48,521","54,407","78,108",Grand Strategy
33.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1248130/capsule_sm_120.jpg?t=1719891785,Farming Simulator 22,"44,913","44,913","105,636",Simulation
34.0,https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTClCtWRcA7XuRqZKa5D_Z9M9EX1RJ207fmdg&s,Spacewar,"44,881","47,188","102,705",Unknown
35.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1222670/capsule_sm_120.jpg?t=1720739737,The Sims™ 4,"43,455","43,473","96,328",Life Simulation
36.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/381210/capsule_sm_120.jpg?t=1720635163,Dead by Daylight,"42,183","47,382","105,093",Survival Horror
37.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582010/capsule_sm_120.jpg?t=1717545541,Monster Hunter: World,"39,313","63,740","334,684",Action RPG
38.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/105600/capsule_sm_120.jpg?t=1719265442,Terraria,"39,188","45,947","489,886",Sandbox / Action-adventure
39.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1174180/capsule_sm_120.jpg?t=1720699639,Red Dead Redemption 2,"38,568","45,365","77,655",Action-adventure
40.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1091500/capsule_sm_120.jpg?t=1720704999,Cyberpunk 2077,"36,270","42,155","1,054,388",Action RPG
41.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1281930/capsule_sm_120.jpg?t=1720636933,tModLoader,"35,940","45,863","47,602",Mod / Utility
42.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2016590/capsule_sm_120.jpg?t=1720910384,Dark and Darker,"35,553","37,279","57,164",Horror / Survival
43.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322330/capsule_sm_120.jpg?t=1720721410,Don't Starve Together,"34,484","58,731","115,925",Survival
44.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/892970/capsule_sm_120.jpg?t=1720776783,Valheim,"34,334","35,765","502,387",First-person Shooter
45.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2357570/capsule_sm_120.jpg?t=1720817710,Overwatch® 2,"33,668","44,311","75,608",Turn-Based Strategy / RTS
46.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1142710/capsule_sm_120.jpg?t=1720905040,Total War: WARHAMMER III,"33,395","35,502","166,754",Survival / Sandbox
47.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/108600/capsule_sm_120.jpg?t=1720970275,Project Zomboid,"33,039","33,799","65,505",Survival / Action
48.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/346110/capsule_sm_120.jpg?t=1718918625,ARK: Survival Evolved,"32,575","37,480","248,405",Action RPG
49.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/377160/capsule_sm_120.jpg?t=1720584279,Fallout 4,"31,696","31,696","472,962",Sandbox
50.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/4000/capsule_sm_120.jpg?t=1720916026,Garry's Mod,"31,585","31,671","73,863",Action RPG
51.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/292030/capsule_sm_120.jpg?t=1717668034,The Witcher 3: Wild Hunt,"29,769","37,650","103,329",Top-down Shooter / Action
52.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/553850/capsule_sm_120.jpg?t=1720793422,HELLDIVERS™ 2,"29,558","36,877","458,709",First-person Shooter
53.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/550/capsule_sm_120.jpg?t=1719588609,Left 4 Dead 2,"29,442","39,896","162,399",MMO / Social
54.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/438100/capsule_sm_120.jpg?t=1720939196,VRChat,"29,157","42,862","52,956",Unknown
55.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2977660/capsule_sm_120.jpg?t=1720890706,Cats,"28,597","31,426","90,669",Simulation / Strategy
56.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/294100/capsule_sm_120.jpg?t=1720785993,RimWorld,"28,360","29,351","62,257",Unknown
57.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2567870/capsule_sm_120.jpg?t=1720910384,Chained Together,"27,831","38,098","94,480",Sandbox / Survival
58.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/304930/capsule_sm_120.jpg?t=1720809314,Unturned,"27,757","32,778","112,703",Action / RPG
59.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/261550/capsule_sm_120.jpg?t=1720843512,Mount & Blade II: Bannerlord,"27,744","33,460","248,216",Horror / RPG
60.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1366800/capsule_sm_120.jpg?t=1720896978,Crosshair X,"27,698","28,453","29,634",Action RPG
61.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/489830/capsule_sm_120.jpg?t=1720929041,The Elder Scrolls V: Skyrim Special Edition,"25,582","25,582","69,906",Racing / Open world
62.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1293830/capsule_sm_120.jpg?t=1720739737,Forza Horizon 4,"23,269","40,476","75,689",MMORPG
63.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1599340/capsule_sm_120.jpg?t=1719385764,Lost Ark,"22,824","24,218","1,325,305",Survival Horror
64.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/739630/capsule_sm_120.jpg?t=1720704515,Phasmophobia,"22,625","26,081","112,717",MMORPG
65.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582660/capsule_sm_120.jpg?t=1720666179,Black Desert,"22,068","22,068","60,395",Grand Strategy
66.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1158310/capsule_sm_120.jpg?t=1720776783,Crusader Kings III,"21,874","22,336","98,872",RTS
67.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/813780/capsule_sm_120.jpg?t=1720825113,Age of Empires II: Definitive Edition,"21,619","23,397","38,725",Sports / Action
68.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252950/capsule_sm_120.jpg?t=1720843347,Rocket League,"21,002","27,634","147,632",Fighting
69.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1364780/capsule_sm_120.jpg?t=1720761011,Street Fighter™ 6,"20,954","30,067","70,573",Simulation
70.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1818450/capsule_sm_120.jpg?t=1720950975,STALCRAFT: X,"20,919","21,334","25,307",PvPvE Shooter
71.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/594650/capsule_sm_120.jpg?t=1720959660,Hunt: Showdown,"20,873","24,203","45,091",First-person Shooter
72.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/218620/capsule_sm_120.jpg?t=1720752297,PAYDAY 2,"20,811","23,145","247,709",Tower Defense
73.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/960090/capsule_sm_120.jpg?t=1720776764,Bloons TD 6,"20,557","21,292","53,943",Grand Strategy
74.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236850/capsule_sm_120.jpg?t=1720717513,Europa Universalis IV,"20,481","21,289","48,165",Turn-Based Strategy / 4X
75.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/8930/capsule_sm_120.jpg?t=1717875048,Sid Meier's Civilization V,"20,406","20,433","91,363",Survival / Sandbox
76.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2399830/capsule_sm_120.jpg?t=1720953816,ARK: Survival Ascended,"20,327","20,362","98,047",Card Game
77.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1449850/capsule_sm_120.jpg?t=1720805561,Yu-Gi-Oh! Master Duel,"20,291","28,691","262,689",First-person Shooter
78.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1238810/capsule_sm_120.jpg?t=1720033044,Battlefield™ V,"19,777","43,617","116,104",MMORPG
79.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1151340/capsule_sm_120.jpg?t=1720890058,Fallout 76,"19,247","19,247","73,368",Roguelike
80.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/250900/capsule_sm_120.jpg?t=1720829573,The Binding of Isaac: Rebirth,"19,169","21,331","70,701",Action / FPS
81.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/548430/capsule_sm_120.jpg?t=1720492554,Deep Rock Galactic,"18,863","24,727","54,160",Factory Building / Simulation
82.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/526870/capsule_sm_120.jpg?t=1720913526,Satisfactory,"18,328","18,452","34,238",Vehicle Simulation / Physics
83.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/284160/capsule_sm_120.jpg?t=1720898342,BeamNG.drive,"18,104","18,233","26,844",Survival / PvPvE
84.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/513710/capsule_sm_120.jpg?t=1720761178,SCUM,"17,929","22,288","68,322",First-person Shooter
85.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1517290/capsule_sm_120.jpg?t=1720518446,Battlefield™ 2042,"17,912","25,106","107,376",Rhythm
86.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322170/capsule_sm_120.jpg?t=1718250381,Geometry Dash,"17,786","19,342","88,346",PvP / Shooter
87.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1966720/capsule_sm_120.jpg?t=1720368921,Lethal Company,"17,526","24,165","240,817",MMORPG
88.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623660/capsule_sm_120.jpg?t=1720516220,MIR4,"17,496","18,214","97,173",Factory Building / Strategy
89.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/427520/capsule_sm_120.jpg?t=1720173548,Factorio,"17,291","17,291","34,700",Grand Strategy
90.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/281990/capsule_sm_120.jpg?t=1719577258,Stellaris,"17,173","18,545","68,602",Military Simulation
91.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/107410/capsule_sm_120.jpg?t=1720790810,Arma 3,"17,158","20,052","56,679",Racing / Open world
92.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1551360/capsule_sm_120.jpg?t=1720870052,Forza Horizon 5,"17,070","22,071","81,096",MMORPG
93.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/306130/capsule_sm_120.jpg?t=1719695331,The Elder Scrolls Online,"16,481","16,505","49,234",Action RPG
94.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/990080/capsule_sm_120.jpg?t=1720974577,Hogwarts Legacy,"16,430","16,712","879,308",Sports / Basketball Simulation
95.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2338770/capsule_sm_120.jpg?t=1720838729,NBA 2K24,"16,255","23,565","30,363",Utility / Audio
96.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/629520/capsule_sm_120.jpg?t=1720529823,Soundpad,"16,028","17,064","21,920",Simulation / Tycoon
97.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2670630/capsule_sm_120.jpg?t=1720692973,Supermarket Simulator,"15,817","15,875","51,363",Vampire / Open world
98.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1604030/capsule_sm_120.jpg?t=1720939184,V Rising,"15,803","16,275","150,645",Tactical Shooter
99.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/393380/capsule_sm_120.jpg?t=1720734698,Squad,"15,729","19,288","35,151",Grand Strategy
100.0,https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/529340/capsule_sm_120.jpg?t=1720773937,Victoria 3,"15,609","17,598","70,100",Unknown
1 Rank Image Link Title Current 24h Peak All-Time Peak Genre
2 1.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/730/capsule_sm_120.jpg?t=1720754127 Counter-Strike 2 1,015,721 1,276,702 1,818,773 First-person Shooter
3 2.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/570/capsule_sm_120.jpg?t=1720831729 Dota 2 702,487 805,624 1,295,114 MOBA (Multiplayer Online Battle Arena)
4 3.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2923300/capsule_sm_120.jpg?t=1720939184 Banana 409,758 428,540 917,272 Unknown
5 4.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/578080/capsule_sm_120.jpg?t=1720671891 PUBG: BATTLEGROUNDS 371,000 688,475 3,257,248 Battle Royale
6 5.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1245620/capsule_sm_120.jpg?t=1720837728 ELDEN RING 294,359 319,707 953,426 Action RPG
7 6.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2139460/capsule_sm_120.jpg?t=1720950990 Once Human 229,441 231,668 231,668 Unknown
8 7.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2074920/capsule_sm_120.jpg?t=1720939196 The First Descendant 196,521 201,888 264,860 Unknown
9 8.0 https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT5GYATHSyug2QcrwsQpvKUXHOKDMV31jfR3Q&s Source SDK Base 2007 182,694 191,413 221,857 Tool / SDK
10 9.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/271590/capsule_sm_120.jpg?t=1720699639 Grand Theft Auto V 148,141 170,541 364,548 Action-Adventure
11 10.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1172470/capsule_sm_120.jpg?t=1720779450 Apex Legends 139,352 240,658 624,473 Battle Royale / First-person Shooter
12 11.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1203220/capsule_sm_120.jpg?t=1720756538 NARAKA: BLADEPOINT 124,890 297,754 385,770 Battle Royale / Action
13 12.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252490/capsule_sm_120.jpg?t=1720880565 Rust 115,551 123,112 245,243 Survival / Sandbox
14 13.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/413150/capsule_sm_120.jpg?t=1720928908 Stardew Valley 109,307 150,950 236,614 Simulation / RPG
15 14.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1086940/capsule_sm_120.jpg?t=1720739088 Baldur's Gate 3 100,654 101,337 875,343 RPG
16 15.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/431960/capsule_sm_120.jpg?t=1720563193 Wallpaper Engine 94,331 124,003 150,375 Utility / Design
17 16.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1938090/capsule_sm_120.jpg?t=1720803562 Call of Duty® 79,702 87,063 491,670 First-person Shooter
18 17.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/251570/capsule_sm_120.jpg?t=1720912426 7 Days to Die 75,659 90,603 105,073 Survival / Sandbox
19 18.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2195250/capsule_sm_120.jpg?t=1720812850 EA SPORTS FC™ 24 75,181 77,536 107,359 Sports / Simulation
20 19.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236390/capsule_sm_120.jpg?t=1720895983 War Thunder 74,915 83,778 121,318 Vehicle Combat / Simulation
21 20.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/440/capsule_sm_120.jpg?t=1720698215 Team Fortress 2 74,876 80,300 253,997 First-person Shooter
22 21.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1085660/capsule_sm_120.jpg?t=1720717050 Destiny 2 74,671 83,638 316,750 MMO / FPS
23 22.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623730/capsule_sm_120.jpg?t=1720975573 Palworld 73,466 96,526 2,101,867 Simulation / Adventure
24 23.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2252570/capsule_sm_120.jpg?t=1720635355 Football Manager 2024 70,632 75,494 89,478 Sports / Simulation
25 24.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/289070/capsule_sm_120.jpg?t=1720860499 Sid Meier's Civilization VI 69,668 82,733 162,657 Turn-Based Strategy / 4X
26 25.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1782210/capsule_sm_120.jpg?t=1719605295 Crab Game 64,568 65,291 75,967 Party / Social Deduction
27 26.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/359550/capsule_sm_120.jpg?t=1720834417 Tom Clancy's Rainbow Six Siege 61,878 67,413 201,933 First-person Shooter
28 27.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/39210/capsule_sm_120.jpg?t=1719944221 FINAL FANTASY XIV Online 55,015 60,783 95,150 MMORPG
29 28.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/227300/capsule_sm_120.jpg?t=1720804466 Euro Truck Simulator 2 54,086 58,047 69,754 Simulation
30 29.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/221100/capsule_sm_120.jpg?t=1720776764 DayZ 53,994 53,994 73,418 Survival
31 30.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/899770/capsule_sm_120.jpg?t=1720967986 Last Epoch 50,958 53,752 264,708 Action RPG
32 31.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/230410/capsule_sm_120.jpg?t=1719413680 Warframe 49,480 54,044 189,837 Action RPG
33 32.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/394360/capsule_sm_120.jpg?t=1720539829 Hearts of Iron IV 48,521 54,407 78,108 Grand Strategy
34 33.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1248130/capsule_sm_120.jpg?t=1719891785 Farming Simulator 22 44,913 44,913 105,636 Simulation
35 34.0 https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTClCtWRcA7XuRqZKa5D_Z9M9EX1RJ207fmdg&s Spacewar 44,881 47,188 102,705 Unknown
36 35.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1222670/capsule_sm_120.jpg?t=1720739737 The Sims™ 4 43,455 43,473 96,328 Life Simulation
37 36.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/381210/capsule_sm_120.jpg?t=1720635163 Dead by Daylight 42,183 47,382 105,093 Survival Horror
38 37.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582010/capsule_sm_120.jpg?t=1717545541 Monster Hunter: World 39,313 63,740 334,684 Action RPG
39 38.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/105600/capsule_sm_120.jpg?t=1719265442 Terraria 39,188 45,947 489,886 Sandbox / Action-adventure
40 39.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1174180/capsule_sm_120.jpg?t=1720699639 Red Dead Redemption 2 38,568 45,365 77,655 Action-adventure
41 40.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1091500/capsule_sm_120.jpg?t=1720704999 Cyberpunk 2077 36,270 42,155 1,054,388 Action RPG
42 41.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1281930/capsule_sm_120.jpg?t=1720636933 tModLoader 35,940 45,863 47,602 Mod / Utility
43 42.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2016590/capsule_sm_120.jpg?t=1720910384 Dark and Darker 35,553 37,279 57,164 Horror / Survival
44 43.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322330/capsule_sm_120.jpg?t=1720721410 Don't Starve Together 34,484 58,731 115,925 Survival
45 44.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/892970/capsule_sm_120.jpg?t=1720776783 Valheim 34,334 35,765 502,387 First-person Shooter
46 45.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2357570/capsule_sm_120.jpg?t=1720817710 Overwatch® 2 33,668 44,311 75,608 Turn-Based Strategy / RTS
47 46.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1142710/capsule_sm_120.jpg?t=1720905040 Total War: WARHAMMER III 33,395 35,502 166,754 Survival / Sandbox
48 47.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/108600/capsule_sm_120.jpg?t=1720970275 Project Zomboid 33,039 33,799 65,505 Survival / Action
49 48.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/346110/capsule_sm_120.jpg?t=1718918625 ARK: Survival Evolved 32,575 37,480 248,405 Action RPG
50 49.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/377160/capsule_sm_120.jpg?t=1720584279 Fallout 4 31,696 31,696 472,962 Sandbox
51 50.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/4000/capsule_sm_120.jpg?t=1720916026 Garry's Mod 31,585 31,671 73,863 Action RPG
52 51.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/292030/capsule_sm_120.jpg?t=1717668034 The Witcher 3: Wild Hunt 29,769 37,650 103,329 Top-down Shooter / Action
53 52.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/553850/capsule_sm_120.jpg?t=1720793422 HELLDIVERS™ 2 29,558 36,877 458,709 First-person Shooter
54 53.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/550/capsule_sm_120.jpg?t=1719588609 Left 4 Dead 2 29,442 39,896 162,399 MMO / Social
55 54.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/438100/capsule_sm_120.jpg?t=1720939196 VRChat 29,157 42,862 52,956 Unknown
56 55.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2977660/capsule_sm_120.jpg?t=1720890706 Cats 28,597 31,426 90,669 Simulation / Strategy
57 56.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/294100/capsule_sm_120.jpg?t=1720785993 RimWorld 28,360 29,351 62,257 Unknown
58 57.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2567870/capsule_sm_120.jpg?t=1720910384 Chained Together 27,831 38,098 94,480 Sandbox / Survival
59 58.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/304930/capsule_sm_120.jpg?t=1720809314 Unturned 27,757 32,778 112,703 Action / RPG
60 59.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/261550/capsule_sm_120.jpg?t=1720843512 Mount & Blade II: Bannerlord 27,744 33,460 248,216 Horror / RPG
61 60.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1366800/capsule_sm_120.jpg?t=1720896978 Crosshair X 27,698 28,453 29,634 Action RPG
62 61.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/489830/capsule_sm_120.jpg?t=1720929041 The Elder Scrolls V: Skyrim Special Edition 25,582 25,582 69,906 Racing / Open world
63 62.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1293830/capsule_sm_120.jpg?t=1720739737 Forza Horizon 4 23,269 40,476 75,689 MMORPG
64 63.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1599340/capsule_sm_120.jpg?t=1719385764 Lost Ark 22,824 24,218 1,325,305 Survival Horror
65 64.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/739630/capsule_sm_120.jpg?t=1720704515 Phasmophobia 22,625 26,081 112,717 MMORPG
66 65.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/582660/capsule_sm_120.jpg?t=1720666179 Black Desert 22,068 22,068 60,395 Grand Strategy
67 66.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1158310/capsule_sm_120.jpg?t=1720776783 Crusader Kings III 21,874 22,336 98,872 RTS
68 67.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/813780/capsule_sm_120.jpg?t=1720825113 Age of Empires II: Definitive Edition 21,619 23,397 38,725 Sports / Action
69 68.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/252950/capsule_sm_120.jpg?t=1720843347 Rocket League 21,002 27,634 147,632 Fighting
70 69.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1364780/capsule_sm_120.jpg?t=1720761011 Street Fighter™ 6 20,954 30,067 70,573 Simulation
71 70.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1818450/capsule_sm_120.jpg?t=1720950975 STALCRAFT: X 20,919 21,334 25,307 PvPvE Shooter
72 71.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/594650/capsule_sm_120.jpg?t=1720959660 Hunt: Showdown 20,873 24,203 45,091 First-person Shooter
73 72.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/218620/capsule_sm_120.jpg?t=1720752297 PAYDAY 2 20,811 23,145 247,709 Tower Defense
74 73.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/960090/capsule_sm_120.jpg?t=1720776764 Bloons TD 6 20,557 21,292 53,943 Grand Strategy
75 74.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/236850/capsule_sm_120.jpg?t=1720717513 Europa Universalis IV 20,481 21,289 48,165 Turn-Based Strategy / 4X
76 75.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/8930/capsule_sm_120.jpg?t=1717875048 Sid Meier's Civilization V 20,406 20,433 91,363 Survival / Sandbox
77 76.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2399830/capsule_sm_120.jpg?t=1720953816 ARK: Survival Ascended 20,327 20,362 98,047 Card Game
78 77.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1449850/capsule_sm_120.jpg?t=1720805561 Yu-Gi-Oh! Master Duel 20,291 28,691 262,689 First-person Shooter
79 78.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1238810/capsule_sm_120.jpg?t=1720033044 Battlefield™ V 19,777 43,617 116,104 MMORPG
80 79.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1151340/capsule_sm_120.jpg?t=1720890058 Fallout 76 19,247 19,247 73,368 Roguelike
81 80.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/250900/capsule_sm_120.jpg?t=1720829573 The Binding of Isaac: Rebirth 19,169 21,331 70,701 Action / FPS
82 81.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/548430/capsule_sm_120.jpg?t=1720492554 Deep Rock Galactic 18,863 24,727 54,160 Factory Building / Simulation
83 82.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/526870/capsule_sm_120.jpg?t=1720913526 Satisfactory 18,328 18,452 34,238 Vehicle Simulation / Physics
84 83.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/284160/capsule_sm_120.jpg?t=1720898342 BeamNG.drive 18,104 18,233 26,844 Survival / PvPvE
85 84.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/513710/capsule_sm_120.jpg?t=1720761178 SCUM 17,929 22,288 68,322 First-person Shooter
86 85.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1517290/capsule_sm_120.jpg?t=1720518446 Battlefield™ 2042 17,912 25,106 107,376 Rhythm
87 86.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/322170/capsule_sm_120.jpg?t=1718250381 Geometry Dash 17,786 19,342 88,346 PvP / Shooter
88 87.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1966720/capsule_sm_120.jpg?t=1720368921 Lethal Company 17,526 24,165 240,817 MMORPG
89 88.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1623660/capsule_sm_120.jpg?t=1720516220 MIR4 17,496 18,214 97,173 Factory Building / Strategy
90 89.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/427520/capsule_sm_120.jpg?t=1720173548 Factorio 17,291 17,291 34,700 Grand Strategy
91 90.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/281990/capsule_sm_120.jpg?t=1719577258 Stellaris 17,173 18,545 68,602 Military Simulation
92 91.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/107410/capsule_sm_120.jpg?t=1720790810 Arma 3 17,158 20,052 56,679 Racing / Open world
93 92.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1551360/capsule_sm_120.jpg?t=1720870052 Forza Horizon 5 17,070 22,071 81,096 MMORPG
94 93.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/306130/capsule_sm_120.jpg?t=1719695331 The Elder Scrolls Online 16,481 16,505 49,234 Action RPG
95 94.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/990080/capsule_sm_120.jpg?t=1720974577 Hogwarts Legacy 16,430 16,712 879,308 Sports / Basketball Simulation
96 95.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2338770/capsule_sm_120.jpg?t=1720838729 NBA 2K24 16,255 23,565 30,363 Utility / Audio
97 96.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/629520/capsule_sm_120.jpg?t=1720529823 Soundpad 16,028 17,064 21,920 Simulation / Tycoon
98 97.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/2670630/capsule_sm_120.jpg?t=1720692973 Supermarket Simulator 15,817 15,875 51,363 Vampire / Open world
99 98.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/1604030/capsule_sm_120.jpg?t=1720939184 V Rising 15,803 16,275 150,645 Tactical Shooter
100 99.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/393380/capsule_sm_120.jpg?t=1720734698 Squad 15,729 19,288 35,151 Grand Strategy
101 100.0 https://shared.cloudflare.steamstatic.com/store_item_assets/steam/apps/529340/capsule_sm_120.jpg?t=1720773937 Victoria 3 15,609 17,598 70,100 Unknown

4174
sample-module-v.csv Normal file

File diff suppressed because it is too large Load Diff

65
test.py Normal file
View File

@ -0,0 +1,65 @@
import smtplib
from email.mime.text import MIMEText
from email.utils import formatdate
import psutil # для получения метрик системы
import time
# Конфигурация SMTP
SMTP_SERVER = "smtp.gmail.com"
SMTP_PORT = 587
SMTP_USER = "your-email@gmail.com"
SMTP_PASSWORD = "your-password"
EMAIL_FROM = "your-email@gmail.com"
EMAIL_TO = "admin@example.com"
def monitor_resources():
"""Проверка метрик системы"""
alerts = []
# Пример: проверка загрузки CPU
cpu_percent = psutil.cpu_percent(interval=1)
if cpu_percent > 80:
alerts.append(f"High CPU usage: {cpu_percent}%")
# Пример: проверка свободной памяти
mem = psutil.virtual_memory()
if mem.percent > 80:
alerts.append(f"High Memory usage: {mem.percent}%")
# Пример: проверка дискового пространства
disk = psutil.disk_usage('/')
if disk.percent > 90:
alerts.append(f"Low disk space: {disk.percent}%")
return alerts
def send_email(subject, message):
"""Отправка email через SMTP"""
msg = MIMEText(message)
msg['Subject'] = subject
msg['From'] = EMAIL_FROM
msg['To'] = EMAIL_TO
msg['Date'] = formatdate(localtime=True)
try:
with smtplib.SMTP(SMTP_SERVER, SMTP_PORT) as server:
server.starttls() # Шифрование TLS
server.login(SMTP_USER, SMTP_PASSWORD)
server.sendmail(EMAIL_FROM, EMAIL_TO, msg.as_string())
print("Alert email sent!")
except Exception as e:
print(f"Failed to send email: {str(e)}")
if __name__ == "__main__":
while True:
alerts = monitor_resources()
if alerts:
subject = "[ALERT] System Issues Detected"
message = "\n".join(alerts)
send_email(subject, message)
time.sleep(60) # Проверка каждую минуту