Spaces:
Sleeping
Sleeping
Jimin Park
commited on
Commit
·
7f1dc32
1
Parent(s):
8c94d1f
kermitting soon
Browse files- util/Meta_scrapper.py +3 -1
- util/Player_scrapper.py +1 -2
- util/Recent_match_scrapper.py +4 -3
- util/Weekly_meta_scrapper.py +5 -5
- util/__pycache__/Meta_scrapper.cpython-311.pyc +0 -0
- util/__pycache__/Player_scrapper.cpython-311.pyc +0 -0
- util/__pycache__/Recent_match_scrapper.cpython-311.pyc +0 -0
- util/__pycache__/Weekly_meta_scrapper.cpython-311.pyc +0 -0
- util/app.py +0 -7
- util/app_training_df_getter.py +1 -1
- util/data/feature_eng_stats.csv +1 -1
- util/data/player_stats_merged_2025-01-10.csv +1 -1
- util/data/weekly_meta_stats.csv +151 -151
util/Meta_scrapper.py
CHANGED
@@ -62,7 +62,7 @@ def setup_driver():
|
|
62 |
if 'HF_SPACE' in os.environ:
|
63 |
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
64 |
print("Running on Hugging Face Space.")
|
65 |
-
chromedriver_path = ChromeDriverManager(
|
66 |
else:
|
67 |
# Local environment setup
|
68 |
print("Running locally.")
|
@@ -150,6 +150,8 @@ def get_champion_table_data(driver, url, role):
|
|
150 |
def get_meta_stats():
|
151 |
"""Main function to scrape champion data with improved error handling and logging"""
|
152 |
driver = None
|
|
|
|
|
153 |
|
154 |
try:
|
155 |
driver = setup_driver()
|
|
|
62 |
if 'HF_SPACE' in os.environ:
|
63 |
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
64 |
print("Running on Hugging Face Space.")
|
65 |
+
chromedriver_path = ChromeDriverManager().install()
|
66 |
else:
|
67 |
# Local environment setup
|
68 |
print("Running locally.")
|
|
|
150 |
def get_meta_stats():
|
151 |
"""Main function to scrape champion data with improved error handling and logging"""
|
152 |
driver = None
|
153 |
+
|
154 |
+
print("================== inside get_meta_stats ========================\n")
|
155 |
|
156 |
try:
|
157 |
driver = setup_driver()
|
util/Player_scrapper.py
CHANGED
@@ -33,7 +33,7 @@ def setup_driver():
|
|
33 |
if 'HF_SPACE' in os.environ:
|
34 |
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
35 |
print("Running on Hugging Face Space.")
|
36 |
-
chromedriver_path = ChromeDriverManager(
|
37 |
else:
|
38 |
# Local environment setup
|
39 |
print("Running locally.")
|
@@ -46,7 +46,6 @@ def setup_driver():
|
|
46 |
driver = webdriver.Chrome(service=service, options=options)
|
47 |
|
48 |
return driver
|
49 |
-
return webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
|
50 |
|
51 |
def wait_and_find_element(driver, selector, timeout=20, description="element"):
|
52 |
"""Utility function for waiting and finding elements"""
|
|
|
33 |
if 'HF_SPACE' in os.environ:
|
34 |
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
35 |
print("Running on Hugging Face Space.")
|
36 |
+
chromedriver_path = ChromeDriverManager().install()
|
37 |
else:
|
38 |
# Local environment setup
|
39 |
print("Running locally.")
|
|
|
46 |
driver = webdriver.Chrome(service=service, options=options)
|
47 |
|
48 |
return driver
|
|
|
49 |
|
50 |
def wait_and_find_element(driver, selector, timeout=20, description="element"):
|
51 |
"""Utility function for waiting and finding elements"""
|
util/Recent_match_scrapper.py
CHANGED
@@ -28,7 +28,7 @@ def setup_driver():
|
|
28 |
if 'HF_SPACE' in os.environ:
|
29 |
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
30 |
print("Running on Hugging Face Space.")
|
31 |
-
chromedriver_path = ChromeDriverManager(
|
32 |
else:
|
33 |
# Local environment setup
|
34 |
print("Running locally.")
|
@@ -42,8 +42,6 @@ def setup_driver():
|
|
42 |
|
43 |
return driver
|
44 |
|
45 |
-
return webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
|
46 |
-
|
47 |
def get_tooltip_date(driver, element):
|
48 |
try:
|
49 |
driver.execute_script("""
|
@@ -242,6 +240,9 @@ def get_matches_stats(region, username, max_retries=2):
|
|
242 |
"""
|
243 |
Get match stats for a single player with retry mechanism
|
244 |
"""
|
|
|
|
|
|
|
245 |
if not region or not username:
|
246 |
raise ValueError("Both 'region' and 'username' must be provided")
|
247 |
|
|
|
28 |
if 'HF_SPACE' in os.environ:
|
29 |
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
30 |
print("Running on Hugging Face Space.")
|
31 |
+
chromedriver_path = ChromeDriverManager().install()
|
32 |
else:
|
33 |
# Local environment setup
|
34 |
print("Running locally.")
|
|
|
42 |
|
43 |
return driver
|
44 |
|
|
|
|
|
45 |
def get_tooltip_date(driver, element):
|
46 |
try:
|
47 |
driver.execute_script("""
|
|
|
240 |
"""
|
241 |
Get match stats for a single player with retry mechanism
|
242 |
"""
|
243 |
+
|
244 |
+
print("=========================== inside get_matches_stats ===========================\n")
|
245 |
+
|
246 |
if not region or not username:
|
247 |
raise ValueError("Both 'region' and 'username' must be provided")
|
248 |
|
util/Weekly_meta_scrapper.py
CHANGED
@@ -7,6 +7,7 @@ from webdriver_manager.chrome import ChromeDriverManager
|
|
7 |
from selenium.webdriver.common.by import By
|
8 |
from selenium.webdriver.support.ui import WebDriverWait
|
9 |
from selenium.webdriver.support import expected_conditions as EC
|
|
|
10 |
from helper import convert_percentage_to_decimal
|
11 |
|
12 |
def setup_driver():
|
@@ -29,11 +30,11 @@ def setup_driver():
|
|
29 |
if 'HF_SPACE' in os.environ:
|
30 |
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
31 |
print("Running on Hugging Face Space.")
|
32 |
-
chromedriver_path = ChromeDriverManager(
|
33 |
else:
|
34 |
# Local environment setup
|
35 |
print("Running locally.")
|
36 |
-
chromedriver_path = ChromeDriverManager().install()
|
37 |
|
38 |
# Create the Service object using the installed chromedriver
|
39 |
service = Service(executable_path=chromedriver_path)
|
@@ -42,11 +43,10 @@ def setup_driver():
|
|
42 |
driver = webdriver.Chrome(service=service, options=chrome_options)
|
43 |
|
44 |
return driver
|
45 |
-
|
46 |
-
service = Service(ChromeDriverManager().install())
|
47 |
-
return webdriver.Chrome(service=service, options=chrome_options)
|
48 |
|
49 |
def get_weekly_meta():
|
|
|
|
|
50 |
BASE_URL = "https://www.op.gg/statistics/champions?tier=challenger&period=week&mode=ranked"
|
51 |
driver = setup_driver()
|
52 |
|
|
|
7 |
from selenium.webdriver.common.by import By
|
8 |
from selenium.webdriver.support.ui import WebDriverWait
|
9 |
from selenium.webdriver.support import expected_conditions as EC
|
10 |
+
from webdriver_manager.core.os_manager import ChromeType
|
11 |
from helper import convert_percentage_to_decimal
|
12 |
|
13 |
def setup_driver():
|
|
|
30 |
if 'HF_SPACE' in os.environ:
|
31 |
# Hugging Face Space is detected, handle accordingly (example for versioning)
|
32 |
print("Running on Hugging Face Space.")
|
33 |
+
chromedriver_path = ChromeDriverManager().install()
|
34 |
else:
|
35 |
# Local environment setup
|
36 |
print("Running locally.")
|
37 |
+
chromedriver_path = ChromeDriverManager(chrome_type=ChromeType.CHROMIUM).install()
|
38 |
|
39 |
# Create the Service object using the installed chromedriver
|
40 |
service = Service(executable_path=chromedriver_path)
|
|
|
43 |
driver = webdriver.Chrome(service=service, options=chrome_options)
|
44 |
|
45 |
return driver
|
|
|
|
|
|
|
46 |
|
47 |
def get_weekly_meta():
|
48 |
+
|
49 |
+
print("======================== IN get_weekly_meta() ===============================\n")
|
50 |
BASE_URL = "https://www.op.gg/statistics/champions?tier=challenger&period=week&mode=ranked"
|
51 |
driver = setup_driver()
|
52 |
|
util/__pycache__/Meta_scrapper.cpython-311.pyc
CHANGED
Binary files a/util/__pycache__/Meta_scrapper.cpython-311.pyc and b/util/__pycache__/Meta_scrapper.cpython-311.pyc differ
|
|
util/__pycache__/Player_scrapper.cpython-311.pyc
CHANGED
Binary files a/util/__pycache__/Player_scrapper.cpython-311.pyc and b/util/__pycache__/Player_scrapper.cpython-311.pyc differ
|
|
util/__pycache__/Recent_match_scrapper.cpython-311.pyc
CHANGED
Binary files a/util/__pycache__/Recent_match_scrapper.cpython-311.pyc and b/util/__pycache__/Recent_match_scrapper.cpython-311.pyc differ
|
|
util/__pycache__/Weekly_meta_scrapper.cpython-311.pyc
CHANGED
Binary files a/util/__pycache__/Weekly_meta_scrapper.cpython-311.pyc and b/util/__pycache__/Weekly_meta_scrapper.cpython-311.pyc differ
|
|
util/app.py
CHANGED
@@ -4,13 +4,6 @@ import xgboost as xgb
|
|
4 |
from huggingface_hub import hf_hub_download
|
5 |
from app_training_df_getter import create_app_user_training_df
|
6 |
|
7 |
-
from webdriver_manager.chrome import ChromeDriverManager
|
8 |
-
|
9 |
-
# Specify the desired version (for example, Chromium version 131)
|
10 |
-
chrome_path = webdriver.Chrome(ChromeDriverManager(version="131.0.6778.264").install())
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
|
15 |
# Define champion list for dropdowns
|
16 |
CHAMPIONS = [
|
|
|
4 |
from huggingface_hub import hf_hub_download
|
5 |
from app_training_df_getter import create_app_user_training_df
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
# Define champion list for dropdowns
|
9 |
CHAMPIONS = [
|
util/app_training_df_getter.py
CHANGED
@@ -435,7 +435,7 @@ def get_meta_stats():
|
|
435 |
def create_app_user_training_df(url):
|
436 |
try:
|
437 |
#meta_stats = get_meta_stats()
|
438 |
-
|
439 |
|
440 |
# Input validation
|
441 |
if not url or not isinstance(url, str):
|
|
|
435 |
def create_app_user_training_df(url):
|
436 |
try:
|
437 |
#meta_stats = get_meta_stats()
|
438 |
+
weekly_meta_stats = get_weekly_meta()
|
439 |
|
440 |
# Input validation
|
441 |
if not url or not isinstance(url, str):
|
util/data/feature_eng_stats.csv
CHANGED
@@ -15,7 +15,7 @@ Agurin-EUW,euw,"Thu, Jan 9, 2025 6:10 PM",Wukong,10,red,0,16.35,5,5,0,1.0,0.83,0
|
|
15 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 5:48 PM",Wukong,18,red,1,36.83,8,9,11,2.11,0.5,0.92,249,6.8,4,RaiderGO #2004,Camille,Desperate Nasus #EUW,Kayle,dehastee #ZMAJ,Corki,JeanJaqueDeRouen #jjdr,Leona,Vizícsacsi #EUW,Rumble,113 改善 #113,Ambessa,FEBIVEN #COACH,Orianna,BDSnuc #EUW,Kalista,HotGuy6Pack #MUTE,Poppy,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.2951744360902256,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.026306037735849056,0.09492210526315792,0.06326307692307692,0.05881164179104479,0.5268909090909091,0.11773756097560978,0.273402,0.0,0.04017540983606557,0.16317966386554625,0.09095999999999997,0.03322285714285715,0.14820000000000003,0.0,0.003849350649350647,0.07156923076923077,0.0,0.0,0.2765234866828087,0.07624576576576578,0.14092714285714286,0.18900000000000003,1.3328031128538127,0.1868901198801199,0.6641238095238096,0.010135862068965523,0.013229999999999983,0.03372,0.2630727272727273,0.05446800000000001,0.1622820512820513,0.229725,0.26472473867595814,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.2647714285714286,0.0,0.4339285714285715,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.59616,0.24814000000000003,0.29714117647058824,0.3417171428571429,0.2860472727272727,0.0,0.38864556157635477,0.0,0.010921764705882351,0.0,0.0,0.03376000000000001,0.09450433734939762,1.003148742554622,0.07477500000000002,0.0387668918918919,0.06311693430656935,0.0,0.4914,0.0,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.17496190476190476,0.25510000000000005,0.0,0.011013496932515339,0.23438095238095236,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.0036014012738853486,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.27001102040816327,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.0,0.062349097744360905,0.15904363636363636,0.0,0.0,0.005098701298701292,0.0037389820359281455,0.28715193548387097,0.0021161290322580587,0.045151510791366915,0.3284,0.08576357142857144,0.20876666666666666,0.0,0.17579172413793107,0.0,0.10447826086956524,0.028445806451612907,0.06334992125984253,0.1577057142857143,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.049660468085106386,0.051933802816901416,0.4223555555555556,0.11769263157894738,0.14125621621621626,0.08073457943925233,0.1575832835820896,0.4234,0.20696410256410258,0.045080307692307704,0.21296078431372548,0.20961333333333335,0.07481967213114754,0.06421296774193551,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.09912905660377361,0.033422423841059604,0.034452244897959186,0.01736901098901098,0.04394074074074074,0.33936,0.029524637681159416,0.1023090909090909,0.015457894736842104,0.0,0.2328172972972973,0.6152000000000001,0.24339999999999995,0.05683456790123458,0.10833882352941177,0.0,0.5192192736990069,0.10258235294117646,0.09382040816326531,0.13494942528735632,0.04554782608695645,0.47619,0.020077950310559003,0.0,0.10230122807017544,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.030400000000000017,0.1598923989218329
|
16 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 5:00 PM",Wukong,13,red,0,24.22,1,4,2,0.75,0.6,0.59,188,7.8,4,RaiderGO #2004,Dr. Mundo,Desperate Nasus #EUW,Kayle,Godskin Apostle #EUW,Ezreal,MYTH Mahonix #BROCK,Lulu,Vizícsacsi #EUW,Rumble,HotGuy6Pack #MUTE,Poppy,QloTrGeSdV #EUW,Ahri,Kobbe #EUW,Ashe,Depressed Loser #ff15,Rakan,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.0,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.026306037735849056,0.09492210526315792,0.0,0.05881164179104479,0.5268909090909091,0.11773756097560978,0.273402,0.0,0.04017540983606557,0.16317966386554625,0.09095999999999997,0.03322285714285715,0.14820000000000003,0.2060765217391305,0.003849350649350647,0.07156923076923077,0.13602,0.0,0.2765234866828087,0.0,0.14092714285714286,0.18900000000000003,1.3328031128538127,0.1868901198801199,0.0,0.010135862068965523,0.01469999999999998,0.03372,0.2630727272727273,0.05446800000000001,0.1622820512820513,0.229725,0.23825226480836234,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.23829428571428574,0.0,0.4339285714285715,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.59616,0.24814000000000003,0.29714117647058824,0.3417171428571429,0.2860472727272727,0.11056434782608697,0.38864556157635477,0.0,0.010921764705882351,0.0,0.0,0.03376000000000001,0.09450433734939762,1.003148742554622,0.07477500000000002,0.04307432432432433,0.06311693430656935,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.0,0.25510000000000005,0.0,0.011013496932515339,0.23438095238095236,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.0036014012738853486,0.008903289940828405,0.1975873015873016,0.0,0.2898631578947368,0.27001102040816327,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.062349097744360905,0.15904363636363636,0.0,0.0,0.005098701298701292,0.0037389820359281455,0.0,0.0021161290322580587,0.045151510791366915,0.3284,0.08576357142857144,0.20876666666666666,0.0,0.17579172413793107,0.0,0.10447826086956524,0.028445806451612907,0.06334992125984253,0.1577057142857143,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.05517829787234043,0.051933802816901416,0.4223555555555556,0.11769263157894738,0.14125621621621626,0.08073457943925233,0.14182495522388064,0.38106,0.20696410256410258,0.05008923076923078,0.21296078431372548,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.037136026490066226,0.034452244897959186,0.01736901098901098,0.04394074074074074,0.33936,0.029524637681159416,0.09207818181818182,0.015457894736842104,0.0,0.2328172972972973,0.6152000000000001,0.24339999999999995,0.05683456790123458,0.10833882352941177,0.0,0.5769103041100077,0.10258235294117646,0.09382040816326531,0.13494942528735632,0.04554782608695645,0.47619,0.020077950310559003,0.0,0.10230122807017544,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.030400000000000017,0.1598923989218329
|
17 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 4:05 PM",Karma,12,blue,1,18.75,1,2,6,3.5,0.32,0.56,119,6.3,4,113 改善 #113,Viego,BDSnuc #EUW,Viktor,JEZUUU #0814,Kalista,Walid Georgey #EUW,Rell,G2 BrokenBlade #1918,Maokai,G2 SkewMond #3327,Wukong,Wesley Warren Jr #EUW,Akali,weakestsapling #CERES,Kog'Maw,Modern Life #EUW,Soraka,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.2951744360902256,0.0,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.026306037735849056,0.09492210526315792,0.06326307692307692,0.05881164179104479,0.5268909090909091,0.11773756097560978,0.273402,0.0,0.04017540983606557,0.16317966386554625,0.09095999999999997,0.03322285714285715,0.14820000000000003,0.2289739130434783,0.003849350649350647,0.07156923076923077,0.15113333333333334,0.0,0.2765234866828087,0.07624576576576578,0.14092714285714286,0.18900000000000003,1.1995228015684314,0.1868901198801199,0.5977114285714287,0.010135862068965523,0.01469999999999998,0.03372,0.2630727272727273,0.06052000000000001,0.1622820512820513,0.229725,0.26472473867595814,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.2647714285714286,0.0,0.4821428571428572,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.59616,0.24814000000000003,0.29714117647058824,0.3417171428571429,0.2860472727272727,0.0,0.38864556157635477,0.0,0.010921764705882351,0.0,0.05357519379844962,0.03376000000000001,0.09450433734939762,0.9028338682991598,0.07477500000000002,0.04307432432432433,0.0,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.17496190476190476,0.25510000000000005,0.0,0.011013496932515339,0.0,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.002881121019108279,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.3000122448979592,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.062349097744360905,0.14313927272727273,0.0688015384615385,0.0,0.005098701298701292,0.0037389820359281455,0.28715193548387097,0.0021161290322580587,0.045151510791366915,0.0,0.08576357142857144,0.20876666666666666,0.0,0.1953241379310345,0.12373438356164385,0.10447826086956524,0.028445806451612907,0.05701492913385828,0.17522857142857146,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.05517829787234043,0.046740422535211275,0.4223555555555556,0.10592336842105264,0.14125621621621626,0.0,0.1575832835820896,0.4234,0.20696410256410258,0.05008923076923078,0.19166470588235293,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.037136026490066226,0.031007020408163267,0.01736901098901098,0.04394074074074074,0.33936,0.029524637681159416,0.1023090909090909,0.015457894736842104,0.0,0.2328172972972973,0.0,0.0,0.05683456790123458,0.09750494117647059,0.0,0.0,0.10258235294117646,0.09382040816326531,0.13494942528735632,0.04554782608695645,0.47619,0.020077950310559003,0.0,0.0920711052631579,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.030400000000000017,0.12791391913746633
|
18 |
-
Agurin-EUW,euw,"Sun, Jan 5, 2025 6:25 PM",Jarvan IV,16,blue,1,26.68,9,2,19,14.0,0.67,1.08,183,6.9,2,skygge kriger #EUV,Rumble,성진우 #789,Vladimir,JEZUUU #0814,Yasuo,Papadodi #1010,Lulu,the inescapable #EUW,Maokai,edge of night #999,Kindred,Macaquiño #GAP,LeBlanc,
|
19 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 5:48 PM",Wukong,16,red,1,28.68,3,5,11,2.8,0.47,1.33,220,7.7,2,S8DiamondDog #EUW,Yasuo,Owen Mcdade #BLACK,Fiora,AllYouHadToDoWas #Stay,Karthus,Depressed Loser #ff15,LeBlanc,Drali #Drali,K'Sante,Kiki #COYG,Viego,222 #EUW3,Syndra,JEZUUU #0814,Xayah,grisha turbina #ADHD,Sona,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.2951744360902256,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.02367543396226415,0.09492210526315792,0.06326307692307692,0.05881164179104479,0.5268909090909091,0.11773756097560978,0.30378,0.0,0.036157868852459016,0.16317966386554625,0.10106666666666664,0.03322285714285715,0.14820000000000003,0.2289739130434783,0.003849350649350647,0.07156923076923077,0.15113333333333334,0.0,0.2765234866828087,0.07624576576576578,0.14092714285714286,0.18900000000000003,1.3328031128538127,0.1868901198801199,0.6641238095238096,0.010135862068965523,0.0,0.03372,0.2630727272727273,0.06052000000000001,0.1622820512820513,0.229725,0.26472473867595814,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.2647714285714286,0.0,0.4821428571428572,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.59616,0.24814000000000003,0.29714117647058824,0.0,0.2860472727272727,0.11056434782608697,0.38864556157635477,0.0,0.010921764705882351,0.0,0.05357519379844962,0.03376000000000001,0.09450433734939762,1.003148742554622,0.07477500000000002,0.04307432432432433,0.06311693430656935,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.11725786046511627,0.17496190476190476,0.25510000000000005,0.0,0.011013496932515339,0.23438095238095236,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.0036014012738853486,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.3000122448979592,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.062349097744360905,0.14313927272727273,0.07644615384615389,0.0,0.004588831168831162,0.0037389820359281455,0.28715193548387097,0.0019045161290322527,0.045151510791366915,0.3284,0.08576357142857144,0.20876666666666666,0.0,0.1953241379310345,0.12373438356164385,0.10447826086956524,0.025601225806451616,0.06334992125984253,0.17522857142857146,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.2301450158730159,0.016582499999999997,0.05517829787234043,0.051933802816901416,0.4223555555555556,0.11769263157894738,0.0,0.08073457943925233,0.1575832835820896,0.4234,0.0,0.05008923076923078,0.21296078431372548,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.020509999999999994,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.037136026490066226,0.034452244897959186,0.01736901098901098,0.04394074074074074,0.33936,0.026572173913043475,0.09207818181818182,0.012366315789473684,0.0,0.2328172972972973,0.0,0.24339999999999995,0.051151111111111126,0.10833882352941177,0.0,0.5769103041100077,0.0,0.09382040816326531,0.13494942528735632,0.0,0.47619,0.020077950310559003,0.0,0.0920711052631579,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.027360000000000016,0.1598923989218329
|
20 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 5:10 PM",Wukong,12,blue,0,20.65,6,4,2,2.0,0.57,0.89,153,7.4,2,Novachrono #Back,Cho'Gath,2025 #favo,Gragas,Jeyrus #Jey,Corki,Papadodi #1010,Lulu,S8DiamondDog #EUW,Dr. Mundo,Thomas Shelby #SOLOQ,Vi,222 #EUW3,Ekko,JEZUUU #0814,Caitlyn,Pablo #boda,Bard,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.26565699248120306,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.026306037735849056,0.09492210526315792,0.06326307692307692,0.05881164179104479,0.5268909090909091,0.11773756097560978,0.0,0.0,0.04017540983606557,0.16317966386554625,0.10106666666666664,0.029900571428571436,0.0,0.2289739130434783,0.003849350649350647,0.0,0.0,0.0,0.2765234866828087,0.0,0.14092714285714286,0.0,1.3328031128538127,0.1868901198801199,0.6641238095238096,0.010135862068965523,0.01469999999999998,0.03372,0.2630727272727273,0.06052000000000001,0.1622820512820513,0.229725,0.0,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.2647714285714286,0.0,0.4821428571428572,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.59616,0.24814000000000003,0.29714117647058824,0.3417171428571429,0.2860472727272727,0.11056434782608697,0.38864556157635477,0.0,0.010921764705882351,0.0,0.05357519379844962,0.03376000000000001,0.09450433734939762,1.003148742554622,0.07477500000000002,0.04307432432432433,0.05680524087591242,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.0,0.22959000000000004,0.0,0.011013496932515339,0.23438095238095236,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.0036014012738853486,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.3000122448979592,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.062349097744360905,0.15904363636363636,0.07644615384615389,0.0,0.005098701298701292,0.0037389820359281455,0.28715193548387097,0.0021161290322580587,0.045151510791366915,0.3284,0.08576357142857144,0.20876666666666666,0.0,0.1953241379310345,0.12373438356164385,0.10447826086956524,0.028445806451612907,0.05701492913385828,0.17522857142857146,0.10274849999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.05517829787234043,0.051933802816901416,0.4223555555555556,0.11769263157894738,0.14125621621621626,0.0726611214953271,0.1575832835820896,0.4234,0.20696410256410258,0.05008923076923078,0.21296078431372548,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.033422423841059604,0.034452244897959186,0.01736901098901098,0.04394074074074074,0.33936,0.029524637681159416,0.1023090909090909,0.015457894736842104,0.0,0.0,0.6152000000000001,0.24339999999999995,0.051151111111111126,0.09750494117647059,0.0,0.5769103041100077,0.10258235294117646,0.09382040816326531,0.13494942528735632,0.04554782608695645,0.47619,0.020077950310559003,0.0,0.10230122807017544,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.027360000000000016,0.1598923989218329
|
21 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 4:30 PM",Elise,15,blue,1,24.22,10,3,6,5.33,0.62,1.08,194,8.0,2,SatØrius #EUW,Rumble,AbbedaggÆ #EUW,Jayce,Kite Machine #EUW,Jhin,Vento #TAIF,Bard,KOI Spooder #1352,K'Sante,NazgulsBlade #LOTR,Skarner,TwitchTVxKenzuke #EUW,Aurora,Unkn0wn #EUW11,Ezreal,Paolocannone #EUW,Karma,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.2951744360902256,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.042674794520547954,0.026306037735849056,0.09492210526315792,0.06326307692307692,0.05881164179104479,0.0,0.11773756097560978,0.0,0.0,0.04017540983606557,0.14686169747899164,0.10106666666666664,0.03322285714285715,0.14820000000000003,0.2289739130434783,0.003849350649350647,0.07156923076923077,0.13602,0.0,0.24887113801452782,0.07624576576576578,0.14092714285714286,0.15120000000000003,1.3328031128538127,0.1682011078921079,0.0,0.010135862068965523,0.01469999999999998,0.03372,0.23676545454545456,0.06052000000000001,0.1622820512820513,0.229725,0.26472473867595814,0.11205000000000004,0.12918461538461537,0.04024166666666667,0.011228292682926832,0.23829428571428574,0.0,0.4821428571428572,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.0,0.0,0.29714117647058824,0.0,0.2860472727272727,0.11056434782608697,0.0,0.0,0.010921764705882351,0.0,0.05357519379844962,0.03376000000000001,0.09450433734939762,1.003148742554622,0.06729750000000002,0.04307432432432433,0.06311693430656935,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.17496190476190476,0.25510000000000005,0.0,0.011013496932515339,0.23438095238095236,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.0036014012738853486,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.27001102040816327,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.05611418796992482,0.14313927272727273,0.07644615384615389,0.0,0.005098701298701292,0.0037389820359281455,0.28715193548387097,0.0021161290322580587,0.04063635971223022,0.3284,0.0771872142857143,0.20876666666666666,0.0,0.1953241379310345,0.0,0.10447826086956524,0.028445806451612907,0.06334992125984253,0.17522857142857146,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.049660468085106386,0.051933802816901416,0.0,0.11769263157894738,0.14125621621621626,0.08073457943925233,0.14182495522388064,0.4234,0.20696410256410258,0.05008923076923078,0.19166470588235293,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.037136026490066226,0.034452244897959186,0.01736901098901098,0.04394074074074074,0.33936,0.026572173913043475,0.1023090909090909,0.015457894736842104,0.0,0.2328172972972973,0.6152000000000001,0.24339999999999995,0.05683456790123458,0.10833882352941177,0.0,0.5769103041100077,0.10258235294117646,0.09382040816326531,0.13494942528735632,0.04554782608695645,0.47619,0.020077950310559003,0.0,0.0920711052631579,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.027360000000000016,0.1598923989218329
|
|
|
15 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 5:48 PM",Wukong,18,red,1,36.83,8,9,11,2.11,0.5,0.92,249,6.8,4,RaiderGO #2004,Camille,Desperate Nasus #EUW,Kayle,dehastee #ZMAJ,Corki,JeanJaqueDeRouen #jjdr,Leona,Vizícsacsi #EUW,Rumble,113 改善 #113,Ambessa,FEBIVEN #COACH,Orianna,BDSnuc #EUW,Kalista,HotGuy6Pack #MUTE,Poppy,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.2951744360902256,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.026306037735849056,0.09492210526315792,0.06326307692307692,0.05881164179104479,0.5268909090909091,0.11773756097560978,0.273402,0.0,0.04017540983606557,0.16317966386554625,0.09095999999999997,0.03322285714285715,0.14820000000000003,0.0,0.003849350649350647,0.07156923076923077,0.0,0.0,0.2765234866828087,0.07624576576576578,0.14092714285714286,0.18900000000000003,1.3328031128538127,0.1868901198801199,0.6641238095238096,0.010135862068965523,0.013229999999999983,0.03372,0.2630727272727273,0.05446800000000001,0.1622820512820513,0.229725,0.26472473867595814,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.2647714285714286,0.0,0.4339285714285715,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.59616,0.24814000000000003,0.29714117647058824,0.3417171428571429,0.2860472727272727,0.0,0.38864556157635477,0.0,0.010921764705882351,0.0,0.0,0.03376000000000001,0.09450433734939762,1.003148742554622,0.07477500000000002,0.0387668918918919,0.06311693430656935,0.0,0.4914,0.0,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.17496190476190476,0.25510000000000005,0.0,0.011013496932515339,0.23438095238095236,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.0036014012738853486,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.27001102040816327,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.0,0.062349097744360905,0.15904363636363636,0.0,0.0,0.005098701298701292,0.0037389820359281455,0.28715193548387097,0.0021161290322580587,0.045151510791366915,0.3284,0.08576357142857144,0.20876666666666666,0.0,0.17579172413793107,0.0,0.10447826086956524,0.028445806451612907,0.06334992125984253,0.1577057142857143,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.049660468085106386,0.051933802816901416,0.4223555555555556,0.11769263157894738,0.14125621621621626,0.08073457943925233,0.1575832835820896,0.4234,0.20696410256410258,0.045080307692307704,0.21296078431372548,0.20961333333333335,0.07481967213114754,0.06421296774193551,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.09912905660377361,0.033422423841059604,0.034452244897959186,0.01736901098901098,0.04394074074074074,0.33936,0.029524637681159416,0.1023090909090909,0.015457894736842104,0.0,0.2328172972972973,0.6152000000000001,0.24339999999999995,0.05683456790123458,0.10833882352941177,0.0,0.5192192736990069,0.10258235294117646,0.09382040816326531,0.13494942528735632,0.04554782608695645,0.47619,0.020077950310559003,0.0,0.10230122807017544,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.030400000000000017,0.1598923989218329
|
16 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 5:00 PM",Wukong,13,red,0,24.22,1,4,2,0.75,0.6,0.59,188,7.8,4,RaiderGO #2004,Dr. Mundo,Desperate Nasus #EUW,Kayle,Godskin Apostle #EUW,Ezreal,MYTH Mahonix #BROCK,Lulu,Vizícsacsi #EUW,Rumble,HotGuy6Pack #MUTE,Poppy,QloTrGeSdV #EUW,Ahri,Kobbe #EUW,Ashe,Depressed Loser #ff15,Rakan,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.0,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.026306037735849056,0.09492210526315792,0.0,0.05881164179104479,0.5268909090909091,0.11773756097560978,0.273402,0.0,0.04017540983606557,0.16317966386554625,0.09095999999999997,0.03322285714285715,0.14820000000000003,0.2060765217391305,0.003849350649350647,0.07156923076923077,0.13602,0.0,0.2765234866828087,0.0,0.14092714285714286,0.18900000000000003,1.3328031128538127,0.1868901198801199,0.0,0.010135862068965523,0.01469999999999998,0.03372,0.2630727272727273,0.05446800000000001,0.1622820512820513,0.229725,0.23825226480836234,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.23829428571428574,0.0,0.4339285714285715,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.59616,0.24814000000000003,0.29714117647058824,0.3417171428571429,0.2860472727272727,0.11056434782608697,0.38864556157635477,0.0,0.010921764705882351,0.0,0.0,0.03376000000000001,0.09450433734939762,1.003148742554622,0.07477500000000002,0.04307432432432433,0.06311693430656935,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.0,0.25510000000000005,0.0,0.011013496932515339,0.23438095238095236,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.0036014012738853486,0.008903289940828405,0.1975873015873016,0.0,0.2898631578947368,0.27001102040816327,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.062349097744360905,0.15904363636363636,0.0,0.0,0.005098701298701292,0.0037389820359281455,0.0,0.0021161290322580587,0.045151510791366915,0.3284,0.08576357142857144,0.20876666666666666,0.0,0.17579172413793107,0.0,0.10447826086956524,0.028445806451612907,0.06334992125984253,0.1577057142857143,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.05517829787234043,0.051933802816901416,0.4223555555555556,0.11769263157894738,0.14125621621621626,0.08073457943925233,0.14182495522388064,0.38106,0.20696410256410258,0.05008923076923078,0.21296078431372548,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.037136026490066226,0.034452244897959186,0.01736901098901098,0.04394074074074074,0.33936,0.029524637681159416,0.09207818181818182,0.015457894736842104,0.0,0.2328172972972973,0.6152000000000001,0.24339999999999995,0.05683456790123458,0.10833882352941177,0.0,0.5769103041100077,0.10258235294117646,0.09382040816326531,0.13494942528735632,0.04554782608695645,0.47619,0.020077950310559003,0.0,0.10230122807017544,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.030400000000000017,0.1598923989218329
|
17 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 4:05 PM",Karma,12,blue,1,18.75,1,2,6,3.5,0.32,0.56,119,6.3,4,113 改善 #113,Viego,BDSnuc #EUW,Viktor,JEZUUU #0814,Kalista,Walid Georgey #EUW,Rell,G2 BrokenBlade #1918,Maokai,G2 SkewMond #3327,Wukong,Wesley Warren Jr #EUW,Akali,weakestsapling #CERES,Kog'Maw,Modern Life #EUW,Soraka,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.2951744360902256,0.0,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.026306037735849056,0.09492210526315792,0.06326307692307692,0.05881164179104479,0.5268909090909091,0.11773756097560978,0.273402,0.0,0.04017540983606557,0.16317966386554625,0.09095999999999997,0.03322285714285715,0.14820000000000003,0.2289739130434783,0.003849350649350647,0.07156923076923077,0.15113333333333334,0.0,0.2765234866828087,0.07624576576576578,0.14092714285714286,0.18900000000000003,1.1995228015684314,0.1868901198801199,0.5977114285714287,0.010135862068965523,0.01469999999999998,0.03372,0.2630727272727273,0.06052000000000001,0.1622820512820513,0.229725,0.26472473867595814,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.2647714285714286,0.0,0.4821428571428572,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.59616,0.24814000000000003,0.29714117647058824,0.3417171428571429,0.2860472727272727,0.0,0.38864556157635477,0.0,0.010921764705882351,0.0,0.05357519379844962,0.03376000000000001,0.09450433734939762,0.9028338682991598,0.07477500000000002,0.04307432432432433,0.0,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.17496190476190476,0.25510000000000005,0.0,0.011013496932515339,0.0,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.002881121019108279,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.3000122448979592,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.062349097744360905,0.14313927272727273,0.0688015384615385,0.0,0.005098701298701292,0.0037389820359281455,0.28715193548387097,0.0021161290322580587,0.045151510791366915,0.0,0.08576357142857144,0.20876666666666666,0.0,0.1953241379310345,0.12373438356164385,0.10447826086956524,0.028445806451612907,0.05701492913385828,0.17522857142857146,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.05517829787234043,0.046740422535211275,0.4223555555555556,0.10592336842105264,0.14125621621621626,0.0,0.1575832835820896,0.4234,0.20696410256410258,0.05008923076923078,0.19166470588235293,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.037136026490066226,0.031007020408163267,0.01736901098901098,0.04394074074074074,0.33936,0.029524637681159416,0.1023090909090909,0.015457894736842104,0.0,0.2328172972972973,0.0,0.0,0.05683456790123458,0.09750494117647059,0.0,0.0,0.10258235294117646,0.09382040816326531,0.13494942528735632,0.04554782608695645,0.47619,0.020077950310559003,0.0,0.0920711052631579,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.030400000000000017,0.12791391913746633
|
18 |
+
Agurin-EUW,euw,"Sun, Jan 5, 2025 6:25 PM",Jarvan IV,16,blue,1,26.68,9,2,19,14.0,0.67,1.08,183,6.9,2,skygge kriger #EUV,Rumble,성진우 #789,Vladimir,JEZUUU #0814,Yasuo,Papadodi #1010,Lulu,the inescapable #EUW,Maokai,edge of night #999,Kindred,Macaquiño #GAP,LeBlanc,Insecticides #wwwsp,Corki,Walid Georgey #EUW,Rell,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.2951744360902256,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.026306037735849056,0.08542989473684214,0.06326307692307692,0.05881164179104479,0.5268909090909091,0.10596380487804881,0.273402,0.0,0.04017540983606557,0.16317966386554625,0.10106666666666664,0.03322285714285715,0.14820000000000003,0.2289739130434783,0.003849350649350647,0.07156923076923077,0.0,0.0,0.2765234866828087,0.07624576576576578,0.14092714285714286,0.18900000000000003,1.1995228015684314,0.1868901198801199,0.6641238095238096,0.010135862068965523,0.01469999999999998,0.03372,0.21045818181818185,0.06052000000000001,0.1622820512820513,0.229725,0.23825226480836234,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.23829428571428574,0.0,0.4821428571428572,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.536544,0.24814000000000003,0.29714117647058824,0.3417171428571429,0.2860472727272727,0.09950791304347828,0.38864556157635477,0.0,0.010921764705882351,0.0,0.05357519379844962,0.03376000000000001,0.09450433734939762,1.003148742554622,0.0,0.04307432432432433,0.06311693430656935,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.0,0.22959000000000004,0.0,0.011013496932515339,0.0,0.0,0.025543125000000003,0.13139142857142858,0.032489655172413805,0.003241261146496814,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.3000122448979592,0.07919706976744186,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.062349097744360905,0.14313927272727273,0.0688015384615385,0.0,0.004588831168831162,0.0037389820359281455,0.28715193548387097,0.0021161290322580587,0.045151510791366915,0.0,0.08576357142857144,0.20876666666666666,0.0,0.1953241379310345,0.0,0.10447826086956524,0.028445806451612907,0.06334992125984253,0.17522857142857146,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.05517829787234043,0.051933802816901416,0.4223555555555556,0.11769263157894738,0.14125621621621626,0.08073457943925233,0.1575832835820896,0.4234,0.20696410256410258,0.05008923076923078,0.21296078431372548,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.037136026490066226,0.031007020408163267,0.01736901098901098,0.04394074074074074,0.33936,0.029524637681159416,0.1023090909090909,0.015457894736842104,0.0,0.20953556756756758,0.6152000000000001,0.24339999999999995,0.0,0.10833882352941177,0.0,0.5769103041100077,0.10258235294117646,0.09382040816326531,0.12145448275862068,0.0,0.47619,0.020077950310559003,0.0,0.0920711052631579,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.030400000000000017,0.1598923989218329
|
19 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 5:48 PM",Wukong,16,red,1,28.68,3,5,11,2.8,0.47,1.33,220,7.7,2,S8DiamondDog #EUW,Yasuo,Owen Mcdade #BLACK,Fiora,AllYouHadToDoWas #Stay,Karthus,Depressed Loser #ff15,LeBlanc,Drali #Drali,K'Sante,Kiki #COYG,Viego,222 #EUW3,Syndra,JEZUUU #0814,Xayah,grisha turbina #ADHD,Sona,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.2951744360902256,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.02367543396226415,0.09492210526315792,0.06326307692307692,0.05881164179104479,0.5268909090909091,0.11773756097560978,0.30378,0.0,0.036157868852459016,0.16317966386554625,0.10106666666666664,0.03322285714285715,0.14820000000000003,0.2289739130434783,0.003849350649350647,0.07156923076923077,0.15113333333333334,0.0,0.2765234866828087,0.07624576576576578,0.14092714285714286,0.18900000000000003,1.3328031128538127,0.1868901198801199,0.6641238095238096,0.010135862068965523,0.0,0.03372,0.2630727272727273,0.06052000000000001,0.1622820512820513,0.229725,0.26472473867595814,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.2647714285714286,0.0,0.4821428571428572,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.59616,0.24814000000000003,0.29714117647058824,0.0,0.2860472727272727,0.11056434782608697,0.38864556157635477,0.0,0.010921764705882351,0.0,0.05357519379844962,0.03376000000000001,0.09450433734939762,1.003148742554622,0.07477500000000002,0.04307432432432433,0.06311693430656935,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.11725786046511627,0.17496190476190476,0.25510000000000005,0.0,0.011013496932515339,0.23438095238095236,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.0036014012738853486,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.3000122448979592,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.062349097744360905,0.14313927272727273,0.07644615384615389,0.0,0.004588831168831162,0.0037389820359281455,0.28715193548387097,0.0019045161290322527,0.045151510791366915,0.3284,0.08576357142857144,0.20876666666666666,0.0,0.1953241379310345,0.12373438356164385,0.10447826086956524,0.025601225806451616,0.06334992125984253,0.17522857142857146,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.2301450158730159,0.016582499999999997,0.05517829787234043,0.051933802816901416,0.4223555555555556,0.11769263157894738,0.0,0.08073457943925233,0.1575832835820896,0.4234,0.0,0.05008923076923078,0.21296078431372548,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.020509999999999994,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.037136026490066226,0.034452244897959186,0.01736901098901098,0.04394074074074074,0.33936,0.026572173913043475,0.09207818181818182,0.012366315789473684,0.0,0.2328172972972973,0.0,0.24339999999999995,0.051151111111111126,0.10833882352941177,0.0,0.5769103041100077,0.0,0.09382040816326531,0.13494942528735632,0.0,0.47619,0.020077950310559003,0.0,0.0920711052631579,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.027360000000000016,0.1598923989218329
|
20 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 5:10 PM",Wukong,12,blue,0,20.65,6,4,2,2.0,0.57,0.89,153,7.4,2,Novachrono #Back,Cho'Gath,2025 #favo,Gragas,Jeyrus #Jey,Corki,Papadodi #1010,Lulu,S8DiamondDog #EUW,Dr. Mundo,Thomas Shelby #SOLOQ,Vi,222 #EUW3,Ekko,JEZUUU #0814,Caitlyn,Pablo #boda,Bard,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.26565699248120306,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.047416438356164395,0.026306037735849056,0.09492210526315792,0.06326307692307692,0.05881164179104479,0.5268909090909091,0.11773756097560978,0.0,0.0,0.04017540983606557,0.16317966386554625,0.10106666666666664,0.029900571428571436,0.0,0.2289739130434783,0.003849350649350647,0.0,0.0,0.0,0.2765234866828087,0.0,0.14092714285714286,0.0,1.3328031128538127,0.1868901198801199,0.6641238095238096,0.010135862068965523,0.01469999999999998,0.03372,0.2630727272727273,0.06052000000000001,0.1622820512820513,0.229725,0.0,0.11205000000000004,0.14353846153846153,0.04024166666666667,0.011228292682926832,0.2647714285714286,0.0,0.4821428571428572,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.59616,0.24814000000000003,0.29714117647058824,0.3417171428571429,0.2860472727272727,0.11056434782608697,0.38864556157635477,0.0,0.010921764705882351,0.0,0.05357519379844962,0.03376000000000001,0.09450433734939762,1.003148742554622,0.07477500000000002,0.04307432432432433,0.05680524087591242,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.0,0.22959000000000004,0.0,0.011013496932515339,0.23438095238095236,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.0036014012738853486,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.3000122448979592,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.062349097744360905,0.15904363636363636,0.07644615384615389,0.0,0.005098701298701292,0.0037389820359281455,0.28715193548387097,0.0021161290322580587,0.045151510791366915,0.3284,0.08576357142857144,0.20876666666666666,0.0,0.1953241379310345,0.12373438356164385,0.10447826086956524,0.028445806451612907,0.05701492913385828,0.17522857142857146,0.10274849999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.05517829787234043,0.051933802816901416,0.4223555555555556,0.11769263157894738,0.14125621621621626,0.0726611214953271,0.1575832835820896,0.4234,0.20696410256410258,0.05008923076923078,0.21296078431372548,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.033422423841059604,0.034452244897959186,0.01736901098901098,0.04394074074074074,0.33936,0.029524637681159416,0.1023090909090909,0.015457894736842104,0.0,0.0,0.6152000000000001,0.24339999999999995,0.051151111111111126,0.09750494117647059,0.0,0.5769103041100077,0.10258235294117646,0.09382040816326531,0.13494942528735632,0.04554782608695645,0.47619,0.020077950310559003,0.0,0.10230122807017544,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.027360000000000016,0.1598923989218329
|
21 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 4:30 PM",Elise,15,blue,1,24.22,10,3,6,5.33,0.62,1.08,194,8.0,2,SatØrius #EUW,Rumble,AbbedaggÆ #EUW,Jayce,Kite Machine #EUW,Jhin,Vento #TAIF,Bard,KOI Spooder #1352,K'Sante,NazgulsBlade #LOTR,Skarner,TwitchTVxKenzuke #EUW,Aurora,Unkn0wn #EUW11,Ezreal,Paolocannone #EUW,Karma,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0,0.11081290322580646,0.2951744360902256,0.20834545454545453,0.0,0.09126382978723406,0.0,0.004806060606060603,0.042674794520547954,0.026306037735849056,0.09492210526315792,0.06326307692307692,0.05881164179104479,0.0,0.11773756097560978,0.0,0.0,0.04017540983606557,0.14686169747899164,0.10106666666666664,0.03322285714285715,0.14820000000000003,0.2289739130434783,0.003849350649350647,0.07156923076923077,0.13602,0.0,0.24887113801452782,0.07624576576576578,0.14092714285714286,0.15120000000000003,1.3328031128538127,0.1682011078921079,0.0,0.010135862068965523,0.01469999999999998,0.03372,0.23676545454545456,0.06052000000000001,0.1622820512820513,0.229725,0.26472473867595814,0.11205000000000004,0.12918461538461537,0.04024166666666667,0.011228292682926832,0.23829428571428574,0.0,0.4821428571428572,0.05753221238938052,0.10685185185185185,1.347501172353689,0.09565714285714284,0.0,0.0,0.29714117647058824,0.0,0.2860472727272727,0.11056434782608697,0.0,0.0,0.010921764705882351,0.0,0.05357519379844962,0.03376000000000001,0.09450433734939762,1.003148742554622,0.06729750000000002,0.04307432432432433,0.06311693430656935,0.0,0.4914,0.14990625000000002,0.07992592592592594,0.0583936507936508,0.13028651162790697,0.17496190476190476,0.25510000000000005,0.0,0.011013496932515339,0.23438095238095236,0.0,0.025543125000000003,0.1459904761904762,0.032489655172413805,0.0036014012738853486,0.009892544378698227,0.1975873015873016,0.0,0.2898631578947368,0.27001102040816327,0.0879967441860465,0.0,0.3534280166435506,0.07253636363636363,0.023671140939597313,0.1825363636363636,0.05611418796992482,0.14313927272727273,0.07644615384615389,0.0,0.005098701298701292,0.0037389820359281455,0.28715193548387097,0.0021161290322580587,0.04063635971223022,0.3284,0.0771872142857143,0.20876666666666666,0.0,0.1953241379310345,0.0,0.10447826086956524,0.028445806451612907,0.06334992125984253,0.17522857142857146,0.11416499999999999,0.07556335877862597,0.0,0.07278833333333334,0.255716684303351,0.016582499999999997,0.049660468085106386,0.051933802816901416,0.0,0.11769263157894738,0.14125621621621626,0.08073457943925233,0.14182495522388064,0.4234,0.20696410256410258,0.05008923076923078,0.19166470588235293,0.20961333333333335,0.07481967213114754,0.07134774193548389,0.022788888888888883,0.15028718309859154,0.11175238095238094,0.11014339622641511,0.037136026490066226,0.034452244897959186,0.01736901098901098,0.04394074074074074,0.33936,0.026572173913043475,0.1023090909090909,0.015457894736842104,0.0,0.2328172972972973,0.6152000000000001,0.24339999999999995,0.05683456790123458,0.10833882352941177,0.0,0.5769103041100077,0.10258235294117646,0.09382040816326531,0.13494942528735632,0.04554782608695645,0.47619,0.020077950310559003,0.0,0.0920711052631579,0.0,0.08336561403508773,0.09734538461538463,0.05221247933884298,0.027360000000000016,0.1598923989218329
|
util/data/player_stats_merged_2025-01-10.csv
CHANGED
@@ -15,7 +15,7 @@ Agurin-EUW,euw,"Thu, Jan 9, 2025 6:10 PM",Wukong,10,red,0,16.35,5,5,0,1.00,0.83,
|
|
15 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 5:48 PM",Wukong,18,red,1,36.83,8,9,11,2.11,0.5,0.92,249,6.8,4,RaiderGO #2004,Camille,Desperate Nasus #EUW,Kayle,dehastee #ZMAJ,Corki,JeanJaqueDeRouen #jjdr,Leona,Vizícsacsi #EUW,Rumble,113 改善 #113,Ambessa,FEBIVEN #COACH,Orianna,BDSnuc #EUW,Kalista,HotGuy6Pack #MUTE,Poppy,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
16 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 5:00 PM",Wukong,13,red,0,24.22,1,4,2,0.75,0.6,0.59,188,7.8,4,RaiderGO #2004,Dr. Mundo,Desperate Nasus #EUW,Kayle,Godskin Apostle #EUW,Ezreal,MYTH Mahonix #BROCK,Lulu,Vizícsacsi #EUW,Rumble,HotGuy6Pack #MUTE,Poppy,QloTrGeSdV #EUW,Ahri,Kobbe #EUW,Ashe,Depressed Loser #ff15,Rakan,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
17 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 4:05 PM",Karma,12,blue,1,18.75,1,2,6,3.50,0.32,0.56,119,6.3,4,113 改善 #113,Viego,BDSnuc #EUW,Viktor,JEZUUU #0814,Kalista,Walid Georgey #EUW,Rell,G2 BrokenBlade #1918,Maokai,G2 SkewMond #3327,Wukong,Wesley Warren Jr #EUW,Akali,weakestsapling #CERES,Kog'Maw,Modern Life #EUW,Soraka,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
18 |
-
Agurin-EUW,euw,"Sun, Jan 5, 2025 6:25 PM",Jarvan IV,16,blue,1,26.68,9,2,19,14.00,0.67,1.08,183,6.9,2,skygge kriger #EUV,Rumble,성진우 #789,Vladimir,JEZUUU #0814,Yasuo,Papadodi #1010,Lulu,the inescapable #EUW,Maokai,edge of night #999,Kindred,Macaquiño #GAP,LeBlanc,
|
19 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 5:48 PM",Wukong,16,red,1,28.68,3,5,11,2.80,0.47,1.33,220,7.7,2,S8DiamondDog #EUW,Yasuo,Owen Mcdade #BLACK,Fiora,AllYouHadToDoWas #Stay,Karthus,Depressed Loser #ff15,LeBlanc,Drali #Drali,K'Sante,Kiki #COYG,Viego,222 #EUW3,Syndra,JEZUUU #0814,Xayah,grisha turbina #ADHD,Sona,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
20 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 5:10 PM",Wukong,12,blue,0,20.65,6,4,2,2.00,0.57,0.89,153,7.4,2,Novachrono #Back,Cho'Gath,2025 #favo,Gragas,Jeyrus #Jey,Corki,Papadodi #1010,Lulu,S8DiamondDog #EUW,Dr. Mundo,Thomas Shelby #SOLOQ,Vi,222 #EUW3,Ekko,JEZUUU #0814,Caitlyn,Pablo #boda,Bard,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
21 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 4:30 PM",Elise,15,blue,1,24.22,10,3,6,5.33,0.62,1.08,194,8.0,2,SatØrius #EUW,Rumble,AbbedaggÆ #EUW,Jayce,Kite Machine #EUW,Jhin,Vento #TAIF,Bard,KOI Spooder #1352,K'Sante,NazgulsBlade #LOTR,Skarner,TwitchTVxKenzuke #EUW,Aurora,Unkn0wn #EUW11,Ezreal,Paolocannone #EUW,Karma,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
|
|
15 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 5:48 PM",Wukong,18,red,1,36.83,8,9,11,2.11,0.5,0.92,249,6.8,4,RaiderGO #2004,Camille,Desperate Nasus #EUW,Kayle,dehastee #ZMAJ,Corki,JeanJaqueDeRouen #jjdr,Leona,Vizícsacsi #EUW,Rumble,113 改善 #113,Ambessa,FEBIVEN #COACH,Orianna,BDSnuc #EUW,Kalista,HotGuy6Pack #MUTE,Poppy,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
16 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 5:00 PM",Wukong,13,red,0,24.22,1,4,2,0.75,0.6,0.59,188,7.8,4,RaiderGO #2004,Dr. Mundo,Desperate Nasus #EUW,Kayle,Godskin Apostle #EUW,Ezreal,MYTH Mahonix #BROCK,Lulu,Vizícsacsi #EUW,Rumble,HotGuy6Pack #MUTE,Poppy,QloTrGeSdV #EUW,Ahri,Kobbe #EUW,Ashe,Depressed Loser #ff15,Rakan,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
17 |
Agurin-EUW,euw,"Thu, Jan 9, 2025 4:05 PM",Karma,12,blue,1,18.75,1,2,6,3.50,0.32,0.56,119,6.3,4,113 改善 #113,Viego,BDSnuc #EUW,Viktor,JEZUUU #0814,Kalista,Walid Georgey #EUW,Rell,G2 BrokenBlade #1918,Maokai,G2 SkewMond #3327,Wukong,Wesley Warren Jr #EUW,Akali,weakestsapling #CERES,Kog'Maw,Modern Life #EUW,Soraka,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
18 |
+
Agurin-EUW,euw,"Sun, Jan 5, 2025 6:25 PM",Jarvan IV,16,blue,1,26.68,9,2,19,14.00,0.67,1.08,183,6.9,2,skygge kriger #EUV,Rumble,성진우 #789,Vladimir,JEZUUU #0814,Yasuo,Papadodi #1010,Lulu,the inescapable #EUW,Maokai,edge of night #999,Kindred,Macaquiño #GAP,LeBlanc,Insecticides #wwwsp,Corki,Walid Georgey #EUW,Rell,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
19 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 5:48 PM",Wukong,16,red,1,28.68,3,5,11,2.80,0.47,1.33,220,7.7,2,S8DiamondDog #EUW,Yasuo,Owen Mcdade #BLACK,Fiora,AllYouHadToDoWas #Stay,Karthus,Depressed Loser #ff15,LeBlanc,Drali #Drali,K'Sante,Kiki #COYG,Viego,222 #EUW3,Syndra,JEZUUU #0814,Xayah,grisha turbina #ADHD,Sona,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
20 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 5:10 PM",Wukong,12,blue,0,20.65,6,4,2,2.00,0.57,0.89,153,7.4,2,Novachrono #Back,Cho'Gath,2025 #favo,Gragas,Jeyrus #Jey,Corki,Papadodi #1010,Lulu,S8DiamondDog #EUW,Dr. Mundo,Thomas Shelby #SOLOQ,Vi,222 #EUW3,Ekko,JEZUUU #0814,Caitlyn,Pablo #boda,Bard,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
21 |
Agurin-EUW,euw,"Sun, Jan 5, 2025 4:30 PM",Elise,15,blue,1,24.22,10,3,6,5.33,0.62,1.08,194,8.0,2,SatØrius #EUW,Rumble,AbbedaggÆ #EUW,Jayce,Kite Machine #EUW,Jhin,Vento #TAIF,Bard,KOI Spooder #1352,K'Sante,NazgulsBlade #LOTR,Skarner,TwitchTVxKenzuke #EUW,Aurora,Unkn0wn #EUW11,Ezreal,Paolocannone #EUW,Karma,20,11,9,0.55,5.8,4.5,7.0,2.84,0.56,Wukong,0.5,5,5,2.06,Elise,0.67,4,2,3.32,Jarvan IV,0.5,1,1,8.67,0.05,0.95,0.0,0.0,0.0,JUNGLE,TOP,0.95,0.05,Wukong,192.1,7.4,1.98,5.4,5.0,4.5,0.5,8,Elise,228.2,7.8,3.05,6.8,4.4,6.6,0.6,5,Karma,119,6.3,3.5,1.0,2.0,6.0,1.0,1,Kha'Zix,244,7,1.38,3.0,8.0,8.0,0.0,1,Jarvan IV,288,7.2,6,6.0,4.0,18.0,0.0,1,,0,0,0,0,0,0,0.0,0,,0,0,0,0,0,0,0.0,0,Wukong,25,14,11,0.56,Elise,12,8,4,0.67,Jarvan IV,8,5,3,0.63,Elise,171,Kha'Zix,162,Jarvan IV,129,Shyvana,51,Nocturne,46,Evelynn,40,Wukong,29,Ezreal,25,Brand,25,Diana,16,Karma,15,Gragas,13,Zyra,12,Neeko,12,Ahri,10,,0
|
util/data/weekly_meta_stats.csv
CHANGED
@@ -1,170 +1,170 @@
|
|
1 |
rank,champion,games,KDA,WR,pick,ban,cs,gold
|
2 |
-
1,Viego,
|
3 |
-
2,Viktor,
|
4 |
-
3,Corki,
|
5 |
-
4,Jayce,
|
6 |
-
5,Lee Sin,
|
7 |
-
6,Ezreal,
|
8 |
-
7,K'Sante,
|
9 |
-
8,Yone,
|
10 |
-
9,Jhin,
|
11 |
-
10,Sylas,
|
12 |
-
11,Aurora,
|
13 |
-
12,Ambessa,392,2.14,48.72,15.
|
14 |
-
13,Ashe,
|
15 |
-
14,Irelia,
|
16 |
-
15,
|
17 |
-
16,
|
18 |
-
17,
|
19 |
-
18,
|
20 |
-
19,Nautilus,311,2.67,52.41,12.
|
21 |
-
20,Caitlyn,303,2.36,54.46,11.
|
22 |
-
21,Lulu,298,3.5,53.36,11.
|
23 |
-
22,Akali,
|
24 |
-
23,
|
25 |
-
24,
|
26 |
-
25,
|
27 |
-
26,Poppy,
|
28 |
-
27,
|
29 |
-
28,
|
30 |
-
29,Karma,
|
31 |
-
30,Bard,
|
32 |
-
31,Rakan,
|
33 |
-
32,Gnar,
|
34 |
-
33,
|
35 |
-
34,
|
36 |
-
35,Jax,
|
37 |
-
36,Pyke,
|
38 |
-
37,Vi,213,3.05,51.17,8.
|
39 |
-
38,Ahri,
|
40 |
-
39,
|
41 |
-
40,
|
42 |
-
41,Gragas,201,2.48,49.25,7.
|
43 |
-
42,Maokai,
|
44 |
-
43,Nidalee,
|
45 |
-
44,Galio,194,2.83,52.06,7.
|
46 |
-
45,Zed,188,2.79,54.26,
|
47 |
-
46,
|
48 |
-
47,
|
49 |
-
48,Kindred,187,2.64,4.92,7.
|
50 |
-
49,Neeko,
|
51 |
-
50,
|
52 |
-
51,
|
53 |
-
52,Elise,
|
54 |
-
53,Zyra,169,3.32,5.68,6.
|
55 |
-
54,Janna,167,3.89,52.69,
|
56 |
-
55,
|
57 |
-
56,
|
58 |
-
57,Zac,154,3.26,49.35,6.
|
59 |
-
58,Riven,
|
60 |
-
59,Diana,150,2.74,0.6,5.
|
61 |
-
60,
|
62 |
-
61,
|
63 |
-
62,
|
64 |
-
63,
|
65 |
-
64,Leona,145,2.44,48.97,5.
|
66 |
-
65,Gwen,145,1.9,46.21,5.
|
67 |
-
66,Pantheon,145,2.13,42.07,5.
|
68 |
-
67,Swain,143,3,55.24,5.
|
69 |
-
68,Kha'Zix,141,2.75,41.13,5.
|
70 |
-
69,Kalista,
|
71 |
-
70,Senna,
|
72 |
-
71,Tristana,135,2.97,60.74,5.
|
73 |
-
72,Thresh,
|
74 |
-
73,Rumble,
|
75 |
74,Sona,128,2.98,46.88,5.17,1.23,28.09,7720
|
76 |
-
75,Fiora,127,2.08,6.22,
|
77 |
-
76,Smolder,121,2.77,54.55,4.
|
78 |
-
77,Qiyana,119,2.5,55.46,
|
79 |
-
78,Garen,118,2.19,49.15,4.
|
80 |
-
79,LeBlanc,116,2.59,44.83,4.
|
81 |
-
80,
|
82 |
-
81,
|
83 |
-
82,Azir,113,2.55,61.06,4.
|
84 |
-
83,Kennen,111,2.1,52.25,4.
|
85 |
-
84,
|
86 |
-
85,
|
87 |
-
86,Lucian,
|
88 |
-
87,Xin Zhao,100,2.99,0.53,3.
|
89 |
-
88,Nunu & Willump,100,2.36,0.42,3.
|
90 |
-
89,Karthus,97,2.85,62.89,3.
|
91 |
-
90,Kayn,94,2.62,56.38,
|
92 |
-
91,Udyr,94,2.96,55.32,
|
93 |
-
92,Ryze,94,2.44,54.26,
|
94 |
-
93,Teemo,94,2.42,52.13,
|
95 |
-
94,
|
96 |
-
95,
|
97 |
-
96,
|
98 |
-
97,
|
99 |
-
98,Xerath,89,3.53,51.69,
|
100 |
-
99,Katarina,
|
101 |
-
100,Zoe,87,2.73,52.87,3.
|
102 |
-
101,Darius,85,2.02,52.94,3.
|
103 |
-
102,Xayah,85,2.21,44.71,3.
|
104 |
-
103,Nocturne,85,3.17,42.35,3.
|
105 |
-
104,Ziggs,84,2.84,45.24,3.
|
106 |
-
105,Trundle,83,1.56,44.58,3.
|
107 |
-
106,Tryndamere,82,2.06,57.32,3.
|
108 |
-
107,Soraka,82,3.32,52.44,3.
|
109 |
-
108,Lillia,
|
110 |
-
109,Rengar,78,2.59,0.5,3.
|
111 |
-
110,
|
112 |
-
111,
|
113 |
-
112,Renata Glasc,74,3.07,5.27,2.
|
114 |
-
113,Ivern,73,5.52,57.53,2.
|
115 |
114,Zeri,73,2.54,42.47,2.95,0.28,226.51,12038
|
116 |
-
115,Shaco,72,2.59,51.39,2.
|
117 |
-
116,Fiddlesticks,70,2.58,45.71,2.
|
118 |
-
117,Tahm Kench,
|
119 |
-
118,
|
120 |
-
119,
|
121 |
-
120,
|
122 |
-
121,Zilean,64,2.99,43.75,2.
|
123 |
-
122,Taric,62,2.61,48.39,2.
|
124 |
-
123,Master Yi,60,2.56,53.33,2.
|
125 |
-
124,Samira,59,2.1,54.24,2.
|
126 |
-
125,Gangplank,58,2.16,5.69,2.
|
127 |
-
126,Lissandra,58,2.61,0.5,2.
|
128 |
-
127,Sejuani,58,3.01,44.83,2.
|
129 |
-
128,Milio,58,3.96,44.83,2.
|
130 |
-
129,Kayle,57,2.32,52.63,2.
|
131 |
-
130,Cho'Gath,56,2.58,57.14,
|
132 |
-
131,
|
133 |
-
132,
|
134 |
-
133,
|
135 |
134,Aurelion Sol,54,3.62,57.41,2.13,0.52,212.65,11800
|
136 |
-
135,Urgot,54,1.93,4.63,2.13,1.
|
137 |
-
136,Kassadin,51,2.79,52.94,2.
|
138 |
137,Kog'Maw,51,2.27,35.29,2.06,0.12,197.76,11430
|
139 |
-
138,Vayne,48,2.17,47.92,
|
140 |
-
139,Rek'Sai,47,4,55.32,1.
|
141 |
-
140,
|
142 |
-
141,
|
143 |
-
142,Sivir,45,2.55,53.33,1.
|
144 |
-
143,Evelynn,
|
145 |
-
144,
|
146 |
-
145,
|
147 |
146,Anivia,40,2.95,0.55,1.58,0.18,183.07,10705
|
148 |
147,Twitch,37,2.75,45.95,1.46,0.69,151.89,11294
|
149 |
-
148,Kled,36,2.31,58.33,1.
|
150 |
-
149,Olaf,36,1.94,47.22,1.42,1.
|
151 |
-
150,Fizz,36,2.24,38.89,1.42,0.
|
152 |
151,Twisted Fate,34,2.91,58.82,1.34,0.33,162.15,11002
|
153 |
152,Vel'Koz,33,3.05,57.58,0.13,0.38,136.52,10631
|
154 |
153,Brand,32,2.53,53.13,1.26,0.33,142.31,9632
|
155 |
154,Cassiopeia,32,2.04,46.88,1.26,2.06,188.53,10504
|
156 |
-
155,Rammus,
|
157 |
-
156,
|
158 |
-
157,
|
159 |
-
158,Vex,25,2.75,0.6,0.
|
160 |
-
159,Annie,25,2.61,0.52,0.
|
161 |
160,Singed,24,2.47,0.5,0.95,0.78,160.63,9949
|
162 |
-
161,Yorick,24,1.06,29.17,0.
|
163 |
162,Shyvana,22,3.18,45.45,0.89,0.17,204.95,12062
|
164 |
163,Malzahar,21,1.97,3.81,0.83,0.94,206.86,10540
|
165 |
164,Heimerdinger,21,1.87,28.57,0.83,0.83,169.62,8925
|
166 |
165,Amumu,19,1.68,36.84,0.75,1.11,130.21,9312
|
167 |
166,Nasus,14,1.8,0.5,0.55,1.97,172.43,10215
|
168 |
-
167,Quinn,13,1.66,46.15,0.51,0.
|
169 |
168,Illaoi,13,1.39,23.08,0.51,1.19,217.69,11962
|
170 |
169,Naafiri,11,1.88,36.36,0.43,0.24,177.09,10296
|
|
|
1 |
rank,champion,games,KDA,WR,pick,ban,cs,gold
|
2 |
+
1,Viego,692,3.24,52.75,27.25,21.99,178.06,11673
|
3 |
+
2,Viktor,685,2.52,52.55,26.98,37.78,206.95,11309
|
4 |
+
3,Corki,557,2.64,52.06,21.94,12.95,214.66,11842
|
5 |
+
4,Jayce,540,2.1,49.26,21.27,5.49,191.25,10776
|
6 |
+
5,Lee Sin,480,3.37,52.92,1.89,9.65,161.55,11218
|
7 |
+
6,Ezreal,478,2.58,46.65,18.83,7.92,199.7,11052
|
8 |
+
7,K'Sante,446,2.52,53.59,17.56,12.67,182.9,10178
|
9 |
+
8,Yone,439,2.04,48.97,17.29,4.56,212.54,11481
|
10 |
+
9,Jhin,421,3.21,51.78,16.58,1.03,200.56,12034
|
11 |
+
10,Sylas,420,2.38,53.33,16.54,8.27,152.14,10356
|
12 |
+
11,Aurora,410,2.72,4.61,16.15,24.08,191.49,10972
|
13 |
+
12,Ambessa,392,2.14,48.72,15.44,29.17,181.05,10515
|
14 |
+
13,Ashe,368,2.56,50.27,14.49,22.28,195.71,10906
|
15 |
+
14,Irelia,363,1.54,47.66,14.29,1.42,215.97,12094
|
16 |
+
15,Graves,345,3.05,50.72,13.59,1.85,196.34,12357
|
17 |
+
16,Varus,344,2.46,51.74,13.55,5.26,198.47,11379
|
18 |
+
17,Skarner,339,3.79,53.39,13.35,26.64,139.74,9865
|
19 |
+
18,Wukong,339,2.85,51.62,13.35,8.95,181.38,11593
|
20 |
+
19,Nautilus,311,2.67,52.41,12.25,7.38,24.97,7266
|
21 |
+
20,Caitlyn,303,2.36,54.46,11.93,13.92,208.85,11935
|
22 |
+
21,Lulu,298,3.5,53.36,11.74,12.24,31.63,7464
|
23 |
+
22,Akali,289,2.61,48.44,11.38,9.81,183.08,11064
|
24 |
+
23,Renekton,282,2.17,51.42,1.11,0.93,197.8,11088
|
25 |
+
24,Rell,281,3.36,53.38,11.07,3.04,23.3,7454
|
26 |
+
25,Yasuo,281,1.75,5.16,11.07,17.52,211.52,11593
|
27 |
+
26,Poppy,275,2.42,53.45,10.83,15.42,57.08,8232
|
28 |
+
27,Hwei,272,2.54,44.85,10.71,5.79,188.3,10559
|
29 |
+
28,Talon,271,2.8,53.87,10.67,7.37,197.88,11961
|
30 |
+
29,Karma,266,3.09,54.14,10.47,3.32,45.06,8094
|
31 |
+
30,Bard,258,3.64,49.61,10.16,1.17,26.27,7617
|
32 |
+
31,Rakan,258,3.26,4.69,10.16,1.06,27.88,7442
|
33 |
+
32,Gnar,241,2.06,45.64,9.49,5.36,194.84,11059
|
34 |
+
33,Jinx,240,2.55,49.58,9.45,1.85,200.32,11155
|
35 |
+
34,Kai'Sa,240,2.6,43.75,9.45,0.89,203.2,11681
|
36 |
+
35,Jax,234,1.94,55.13,9.22,11.48,180.87,10892
|
37 |
+
36,Pyke,230,2.41,4.87,9.06,44.12,30.9,8753
|
38 |
+
37,Vi,213,3.05,51.17,8.39,1.24,163,10439
|
39 |
+
38,Ahri,209,2.94,50.72,8.23,2.65,191.99,10707
|
40 |
+
39,Lux,204,3.11,53.92,8.03,0.14,141.97,10037
|
41 |
+
40,Syndra,203,2.59,51.23,7.99,0.39,206.56,11447
|
42 |
+
41,Gragas,201,2.48,49.25,7.91,4.56,166.75,10045
|
43 |
+
42,Maokai,201,2.41,48.26,7.92,2.32,106.6,8407
|
44 |
+
43,Nidalee,200,3.77,5.55,7.88,8.77,173.09,11411
|
45 |
+
44,Galio,194,2.83,52.06,7.64,4.51,166.91,9825
|
46 |
+
45,Zed,188,2.79,54.26,0.74,14.36,199.98,12528
|
47 |
+
46,Jarvan IV,188,3.8,50.53,0.74,1.56,161.2,10718
|
48 |
+
47,Camille,187,2.08,52.94,7.36,1.66,158.57,10943
|
49 |
+
48,Kindred,187,2.64,4.92,7.36,8.94,174.36,11567
|
50 |
+
49,Neeko,186,2.57,48.39,7.33,0.14,60.62,8367
|
51 |
+
50,Taliyah,179,2.73,5.14,7.05,1.83,189.08,11083
|
52 |
+
51,Ekko,179,3.16,49.72,7.05,2.04,198.59,11975
|
53 |
+
52,Elise,178,2.54,47.19,7.01,9.72,106.4,10505
|
54 |
+
53,Zyra,169,3.32,5.68,6.66,6.37,197.69,11782
|
55 |
+
54,Janna,167,3.89,52.69,6.58,0.42,23.57,7468
|
56 |
+
55,Draven,159,2.15,50.31,6.26,3.24,195.09,12916
|
57 |
+
56,Orianna,158,3.26,58.86,6.22,0.94,194.28,10518
|
58 |
+
57,Zac,154,3.26,49.35,6.07,4.77,156.18,10418
|
59 |
+
58,Riven,152,2.43,56.58,5.99,0.82,202.16,11602
|
60 |
+
59,Diana,150,2.74,0.6,5.91,1.26,197.83,11927
|
61 |
+
60,Nami,149,3.93,48.32,5.87,0.41,23.1,7602
|
62 |
+
61,Braum,148,3.26,56.76,5.83,5.34,23.49,7164
|
63 |
+
62,Blitzcrank,148,2.64,0.5,5.83,8.15,23.14,7354
|
64 |
+
63,Aatrox,147,2.29,57.14,5.79,4.76,174.56,10214
|
65 |
+
64,Leona,145,2.44,48.97,5.71,1.84,25.17,7321
|
66 |
+
65,Gwen,145,1.9,46.21,5.71,2.98,202.86,11986
|
67 |
+
66,Pantheon,145,2.13,42.07,5.71,1.31,140.9,10073
|
68 |
+
67,Swain,143,3,55.24,5.63,1.26,181.74,10857
|
69 |
+
68,Kha'Zix,141,2.75,41.13,5.55,0.43,169.07,11016
|
70 |
+
69,Kalista,140,2.41,42.86,5.51,3.58,206.63,12479
|
71 |
+
70,Senna,138,2.72,5.29,5.43,0.84,33.67,8437
|
72 |
+
71,Tristana,135,2.97,60.74,5.32,0.63,200.69,12561
|
73 |
+
72,Thresh,130,3.18,54.62,5.12,3.32,26.64,7403
|
74 |
+
73,Rumble,129,2.39,51.94,5.08,0.17,183.75,10584
|
75 |
74,Sona,128,2.98,46.88,5.17,1.23,28.09,7720
|
76 |
+
75,Fiora,127,2.08,6.22,0.05,0.81,204.98,12151
|
77 |
+
76,Smolder,121,2.77,54.55,4.77,1.13,219.92,12021
|
78 |
+
77,Qiyana,119,2.5,55.46,4.69,3.84,176.61,11531
|
79 |
+
78,Garen,118,2.19,49.15,4.65,1.49,216.67,12256
|
80 |
+
79,LeBlanc,116,2.59,44.83,4.57,23.65,159.41,10312
|
81 |
+
80,Vladimir,116,2.4,4.31,4.57,5.22,201.46,10864
|
82 |
+
81,Seraphine,115,2.91,46.09,4.53,1.72,101.1,8795
|
83 |
+
82,Azir,113,2.55,61.06,4.45,1.37,218.57,11839
|
84 |
+
83,Kennen,111,2.1,52.25,4.37,2.52,184.78,10884
|
85 |
+
84,Volibear,111,2.37,51.35,4.37,1.69,173.57,10401
|
86 |
+
85,Miss Fortune,111,2.73,49.55,4.37,0.48,212.71,12226
|
87 |
+
86,Lucian,108,2.63,54.63,4.25,0.26,206.78,11885
|
88 |
+
87,Xin Zhao,100,2.99,0.53,3.94,0.26,164.04,10835
|
89 |
+
88,Nunu & Willump,100,2.36,0.42,3.94,3.38,143.31,9155
|
90 |
+
89,Karthus,97,2.85,62.89,3.82,14.11,201.16,12700
|
91 |
+
90,Kayn,94,2.62,56.38,0.37,4.71,173.37,11197
|
92 |
+
91,Udyr,94,2.96,55.32,0.37,5.63,185.2,10885
|
93 |
+
92,Ryze,94,2.44,54.26,0.37,0.78,211.19,11382
|
94 |
+
93,Teemo,94,2.42,52.13,0.37,2.63,207.47,11895
|
95 |
+
94,Aphelios,94,2.13,43.62,0.37,0.59,201.31,11578
|
96 |
+
95,Alistar,93,2.89,51.61,3.66,1.96,23.33,7047
|
97 |
+
96,Bel'Veth,93,2.76,48.39,3.66,10.77,177.84,11260
|
98 |
+
97,Hecarim,92,2.96,51.09,3.62,4.46,189.28,11250
|
99 |
+
98,Xerath,89,3.53,51.69,0.35,1.54,160.9,10778
|
100 |
+
99,Katarina,89,2.67,49.44,3.51,6.32,182.03,11684
|
101 |
+
100,Zoe,87,2.73,52.87,3.43,4.57,126.1,9886
|
102 |
+
101,Darius,85,2.02,52.94,3.35,8.69,197.94,11667
|
103 |
+
102,Xayah,85,2.21,44.71,3.35,0.26,229.39,12276
|
104 |
+
103,Nocturne,85,3.17,42.35,3.35,1.43,172.88,11123
|
105 |
+
104,Ziggs,84,2.84,45.24,3.31,0.48,215.73,11690
|
106 |
+
105,Trundle,83,1.56,44.58,3.27,0.22,195.75,11611
|
107 |
+
106,Tryndamere,82,2.06,57.32,3.23,0.24,229.11,12839
|
108 |
+
107,Soraka,82,3.32,52.44,3.23,1.71,30.96,7270
|
109 |
+
108,Lillia,79,3.73,58.23,3.11,1.46,198.04,11878
|
110 |
+
109,Rengar,78,2.59,0.5,3.07,2.18,179.04,11705
|
111 |
+
110,Dr. Mundo,78,2.33,42.31,3.07,0.91,195.36,10601
|
112 |
+
111,Veigar,77,2.63,50.65,3.03,0.28,194.95,11887
|
113 |
+
112,Renata Glasc,74,3.07,5.27,2.91,0.43,27.78,7277
|
114 |
+
113,Ivern,73,5.52,57.53,2.88,1.73,146.96,10355
|
115 |
114,Zeri,73,2.54,42.47,2.95,0.28,226.51,12038
|
116 |
+
115,Shaco,72,2.59,51.39,2.84,9.23,126.57,10556
|
117 |
+
116,Fiddlesticks,70,2.58,45.71,2.76,4.34,75.01,9324
|
118 |
+
117,Tahm Kench,68,2.76,58.82,2.68,1.93,61.46,8450
|
119 |
+
118,Shen,67,2.66,47.76,2.64,0.35,123.66,8274
|
120 |
+
119,Malphite,67,2.18,46.27,2.64,6.17,160.87,9457
|
121 |
+
120,Warwick,67,1.87,4.03,2.64,8.97,168.81,11055
|
122 |
+
121,Zilean,64,2.99,43.75,2.52,1.42,72.88,7850
|
123 |
+
122,Taric,62,2.61,48.39,2.44,0.61,35.87,7079
|
124 |
+
123,Master Yi,60,2.56,53.33,2.36,7.68,177.03,12129
|
125 |
+
124,Samira,59,2.1,54.24,2.32,2.56,182.32,12057
|
126 |
+
125,Gangplank,58,2.16,5.69,2.28,0.52,201.74,12525
|
127 |
+
126,Lissandra,58,2.61,0.5,2.28,1.14,187.67,10883
|
128 |
+
127,Sejuani,58,3.01,44.83,2.28,0.11,142,9028
|
129 |
+
128,Milio,58,3.96,44.83,2.28,2.65,25.17,7270
|
130 |
+
129,Kayle,57,2.32,52.63,2.24,1.32,234.33,12906
|
131 |
+
130,Cho'Gath,56,2.58,57.14,0.22,0.35,194.64,11118
|
132 |
+
131,Ornn,56,2.56,0.5,2.21,0.19,168.36,9466
|
133 |
+
132,Sett,56,1.68,48.21,2.21,0.16,168.39,10639
|
134 |
+
133,Akshan,55,2.77,54.55,2.17,5.03,185.6,12299
|
135 |
134,Aurelion Sol,54,3.62,57.41,2.13,0.52,212.65,11800
|
136 |
+
135,Urgot,54,1.93,4.63,2.13,1.58,190.7,11884
|
137 |
+
136,Kassadin,51,2.79,52.94,2.01,2.99,189.14,11397
|
138 |
137,Kog'Maw,51,2.27,35.29,2.06,0.12,197.76,11430
|
139 |
+
138,Vayne,48,2.17,47.92,1.89,0.19,187.02,11136
|
140 |
+
139,Rek'Sai,47,4,55.32,1.85,0.65,178.81,11968
|
141 |
+
140,Sion,47,1.63,46.81,1.85,0.17,192.57,11081
|
142 |
+
141,Briar,46,2.36,0.5,1.81,1.39,152.26,11701
|
143 |
+
142,Sivir,45,2.55,53.33,1.77,0.28,214.29,11506
|
144 |
+
143,Evelynn,42,3.08,59.52,1.65,3.32,160.74,10560
|
145 |
+
144,Mordekaiser,41,2.17,63.41,1.61,1.19,174.1,10564
|
146 |
+
145,Yuumi,41,3.84,4.39,1.61,5.33,14.41,6592
|
147 |
146,Anivia,40,2.95,0.55,1.58,0.18,183.07,10705
|
148 |
147,Twitch,37,2.75,45.95,1.46,0.69,151.89,11294
|
149 |
+
148,Kled,36,2.31,58.33,1.42,0.03,182.22,11719
|
150 |
+
149,Olaf,36,1.94,47.22,1.42,1.34,182.08,10686
|
151 |
+
150,Fizz,36,2.24,38.89,1.42,0.67,155.03,10824
|
152 |
151,Twisted Fate,34,2.91,58.82,1.34,0.33,162.15,11002
|
153 |
152,Vel'Koz,33,3.05,57.58,0.13,0.38,136.52,10631
|
154 |
153,Brand,32,2.53,53.13,1.26,0.33,142.31,9632
|
155 |
154,Cassiopeia,32,2.04,46.88,1.26,2.06,188.53,10504
|
156 |
+
155,Rammus,32,3.64,40.63,1.26,2.06,180.09,10911
|
157 |
+
156,Morgana,31,2.45,38.71,1.22,0.19,83.26,8494
|
158 |
+
157,Nilah,30,2.46,56.67,1.18,3.75,206.9,13259
|
159 |
+
158,Vex,25,2.75,0.6,0.98,1.89,173.32,10678
|
160 |
+
159,Annie,25,2.61,0.52,0.98,0.31,157.32,10261
|
161 |
160,Singed,24,2.47,0.5,0.95,0.78,160.63,9949
|
162 |
+
161,Yorick,24,1.06,29.17,0.95,0.53,176.13,9654
|
163 |
162,Shyvana,22,3.18,45.45,0.89,0.17,204.95,12062
|
164 |
163,Malzahar,21,1.97,3.81,0.83,0.94,206.86,10540
|
165 |
164,Heimerdinger,21,1.87,28.57,0.83,0.83,169.62,8925
|
166 |
165,Amumu,19,1.68,36.84,0.75,1.11,130.21,9312
|
167 |
166,Nasus,14,1.8,0.5,0.55,1.97,172.43,10215
|
168 |
+
167,Quinn,13,1.66,46.15,0.51,0.07,148.85,10760
|
169 |
168,Illaoi,13,1.39,23.08,0.51,1.19,217.69,11962
|
170 |
169,Naafiri,11,1.88,36.36,0.43,0.24,177.09,10296
|