text stringlengths 1 2.83M | id stringlengths 16 152 | metadata dict | __index_level_0__ int64 0 949 |
|---|---|---|---|
import * as hanbi from 'hanbi';
import { expect } from 'chai';
import portfinder from 'portfinder';
import path from 'path';
import { BrowserLauncher } from '../../../src/browser-launcher/BrowserLauncher.js';
import { TestRunnerCoreConfig } from '../../../src/config/TestRunnerCoreConfig.js';
import { TestRunner } from '../../../src/runner/TestRunner.js';
import { Logger } from '../../../src/logger/Logger.js';
import { SESSION_STATUS } from '../../../src/test-session/TestSessionStatus.js';
import { TestRunnerGroupConfig } from '../../../src/index.js';
interface BrowserStubs {
stop: hanbi.Stub<Exclude<BrowserLauncher['stop'], undefined>>;
startDebugSession: hanbi.Stub<BrowserLauncher['startDebugSession']>;
startSession: hanbi.Stub<BrowserLauncher['startSession']>;
stopSession: hanbi.Stub<BrowserLauncher['stopSession']>;
isActive: hanbi.Stub<BrowserLauncher['isActive']>;
getBrowserUrl: hanbi.Stub<BrowserLauncher['getBrowserUrl']>;
}
function createBrowserStub(): [BrowserStubs, BrowserLauncher] {
const spies = {
stop: hanbi.spy(),
getBrowserUrl: hanbi.spy(),
startDebugSession: hanbi.spy(),
startSession: hanbi.spy(),
stopSession: hanbi.spy(),
isActive: hanbi.spy(),
};
spies.stop.returns(Promise.resolve());
spies.getBrowserUrl.returns('');
spies.startDebugSession.returns(Promise.resolve());
spies.startSession.returns(Promise.resolve());
spies.stopSession.returns(Promise.resolve({}));
spies.isActive.returns(true);
return [
spies,
{
name: 'myBrowser',
type: 'myBrowser',
stop: spies.stop.handler,
getBrowserUrl: spies.getBrowserUrl.handler,
startDebugSession: spies.startDebugSession.handler,
startSession: spies.startSession.handler,
stopSession: spies.stopSession.handler,
isActive: spies.isActive.handler,
},
];
}
const logger: Logger = {
...console,
debug() {
//
},
logSyntaxError(error) {
console.log(error);
},
};
async function createTestRunner(
extraConfig: Partial<TestRunnerCoreConfig> = {},
groupConfigs?: TestRunnerGroupConfig[],
) {
const port = await portfinder.getPortPromise({
port: 9000 + Math.floor(Math.random() * 1000),
});
const [browserStubs, browser] = createBrowserStub();
console.log(path.resolve(__dirname, '..', '..', '..', '..', '..'));
const config: TestRunnerCoreConfig = {
files: [path.resolve(__dirname, '..', '..', 'fixtures', 'a.test.js')],
reporters: [],
logger,
rootDir: path.resolve(__dirname, '..', '..', '..', '..', '..'),
testFramework: { path: 'my-framework.js' },
concurrentBrowsers: 2,
concurrency: 10,
browsers: [browser],
watch: false,
protocol: 'http:',
hostname: 'localhost',
browserStartTimeout: 1000,
testsStartTimeout: 1000,
testsFinishTimeout: 1000,
coverageConfig: {
report: false,
reportDir: process.cwd(),
},
port,
...extraConfig,
};
const runner = new TestRunner(config, groupConfigs);
return { runner, browser, browserStubs };
}
describe('TestRunner', function () {
it('can run a single test file', async () => {
const { runner, browserStubs } = await createTestRunner();
await runner.start();
expect(runner.started).to.equal(true, 'runner is started');
expect(browserStubs.startSession.callCount).to.equal(1);
const sessions = Array.from(runner.sessions.all());
expect(sessions.length).to.equal(1, 'one session is created');
await runner.stop();
});
it('closes test runner for a successful test', async () => {
const { runner, browserStubs } = await createTestRunner();
let resolveStopped: (passed: boolean) => void;
const stopped = new Promise<boolean>(resolve => {
resolveStopped = resolve;
});
runner.on('finished', () => {
runner.stop();
});
runner.on('stopped', passed => {
resolveStopped(passed);
});
await runner.start();
const sessions = Array.from(runner.sessions.all());
runner.sessions.updateStatus({ ...sessions[0], passed: true }, SESSION_STATUS.TEST_FINISHED);
const passed = await stopped;
expect(browserStubs.stopSession.callCount).to.equal(1, 'browser session is stopped');
expect(browserStubs.stop.callCount).to.equal(1, 'browser is stopped');
expect(passed).to.equal(true, 'test runner quits with true');
});
it('closes test runner for a failed test', async () => {
const { runner, browserStubs } = await createTestRunner();
let resolveStopped: (passed: boolean) => void;
const stopped = new Promise<boolean>(resolve => {
resolveStopped = resolve;
});
runner.on('finished', () => {
runner.stop();
});
runner.on('stopped', passed => {
resolveStopped(passed);
});
await runner.start();
const sessions = Array.from(runner.sessions.all());
runner.sessions.updateStatus({ ...sessions[0], passed: false }, SESSION_STATUS.TEST_FINISHED);
const passed = await stopped;
expect(browserStubs.stopSession.callCount).to.equal(1, 'browser session is stopped');
expect(browserStubs.stop.callCount).to.equal(1, 'browser is stopped');
expect(passed).to.equal(false, 'test runner quits with false');
});
describe('groups', () => {
it('can create a group in addition to the default group', async () => {
const { runner } = await createTestRunner(undefined, [
{
name: 'a',
files: [path.join(__dirname, '..', '..', 'fixtures', 'group-a', '*.test.js')],
},
]);
const sessions = Array.from(runner.sessions.all());
expect(sessions.length).to.equal(3);
expect(sessions.filter(s => s.group.name === 'default').length).to.equal(1);
expect(sessions.filter(s => s.group.name === 'a').length).to.equal(2);
});
it('can create a group with a custom browser, inheriting test files', async () => {
const [, groupBrowser] = createBrowserStub();
const { browser, runner } = await createTestRunner(undefined, [
{
name: 'a',
browsers: [groupBrowser],
},
]);
const sessions = Array.from(runner.sessions.all());
expect(sessions.length).to.equal(2);
expect(sessions.filter(s => s.group.name === 'default').length).to.equal(1);
expect(sessions.filter(s => s.group.name === 'a').length).to.equal(1);
const sessionDefault = sessions.find(s => s.group.name === 'default')!;
const sessionA = sessions.find(s => s.group.name === 'a')!;
expect(sessionDefault.testFile).to.equal(sessionA.testFile);
expect(sessionDefault.browser).to.equal(browser);
expect(sessionA.browser).to.equal(groupBrowser);
});
it('can create test groups inheriting browser', async () => {
const { runner } = await createTestRunner(
{
files: undefined,
},
[
{
name: 'a',
files: [path.join(__dirname, '..', '..', 'fixtures', 'group-a', '*.test.js')],
},
{
name: 'b',
files: [path.join(__dirname, '..', '..', 'fixtures', 'group-b', '*.test.js')],
},
{
name: 'c',
files: [path.join(__dirname, '..', '..', 'fixtures', 'group-c', '*.test.js')],
},
],
);
const sessions = Array.from(runner.sessions.all());
expect(sessions.length).to.equal(6);
expect(sessions.filter(s => s.group.name === 'a').length).to.equal(2);
expect(sessions.filter(s => s.group.name === 'b').length).to.equal(2);
expect(sessions.filter(s => s.group.name === 'c').length).to.equal(2);
});
it('can create test groups with custom browsers', async () => {
const [, browserB] = createBrowserStub();
const { browser, runner } = await createTestRunner(
{
files: undefined,
},
[
{
name: 'a',
files: [path.join(__dirname, '..', '..', 'fixtures', 'group-a', 'a-1.test.js')],
},
{
name: 'b',
browsers: [browserB],
files: [path.join(__dirname, '..', '..', 'fixtures', 'group-b', 'b-1.test.js')],
},
],
);
const sessions = Array.from(runner.sessions.all());
expect(sessions.length).to.equal(2);
expect(sessions.find(s => s.group.name === 'a')!.browser).to.equal(browser);
expect(sessions.find(s => s.group.name === 'b')!.browser).to.equal(browserB);
});
it('can ignore files via string[] globs', async () => {
const normalize = (x: string): string => x.replace(/\//g, path.sep);
const { runner } = await createTestRunner({
files: ['test/fixtures/**/*.test.js', '!test/fixtures/group-c/*'].map(normalize),
});
const sessions = Array.from(runner.sessions.all());
const allFiles = sessions.flatMap(x => path.relative(__dirname, x.testFile));
expect(allFiles).to.deep.equal(
[
'../../fixtures/a.test.js',
'../../fixtures/group-a/a-1.test.js',
'../../fixtures/group-a/a-2.test.js',
'../../fixtures/group-b/b-1.test.js',
'../../fixtures/group-b/b-2.test.js',
].map(normalize),
);
});
});
});
| modernweb-dev/web/packages/test-runner-core/test/src/runner/TestRunner.test.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-core/test/src/runner/TestRunner.test.ts",
"repo_id": "modernweb-dev",
"token_count": 3705
} | 223 |
export { junitReporter } from './junitReporter.js';
| modernweb-dev/web/packages/test-runner-junit-reporter/src/index.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-junit-reporter/src/index.ts",
"repo_id": "modernweb-dev",
"token_count": 18
} | 224 |
import {
sessionFinished,
getConfig,
sessionStarted,
TestResultError,
} from '../../test-runner-core/browser/session.js';
import '../../../node_modules/mocha/mocha.js';
import { collectTestResults } from './collectTestResults.js';
import { setupMocha } from './mochaSetup.js';
sessionStarted();
// avoid using document.baseURI for IE11 support
const base = document.querySelector('base');
const baseURI = (base || window.location).href;
(async () => {
const errors: TestResultError[] = [];
const { testFile, debug, testFrameworkConfig } = await getConfig();
setupMocha(debug, testFrameworkConfig);
await import(new URL(testFile, baseURI).href).catch(error => {
console.error(error);
errors.push({
message:
'Could not import your test module. Check the browser logs or open the browser in debug mode for more information.',
});
});
const mochaRunner = mocha.run(() => {
// setTimeout to wait for logs to come in
setTimeout(() => {
const { testResults, hookErrors, passed } = collectTestResults(mocha);
errors.push(...hookErrors);
sessionFinished({
passed: errors.length === 0 && passed,
errors,
testResults,
});
});
});
(window as any).__WTR_MOCHA_RUNNER__ = mochaRunner;
})();
| modernweb-dev/web/packages/test-runner-mocha/src/autorun.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-mocha/src/autorun.ts",
"repo_id": "modernweb-dev",
"token_count": 456
} | 225 |
import { Plugin, ServerStartParams, ResolveOptions, Context } from '@web/dev-server-core';
// Copied from packages/dev-server-core/src/plugins/Plugin.ts as it's not exported
export type ResolveResult = void | string | { id?: string };
export interface ResolveImportArguments {
source: string;
context: Context;
code?: string;
column?: number;
line?: number;
resolveOptions?: ResolveOptions;
}
export type ResolveImport = (
args: ResolveImportArguments,
) => ResolveResult | Promise<ResolveResult>;
/**
* TODO: check if `resolveImport()` can be provied by `@web/dev-server-core`'s API
* @param args start param args
* @param thisPlugin plugin to exclude
*/
export function createResolveImport(
{ config }: ServerStartParams,
thisPlugin: Plugin,
): ResolveImport {
const resolvePlugins =
config.plugins?.filter?.(pl => pl.resolveImport && pl !== thisPlugin) ?? [];
return async function resolveImport(args: ResolveImportArguments) {
for (const plugin of resolvePlugins) {
const resolved = await plugin?.resolveImport?.(args);
if (typeof resolved === 'string') {
return resolved;
}
if (typeof resolved === 'object') {
return resolved?.id;
}
}
};
}
| modernweb-dev/web/packages/test-runner-module-mocking/src/createResolveImport.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-module-mocking/src/createResolveImport.ts",
"repo_id": "modernweb-dev",
"token_count": 403
} | 226 |
{
"extends": "../../tsconfig.node-base.json",
"compilerOptions": {
"module": "node16",
"moduleResolution": "node16",
"outDir": "./dist",
"rootDir": "./src",
"composite": true,
"allowJs": true
},
"references": [
{
"path": "../parse5-utils/tsconfig.json"
},
{
"path": "../browser-logs/tsconfig.json"
},
{
"path": "../dev-server-core/tsconfig.json"
},
{
"path": "../test-runner-core/tsconfig.json"
},
{
"path": "../test-runner-coverage-v8/tsconfig.json"
},
{
"path": "../test-runner-mocha/tsconfig.json"
},
{
"path": "../test-runner-chrome/tsconfig.json"
}
],
"include": [
"src",
]
} | modernweb-dev/web/packages/test-runner-module-mocking/tsconfig.json/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-module-mocking/tsconfig.json",
"repo_id": "modernweb-dev",
"token_count": 354
} | 227 |
import os from 'os';
import { runIntegrationTests } from '../../../integration/test-runner/index.js';
import { playwrightLauncher } from '../src/index.js';
describe('test-runner-playwright chromium', function testRunnerPlaywright() {
this.timeout(100000);
function createConfig() {
return { browsers: [playwrightLauncher({ product: 'chromium' })] };
}
runIntegrationTests(createConfig, {
basic: true,
many: true,
focus: true,
groups: true,
parallel: true,
testFailure: true,
locationChanged: true,
});
});
describe('test-runner-playwright webkit', function testRunnerPlaywright() {
this.timeout(100000);
function createConfig() {
return { browsers: [playwrightLauncher({ product: 'webkit' })] };
}
runIntegrationTests(createConfig, {
basic: true,
many: true,
focus: true,
groups: true,
parallel: true,
testFailure: true,
locationChanged: true,
});
});
// we don't run all tests in the windows CI
if (os.platform() !== 'win32') {
describe('test-runner-playwright firefox', function testRunnerPlaywright() {
this.timeout(100000);
function createConfig() {
return { browsers: [playwrightLauncher({ product: 'firefox' })] };
}
runIntegrationTests(createConfig, {
basic: true,
many: true,
focus: true,
groups: true,
// firefox doesn't like parallel in the CI
parallel: false,
testFailure: true,
locationChanged: true,
});
});
describe('test-runner-playwright all', function testRunnerPlaywright() {
this.timeout(100000);
function createConfig() {
return {
browsers: [
playwrightLauncher({ product: 'chromium' }),
playwrightLauncher({ product: 'firefox' }),
playwrightLauncher({ product: 'webkit' }),
],
};
}
runIntegrationTests(createConfig, {
basic: true,
many: true,
focus: true,
groups: true,
parallel: false,
testFailure: false,
locationChanged: false,
});
});
}
| modernweb-dev/web/packages/test-runner-playwright/test/playwrightLauncher.test.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-playwright/test/playwrightLauncher.test.ts",
"repo_id": "modernweb-dev",
"token_count": 774
} | 228 |
{
"name": "@web/test-runner-selenium",
"version": "0.7.0",
"publishConfig": {
"access": "public"
},
"description": "Selenium browser launcher for Web Test Runner",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/modernweb-dev/web.git",
"directory": "packages/test-runner-selenium"
},
"author": "modern-web",
"homepage": "https://github.com/modernweb-dev/web/tree/master/packages/test-runner-selenium",
"main": "dist/index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./dist/index.js"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"test": "mocha test/**/*.test.ts --require ts-node/register --reporter dot",
"test:watch": "mocha test/**/*.test.ts --require ts-node/register --watch --watch-files src,test"
},
"files": [
"*.d.ts",
"*.js",
"*.mjs",
"dist",
"src"
],
"keywords": [
"web",
"test",
"runner",
"testrunner",
"selenium",
"webdriver",
"browser",
"launcher"
],
"dependencies": {
"@web/test-runner-core": "^0.13.0",
"selenium-webdriver": "^4.0.0"
},
"devDependencies": {
"@types/selenium-standalone": "^7.0.1",
"@types/selenium-webdriver": "^4.0.11",
"selenium-standalone": "^8.0.4"
}
}
| modernweb-dev/web/packages/test-runner-selenium/package.json/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-selenium/package.json",
"repo_id": "modernweb-dev",
"token_count": 620
} | 229 |
export default 'moduleFeaturesB';
| modernweb-dev/web/packages/test-runner-selenium/test/fixtures/module-features-b.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-selenium/test/fixtures/module-features-b.js",
"repo_id": "modernweb-dev",
"token_count": 8
} | 230 |
# Web Test Runner Webdriver
Run tests using [WebdriverIO](https://webdriver.io).
See [our website](https://modern-web.dev/docs/test-runner/browser-launchers/webdriver/) for full documentation.
| modernweb-dev/web/packages/test-runner-webdriver/README.md/0 | {
"file_path": "modernweb-dev/web/packages/test-runner-webdriver/README.md",
"repo_id": "modernweb-dev",
"token_count": 57
} | 231 |
export default {
rootDir: '../../',
nodeResolve: true,
testRunnerHtml: testRunnerImport => `
<html>
<head></head>
<body>
<script type="module">
import '${testRunnerImport}';
console.log("custom HTML page");
</script>
</body>
</html>
`,
};
| modernweb-dev/web/packages/test-runner/demo/customhtml.config.mjs/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/customhtml.config.mjs",
"repo_id": "modernweb-dev",
"token_count": 143
} | 232 |
import fs from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
import { fromRollup } from '@web/dev-server-rollup';
const moduleDir = path.dirname(fileURLToPath(import.meta.url));
const virtualMyClassJsPath = path.join(moduleDir, 'virtual', 'virtual-files', 'MyClass.js');
const virtualMyClassMapPath = `${virtualMyClassJsPath}.map`;
const virtualFiles = {
'/demo/source-maps/virtual/src/MyClass.js': fs.readFileSync(virtualMyClassJsPath, 'utf-8'),
'/demo/source-maps/virtual/src/MyClass.js.map': fs.readFileSync(virtualMyClassMapPath, 'utf-8'),
};
export default /** @type {import('@web/test-runner').TestRunnerConfig} */ ({
nodeResolve: true,
files: [
'demo/source-maps/bundled/**/*.test.js',
'demo/source-maps/inline/**/*.test.js',
'demo/source-maps/separate/**/*.test.js',
'demo/source-maps/virtual/**/*.test.js',
],
plugins: [
{
name: 'serve-virtual',
serve(context) {
const code = virtualFiles[context.path];
if (code) {
return code;
}
},
},
],
});
| modernweb-dev/web/packages/test-runner/demo/source-maps/config.mjs/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/source-maps/config.mjs",
"repo_id": "modernweb-dev",
"token_count": 426
} | 233 |
/* @web/test-runner snapshot v1 */
export const snapshots = {};
snapshots["snapshot-a"] =
`some snapshot A2`;
/* end snapshot snapshot-a */
snapshots["snapshot-b"] =
`some snapshot B2`;
/* end snapshot snapshot-b */
snapshots["snapshot-c"] =
`some snapshot C2`;
/* end snapshot snapshot-c */
| modernweb-dev/web/packages/test-runner/demo/test/__snapshots__/pass-snapshot-2.test.snap.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/test/__snapshots__/pass-snapshot-2.test.snap.js",
"repo_id": "modernweb-dev",
"token_count": 103
} | 234 |
window.location.replace('/new-page/');
it('x', async () => {
await new Promise(r => setTimeout(r, 1000));
});
| modernweb-dev/web/packages/test-runner/demo/test/fail-location-replace.test.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/test/fail-location-replace.test.js",
"repo_id": "modernweb-dev",
"token_count": 40
} | 235 |
import { compareSnapshot } from '@web/test-runner-commands';
it('can test snapshot A', async () => {
await compareSnapshot({ name: 'snapshot-a', content: 'some snapshot A3' });
});
it('can test snapshot B', async () => {
await compareSnapshot({ name: 'snapshot-b', content: 'some snapshot B3' });
});
it('can test snapshot C', async () => {
await compareSnapshot({ name: 'snapshot-c', content: 'some snapshot C3' });
});
| modernweb-dev/web/packages/test-runner/demo/test/pass-snapshot-3.test.js/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/test/pass-snapshot-3.test.js",
"repo_id": "modernweb-dev",
"token_count": 136
} | 236 |
import './shared-a.js';
| modernweb-dev/web/packages/test-runner/demo/tsc/dist/test/pass-19.test.d.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/demo/tsc/dist/test/pass-19.test.d.ts",
"repo_id": "modernweb-dev",
"token_count": 10
} | 237 |
{
"name": "@web/test-runner",
"version": "0.18.1",
"publishConfig": {
"access": "public"
},
"description": "Test runner for web applications",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/modernweb-dev/web.git",
"directory": "packages/test-runner"
},
"author": "modern-web",
"homepage": "https://github.com/modernweb-dev/web/tree/master/packages/test-runner",
"main": "dist/index.js",
"bin": {
"web-test-runner": "./dist/bin.js",
"wtr": "./dist/bin.js"
},
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"test": "node dist/bin.js \"demo/test/pass-*.test.{js,html}\"",
"test:babel-coverage": "node dist/bin.js \"demo/test/pass-*.test.{js,html}\" --config demo/babel-coverage.config.mjs",
"test:bare": "node dist/bin.js",
"test:coverage": "node dist/bin.js \"demo/test/pass-*.test.{js,html}\" --coverage",
"test:coverage-babel": "node dist/bin.js --config demo/coverage-babel/config.mjs",
"test:custom-html": "node dist/bin.js \"demo/test/pass-*.test.{js,html}\" --config demo/customhtml.config.mjs",
"test:filter-logs": "node dist/bin.js --config demo/filter-logs.config.mjs",
"test:focus": "node dist/bin.js --config demo/focus/config.mjs",
"test:groups": "node dist/bin.js --config demo/groups.config.mjs",
"test:groups-pattern": "node dist/bin.js --groups \"demo/test/groups/**/*.config.mjs\"",
"test:groups-shared-browser": "node dist/bin.js --config demo/groups-shared-browser.config.mjs",
"test:legacy": "node dist/bin.js \"demo/test/pass-*.test.{js,html}\" --config demo/legacy.config.mjs",
"test:logging": "node dist/bin.js \"demo/test/logging.test.js\"",
"test:many": "node dist/bin.js \"demo/test/many/**/*.test.js\"",
"test:mixed": "node dist/bin.js \"demo/test/*.test.js\"",
"test:mocha-options": "node dist/bin.js --config \"demo/test/mocha-options/config.js\"",
"test:playwright": "node dist/bin.js \"demo/test/pass-*.test.{js,html}\" --playwright --browsers chromium firefox webkit",
"test:puppeteer-firefox": "node dist/bin.js \"demo/test/pass-*.test.{js,html}\" --puppeteer --browsers firefox",
"test:saucelabs": "node dist/bin.js --config demo/saucelabs.config.mjs",
"test:selenium": "node dist/bin.js --config demo/selenium.config.mjs",
"test:snapshots": "node dist/bin.js \"demo/test/pass-snapshot.test.js\" --coverage",
"test:source-maps": "node dist/bin.js --config demo/source-maps/config.mjs",
"test:tsc": "tsc -p demo/tsc/tsconfig.json && concurrently -k -r \"tsc -p demo/tsc/tsconfig.json --watch --preserveWatchOutput\" \"wtr --config demo/tsc/config.mjs --watch\"",
"test:virtual": "node dist/bin.js --config demo/virtual/config.mjs",
"test:watch": "node dist/bin.js \"demo/test/pass-*.test.{js,html}\" --watch"
},
"files": [
"*.d.ts",
"*.js",
"*.mjs",
"dist",
"src"
],
"keywords": [
"web",
"test",
"runner",
"testrunner",
"default",
"implementation",
"cli"
],
"dependencies": {
"@web/browser-logs": "^0.4.0",
"@web/config-loader": "^0.3.0",
"@web/dev-server": "^0.4.0",
"@web/test-runner-chrome": "^0.16.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-core": "^0.13.0",
"@web/test-runner-mocha": "^0.9.0",
"camelcase": "^6.2.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^7.0.1",
"convert-source-map": "^2.0.0",
"diff": "^5.0.0",
"globby": "^11.0.1",
"nanocolors": "^0.2.1",
"portfinder": "^1.0.32",
"source-map": "^0.7.3"
},
"devDependencies": {
"@types/diff": "^5.0.0",
"@web/dev-server-legacy": "^2.1.0",
"@web/test-runner-saucelabs": "^0.11.0",
"babel-plugin-istanbul": "^6.0.0",
"concurrently": "^8.0.1"
}
}
| modernweb-dev/web/packages/test-runner/package.json/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/package.json",
"repo_id": "modernweb-dev",
"token_count": 1853
} | 238 |
import { gray, white } from 'nanocolors';
const PROGRESS_BLOCKS = [' ', '▏', '▎', '▍', '▌', '▋', '▊', '▉', '█'];
const PROGRESS_WIDTH = 30;
function createProgressBlocks(value: number, total: number) {
if (value >= total) {
return PROGRESS_BLOCKS[8].repeat(PROGRESS_WIDTH);
}
const count = (PROGRESS_WIDTH * value) / total;
const floored = Math.floor(count);
const partialBlock =
PROGRESS_BLOCKS[Math.floor((count - floored) * (PROGRESS_BLOCKS.length - 1))];
return `${PROGRESS_BLOCKS[8].repeat(floored)}${partialBlock}${' '.repeat(
PROGRESS_WIDTH - floored - 1,
)}`;
}
export function renderProgressBar(finished: number, active: number, total: number) {
const progressBlocks = createProgressBlocks(finished + active, total);
const finishedBlockCount = Math.floor((PROGRESS_WIDTH * finished) / total);
const finishedBlocks = white(progressBlocks.slice(0, finishedBlockCount));
const scheduledBlocks = gray(progressBlocks.slice(finishedBlockCount));
return `|${finishedBlocks}${scheduledBlocks}|`;
}
| modernweb-dev/web/packages/test-runner/src/reporter/renderProgressBar.ts/0 | {
"file_path": "modernweb-dev/web/packages/test-runner/src/reporter/renderProgressBar.ts",
"repo_id": "modernweb-dev",
"token_count": 367
} | 239 |
{
"enabled": false
}
| modernweb-dev/web/renovate.json/0 | {
"file_path": "modernweb-dev/web/renovate.json",
"repo_id": "modernweb-dev",
"token_count": 10
} | 240 |
{
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-runtime"
],
"ignore": [
"/node_modules/"
]
}
| odota/web/.babelrc.json/0 | {
"file_path": "odota/web/.babelrc.json",
"repo_id": "odota",
"token_count": 130
} | 241 |
/* eslint-disable import/no-extraneous-dependencies, no-console */
const fs = require('fs');
process.chdir(__dirname);
try {
fs.copyFileSync('../node_modules/dota2-emoticons/resources/images/emoticons', '../assets/images/dota2/emoticons');
console.log('Success!');
} catch (err) {
console.error(err);
}
| odota/web/dev/updateEmoticons.js/0 | {
"file_path": "odota/web/dev/updateEmoticons.js",
"repo_id": "odota",
"token_count": 114
} | 242 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#de2110" d="M0 319.997h640V480H0z"/>
<path fill="#fff" d="M0 0h640v160.003H0z"/>
<path fill="#319400" d="M0 160.003h640v160.003H0z"/>
</g>
</svg>
| odota/web/public/assets/images/flags/bg.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/bg.svg",
"repo_id": "odota",
"token_count": 145
} | 243 |
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<defs>
<g id="d">
<g id="b">
<path d="M0-1l-.31.95.477.156z" id="a"/>
<use transform="scale(-1 1)" xlink:href="#a"/>
</g>
<g id="c">
<use transform="rotate(72)" xlink:href="#b"/>
<use transform="rotate(144)" xlink:href="#b"/>
</g>
<use transform="scale(-1 1)" xlink:href="#c"/>
</g>
</defs>
<path fill="#039" d="M0 0h640v480H0z"/>
<g transform="translate(320 242.263) scale(23.7037)" fill="#fc0">
<use height="100%" width="100%" xlink:href="#d" y="-6"/>
<use height="100%" width="100%" xlink:href="#d" y="6"/>
<g id="e">
<use height="100%" width="100%" xlink:href="#d" x="-6"/>
<use height="100%" width="100%" xlink:href="#d" transform="rotate(-144 -2.344 -2.11)"/>
<use height="100%" width="100%" xlink:href="#d" transform="rotate(144 -2.11 -2.344)"/>
<use height="100%" width="100%" xlink:href="#d" transform="rotate(72 -4.663 -2.076)"/>
<use height="100%" width="100%" xlink:href="#d" transform="rotate(72 -5.076 .534)"/>
</g>
<use height="100%" width="100%" xlink:href="#e" transform="scale(-1 1)"/>
</g>
</svg>
| odota/web/public/assets/images/flags/eu.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/eu.svg",
"repo_id": "odota",
"token_count": 593
} | 244 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#078930" d="M0 0h640v480z"/>
<path fill="#fcdd09" d="M0 0l640 480H0z"/>
<path fill="#da121a" d="M252.37 218.025h135.26L278.203 297.53 320 168.89l41.798 128.64z"/>
</svg>
| odota/web/public/assets/images/flags/gf.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/gf.svg",
"repo_id": "odota",
"token_count": 128
} | 245 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd">
<path d="M0 0l320 240L0 480zM640 0L320 240l320 240z"/>
<path d="M0 0l320 240L640 0zM0 480l320-240 320 240z" fill="#090"/>
<path d="M640 0h-59.625L0 435.281V480h59.629L640.004 44.719z" fill="#fc0"/>
<path d="M0 0v44.722l580.375 435.28h59.629v-44.72L59.629 0z" fill="#fc0"/>
</g>
</svg>
| odota/web/public/assets/images/flags/jm.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/jm.svg",
"repo_id": "odota",
"token_count": 206
} | 246 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd">
<path fill="#65cfff" d="M0 0h640v480H0z"/>
<path d="M318.9 41.991l162.66 395.3-322.6.91L318.9 41.991z" fill="#fff"/>
<path d="M319.09 96.516l140.67 339.99-278.99.78 138.32-340.77z"/>
<path d="M318.9 240.1l162.66 197.64-322.6.46L318.9 240.1z" fill="#ffce00"/>
</g>
</svg>
| odota/web/public/assets/images/flags/lc.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/lc.svg",
"repo_id": "odota",
"token_count": 206
} | 247 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path fill="#d20000" d="M0 0h640v480H0z"/>
<path d="M0 0h96l224 231.43L544 0h96L0 480h96l224-231.43L544 480h96zm640 192v96L0 192v96zM280 0l40 205.714L360 0zm0 480l40-205.714L360 480z" fill="#ffe600"/>
<circle r="77.143" cy="240" cx="320" fill="#ffe600" stroke="#d20000" stroke-width="17.143"/>
</svg>
| odota/web/public/assets/images/flags/mk.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/mk.svg",
"repo_id": "odota",
"token_count": 182
} | 248 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<defs>
<clipPath id="a">
<path fill-opacity=".67" d="M0 0h640v480H0z"/>
</clipPath>
</defs>
<g fill-rule="evenodd" clip-path="url(#a)">
<path fill="#fff" d="M0 0h640v480H0z"/>
<path d="M-26.374.224l.803 345.543L512.535 0-26.378.222z" fill="#3662a2"/>
<path d="M666.37 479.56l-1.262-359.298-542.793 359.57 544.059-.266z" fill="#38a100"/>
<path d="M-26.028 371.822L-25.57 480l117.421-.15L665.375 95.344l-.646-94.05L548.704.224-26.031 371.82z" fill="#c70000"/>
<g>
<path fill="#ffe700" d="M219.556 171.927l-21.733-13.122-12.575 22.103-12.235-22.246-21.93 12.883.536-25.406-25.413.198 13.167-21.759-22.082-12.531 22.27-12.278-12.837-21.907 25.405.487-.15-25.41 21.734 13.125 12.575-22.106 12.235 22.246 21.93-12.88-.536 25.407 25.41-.201-13.165 21.76 22.08 12.532-22.27 12.278 12.84 21.906-25.405-.488z"/>
<path d="M232.384 112.437c0 25.544-20.87 46.252-46.613 46.252s-46.614-20.708-46.614-46.252 20.87-46.253 46.614-46.253 46.613 20.708 46.613 46.253z" fill="#3662a2"/>
<path d="M222.267 112.437c0 20.156-16.34 36.496-36.496 36.496s-36.497-16.34-36.497-36.496 16.34-36.497 36.497-36.497 36.496 16.34 36.496 36.497z" fill="#ffe700"/>
</g>
</g>
</svg>
| odota/web/public/assets/images/flags/na.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/na.svg",
"repo_id": "odota",
"token_count": 676
} | 249 |
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<path fill="#20603d" d="M0 0h640v480H0z"/>
<path fill="#fad201" d="M0 0h640v360H0z"/>
<path fill="#00a1de" d="M0 0h640v240H0z"/>
<g transform="translate(511 125.4) scale(.66667)">
<g id="b">
<path id="a" d="M116.1 0L35.692 4.7l76.452 25.35L33.26 13.776l67.286 44.273L28.56 21.915l53.535 60.18-60.18-53.534 36.135 71.986L13.777 33.26l16.272 78.884L4.7 35.692 0 116.1-1-1z" fill="#e5be01"/>
<use height="100%" width="100%" xlink:href="#a" transform="scale(1 -1)"/>
</g>
<use height="100%" width="100%" xlink:href="#b" transform="scale(-1 1)"/>
<circle r="34.3" fill="#e5be01" stroke="#00a1de" stroke-width="3.4"/>
</g>
</svg>
| odota/web/public/assets/images/flags/rw.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/rw.svg",
"repo_id": "odota",
"token_count": 384
} | 250 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<path d="M0 336h640v144H0z" fill="#078930"/>
<path d="M0 144h640v192H0z" fill="#fff"/>
<path d="M0 0h640v144H0z"/>
<path d="M0 168h640v144H0z" fill="#da121a"/>
<path d="M0 0l415.7 240L0 480z" fill="#0f47af"/>
<path d="M200.7 194.85L61.75 240l138.95 45.15-85.85-118.2v146.1z" fill="#fcdd09"/>
</svg>
| odota/web/public/assets/images/flags/ss.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/ss.svg",
"repo_id": "odota",
"token_count": 197
} | 251 |
<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 640 480">
<g fill-rule="evenodd" stroke-width="1pt">
<path fill="#c10000" d="M0 0h640v480H0z"/>
<path fill="#fff" d="M0 0h249.954v200.321H0z"/>
<g fill="#c10000">
<path d="M102.854 31.24h39.84v139.54h-39.84z"/>
<path d="M192.55 81.086v39.84H53.01v-39.84z"/>
</g>
</g>
</svg>
| odota/web/public/assets/images/flags/to.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/to.svg",
"repo_id": "odota",
"token_count": 200
} | 252 |
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" height="480" width="640" viewBox="0 0 640 480">
<defs>
<g id="d" transform="translate(0 -36)">
<g id="c">
<g id="b">
<path d="M0-5L-1.545-.245l2.853.927z" id="a" fill="#fff"/>
<use xlink:href="#a" transform="scale(-1 1)" width="180" height="120"/>
</g>
<use xlink:href="#b" transform="rotate(72)" width="180" height="120"/>
</g>
<use xlink:href="#b" transform="rotate(-72)" width="180" height="120"/>
<use xlink:href="#c" transform="rotate(144)" width="180" height="120"/>
</g>
</defs>
<path d="M0 0h640v480H0z" fill="#cf142b"/>
<path d="M0 0h640v320H0z" fill="#00247d"/>
<path d="M0 0h640v160H0z" fill="#fc0"/>
<g id="f" transform="matrix(4 0 0 4 320 336)">
<g id="e">
<use height="120" width="180" transform="rotate(10)" xlink:href="#d"/>
<use height="120" width="180" transform="rotate(30)" xlink:href="#d"/>
</g>
<use height="120" width="180" transform="rotate(40)" xlink:href="#e"/>
</g>
<use height="120" width="180" transform="rotate(-80 320 336)" xlink:href="#f"/>
</svg>
| odota/web/public/assets/images/flags/ve.svg/0 | {
"file_path": "odota/web/public/assets/images/flags/ve.svg",
"repo_id": "odota",
"token_count": 543
} | 253 |
export default function transformBenchmarks(data) {
const { result } = data;
const listStats = Object.keys(data.result);
const listPercentiles = result[listStats[0]].map(i => i.percentile);
const benchmarks = [];
for (let i = 0; i < listPercentiles.length; i += 1) {
const percentilePerStat = {
percentile: listPercentiles[i],
};
listStats.forEach((stat) => {
percentilePerStat[stat] = result[stat][i].value;
});
benchmarks.push(percentilePerStat);
}
return { result: benchmarks };
}
| odota/web/src/actions/transformBenchmarks.js/0 | {
"file_path": "odota/web/src/actions/transformBenchmarks.js",
"repo_id": "odota",
"token_count": 181
} | 254 |
import React from 'react';
import PropTypes from 'prop-types';
import ActionInfo from 'material-ui/svg-icons/action/info';
import styled from 'styled-components';
import constants from '../constants';
const StyledDiv = styled.div`
& a {
color: ${constants.colorMutedLight};
font-size: ${constants.fontSizeSmall};
}
& svg {
vertical-align: sub;
margin-right: 5px;
width: 15px !important;
height: 15px !important;
fill: ${constants.colorBlue} !important;
}
`;
const Info = ({ children, className, msg }) => (
<StyledDiv className={`${className}`}>
<ActionInfo />
<span>
{!children && msg}
{!msg && children}
</span>
</StyledDiv>
);
Info.propTypes = {
children: PropTypes.node,
className: PropTypes.string,
msg: PropTypes.string,
};
export default Info;
| odota/web/src/components/Alerts/Info.jsx/0 | {
"file_path": "odota/web/src/components/Alerts/Info.jsx",
"repo_id": "odota",
"token_count": 308
} | 255 |
import React from 'react';
import { RaisedButton, RadioButton, RadioButtonGroup } from 'material-ui';
import heroes from 'dotaconstants/build/heroes.json';
import querystring from 'querystring';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import TextField from 'material-ui/TextField';
import ActionSearch from 'material-ui/svg-icons/action/search';
import HeroImage from '../Visualizations/HeroImage';
import TableSkeleton from '../Skeletons/TableSkeleton';
import Heading from '../Heading/Heading';
import ExplorerOutputSection from './../Explorer/ExplorerOutputSection';
import getQueryString from './getQueryString';
import {
StyledHeroSelector,
StyledSelectedHeroes,
StyledCombos,
StyledInputFilter,
} from './Styles';
import { formatTemplateToString, escapeRegExp, IMAGESIZE_ENUM } from '../../utility';
import config from '../../config';
const styles = {
radioButton: {
root: {
display: 'inline-block',
width: 'auto',
whiteSpace: 'nowrap',
marginRight: 5,
},
icon: {
marginRight: 1,
},
},
};
const InputFilter = ({
handleChange,
value,
setInputRef,
reset,
filterText,
}) => (
<StyledInputFilter>
<div className="container">
<ActionSearch style={{ marginRight: 6, opacity: '.6', verticalAlign: 'middle' }} />
<TextField
aria-label={filterText}
ref={setInputRef}
hintText={filterText}
value={value}
onChange={handleChange}
style={{ width: 150 }}
/>
<div
aria-label="clear hero filter"
className="reset-button"
onClick={reset}
onKeyPress={reset}
role="button"
tabIndex="0"
>
x
</div>
</div>
</StyledInputFilter>
);
const heroesArray = Object.keys(heroes).map(id => heroes[id]).sort((a, b) => a.localized_name.localeCompare(b.localized_name));
const HeroSelector = ({
id,
handleHeroSelection,
selected,
teamAFull,
teamBFull,
isFiltered,
heroName
}) => (
<StyledHeroSelector selected={selected} isFiltered={isFiltered}>
<HeroImage
id={id}
imageSizeSuffix={IMAGESIZE_ENUM.SMALL.suffix}
style={{position: 'absolute', width: 200, left: -30, opacity: .5, filter: 'blur(5px)'}}
/>
<HeroImage id={id} imageSizeSuffix={IMAGESIZE_ENUM.SMALL.suffix} style={{width: 'auto', height: 40, zIndex: 2}}/>
<div className={`ts-container ${selected ? 'selected' : ''}`}>
<div
aria-label={`${heroName} team A`}
className={`ts ts-left ${teamAFull ? 'no-event' : ''}`}
onClick={handleHeroSelection(id, 'teamA')}
onKeyPress={handleHeroSelection(id, 'teamA')}
role="button"
tabIndex="0"
>
A
</div>
<div
aria-label={`${heroName} team B`}
className={`ts ts-right ${teamBFull ? 'no-event' : ''}`}
onClick={handleHeroSelection(id, 'teamB')}
onKeyPress={handleHeroSelection(id, 'teamB')}
role="button"
tabIndex="0"
>
B
</div>
</div>
</StyledHeroSelector>
);
HeroSelector.propTypes = {
id: PropTypes.number,
handleHeroSelection: PropTypes.func,
selected: PropTypes.bool,
teamAFull: PropTypes.bool,
teamBFull: PropTypes.bool,
strings: PropTypes.shape({}),
};
const SelectedHeroes = ({
teamA, teamB, handleHeroDeSelection, strings
}) => (
<StyledSelectedHeroes>
<div className="team-container left">
<div className="team-title team-a">{formatTemplateToString(strings.team, 'A')}</div>
<div>
{[4, 3, 2, 1, 0].map(i =>
(teamA[i] ? (
<HeroImage
id={teamA[i]}
className="hero-img"
onClick={handleHeroDeSelection(i, 'teamA')}
/>
) : (
<div className="hero-placeholder hero-img" />
)))}
</div>
</div>
<div className="seperator"/>
<div className="team-container right">
<div className="team-title team-b">{formatTemplateToString(strings.team, 'B')}</div>
<div>
{[0, 1, 2, 3, 4].map(i =>
(teamB[i] ? (
<HeroImage
id={teamB[i]}
className="hero-img"
onClick={handleHeroDeSelection(i, 'teamB')}
/>
) : (
<div className="hero-placeholder hero-img" />
)))}
</div>
</div>
</StyledSelectedHeroes>
);
SelectedHeroes.propTypes = {
handleHeroDeSelection: PropTypes.func,
strings: PropTypes.shape({}),
teamA: PropTypes.arrayOf(PropTypes.number),
teamB: PropTypes.arrayOf(PropTypes.number),
};
function asArray(value) {
if (Array.isArray(value)) {
return value;
}
return value ? [value] : [];
}
class Combos extends React.Component {
static propTypes = {
strings: PropTypes.shape({}),
};
parsedUrlQuery = querystring.parse(window.location.search.substring(1)); // eslint-disable-line react/sort-comp
state = {
queryType: this.parsedUrlQuery.queryType || 'public',
teamA: asArray(this.parsedUrlQuery.teamA).map(Number),
teamB: asArray(this.parsedUrlQuery.teamB).map(Number),
queryResult: {},
loading: false,
searchValue: '',
};
componentDidMount() {
if (this.state.teamA.length > 0 || this.state.teamB.length > 0) {
this.sendRequest();
}
}
setInputRef = (input) => {
this.inputRef = input;
};
resetSearchValue = () => {
if (this.state.searchValue.length > 0) {
this.inputRef.focus();
}
this.setState({ searchValue: '' });
};
handleChange = e => this.setState({ searchValue: e.target.value });
handleHeroSelection = resetSearchValue => (heroID, team) => () => {
if(this.state.loading) {
return;
}
const { teamA, teamB } = this.state;
if (this.state[team].length < 5 && ![...teamA, ...teamB].includes(heroID)) {
this.setState(
{
[team]: [...this.state[team], heroID],
},
resetSearchValue,
);
}
};
handleHeroDeSelection = (index, team) => () => {
if(this.state.loading) {
return;
}
this.setState({
[team]: [
...this.state[team].slice(0, index),
...this.state[team].slice(index + 1),
],
});
};
buildQueryString = () => {
const { teamA, teamB } = this.state;
return getQueryString(teamA, teamB);
};
handleResponse = (json) => {
let data = json;
const { teamA, teamB } = this.state;
// rearrange order of heroes so the results are displayed in the same order as selection
data.forEach(row => {
if(!row.teama.includes(teamA[0]) && !row.teamb.includes(teamB[0])) {
const temp = row.teama;
row.teama = row.teamb
row.teamb = temp;
row.teamawin = !row.teamawin;
}
row.teama.sort((a, b) => teamA.indexOf(b) - teamA.indexOf(a))
row.teama = [...row.teama.slice(teamA.length, 5), ...row.teama.slice(0, teamA.length)]
row.teamb.sort((a, b) => teamB.indexOf(a) - teamB.indexOf(b))
row.teamb = [...row.teamb.slice(5 - teamB.length, 5), ...row.teamb.slice(0, 5 - teamB.length)]
})
if (this.state.queryType === 'public') {
// adapt json format so ExplorerOutputSection can process it
data = {};
data.rows = json.map(el => ({
...el,
team_a_win: el.teamawin,
team_a_composition: el.teama,
team_b_composition: el.teamb,
}));
data.rowCount = json.length;
data.fields = ['match_id', 'start_time', 'team_a_composition', 'team_b_composition'].map(el => ({
name: el,
}));
}
this.setState({ queryResult: data, loading: false });
};
sendRequest = () => {
const { teamA, teamB } = this.state;
this.setState({ loading: true }, () =>
fetch(`${config.VITE_API_HOST}/api/` +
`${this.state.queryType === 'pro' ?
`explorer?sql=${encodeURIComponent(this.buildQueryString())}` :
`findMatches?${querystring.stringify({ teamA, teamB })}`}`)
.then(res => res.json())
.then(this.handleResponse));
};
handleSubmit = () => {
const { teamA, teamB, queryType } = this.state;
window.history.pushState(
'',
'',
`?${querystring.stringify({ teamA, teamB, queryType })}`,
);
this.sendRequest();
};
handleCancel = () => {
this.setState({ loading: false });
window.stop();
}
handleRadioButtonChange = (_, value) => {
this.setState({ queryType: value });
}
filterAndRenderElements = (searchValue, resetSearchValue) => heroesArray.map(hero => (
<HeroSelector
id={hero.id}
heroName={hero.localized_name}
handleHeroSelection={this.handleHeroSelection(resetSearchValue)}
selected={[...this.state.teamA, ...this.state.teamB].includes(hero.id)}
teamAFull={this.state.teamA.length > 4}
teamBFull={this.state.teamB.length > 4}
strings={this.props.strings}
isFiltered={!new RegExp(escapeRegExp(searchValue), 'i').test(hero.localized_name)}
/>
));
render() {
const { teamA, teamB } = this.state;
const { strings } = this.props;
const noHeroesSelected = !teamA.length && !teamB.length;
return (
<StyledCombos>
<Heading title={strings.combos_title} subtitle={strings.combos_description} className="top-heading"/>
<div className="main-section">
<InputFilter
handleChange={this.handleChange}
value={this.state.searchValue}
reset={this.resetSearchValue}
setInputRef={this.setInputRef}
filterText={strings.placeholder_filter_heroes}
/>
<div className="hero-overview">
{this.filterAndRenderElements(this.state.searchValue, this.resetSearchValue)}
</div>
<SelectedHeroes
teamA={teamA}
teamB={teamB}
handleHeroDeSelection={this.handleHeroDeSelection}
strings={strings}
/>
<div className="submit-section">
<RadioButtonGroup
name="queryType"
defaultSelected={this.state.queryType}
onChange={this.handleRadioButtonChange}
>
<RadioButton
value="public"
label={strings.public_matches}
style={styles.radioButton.root}
iconStyle={styles.radioButton.icon}
/>
<RadioButton
value="pro"
label={strings.pro_matches}
style={{ ...styles.radioButton.root, marginRight: 0 }}
iconStyle={styles.radioButton.icon}
/>
</RadioButtonGroup>
<RaisedButton
label={this.state.loading ? strings.explorer_cancel_button : strings.request_submit}
onClick={this.state.loading ? this.handleCancel : this.handleSubmit}
buttonStyle={{ backgroundColor: this.state.loading ? '#822e2e' : 'rgba(23, 59, 90, 0.8)' }}
style={{ display: 'block', marginTop: 5 }}
disabled={noHeroesSelected}
/>
</div>
</div>
<pre style={{ color: 'red' }}>{this.state.queryResult && this.state.queryResult.err}</pre>
<Heading
title={strings.explorer_results}
subtitle={`${
(this.state.queryResult.rows || []).length
} ${strings.explorer_num_rows}`}
/>
{this.state.loading ? (
<TableSkeleton />
) : (
<ExplorerOutputSection
rows={this.state.queryResult.rows}
fields={this.state.queryResult.fields && this.state.queryResult.fields.filter(field => field.name !== 'team_a_win')}
/>
)}
</StyledCombos>
);
}
}
const mapStateToProps = state => ({
strings: state.app.strings,
});
export default connect(mapStateToProps)(Combos);
| odota/web/src/components/Combos/Combos.jsx/0 | {
"file_path": "odota/web/src/components/Combos/Combos.jsx",
"repo_id": "odota",
"token_count": 5302
} | 256 |
export default function editDistance(a, b) {
if (a.length === 0) return b.length;
if (b.length === 0) return a.length;
const matrix = [];
// increment along the first column of each row
let i;
for (i = 0; i <= b.length; i += 1) {
matrix[i] = [i];
}
// increment each column in the first row
let j;
for (j = 0; j <= a.length; j += 1) {
matrix[0][j] = j;
}
// Fill in the rest of the matrix
for (i = 1; i <= b.length; i += 1) {
for (j = 1; j <= a.length; j += 1) {
if (b.charAt(i - 1) === a.charAt(j - 1)) {
matrix[i][j] = matrix[i - 1][j - 1];
} else {
matrix[i][j] = Math.min(
matrix[i - 1][j - 1] + 1, // substitution
Math.min(
matrix[i][j - 1] + 1, // insertion
matrix[i - 1][j] + 1,
),
); // deletion
}
}
}
return matrix[b.length][a.length];
}
| odota/web/src/components/Explorer/editDistance.js/0 | {
"file_path": "odota/web/src/components/Explorer/editDistance.js",
"repo_id": "odota",
"token_count": 418
} | 257 |
import * as React from 'react';
import { FormControlLabel, Switch } from '@material-ui/core';
import { useStrings } from '../../hooks/useStrings.hook';
const GamemodeToggle = () => {
const strings = useStrings();
const [modeFilter, setModeFilter] = React.useState(window.localStorage.getItem('modeFilter'));
const handleToggle = React.useCallback(() => {
if (modeFilter === 'turbo') {
setModeFilter('');
window.localStorage.setItem('modeFilter', '');
window.location.reload();
} else {
setModeFilter('turbo');
window.localStorage.setItem('modeFilter', 'turbo');
window.location.reload();
}
}, [modeFilter, setModeFilter]);
return (
<FormControlLabel
label={strings.app_show_turbo_stats}
control={
<Switch
color="primary"
checked={modeFilter === 'turbo'}
onChange={handleToggle}
/>
}
/>
);
};
export default GamemodeToggle; | odota/web/src/components/GamemodeToggle/index.jsx/0 | {
"file_path": "odota/web/src/components/GamemodeToggle/index.jsx",
"repo_id": "odota",
"token_count": 377
} | 258 |
import React from 'react';
import { shape, number, string } from 'prop-types';
import styled from 'styled-components';
import AttributeMain from './AttributeMain';
import constants from '../constants';
const AttributesWrapper = styled.div`
background: rgba(0, 0, 0, .45);
border-radius: 8px;
display: block;
margin: auto;
max-width: 300px;
padding: 12px;
`;
const MainAttributesBlock = styled.div`
display: flex;
@media screen and (max-width: ${constants.wrapTablet}) {
display: block;
}
`;
const HeroAttributes = ({ hero }) => (
<AttributesWrapper>
<MainAttributesBlock>
<AttributeMain attribute="str" isPrimary={(hero.primary_attr === 'str')} base={hero.base_str} gain={hero.str_gain} />
<AttributeMain attribute="agi" isPrimary={(hero.primary_attr === 'agi')} base={hero.base_agi} gain={hero.agi_gain} />
<AttributeMain attribute="int" isPrimary={(hero.primary_attr === 'int')} base={hero.base_int} gain={hero.int_gain} />
</MainAttributesBlock>
</AttributesWrapper>
);
HeroAttributes.propTypes = {
hero: shape({
primary_attr: string,
base_str: number,
base_agi: number,
base_int: number,
str_gain: number,
agi_gain: number,
int_gain: number,
}),
};
export default HeroAttributes;
| odota/web/src/components/Hero/AttributesMain.jsx/0 | {
"file_path": "odota/web/src/components/Hero/AttributesMain.jsx",
"repo_id": "odota",
"token_count": 447
} | 259 |
import heroes from 'dotaconstants/build/heroes.json';
import constants from '../constants';
import { abbreviateNumber, displayHeroId } from '../../utility';
import { GlobalString } from 'src/types/common/GlobalString';
import { Heroes } from '../../types/Hero/Heroes';
import React from 'react';
type Props = {
tabType: HeroesTab;
strings: GlobalString;
};
enum HeroesTab {
PRO = 'pro',
PUBLIC = 'public',
TURBO = 'turbo',
}
type ProColumn = {
displayName: string;
field: string;
sortFn: boolean;
percentBarsWithValue: (row: Row) => string;
};
type PublicColumn = {
displayName: string;
field: string;
sortFn: boolean;
percentBarsWithValue: (row: Row) => string | number;
displayIcon?: string;
colColor?: string;
};
type HeroColumn = {
displayName: string;
tooltip: string;
field: string;
displayFn: () => React.ReactNode;
sortFn: (row: Row) => string;
};
type PreparedColumn = (ProColumn | PublicColumn | HeroColumn) & ColumnAddition;
type ColumnAddition = {
paddingLeft: number;
paddingRight: number;
tooltip: string;
};
type Row = {
[key in string]: number;
};
type Column = ProColumn | PublicColumn | HeroColumn;
export const rankColumns = (props: Props) => {
const columns = {
[HeroesTab.PRO]: generateProTabColumns(props.strings),
[HeroesTab.PUBLIC]: generatePublicTabColumns(props.strings),
[HeroesTab.TURBO]: generateTurboTabColumns(props.strings),
};
return columns[props.tabType];
};
const generateTurboTabColumns = (strings: GlobalString) => {
const heroColumn = generateHeroColumn(strings);
const combinedColumns = [
heroColumn,
{
displayName: strings.hero_turbo_pick_rate,
field: 'pickRateTurbo',
sortFn: true,
displayFn: (_row: Row, _col: string, field: any) =>
(field * 100).toFixed(1),
percentBarsWithValue: (row: Row) =>
decimalToCount(row.pickRateTurbo, row.matchCountTurbo),
},
{
displayName: strings.hero_turbo_win_rate,
field: 'winRateTurbo',
sortFn: true,
displayFn: (_row: Row, _col: string, field: any) =>
(field * 100).toFixed(1),
percentBarsWithValue: (row: Row) =>
decimalToCount(row.winRateTurbo, row.turbo_picks),
},
];
return combinedColumns;
};
const generateProTabColumns = (strings: GlobalString) => {
const heroColumn = generateHeroColumn(strings);
const combinedColumns = [
heroColumn,
{
displayName: strings.hero_pick_ban_rate,
field: 'pickBanRatePro',
sortFn: true,
percentBarsWithValue: (row: Row) =>
decimalToCount(row.pickBanRatePro, row.matchCountPro),
},
{
displayName: strings.hero_pick_rate,
field: 'pickRatePro',
sortFn: true,
percentBarsWithValue: (row: Row) =>
decimalToCount(row.pickRatePro, row.matchCountPro),
},
{
displayName: strings.hero_ban_rate,
field: 'banRatePro',
sortFn: true,
percentBarsWithValue: (row: Row) =>
decimalToCount(row.banRatePro, row.matchCountPro),
},
{
displayName: strings.hero_win_rate,
field: 'winRatePro',
sortFn: true,
percentBarsWithValue: (row: Row) =>
decimalToCount(row.winRatePro, row.pro_pick),
},
];
return combinedColumns;
};
const generateHeroColumn = (strings: GlobalString): HeroColumn => {
return {
displayName: strings.th_hero_id,
tooltip: strings.tooltip_hero_id,
field: 'hero_id',
displayFn: displayHeroId,
sortFn: (row: Row) => {
const typedHeroes: Heroes = heroes;
return typedHeroes[row.hero_id]?.localized_name;
},
};
};
const decimalToCount = (decimal: number, matchTotal: number) => {
if (decimal > 0) {
const count = decimal * matchTotal;
const roundedCount = abbreviateNumber(Math.floor(count));
return roundedCount;
}
return 0;
};
const generatePublicTabColumns = (strings: GlobalString) => {
const columns = [
{
displayName: `${strings.rank_tier_overall } ${ strings.abbr_pick }%`,
field: 'pickRatePub',
sortFn: true,
displayFn: (_row: Row, _col: string, field: any) =>
(field * 100).toFixed(1),
percentBarsWithValue: (row: Row) => decimalToCount(row.pickRatePub, row.matchCountPub),
},
{
displayName: `${strings.rank_tier_overall } ${ strings.abbr_win }%`,
field: 'winRatePub',
sortFn: true,
displayFn: (_row: Row, _col: string, field: any) =>
(field * 100).toFixed(1),
percentBarsWithValue: (row: Row) => decimalToCount(row.winRatePub, row.pickCountPub),
},
{
displayName: `${strings.rank_tier_high } ${ strings.abbr_pick }%`,
displayIcon: getRankIcon(8),
field: 'pickRateHigh',
sortFn: true,
displayFn: (_row: Row, _col: string, field: any) =>
(field * 100).toFixed(1),
percentBarsWithValue: (row: Row) => decimalToCount(row.pickRateHigh, row.matchCountHigh),
colColor: constants.colorImmortal,
},
{
displayName: `${strings.rank_tier_high } ${ strings.abbr_win }%`,
displayIcon: getRankIcon(8),
field: 'winRateHigh',
sortFn: true,
displayFn: (_row: Row, _col: string, field: any) =>
(field * 100).toFixed(1),
percentBarsWithValue: (row: Row) => decimalToCount(row.winRateHigh, row.pickCountHigh),
colColor: constants.colorImmortalAlt,
},
{
displayName: `${strings.rank_tier_mid } ${ strings.abbr_pick }%`,
displayIcon: getRankIcon(5),
field: 'pickRateMid',
sortFn: true,
displayFn: (_row: Row, _col: string, field: any) =>
(field * 100).toFixed(1),
percentBarsWithValue: (row: Row) => decimalToCount(row.pickRateMid, row.matchCountMid),
colColor: constants.colorLegend,
},
{
displayName: `${strings.rank_tier_mid } ${ strings.abbr_win }%`,
displayIcon: getRankIcon(5),
field: 'winRateMid',
sortFn: true,
displayFn: (_row: Row, _col: string, field: any) =>
(field * 100).toFixed(1),
percentBarsWithValue: (row: Row) => decimalToCount(row.winRateMid, row.pickCountMid),
colColor: constants.colorLegendAlt,
},
{
displayName: `${strings.rank_tier_low } ${ strings.abbr_pick }%`,
displayIcon: getRankIcon(3),
field: 'pickRateLow',
sortFn: true,
displayFn: (_row: Row, _col: string, field: any) =>
(field * 100).toFixed(1),
percentBarsWithValue: (row: Row) => decimalToCount(row.pickRateLow, row.matchCountLow),
colColor: constants.colorCrusader,
},
{
displayName: `${strings.rank_tier_low } ${ strings.abbr_win }%`,
displayIcon: getRankIcon(3),
field: 'winRateLow',
sortFn: true,
displayFn: (_row: Row, _col: string, field: any) =>
(field * 100).toFixed(1),
percentBarsWithValue: (row: Row) => decimalToCount(row.winRateLow, row.pickCountLow),
colColor: constants.colorCrusaderAlt,
},
];
const preparedHeroColumn = prepareHeroColumn(strings);
const preparedColumns = prepareColumns(columns, strings);
return preparedHeroColumn.concat(preparedColumns);
};
const getRankIcon = (number: number) =>
`/assets/images/dota2/rank_icons/rank_icon_${number}.png`;
const prepareColumns = (columns: Column[], strings: GlobalString) => {
return columns.map((column) => {
const preparedColumn: PreparedColumn = {
...column,
tooltip: column.displayName,
paddingRight: 1,
paddingLeft: 4,
};
return preparedColumn;
});
};
const prepareHeroColumn = (strings: GlobalString): PreparedColumn[] => {
const columns = [generateHeroColumn(strings)];
return prepareColumns(columns, strings);
};
| odota/web/src/components/Heroes/rankColumns.ts/0 | {
"file_path": "odota/web/src/components/Heroes/rankColumns.ts",
"repo_id": "odota",
"token_count": 3094
} | 260 |
import React from 'react';
import PropTypes from 'prop-types';
const Contributor = ({ dColor, oColor, ...props }) => (
<svg {...props} version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1138 1138">
<path fill={dColor} d="M450 1047h60a1 1 0 0 0 0-957h-60zm120-807a.9 1 0 0 1 0 660z" />
<path fill={oColor} d="M436.5 216.4c-87.2 18.3-162.6 66.3-216.3 137.8-38.2 50.9-61.1 109.7-69.4 177.8-1.7 13.7-1.7 59.2 0 73.5 9.9 85.6 44.9 159 103.8 217.9 52.5 52.5 116.8 86.1 191.4 100 24.6 4.6 31 5.1 63.5 5 33 0 42.3-.8 68.5-6 136.4-27 244.8-129.1 279.6-263.4 8-30.9 10.9-54.8 10.9-90 0-28.6-.7-37.7-5-62.5-21.9-127.8-114.1-235.7-237.2-277.9-14.2-4.8-31-9.5-43.8-12.1-4.4-.9-9-1.8-10.2-2.1l-2.3-.4V336.7l10.3 3.3c75.2 23.7 133 81 157 155.5 32.5 101.1-5 211-92.6 271.3-40.1 27.6-85.6 41.5-135.7 41.5-50.1 0-95.6-13.9-135.7-41.5-44.2-30.4-76.2-73.4-92.6-124.4-30.5-94.7.6-198.2 78.3-260.6 24.4-19.6 54.4-35.1 83.1-43.1l7.9-2.2v-61.3c0-48.3-.3-61.2-1.2-61.1-.7 0-6.2 1.1-12.3 2.3z" />
</svg>
);
Contributor.propTypes = {
oColor: PropTypes.string,
dColor: PropTypes.string,
};
export default Contributor;
| odota/web/src/components/Icons/Contributor.jsx/0 | {
"file_path": "odota/web/src/components/Icons/Contributor.jsx",
"repo_id": "odota",
"token_count": 638
} | 261 |
import React from 'react';
export default props => (
<svg {...props} viewBox="0 0 300 300">
<rect x="81.8" y="13.6" width="54.5" height="272.7" />
<rect y="204.5" width="54.5" height="81.8" />
<rect x="163.6" y="150" width="54.5" height="136.4" />
<rect x="245.5" y="95.5" width="54.5" height="190.9" />
</svg>
);
| odota/web/src/components/Icons/StatsBars.jsx/0 | {
"file_path": "odota/web/src/components/Icons/StatsBars.jsx",
"repo_id": "odota",
"token_count": 156
} | 262 |
export { default } from './Chat';
| odota/web/src/components/Match/Chat/index.js/0 | {
"file_path": "odota/web/src/components/Match/Chat/index.js",
"repo_id": "odota",
"token_count": 10
} | 263 |
import React from 'react';
import { connect } from 'react-redux';
import PropTypes from 'prop-types';
import Toggle from 'material-ui/Toggle';
import TeamTable from '../TeamTable';
import mcs from '../matchColumns';
import config from '../../../config';
const toggleStyle = {
width: '30px',
float: 'right',
position: 'absolute',
right: '100px',
top: '-12px',
border: '1px solid rgba(179, 179, 179, 0.1)',
padding: '6px',
backgroundColor: 'rgba(0, 0, 0, 0.6)',
borderRadius: '5px',
};
class Purchases extends React.Component {
static propTypes = {
match: PropTypes.shape({}),
strings: PropTypes.shape({}),
sponsorURL: PropTypes.string,
sponsorIcon: PropTypes.string,
}
constructor(props) {
super(props);
this.state = {
showConsumables: false,
};
this.change = () => {
const { showConsumables } = this.state;
this.setState({ showConsumables: !showConsumables });
};
}
render() {
const {
match, strings, sponsorURL, sponsorIcon,
} = this.props;
const { purchaseTimesColumns } = mcs(strings);
return (
<div style={{ position: 'relative' }}>
<Toggle
label={strings.show_consumables_items}
labelStyle={{ color: '#b3b3b3', lineHeight: '13px', fontSize: '14px' }}
style={toggleStyle}
onToggle={this.change}
thumbStyle={{ backgroundColor: 'rgb(179, 179, 179)', marginTop: '2px', marginRight: '3px' }}
trackStyle={{ position: 'absolute', marginTop: '2px', marginRight: '3px' }}
/>
<TeamTable
players={match.players}
columns={purchaseTimesColumns(match, this.state.showConsumables)}
heading={strings.heading_purchase_log}
buttonLabel={config.VITE_ENABLE_GOSUAI ? strings.gosu_default : null}
buttonTo={`${sponsorURL}Purchases`}
buttonIcon={sponsorIcon}
radiantTeam={match.radiant_team}
direTeam={match.dire_team}
radiantWin={match.radiant_win}
overflowAuto
/>
</div>);
}
}
const mapStateToProps = state => ({
strings: state.app.strings,
});
export default connect(mapStateToProps)(Purchases);
| odota/web/src/components/Match/Purchases/index.jsx/0 | {
"file_path": "odota/web/src/components/Match/Purchases/index.jsx",
"repo_id": "odota",
"token_count": 914
} | 264 |
import React from 'react';
import PropTypes from 'prop-types';
import { connect }
from 'react-redux';
import RaisedButton from 'material-ui/RaisedButton';
import ActionSearch from 'material-ui/svg-icons/action/search';
import Helmet from 'react-helmet';
import querystring from 'querystring';
import ExplorerOutputSection from '../Explorer/ExplorerOutputSection';
import ExplorerControlSection from '../Explorer/ExplorerControlSection';
import ExplorerFormField from '../Explorer/ExplorerFormField';
import Heading from '../Heading';
import TableSkeleton from '../Skeletons/TableSkeleton';
import queryTemplate from './queryTemplate';
import getFields from './fields';
import config from '../../config';
function jsonResponse(response) {
return response.json();
}
function expandBuilderState(builder, fields) {
const expandedBuilder = {};
Object.keys(builder).forEach((key) => {
if (builder[key]) {
expandedBuilder[key] = (fields[key] || []).find(element => element.key === builder[key]) || { value: builder[key] };
}
});
return expandedBuilder;
}
class Explorer extends React.Component {
static propTypes = {
strings: PropTypes.shape({}),
}
constructor() {
super();
const urlState = querystring.parse(window.location.search.substring(1));
this.state = {
loadingEditor: true,
loading: false,
result: {},
builder: urlState,
sql: '',
};
}
componentDidMount() {
this.buildQuery(this.handleQuery);
}
buildQuery = (cb) => {
const noOp = () => {};
const expandedBuilder = expandBuilderState(this.state.builder, getFields());
this.setState({ sql: queryTemplate(expandedBuilder) }, cb || noOp);
};
handleCancel = () => {
this.setState({
...this.state,
loading: false,
});
window.stop();
};
handleFieldUpdate = (builderField, value) => {
this.setState({
...this.state,
builder: {
...this.state.builder,
[builderField]: value,
},
}, this.buildQuery);
};
handleQuery = () => {
this.setState({
...this.state,
loading: true,
});
this.syncWindowHistory();
const sqlString = this.state.sql;
return fetch(`${config.VITE_API_HOST}/api/explorer?sql=${encodeURIComponent(sqlString)}`).then(jsonResponse).then(this.handleResponse);
};
handleResponse = (json) => {
this.setState({
...this.state,
loading: false,
result: json,
});
};
syncWindowHistory = () => {
const objectToSerialize = this.state.builder;
const stringToSerialize = `?${querystring.stringify(objectToSerialize)}`;
window.history.pushState('', '', stringToSerialize);
};
render() {
const { builder } = this.state;
const { strings } = this.props;
const expandedFields = getFields();
const expandedBuilder = expandBuilderState(this.state.builder, expandedFields);
const { handleQuery, handleCancel, handleFieldUpdate } = this;
return (
<div>
<Helmet title={`${strings.title_meta}`} />
<Heading title={strings.meta_title} subtitle={strings.meta_description} className="top-heading"/>
<ExplorerControlSection>
<ExplorerFormField label={strings.explorer_group_by} fields={expandedFields} builderField="group" handleFieldUpdate={handleFieldUpdate} builder={builder} />
<ExplorerFormField label={strings.explorer_min_rank_tier} fields={expandedFields} builderField="minRankTier" handleFieldUpdate={handleFieldUpdate} builder={builder} />
<ExplorerFormField label={strings.explorer_max_rank_tier} fields={expandedFields} builderField="maxRankTier" handleFieldUpdate={handleFieldUpdate} builder={builder} />
<ExplorerFormField label={strings.explorer_hero} fields={expandedFields} builderField="hero" handleFieldUpdate={handleFieldUpdate} builder={builder} />
<ExplorerFormField label={strings.explorer_side} fields={expandedFields} builderField="side" handleFieldUpdate={handleFieldUpdate} builder={builder} />
<ExplorerFormField label={strings.th_result} fields={expandedFields} builderField="result" handleFieldUpdate={handleFieldUpdate} builder={builder} />
<ExplorerFormField label={strings.explorer_min_duration} fields={expandedFields} builderField="minDuration" handleFieldUpdate={handleFieldUpdate} builder={builder} />
<ExplorerFormField label={strings.explorer_max_duration} fields={expandedFields} builderField="maxDuration" handleFieldUpdate={handleFieldUpdate} builder={builder} />
<ExplorerFormField label={strings.filter_game_mode} fields={expandedFields} builderField="gameMode" handleFieldUpdate={handleFieldUpdate} builder={builder} />
<ExplorerFormField label={strings.filter_lobby_type} fields={expandedFields} builderField="lobbyType" handleFieldUpdate={handleFieldUpdate} builder={builder} />
{/* <ExplorerFormField label={strings.explorer_min_mmr} fields={expandedFields} builderField="minMmr" handleFieldUpdate={handleFieldUpdate} builder={builder} /> */}
{/* <ExplorerFormField label={strings.explorer_max_mmr} fields={expandedFields} builderField="maxMmr" handleFieldUpdate={handleFieldUpdate} builder={builder} /> */}
{/* <ExplorerFormField label={strings.explorer_min_date} builderField="minDate" handleFieldUpdate={handleFieldUpdate} builder={builder} isDateField /> */}
{/* <ExplorerFormField label={strings.explorer_max_date} builderField="maxDate" handleFieldUpdate={handleFieldUpdate} builder={builder} isDateField /> */}
{/* <ExplorerFormField label={strings.explorer_order} fields={expandedFields} builderField="order" handleFieldUpdate={handleFieldUpdate} builder={builder} /> */}
{/* <ExplorerFormField label={strings.explorer_having} fields={expandedFields} builderField="having" handleFieldUpdate={handleFieldUpdate} builder={builder} /> */}
{/* <ExplorerFormField label={strings.explorer_limit} fields={expandedFields} builderField="limit" handleFieldUpdate={handleFieldUpdate} builder={builder} /> */}
</ExplorerControlSection>
<div>
<RaisedButton
primary={!this.state.loading}
secondary={this.state.loading}
style={{ margin: '5px' }}
icon={!this.state.loading ? <ActionSearch /> : null}
label={this.state.loading ? strings.explorer_cancel_button : strings.explorer_query_button}
onClick={this.state.loading ? handleCancel : handleQuery}
/>
</div>
<Heading title={strings.explorer_results} subtitle={`${(this.state.result.rows || []).length} ${strings.explorer_num_rows}`} />
<pre style={{ color: 'red' }}>{this.state.result.err}</pre>
{this.state.loading ? <TableSkeleton /> : null}
<ExplorerOutputSection
rows={this.state.result.rows}
fields={this.state.result.fields}
expandedBuilder={expandedBuilder}
format={this.state.builder.format}
/>
</div>);
}
}
const mapStateToProps = state => ({
strings: state.app.strings,
});
const mapDispatchToProps = () => ({
});
export default connect(mapStateToProps, mapDispatchToProps)(Explorer);
| odota/web/src/components/Meta/index.jsx/0 | {
"file_path": "odota/web/src/components/Meta/index.jsx",
"repo_id": "odota",
"token_count": 2506
} | 265 |
import React from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import styled from 'styled-components';
import { getPlayerCounts } from '../../../../actions';
import Table from '../../../Table';
import Container from '../../../Container';
import playerCountsColumns from './playerCountsColumns';
const StyledContainer = styled.div`
display: flex;
flex-direction: row;
flex-wrap: wrap;
`;
const StyledTableContainer = styled.div`
flex-grow: 1;
overflow-x: auto;
box-sizing: border-box;
padding: 5px;
`;
const Counts = ({
counts, error, loading, strings,
}) => (
<StyledContainer>
{Object.keys(counts).map(key => (
<StyledTableContainer key={key}>
<Container title={strings[`heading_${key}`]} error={error} loading={loading}>
<Table columns={playerCountsColumns(strings)} data={counts[key].list} />
</Container>
</StyledTableContainer>
))}
</StyledContainer>
);
Counts.propTypes = {
counts: PropTypes.oneOfType([
PropTypes.shape({}),
PropTypes.array,
]),
error: PropTypes.string,
loading: PropTypes.bool,
strings: PropTypes.shape({}),
};
const getData = (props) => {
props.getPlayerCounts(props.playerId, props.location.search);
};
class RequestLayer extends React.Component {
static propTypes = {
playerId: PropTypes.string,
location: PropTypes.shape({
key: PropTypes.string,
}),
strings: PropTypes.shape({}),
}
componentDidMount() {
getData(this.props);
}
componentDidUpdate(prevProps) {
if (this.props.playerId !== prevProps.playerId || this.props.location.key !== prevProps.location.key) {
getData(this.props);
}
}
render() {
return (
<Counts {...this.props} />
);
}
}
const mapStateToProps = state => ({
counts: state.app.playerCounts.data,
error: state.app.playerCounts.error,
loading: state.app.playerCounts.loading,
strings: state.app.strings,
});
const mapDispatchToProps = dispatch => ({
getPlayerCounts: (playerId, options) => dispatch(getPlayerCounts(playerId, options)),
});
export default connect(mapStateToProps, mapDispatchToProps)(RequestLayer);
| odota/web/src/components/Player/Pages/Counts/Counts.jsx/0 | {
"file_path": "odota/web/src/components/Player/Pages/Counts/Counts.jsx",
"repo_id": "odota",
"token_count": 785
} | 266 |
import React from 'react';
import { transformations } from '../../../../utility';
import { TableLink } from '../../../Table';
export default (playerId, strings) => [{
displayName: strings.th_avatar,
field: 'last_played',
displayFn: transformations.player,
sortFn: true,
}, {
displayName: strings.th_matches,
tooltip: strings.tooltip_matches,
field: 'with_games',
sortFn: row => row.with_games + row.against_games,
relativeBars: true,
displayFn: row => (
<TableLink to={`/players/${playerId}/matches?included_account_id=${row.account_id}`}>{row.with_games + row.against_games}</TableLink>
),
}, {
displayName: strings.th_with_games,
tooltip: strings.tooltip_played_with,
field: 'with_games',
sortFn: true,
relativeBars: true,
}, {
displayName: strings.th_with_win,
tooltip: strings.tooltip_win_pct_with,
field: 'with_win',
sortFn: row => row.with_win / row.with_games,
percentBars: true,
}, {
displayName: strings.th_against_games,
tooltip: strings.tooltip_played_against,
field: 'against_games',
sortFn: true,
relativeBars: true,
}, {
displayName: strings.th_against_win,
tooltip: strings.tooltip_win_pct_against,
field: 'against_win',
sortFn: row => row.against_win / row.against_games,
percentBars: true,
}];
| odota/web/src/components/Player/Pages/Pros/playerProsColumns.jsx/0 | {
"file_path": "odota/web/src/components/Player/Pages/Pros/playerProsColumns.jsx",
"repo_id": "odota",
"token_count": 466
} | 267 |
import React from 'react';
import {
PeersPage,
OverviewPage,
MatchesPage,
HeroesPage,
ProsPage,
RankingsPage,
HistogramsPage,
RecordsPage,
CountsPage,
TrendsPage,
MMRPage,
// ItemsPage,
WardmapPage,
WordcloudPage,
TotalsPage,
ActivityPage,
} from './Pages';
const playerPages = strings => [{
name: strings.tab_overview,
key: 'overview',
content: (playerId, routeParams, location) => (<OverviewPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_matches,
key: 'matches',
content: (playerId, routeParams, location) => (<MatchesPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_heroes,
key: 'heroes',
content: (playerId, routeParams, location) => (<HeroesPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_peers,
key: 'peers',
content: (playerId, routeParams, location) => (<PeersPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_pros,
key: 'pros',
content: (playerId, routeParams, location) => (<ProsPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_records,
key: 'records',
content: (playerId, routeParams, location) => (<RecordsPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_totals,
key: 'totals',
content: (playerId, routeParams, location) => (<TotalsPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_counts,
key: 'counts',
content: (playerId, routeParams, location) => (<CountsPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_histograms,
key: 'histograms',
content: (playerId, routeParams, location) => (<HistogramsPage
playerId={playerId}
routeParams={routeParams}
location={location}
histogramName={routeParams.subInfo}
/>),
}, {
name: strings.tab_trends,
key: 'trends',
content: (playerId, routeParams, location) => (<TrendsPage
playerId={playerId}
routeParams={routeParams}
location={location}
trendName={routeParams.subInfo}
/>),
}, {
name: strings.tab_wardmap,
key: 'wardmap',
content: (playerId, routeParams, location) => (<WardmapPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_wordcloud,
key: 'wordcloud',
content: (playerId, routeParams, location) => (<WordcloudPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_mmr,
key: 'mmr',
content: (playerId, routeParams, location) => (<MMRPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_rankings,
key: 'rankings',
content: (playerId, routeParams, location) => (<RankingsPage playerId={playerId} routeParams={routeParams} location={location} />),
}, {
name: strings.tab_activity,
key: 'activity',
content: (playerId, routeParams, location) => (<ActivityPage playerId={playerId} routeParams={routeParams} location={location} />),
}];
export default (playerId, strings, isPlayerProfilePublic) => playerPages(strings).map(page => ({
...page,
route: `/players/${playerId}/${page.key}`,
disabled: !isPlayerProfilePublic,
}));
| odota/web/src/components/Player/playerPages.jsx/0 | {
"file_path": "odota/web/src/components/Player/playerPages.jsx",
"repo_id": "odota",
"token_count": 1150
} | 268 |
import Search from './Search';
export default Search;
| odota/web/src/components/Search/index.js/0 | {
"file_path": "odota/web/src/components/Search/index.js",
"repo_id": "odota",
"token_count": 14
} | 269 |
import React, { useCallback } from 'react';
import { connect } from 'react-redux';
import Helmet from 'react-helmet';
import styled from 'styled-components';
import { loadStripe } from '@stripe/stripe-js';
import RaisedButton from 'material-ui/RaisedButton';
import { IconSteam } from '../Icons';
import { useStrings } from '../../hooks/useStrings.hook';
import config from '../../config';
const stripePromise = config.VITE_STRIPE_PUBLIC_KEY
? loadStripe(config.VITE_STRIPE_PUBLIC_KEY)
: null;
const PageContainer = styled.div`
width: 80%;
margin: 0 auto;
@media only screen and (max-width: 768px) {
width: 100%;
}
& li {
list-style-type: initial;
}
h1,
h2 {
text-align: center;
}
& h2 {
font-size: 1.17em;
margin: 0 5px;
}
`;
const SubHeader = styled.div`
width: 100%;
background-image: url('/assets/images/carry-header.jpg');
background-position: 50% 0px;
margin: 20px 0;
text-shadow: 1px 1px 1px #000;
display: flex;
flex-direction: column;
justify-content: center;
`;
const Attribution = styled.p`
font-size: 14px;
margin-right: 10px;
align-self: flex-end;
`;
const SubContainer = styled.div`
display: flex;
justify-content: space-around;
align-items: center;
`;
const SubLeft = styled.div`
margin: 8px;
`;
const SubRight = styled.div`
display: flex;
flex-direction: column;
align-items: center;
`;
const handleSubscribe = async (user) => {
if (!stripePromise) {
console.warn('Stripe integration is not configured, cannot subscribe');
return;
}
const stripe = await stripePromise;
const result = await stripe?.redirectToCheckout({
lineItems: [
{
price:
process.env.NODE_ENV === 'development'
? 'price_1LE6FHCHN72mG1oK4E4NdERI'
: 'price_1LE5NqCHN72mG1oKg2Y9pqXb',
quantity: 1,
},
],
mode: 'subscription',
successUrl: `${config.VITE_API_HOST}/subscribeSuccess?session_id={CHECKOUT_SESSION_ID}`,
cancelUrl: window.location.href,
clientReferenceId: `${user.account_id}`,
});
// If `redirectToCheckout` fails due to a browser or network
// error, display the localized error message to your customer
// using `error.message`.
if (result && result.error) {
console.error(result.error.message);
}
};
const Subscription = ({ user, isSubscriber }) => {
const strings = useStrings();
const handleManage = useCallback(async () => {
const res = await fetch(`${config.VITE_API_HOST}/manageSub`, {
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
credentials: 'include',
method: 'POST',
body: JSON.stringify({
return_url: window.location.href,
}),
});
const session = await res.json();
window.location.assign(session.url);
}, [isSubscriber]);
return (
<PageContainer>
<Helmet>
<title>{strings.subscriptions_h1}</title>
<meta name="description" content={strings.api_meta_description} />
</Helmet>
<SubHeader>
<h1>{strings.subscriptions_h1}</h1>
<h2>{strings.subscriptions_h2}</h2>
<Attribution>
Picture by {" "}
<a href="http://entroz.deviantart.com/" target="_blank" rel="noreferrer">Eric Geusz</a>
</Attribution>
</SubHeader>
<p>{strings.subscriptions_body1}</p>
<SubContainer>
<SubLeft>
<h3>{strings.subscriptions_h3}</h3>
<ul>
<li>{strings.subscriptions_li1}</li>
<li>{strings.subscriptions_li2}</li>
<li>{strings.subscriptions_li3}</li>
<li>{strings.subscriptions_li4}</li>
<li>{strings.subscriptions_li5}</li>
</ul>
</SubLeft>
<SubRight>
{user && isSubscriber && (
<>
<h4>{strings.subscriptions_h4}</h4>
<RaisedButton
primary
onClick={handleManage}
label={strings.subscriptions_button_manage}
/>
</>
)}
{user && !isSubscriber && (
<RaisedButton
primary
onClick={() => handleSubscribe(user)}
label={strings.subscriptions_button_subscribe}
/>
)}
{!user && (
<RaisedButton
primary
href={`${config.VITE_API_HOST}/login`}
label={strings.subscriptions_button_login}
icon={<IconSteam />}
/>
)}
</SubRight>
</SubContainer>
</PageContainer>
);
};
const mapStateToProps = (state) => ({
loading: state.app.match.loading,
error: state.app.match.error,
user: state.app.metadata.data.user,
isSubscriber: state.app.metadata.data.isSubscriber,
strings: state.app.strings,
});
export default connect(mapStateToProps)(Subscription);
| odota/web/src/components/Subscription/Subscription.jsx/0 | {
"file_path": "odota/web/src/components/Subscription/Subscription.jsx",
"repo_id": "odota",
"token_count": 2215
} | 270 |
import React from 'react';
import Container from '../Container';
import Table from '../Table';
import { matchColumns, memberColumns, heroColumns } from './teamDataColumns';
import { Row, MatchesContainer, MemberAndHeroContainer } from './TeamStyled';
const MAX_MATCHES_ROWS = 20;
const MAX_HEROES_ROWS = 10;
export default strings => ({
name: strings.tab_overview,
key: 'overview',
content: (generalData, matchData, heroData, playerData) => (
<Row>
<MatchesContainer>
<Container
title={strings.heading_matches}
loading={matchData.Loading}
error={matchData.error}
>
<Table
columns={matchColumns(strings)}
data={matchData.data}
maxRows={MAX_MATCHES_ROWS}
/>
</Container>
</MatchesContainer>
<MemberAndHeroContainer>
<Container
title={strings.heading_current_players}
loading={playerData.loading}
error={playerData.error}
>
<Table
columns={memberColumns(strings)}
data={playerData.data.filter(player => player.is_current_team_member)}
/>
</Container>
<Container
title={strings.heading_heroes}
loading={heroData.loading}
error={heroData.error}
>
<Table
columns={heroColumns(strings)}
data={heroData.data}
maxRows={MAX_HEROES_ROWS}
/>
</Container>
</MemberAndHeroContainer>
</Row>
),
});
| odota/web/src/components/Team/Overview.jsx/0 | {
"file_path": "odota/web/src/components/Team/Overview.jsx",
"repo_id": "odota",
"token_count": 704
} | 271 |
import React from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import {
XAxis,
YAxis,
Tooltip,
Line,
LineChart,
CartesianGrid,
Legend,
Label,
ResponsiveContainer,
} from 'recharts';
import heroes from 'dotaconstants/build/heroes.json';
import styled from 'styled-components';
import { formatSeconds, fromNow, formatGraphValueData } from '../../../utility';
import constants from '../../constants';
import HeroImage from '../HeroImage';
const TooltipStylesDiv = styled.div`
.tooltipWrapper {
background-color: ${constants.defaultPrimaryColor};
color: ${constants.textColorPrimary} !important;
font-size: ${constants.fontSizeMedium};
min-width: 250px;
}
.value {
text-align: center;
background-color: ${constants.colorBlueMuted};
height: 30px;
line-height: 30px;
font-size: ${constants.fontSizeCommon};
}
.match {
display: flex;
justify-content: space-between;
padding: 10px;
}
.win {
color: ${constants.colorSuccess};
}
.loss {
color: ${constants.colorDanger};
}
.time {
color: ${constants.colorMutedLight};
font-size: ${constants.fontSizeTiny};
}
.matchValue {
font-weight: bold;
}
.hero {
height: 50px;
width: 88.88px; /* ratio */
background-color: ${constants.almostBlack};
}
.heroImg {
height: 100%;
}
.noData {
text-align: center;
padding-top: 30px;
font-size: ${constants.fontSizeCommon};
}
`;
const TrendTooltipContent = ({ payload, name, strings }) => {
const data = payload && payload[0] && payload[0].payload;
if (data) {
const hero = heroes[data.hero_id] || {};
const trendStr = strings[`heading_${name}`];
const unit = data.name === 'win_rate' ? '%' : '';
return (
<TooltipStylesDiv>
<div className="tooltipWrapper">
<div className="value">
{data.name === 'win_rate' ? '' : strings.trends_tooltip_average}
{` ${trendStr}: ${formatGraphValueData(Number(data.value.toFixed(2)), name)}${unit}`}
</div>
<div className="match">
<div>
<div>
<span className={data.win ? 'win' : 'loss'}>
{data.win ? strings.td_win : strings.td_loss}
</span>
<span className="time">{` ${fromNow(data.start_time)}`}</span>
</div>
<div>{strings[`game_mode_${data.game_mode}`]}</div>
<div>{formatSeconds(data.duration)}</div>
{data.name === 'win_rate' || name === 'duration' ? (
''
) : (
<div className="matchValue">
{`${trendStr}: ${formatGraphValueData(Number(data.independent_value.toFixed(2)), name)}${unit}`}
</div>
)}
</div>
<div className="hero">
<HeroImage id={hero.id} className="heroImg" />
</div>
</div>
</div>
</TooltipStylesDiv>
);
}
return null;
};
TrendTooltipContent.propTypes = {
payload: PropTypes.arrayOf({}),
name: PropTypes.string,
strings: PropTypes.shape({}),
};
const TrendGraph = ({ columns, name, strings }) => (
<ResponsiveContainer width="100%" height={400}>
<LineChart
data={columns}
margin={{
top: 5,
right: 30,
left: 30,
bottom: 5,
}}
>
<XAxis interval={49}>
<Label value="" position="insideTopRight" />
</XAxis>
<YAxis domain={['auto', 'auto']} />
<CartesianGrid stroke="#505050" strokeWidth={1} opacity={0.5} />
<Tooltip content={<TrendTooltipContent name={name} strings={strings} />} />
<Line
dot={false}
dataKey="value"
stroke="#66BBFF"
strokeWidth={2}
name={strings[`heading_${name}`]}
/>
<Legend />
</LineChart>
</ResponsiveContainer>
);
TrendGraph.propTypes = {
columns: PropTypes.arrayOf({}),
name: PropTypes.string,
strings: PropTypes.shape({}),
};
const mapStateToProps = state => ({
strings: state.app.strings,
});
export default connect(mapStateToProps)(TrendGraph);
| odota/web/src/components/Visualizations/Graph/TrendGraph.jsx/0 | {
"file_path": "odota/web/src/components/Visualizations/Graph/TrendGraph.jsx",
"repo_id": "odota",
"token_count": 1857
} | 272 |
/* eslint-disable react/jsx-filename-extension */
import React from 'react';
import { createBrowserHistory } from 'history';
import { render, hydrate } from 'react-dom';
import { Provider } from 'react-redux';
import { BrowserRouter } from 'react-router-dom';
import ReactGA from 'react-ga';
import store from './store';
import { getMetadata, getStrings } from './actions';
import App from './components/App';
// import { unregister } from './common/serviceWorker';
// Fetch metadata (used on all pages)
store.dispatch(getMetadata());
// Fetch strings
store.dispatch(getStrings());
const history = createBrowserHistory();
if (process.env.NODE_ENV === 'production') {
ReactGA.initialize('UA-55757642-1');
ReactGA.pageview(window.location.pathname + window.location.search);
history.listen((location) => {
ReactGA.pageview(location.pathname);
});
}
const rootElement = document.getElementById('root');
const app = (
<Provider store={store}>
<BrowserRouter history={history}>
<App />
</BrowserRouter>
</Provider>
);
if (rootElement.hasChildNodes()) {
hydrate(app, rootElement);
} else {
render(app, rootElement);
}
// Remove loader
const loader = document.getElementById('loader');
if (loader) {
loader.remove();
}
// unregister();
| odota/web/src/index.jsx/0 | {
"file_path": "odota/web/src/index.jsx",
"repo_id": "odota",
"token_count": 412
} | 273 |
{
"yes": "はい",
"no": "いいえ",
"abbr_thousand": "k",
"abbr_million": "m",
"abbr_billion": "b",
"abbr_trillion": "t",
"abbr_quadrillion": "q",
"abbr_not_available": "N/A",
"abbr_pick": "P",
"abbr_win": "W",
"abbr_number": "No.",
"analysis_eff": "レーン効率",
"analysis_farm_drought": "5分間内の最低GPM",
"analysis_skillshot": "スキルの命中精度",
"analysis_late_courier": "クーリエアップグレードの遅延",
"analysis_wards": "ワードの設置",
"analysis_roshan": "Roshanキル",
"analysis_rune_control": "ルーン確保",
"analysis_unused_item": "未使用のアクティブアイテム",
"analysis_expected": "の",
"announce_dismiss": "閉じる",
"announce_github_more": "GitHubで見る",
"api_meta_description": "The OpenDota API gives you access to all the advanced Dota 2 stats offered by the OpenDota platform. Access performance graphs, heatmaps, wordclouds, and more. Get started for free.",
"api_title": "The OpenDota API",
"api_subtitle": "Build on top of the OpenDota platform. Bring advanced stats to your app and deep insights to your users.",
"api_details_free_tier": "Free Tier",
"api_details_premium_tier": "Premium Tier",
"api_details_price": "Price",
"api_details_price_free": "Free",
"api_details_price_prem": "$price per $unit calls",
"api_details_key_required": "Key Required?",
"api_details_key_required_free": "No",
"api_details_key_required_prem": "Yes -- requires payment method",
"api_details_call_limit": "Call Limit",
"api_details_call_limit_free": "$limit per month",
"api_details_call_limit_prem": "Unlimited",
"api_details_rate_limit": "Rate Limit",
"api_details_rate_limit_val": "$num calls per minute",
"api_details_support": "Support",
"api_details_support_free": "Community support via Discord group",
"api_details_support_prem": "Priority support from core developers",
"api_get_key": "Get my key",
"api_docs": "Read the docs",
"api_header_details": "Details",
"api_charging": "You're charged $cost per call, rounded up to the nearest cent.",
"api_credit_required": "Getting an API key requires a linked payment method. We'll automatically charge the card at the beginning of the month for any fees owed.",
"api_failure": "500 errors don't count as usage, since that means we messed up!",
"api_error": "There was an error with the request. Please try again. If it continues, contact us at support@opendota.com.",
"api_login": "Login to access API Key",
"api_update_billing": "Update billing method",
"api_delete": "Delete key",
"api_key_usage": "To use your key, add $param as a query parameter to your API request:",
"api_billing_cycle": "The current billing cycle ends on $date.",
"api_billed_to": "We'll automatically bill the $brand ending in $last4.",
"api_support": "Need support? Email $email.",
"api_header_usage": "Your Usage",
"api_usage_calls": "# API calls",
"api_usage_fees": "Estimated Fees",
"api_month": "Month",
"api_header_key": "Your Key",
"api_header_table": "Get started for free. Keep going at a ridiculously low price.",
"app_name": "OpenDota",
"app_language": "言語",
"app_localization": "ローカライゼーション",
"app_description": "オープンソースなDota2のデータプラットフォーム",
"app_about": "OpenDotaについて",
"app_privacy_terms": "ポリシーと規約",
"app_api_docs": "APIドキュメント",
"app_blog": "ブログ",
"app_translate": "翻訳",
"app_donate": "寄付",
"app_gravitech": "Gravitech LLCサイト",
"app_powered_by": "powered by",
"app_donation_goal": "今月の寄付目標",
"app_sponsorship": "あなたの支援によって無料でこのサービスを運営できます。",
"app_twitter": "Twitterでフォロー",
"app_github": "GitHub上でのソース",
"app_discord": "Discordでチャット",
"app_steam_profile": "Steamプロフィール",
"app_confirmed_as": "確認",
"app_untracked": "このユーザーは最近このサイトに訪れてないので、自動的にマッチデータが解析されません。",
"app_tracked": "このユーザーは最近訪れたので、自動的にマッチデータが解析されます。",
"app_cheese_bought": "チーズ購入数",
"app_contributor": "This user has contributed to the development of the OpenDota project",
"app_dotacoach": "コーチに尋ねる",
"app_pvgna": "ガイドを探す",
"app_pvgna_alt": "PvgnaでDota2のガイドを探す",
"app_rivalry": "Bet on Pro Matches",
"app_rivalry_team": "Bet on {0} Matches",
"app_refresh": "マッチ履歴の更新: 未発見のマッチ結果の検索のキューに入れます。",
"app_refresh_label": "更新",
"app_login": "ログイン",
"app_logout": "ログアウト",
"app_results": "結果",
"app_report_bug": "バグを報告",
"app_pro_players": "プロプレイヤー",
"app_public_players": "パブリックプレイヤー",
"app_my_profile": "自分のプロフィール",
"barracks_value_1": "Dire Bot Melee",
"barracks_value_2": "Dire Bot Ranged",
"barracks_value_4": "Dire Mid Melee",
"barracks_value_8": "Dire Mid Ranged",
"barracks_value_16": "Dire Top Melee",
"barracks_value_32": "Dire Top Ranged",
"barracks_value_64": "Radiant Bot Melee",
"barracks_value_128": "Radiant Bot Ranged",
"barracks_value_256": "Radiant Mid Melee",
"barracks_value_512": "Radiant Mid Ranged",
"barracks_value_1024": "Radiant Top Melee",
"barracks_value_2048": "Radiant Top Ranged",
"benchmarks_description": "{0} {1} is equal or higher than {2}% of recent performances on this hero",
"fantasy_description": "{0} for {1} points",
"building_melee_rax": "Melee Barracks",
"building_range_rax": "Ranged Barracks",
"building_lasthit": "がラストヒットを獲得",
"building_damage": "受けたダメージ",
"building_hint": "マップ上のアイコンにもツールチップがあります",
"building_denied": "denied",
"building_ancient": "エンシェント",
"CHAT_MESSAGE_TOWER_KILL": "Tower",
"CHAT_MESSAGE_BARRACKS_KILL": "Barracks",
"CHAT_MESSAGE_ROSHAN_KILL": "Roshan",
"CHAT_MESSAGE_AEGIS": "Aegisを入手",
"CHAT_MESSAGE_FIRSTBLOOD": "First Blood",
"CHAT_MESSAGE_TOWER_DENY": "Tower Deny",
"CHAT_MESSAGE_AEGIS_STOLEN": "Aegisの強奪",
"CHAT_MESSAGE_DENIED_AEGIS": "AegisのDeny",
"distributions_heading_ranks": "ランク帯分布",
"distributions_heading_mmr": "ソロMMR分布",
"distributions_heading_country_mmr": "国ごとのソロMMRの平均",
"distributions_tab_ranks": "ランク帯",
"distributions_tab_mmr": "ソロMMR",
"distributions_tab_country_mmr": "国ごとのソロMMR",
"distributions_warning_1": "これらはマッチデータを公開し、MMRを表示しているプレイヤーに限ったデータです。",
"distributions_warning_2": "プレイヤーがログインする必要はありませんが、収集されたデータはオプトイン性のため、実際の値より高い可能性があります。",
"error": "エラー",
"error_message": "おっと! 何か間違いがあったようです。",
"error_four_oh_four_message": "あなたが探しているページは見つかりませんでした。",
"explorer_title": "データエクスプローラー",
"explorer_subtitle": "Professional Dota 2 Stats",
"explorer_description": "Run advanced queries on professional matches (excludes amateur leagues)",
"explorer_schema": "スキーマ",
"explorer_results": "結果",
"explorer_num_rows": "行",
"explorer_select": "Select",
"explorer_group_by": "Group By",
"explorer_hero": "ヒーロー",
"explorer_patch": "パッチ",
"explorer_min_patch": "最低パッチ",
"explorer_max_patch": "最高パッチ",
"explorer_min_mmr": "最小MMR",
"explorer_max_mmr": "最大MMR",
"explorer_min_rank_tier": "最小Tier",
"explorer_max_rank_tier": "最大Tier",
"explorer_player": "プレイヤー",
"explorer_league": "リーグ",
"explorer_player_purchased": "プレイヤーの購入",
"explorer_duration": "試合時間",
"explorer_min_duration": "最低時間",
"explorer_max_duration": "最大時間",
"explorer_timing": "タイミング",
"explorer_uses": "Uses",
"explorer_kill": "キルした時間",
"explorer_side": "陣営",
"explorer_toggle_sql": "SQL文をトグル",
"explorer_team": "チーム",
"explorer_lane_role": "レーン",
"explorer_min_date": "最小日付",
"explorer_max_date": "最大日付",
"explorer_hero_combos": "ヒーローコンボ",
"explorer_hero_player": "Hero-Player",
"explorer_player_player": "Player-Player",
"explorer_sql": "SQL",
"explorer_postgresql_function": "PostgreSQLの関数",
"explorer_table": "テーブル",
"explorer_column": "列",
"explorer_query_button": "テーブル",
"explorer_cancel_button": "キャンセル",
"explorer_table_button": "テーブル",
"explorer_api_button": "API",
"explorer_json_button": "JSON",
"explorer_csv_button": "CSV",
"explorer_donut_button": "円グラフ",
"explorer_bar_button": "棒グラフ",
"explorer_timeseries_button": "時系列データ",
"explorer_chart_unavailable": "このチャートを見るには Group By を指定してください",
"explorer_value": "Value",
"explorer_category": "カテゴリ",
"explorer_region": "地域",
"explorer_picks_bans": "Picks/Bans",
"explorer_counter_picks_bans": "Counter Picks/Bans",
"explorer_organization": "Organization",
"explorer_order": "Order",
"explorer_asc": "Ascending",
"explorer_desc": "Descending",
"explorer_tier": "Tier",
"explorer_having": "At Least This Many Matches",
"explorer_limit": "Limit",
"explorer_match": "Match",
"explorer_is_ti_team": "Is TI{number} Team",
"explorer_mega_comeback": "Won Against Mega Creeps",
"explorer_max_gold_adv": "Max Gold Advantage",
"explorer_min_gold_adv": "Min Gold Advantage",
"farm_heroes": "ヒーローキル数",
"farm_creeps": "レーンクリープキル数",
"farm_neutrals": "中立クリープキル数 (Ancientsを含む)",
"farm_ancients": "中立クリープキル数",
"farm_towers": "Towerキル数",
"farm_couriers": "クーリエキル数",
"farm_observers": "Observerキル数",
"farm_sentries": "Sentryキル数",
"farm_roshan": "ロシャーンキル",
"farm_necronomicon": "Necronomiconユニットキル数",
"filter_button_text_open": "フィルター",
"filter_button_text_close": "閉じる",
"filter_hero_id": "ヒーロー",
"filter_is_radiant": "陣営",
"filter_win": "結果",
"filter_lane_role": "レーン",
"filter_patch": "パッチ",
"filter_game_mode": "ゲームモード",
"filter_lobby_type": "ロビータイプ",
"filter_date": "日程",
"filter_region": "リージョン",
"filter_with_hero_id": "味方ヒーロー",
"filter_against_hero_id": "敵ヒーロー",
"filter_included_account_id": "アカウントIDを含む",
"filter_excluded_account_id": "アカウントIDを含まない",
"filter_significant": "Insignificant",
"filter_significant_include": "含む:",
"filter_last_week": "今週",
"filter_last_month": "今月",
"filter_last_3_months": "3ヶ月以内",
"filter_last_6_months": "半年以内",
"filter_error": "ドロップダウンメニューからアイテムを選択してください",
"filter_party_size": "Party Size",
"game_mode_0": "不明",
"game_mode_1": "オールピック",
"game_mode_2": "キャプテンズモード",
"game_mode_3": "ランダムドラフト",
"game_mode_4": "シングルドラフト",
"game_mode_5": "オールランダム",
"game_mode_6": "イントロ",
"game_mode_7": "Diretide",
"game_mode_8": "リバースキャプテンズモード",
"game_mode_9": "The Greeviling",
"game_mode_10": "チュートリアル",
"game_mode_11": "ミッドオンリー",
"game_mode_12": "低使用度プレイ",
"game_mode_13": "限定ヒーロー",
"game_mode_14": "Compendium",
"game_mode_15": "カスタム",
"game_mode_16": "キャプテンズドラフト",
"game_mode_17": "バランスドラフト",
"game_mode_18": "アビリティドラフト",
"game_mode_19": "イベント",
"game_mode_20": "All Random Deathmatch",
"game_mode_21": "1v1 Solo Mid",
"game_mode_22": "オールドラフト",
"game_mode_23": "Turbo",
"game_mode_24": "Mutation",
"general_unknown": "不明",
"general_no_hero": "ヒーローなし",
"general_anonymous": "匿名ユーザー",
"general_radiant": "Radiant",
"general_dire": "Dire",
"general_standard_deviation": "標準偏差",
"general_matches": "試合",
"general_league": "リーグ",
"general_randomed": "ランダムピックした",
"general_repicked": "リピックした",
"general_predicted_victory": "勝利を予想した",
"general_show": "Show",
"general_hide": "Hide",
"gold_reasons_0": "その他",
"gold_reasons_1": "デス",
"gold_reasons_2": "バイバック",
"NULL_gold_reasons_5": "途中放棄",
"NULL_gold_reasons_6": "売却",
"gold_reasons_11": "建造物",
"gold_reasons_12": "ヒーロー",
"gold_reasons_13": "クリープ",
"gold_reasons_14": "Roshan",
"NULL_gold_reasons_15": "クーリエ",
"header_request": "リクエスト",
"header_distributions": "ランク",
"header_heroes": "ヒーロー",
"header_blog": "ブログ",
"header_ingame": "ゲーム内",
"header_matches": "試合",
"header_records": "記録",
"header_explorer": "エクスプローラー",
"header_teams": "チーム",
"header_meta": "メタ",
"header_scenarios": "シナリオ",
"header_api": "API",
"heading_lhten": "ラストヒット数 @ 10",
"heading_lhtwenty": "ラストヒット数 @ 20",
"heading_lhthirty": "ラストヒット数 @ 30",
"heading_lhforty": "ラストヒット数 @ 40",
"heading_lhfifty": "ラストヒット数 @ 50",
"heading_courier": "クーリエ",
"heading_roshan": "ロシャン",
"heading_tower": "タワー",
"heading_barracks": "バラックス",
"heading_shrine": "シュライン",
"heading_item_purchased": "アイテム購入数",
"heading_ability_used": "アビリティ使用数",
"heading_item_used": "アイテム使用数",
"heading_damage_inflictor": "Damage Inflictor",
"heading_damage_inflictor_received": "Damage Inflictor Received",
"heading_damage_instances": "Damage Instances",
"heading_camps_stacked": "キャンプのスタック数",
"heading_matches": "最近の試合",
"heading_heroes": "プレイしたヒーロー",
"heading_mmr": "MMR履歴",
"heading_peers": "プレイヤーとプレイした試合",
"heading_pros": "プロプレイヤーとプレイした試合",
"heading_rankings": "Hero Rankings",
"heading_all_matches": "In All Matches",
"heading_parsed_matches": "In Parsed Matches",
"heading_records": "レコード",
"heading_teamfights": "集団戦",
"heading_graph_difference": "Radiant の有利度合い",
"heading_graph_gold": "ゴールド",
"heading_graph_xp": "経験値",
"heading_graph_lh": "ラストヒット数",
"heading_overview": "概要",
"heading_ability_draft": "Abilities Drafted",
"heading_buildings": "建造物マップ",
"heading_benchmarks": "ベンチマーク",
"heading_laning": "レーニング",
"heading_overall": "全般",
"heading_kills": "キル数",
"heading_deaths": "デス数",
"heading_assists": "アシスト数",
"heading_damage": "ダメージ",
"heading_unit_kills": "ユニットキル数",
"heading_last_hits": "ラストヒット数",
"heading_gold_reasons": "ゴールドソース",
"heading_xp_reasons": "経験値ソース",
"heading_performances": "パフォーマンス",
"heading_support": "サポート",
"heading_purchase_log": "購入ログ",
"heading_casts": "キャスト",
"heading_objective_damage": "オブジェクティブダメージ",
"heading_runes": "ルーン",
"heading_vision": "視界",
"heading_actions": "アクション",
"heading_analysis": "解析",
"heading_cosmetics": "コスメ",
"heading_log": "ログ",
"heading_chat": "チャット",
"heading_story": "物語",
"heading_fantasy": "Fantasy",
"heading_wardmap": "ワードマップ",
"heading_wordcloud": "ワードクラウド",
"heading_wordcloud_said": "発言した単語 (全体チャット)",
"heading_wordcloud_read": "読んだ単語 (全体チャット)",
"heading_kda": "KLA",
"heading_gold_per_min": "1分あたりの稼ぎ",
"heading_xp_per_min": "1分あたりの経験値",
"heading_denies": "Deny",
"heading_lane_efficiency_pct": "EFF@10",
"heading_duration": "試合時間",
"heading_level": "レベル",
"heading_hero_damage": "ヒーローダメージ",
"heading_tower_damage": "タワーダメージ",
"heading_hero_healing": "ヒーロー回復量",
"heading_tower_kills": "タワー破壊数",
"heading_stuns": "スタン回数",
"heading_neutral_kills": "中立キル数",
"heading_courier_kills": "クーリエキル数",
"heading_purchase_tpscroll": "TP 購入数",
"heading_purchase_ward_observer": "Observer 購入数",
"heading_purchase_ward_sentry": "Sentry 購入数",
"heading_purchase_gem": "Gem 購入数",
"heading_purchase_rapier": "Rapier 購入数",
"heading_pings": "マップのピング数",
"heading_throw": "スロー",
"heading_comeback": "カムバック",
"heading_stomp": "ストンプ",
"heading_loss": "敗北",
"heading_actions_per_min": "1分あたりの行動",
"heading_leaver_status": "放棄状態",
"heading_game_mode": "ゲームモード",
"heading_lobby_type": "ロビーの種類",
"heading_lane_role": "レーンロール",
"heading_region": "地域",
"heading_patch": "パッチ",
"heading_win_rate": "勝率",
"heading_is_radiant": "陣営",
"heading_avg_and_max": "平均 / 最高",
"heading_total_matches": "総試合数",
"heading_median": "中央値",
"heading_distinct_heroes": "Distinct Heroes",
"heading_team_elo_rankings": "Team Elo Rankings",
"heading_ability_build": "Ability Build",
"heading_attack": "Base attack",
"heading_attack_range": "Attack range",
"heading_attack_speed": "Attack speed",
"heading_projectile_speed": "Projectile speed",
"heading_base_health": "Health",
"heading_base_health_regen": "Health regen",
"heading_base_mana": "Mana",
"heading_base_mana_regen": "Mana regen",
"heading_base_armor": "Base armor",
"heading_base_mr": "Magic resistance",
"heading_move_speed": "Move speed",
"heading_turn_rate": "Turn speed",
"heading_legs": "Number of legs",
"heading_cm_enabled": "CM enabled",
"heading_current_players": "Current Players",
"heading_former_players": "Former Players",
"heading_damage_dealt": "Damage Dealt",
"heading_damage_received": "Damage Received",
"show_details": "Show details",
"hide_details": "Hide details",
"subheading_avg_and_max": "in last {0} displayed matches",
"subheading_records": "In ranked matches. Records reset monthly.",
"subheading_team_elo_rankings": "k=32, init=1000",
"hero_pro_tab": "プロ",
"hero_public_tab": "公開",
"hero_pro_heading": "プロの試合のヒーロー",
"hero_public_heading": "公開マッチのヒーロー(サンプリング済み)",
"hero_this_month": "試合が過去一ヶ月間に",
"hero_pick_ban_rate": "プロのP+B%",
"hero_pick_rate": "プロのピック%",
"hero_ban_rate": "プロのバン%",
"hero_win_rate": "プロの勝率%",
"hero_5000_pick_rate": ">5K P%",
"hero_5000_win_rate": ">5L W%",
"hero_4000_pick_rate": "4K P%",
"hero_4000_win_rate": "4K W%",
"hero_3000_pick_rate": "3K P%",
"hero_3000_win_rate": "3K W%",
"hero_2000_pick_rate": "2K P%",
"hero_2000_win_rate": "2K W%",
"hero_1000_pick_rate": "<2K P%",
"hero_1000_win_rate": "<2K W%",
"home_login": "ログイン",
"home_login_desc": "して自動で解析する",
"home_parse": "リクエスト",
"home_parse_desc": "試合の詳細を",
"home_why": "",
"home_opensource_title": "オープンソース",
"home_opensource_desc": "すべてのプロジェクトのコードはオープンソースで、変更や貢献することもできます。",
"home_indepth_title": "詳細なデータ",
"home_indepth_desc": "リプレイファイルを解析すると、非常に詳細なマッチデータが得られます。",
"home_free_title": "Free of charge",
"home_free_desc": "サーバーはスポンサーによって資金提供され、ボランティアがコードを維持するので、サービスは無料で提供されます。",
"home_background_by": "背景画像: ",
"home_sponsored_by": "スポンサー: ",
"home_become_sponsor": "スポンサーになる",
"items_name": "アイテム名",
"items_built": "アイテム作成数",
"items_matches": "このマッチでのアイテム作成数",
"items_uses": "アイテム使用数",
"items_uses_per_match": "このアイテムがこの試合内で作成された回数を意味します。",
"items_timing": "このアイテムの平均作成時間: ",
"items_build_pct": "このアイテムの作成割合: ",
"items_win_pct": "このアイテムを作成した試合の勝率",
"lane_role_0": "不明",
"lane_role_1": "セーフ",
"lane_role_2": "ミッド",
"lane_role_3": "オフ",
"lane_role_4": "ジャングル",
"lane_pos_1": "Bot",
"lane_pos_2": "Mid",
"lane_pos_3": "Top",
"lane_pos_4": "Radiant Jungle",
"lane_pos_5": "Dire Jungle",
"leaver_status_0": "なし",
"leaver_status_1": "安全な退出",
"leaver_status_2": "途中放棄 (切断)",
"leaver_status_3": "途中放棄",
"leaver_status_4": "途中放棄 (AFK)",
"leaver_status_5": "未接続",
"leaver_status_6": "未接続 (タイムアウト)",
"lobby_type_0": "ノーマル",
"lobby_type_1": "プラクティス",
"lobby_type_2": "トーナメント",
"lobby_type_3": "チュートリアル",
"lobby_type_4": "協力ボット",
"lobby_type_5": "ランクチームマッチ(レガシー)",
"lobby_type_6": "ランクソロマッチ(レガシー)",
"lobby_type_7": "ランク",
"lobby_type_8": "1v1 Mid",
"lobby_type_9": "バトルカップ",
"match_radiant_win": "Radiantの勝利",
"match_dire_win": "Direの勝利",
"match_team_win": "勝利",
"match_ended": "終了",
"match_id": "マッチID",
"match_region": "地域",
"match_avg_mmr": "平均MMR",
"match_button_parse": "解析",
"match_button_reparse": "再解析",
"match_button_replay": "リプレイ",
"match_button_video": "映像を入手",
"match_first_tower": "最初のタワー",
"match_first_barracks": "最初のバラックス",
"match_pick": "ピック",
"match_ban": "バン",
"matches_highest_mmr": "Top Public",
"matches_lowest_mmr": "最低MMR",
"meta_title": "Meta",
"meta_description": "Run advanced queries on data from sampled public matches in previous 24h",
"mmr_not_up_to_date": "Why is the MMR not up to date?",
"npc_dota_beastmaster_boar_#": "Boar",
"npc_dota_lesser_eidolon": "Lesser Eidolon",
"npc_dota_eidolon": "Eidolon",
"npc_dota_greater_eidolon": "Greater Eidolon",
"npc_dota_dire_eidolon": "Dire Eidolon",
"npc_dota_invoker_forged_spirit": "Forged Spirit",
"npc_dota_furion_treant_large": "Greater Treant",
"npc_dota_beastmaster_hawk_#": "Hawk",
"npc_dota_lycan_wolf#": "Lycan Wolf",
"npc_dota_neutral_mud_golem_split_doom": "Doom Shard",
"npc_dota_broodmother_spiderling": "Spiderling",
"npc_dota_broodmother_spiderite": "Spiderite",
"npc_dota_furion_treant": "Treant",
"npc_dota_unit_undying_zombie": "Undying Zombie",
"npc_dota_unit_undying_zombie_torso": "Undying Zombie",
"npc_dota_brewmaster_earth_#": "Earth Brewling",
"npc_dota_brewmaster_fire_#": "Fire Brewling",
"npc_dota_lone_druid_bear#": "Spirit Bear",
"npc_dota_brewmaster_storm_#": "Storm Brewling",
"npc_dota_visage_familiar#": "Familiar",
"npc_dota_warlock_golem_#": "Warlock Golem",
"npc_dota_warlock_golem_scepter_#": "Warlock Golem",
"npc_dota_witch_doctor_death_ward": "Death Ward",
"npc_dota_tusk_frozen_sigil#": "Frozen Sigil",
"npc_dota_juggernaut_healing_ward": "Healing Ward",
"npc_dota_techies_land_mine": "Land Mine",
"npc_dota_shadow_shaman_ward_#": "Serpent Ward",
"npc_dota_pugna_nether_ward_#": "Nether Ward",
"npc_dota_venomancer_plague_ward_#": "Plague Ward",
"npc_dota_rattletrap_cog": "Power Cog",
"npc_dota_templar_assassin_psionic_trap": "Psionic Trap",
"npc_dota_techies_remote_mine": "Remote Mine",
"npc_dota_techies_stasis_trap": "Stasis Trap",
"npc_dota_phoenix_sun": "Supernova",
"npc_dota_unit_tombstone#": "Tombstone",
"npc_dota_treant_eyes": "Eyes in the Forest",
"npc_dota_gyrocopter_homing_missile": "Homing Missile",
"npc_dota_weaver_swarm": "The Swarm",
"objective_tower1_top": "T1",
"objective_tower1_mid": "M1",
"objective_tower1_bot": "B1",
"objective_tower2_top": "T2",
"objective_tower2_mid": "M2",
"objective_tower2_bot": "B2",
"objective_tower3_top": "T3",
"objective_tower3_mid": "M3",
"objective_tower3_bot": "B3",
"objective_rax_top": "RaxT",
"objective_rax_mid": "RaxM",
"objective_rax_bot": "RaxB",
"objective_tower4": "T3 Bot",
"objective_fort": "Anc",
"objective_shrine": "Shr",
"objective_roshan": "Rosh",
"tooltip_objective_tower1_top": "Damage dealt to top Tier 1 tower",
"tooltip_objective_tower1_mid": "Damage dealt to middle Tier 1 tower",
"tooltip_objective_tower1_bot": "Damage dealt to bottom Tier 1 tower",
"tooltip_objective_tower2_top": "Damage dealt to top Tier 2 tower",
"tooltip_objective_tower2_mid": "Damage dealt to middle Tier 2 tower",
"tooltip_objective_tower2_bot": "Damage dealt to bottom Tier 2 tower",
"tooltip_objective_tower3_top": "Damage dealt to top Tier 3 tower",
"tooltip_objective_tower3_mid": "Damage dealt to middle Tier 3 tower",
"tooltip_objective_tower3_bot": "Damage dealt to bottom Tier 3 tower",
"tooltip_objective_rax_top": "Damage dealt to top barracks",
"tooltip_objective_rax_mid": "Damage dealt to middle barracks",
"tooltip_objective_rax_bot": "Damage dealt to bottom barracks",
"tooltip_objective_tower4": "Damage dealt to middle Tier 4 towers",
"tooltip_objective_fort": "Damage dealt to ancient",
"tooltip_objective_shrine": "Damage dealt to shrines",
"tooltip_objective_roshan": "Damage dealt to Roshan",
"pagination_first": "最初",
"pagination_last": "最後",
"pagination_of": "の",
"peers_none": "This player has no peers.",
"rank_tier_0": "Uncalibrated",
"rank_tier_1": "Herald",
"rank_tier_2": "Guardian",
"rank_tier_3": "Crusader",
"rank_tier_4": "Archon",
"rank_tier_5": "Legend",
"rank_tier_6": "Ancient",
"rank_tier_7": "Divine",
"rank_tier_8": "Immortal",
"request_title": "解析してもらう",
"request_match_id": "マッチID",
"request_invalid_match_id": "Invalid Match ID",
"request_error": "試合データの取得に失敗しました",
"request_submit": "送信",
"roaming": "Roaming",
"rune_0": "ダブルダメージ",
"rune_1": "ヘイスト",
"rune_2": "イリュージョン",
"rune_3": "インビジビリティ",
"rune_4": "リジェネレーション",
"rune_5": "バウンティー",
"rune_6": "アルケーン",
"rune_7": "水",
"search_title": "Search by player name, match ID...",
"skill_0": "Unknown Skill",
"skill_1": "Normal Skill",
"skill_2": "High Skill",
"skill_3": "Very High Skill",
"story_invalid_template": "(invalid template)",
"story_error": "An error occured while compiling the story for this match",
"story_intro": "on {date}, two teams decided to play {game_mode_article} {game_mode} game of Dota 2 in {region}. Little did they know, the game would last {duration_in_words}",
"story_invalid_hero": "Unrecognized Hero",
"story_fullstop": "。",
"story_list_2": "{1} と {2}",
"story_list_3": "{1} と {2} と {3}",
"story_list_n": "{i}, {rest}",
"story_firstblood": "{time} に {killer} が {victim} をキルしてファーストブロッドを獲得しました。",
"story_chatmessage": "\"{message}\", {player} {said_verb}",
"story_teamfight": "{winning_team} won a teamfight by trading {win_dead} for {lose_dead}, resulting in a net worth increase of {net_change}",
"story_teamfight_none_dead": "{winning_team} won a teamfight by killing {lose_dead} without losing any heroes, resulting in a net worth increase of {net_change}",
"story_teamfight_none_dead_loss": "{winning_team} somehow won a teamfight without killing anyone, and losing {win_dead}, resulting in a net worth increase of {net_change}",
"story_lane_intro": "試合開始後10分間のレーン状況は以下の通りでした。",
"story_lane_radiant_win": "{radiant_players} won {lane} Lane against {dire_players}",
"story_lane_radiant_lose": "{radiant_players} lost {lane} Lane to {dire_players}",
"story_lane_draw": "{radiant_players} drew even in {lane} Lane with {dire_players}",
"story_lane_free": "{players} は {lane} レーンでフリーファームをしてました。",
"story_lane_empty": "{lane} レーンには誰もいませんでした",
"story_lane_jungle": "{players} はジャングルでファームしてました",
"story_lane_roam": "{players} はローミングしてました",
"story_roshan": "{team} は Roshan をキルしました",
"story_aegis": "{player} はエイジスを {action} しました",
"story_gameover": "The match ended in a {winning_team} victory at {duration} with a score of {radiant_score} to {dire_score}",
"story_during_teamfight": "during the fight, {events}",
"story_after_teamfight": "after the fight, {events}",
"story_expensive_item": "at {time}, {player} purchased {item}, which was the first item in the game with a price greater than {price_limit}",
"story_building_destroy": "{building} was destroyed",
"story_building_destroy_player": "{player} が {building} を破壊した",
"story_building_deny_player": "{player} が {building} をディナイした",
"story_building_list_destroy": "{buildings} が破壊された",
"story_courier_kill": "{team}'s courier was killed",
"story_tower": "{team}'s Tier {tier} {lane} tower",
"story_tower_simple": "one of {team}'s towers",
"story_towers_n": "{team} のタワー{n}本",
"story_barracks": "{team} の {lane} の {rax_type}",
"story_barracks_both": "both of {team}'s {lane} Barracks",
"story_time_marker": "{minutes} Minutes In",
"story_item_purchase": "{player} purchased a {item} at {time}",
"story_predicted_victory": "{players} predicted {team} would win",
"story_predicted_victory_empty": "No one",
"story_networth_diff": "{percent}% / {gold} Diff",
"story_gold": "gold",
"story_chat_asked": "asked",
"story_chat_said": "said",
"tab_overview": "概要",
"tab_matches": "試合",
"tab_heroes": "ヒーロー",
"tab_peers": "ピア",
"tab_pros": "プロ",
"tab_activity": "アクティビティ",
"tab_records": "記録",
"tab_totals": "累計",
"tab_counts": "カウント",
"tab_histograms": "ヒストグラム",
"tab_trends": "トレンド",
"tab_items": "アイテム",
"tab_wardmap": "ワードマップ",
"tab_wordcloud": "ワードクラウド",
"tab_mmr": "MMR",
"tab_rankings": "ランキング",
"tab_drafts": "Draft",
"tab_benchmarks": "ベンチマーク",
"tab_performances": "パフォーマンス",
"tab_damage": "ダメージ",
"tab_purchases": "Purchases",
"tab_farm": "ファーム",
"tab_combat": "戦闘",
"tab_graphs": "グラフ",
"tab_casts": "キャスト",
"tab_vision": "視界",
"tab_objectives": "建造物",
"tab_teamfights": "集団戦",
"tab_actions": "アクション",
"tab_analysis": "解析",
"tab_cosmetics": "コスメティック",
"tab_log": "ログ",
"tab_chat": "チャット",
"tab_story": "物語",
"tab_fantasy": "Fantasy",
"tab_laning": "Laning",
"tab_recent": "Recent",
"tab_matchups": "Matchups",
"tab_durations": "Durations",
"tab_players": "Players",
"placeholder_filter_heroes": "フィルターヒーロー",
"td_win": "Won Match",
"td_loss": "Lost Match",
"td_no_result": "結果無し",
"th_hero_id": "ヒーロー",
"th_match_id": "ID",
"th_account_id": "Account ID",
"th_result": "結果",
"th_skill": "スキル",
"th_duration": "試合時間",
"th_games": "使用数",
"th_games_played": "Games",
"th_win": "勝率",
"th_advantage": "Advantage",
"th_with_games": "味方",
"th_with_win": "味方勝率",
"th_against_games": "敵",
"th_against_win": "敵勝率",
"th_gpm_with": "味方にいるときのGPM",
"th_xpm_with": "味方にいるときのXPM",
"th_avatar": "プレイヤー",
"th_last_played": "最後",
"th_record": "記録",
"th_title": "タイトル",
"th_category": "カテゴリ",
"th_matches": "試合",
"th_percentile": "パーセンタイル",
"th_rank": "ランク",
"th_items": "アイテム",
"th_stacked": "スタック数",
"th_multikill": "マルチキル",
"th_killstreak": "キルストリーク",
"th_stuns": "スタン数",
"th_dead": "死亡回数",
"th_buybacks": "バイバック",
"th_biggest_hit": "最大ヒット数",
"th_lane": "レーン",
"th_map": "マップ",
"th_lane_efficiency": "EFF@10",
"th_lhten": "LH@10",
"th_dnten": "DN@10",
"th_tpscroll": "TP",
"th_ward_observer": "Observer",
"th_ward_sentry": "Sentry",
"th_smoke_of_deceit": "Smoke",
"th_dust": "Dust",
"th_gem": "Gem",
"th_time": "時間",
"th_message": "メッセージ",
"th_heroes": "ヒーロー",
"th_creeps": "クリープ",
"th_neutrals": "中立",
"th_ancients": "エンシェント",
"th_towers": "タワー",
"th_couriers": "クーリエ",
"th_roshan": "ロシャーン",
"th_necronomicon": "Necronomicon",
"th_other": "その他",
"th_cosmetics": "コスメティック",
"th_damage_received": "獲得",
"th_damage_dealt": "対処",
"th_players": "プレイヤー",
"th_analysis": "解析",
"th_death": "デス数",
"th_damage": "ダメージ",
"th_healing": "回復",
"th_gold": "G",
"th_xp": "XP",
"th_abilities": "アビリティ",
"th_target_abilities": "Ability Targets",
"th_mmr": "MMR",
"th_level": "レベル",
"th_kills": "K",
"th_kills_per_min": "KPM",
"th_deaths": "D",
"th_assists": "A",
"th_last_hits": "LH",
"th_last_hits_per_min": "LHM",
"th_denies": "DN",
"th_gold_per_min": "GPM",
"th_xp_per_min": "XPM",
"th_stuns_per_min": "SPM",
"th_hero_damage": "HD",
"th_hero_damage_per_min": "HDM",
"th_hero_healing": "HH",
"th_hero_healing_per_min": "HHM",
"th_tower_damage": "TD",
"th_tower_damage_per_min": "TDM",
"th_kda": "KLA",
"th_actions_per_min": "APM",
"th_pings": "PNG (M)",
"th_DOTA_UNIT_ORDER_MOVE_TO_POSITION": "MV (P)",
"th_DOTA_UNIT_ORDER_MOVE_TO_TARGET": "MV (T)",
"th_DOTA_UNIT_ORDER_ATTACK_TARGET": "ATK (T)",
"th_DOTA_UNIT_ORDER_ATTACK_MOVE": "ATK (P)",
"th_DOTA_UNIT_ORDER_CAST_POSITION": "CST (P)",
"th_DOTA_UNIT_ORDER_CAST_TARGET": "CST (T)",
"th_DOTA_UNIT_ORDER_CAST_NO_TARGET": "CST (N)",
"th_DOTA_UNIT_ORDER_HOLD_POSITION": "HLD",
"th_DOTA_UNIT_ORDER_GLYPH": "GLYPH",
"th_DOTA_UNIT_ORDER_RADAR": "SCN",
"th_ability_builds": "AB",
"th_purchase_shorthand": "PUR",
"th_use_shorthand": "USE",
"th_duration_shorthand": "DUR",
"th_country": "国",
"th_count": "カウント",
"th_sum": "Sum",
"th_average": "平均",
"th_name": "名前",
"th_team_name": "チーム名",
"th_score": "スコア",
"th_casts": "キャスト",
"th_hits": "命中",
"th_wins": "勝利数",
"th_losses": "敗北数",
"th_winrate": "勝率",
"th_solo_mmr": "ソロMMR",
"th_party_mmr": "パーティーMMR",
"th_estimated_mmr": "推定MMR",
"th_permanent_buffs": "バフ",
"th_winner": "勝者",
"th_played_with": "My Record With",
"th_obs_placed": "Observer Wards Placed",
"th_sen_placed": "Sentry Wards Placed",
"th_obs_destroyed": "Observer Wards Destroyed",
"th_sen_destroyed": "Sentry Wards Destroyed",
"th_scans_used": "Scans Used",
"th_glyphs_used": "Glyphs Used",
"th_legs": "Legs",
"th_fantasy_points": "Fantasy Pts",
"th_rating": "Rating",
"th_teamfight_participation": "Participation",
"th_firstblood_claimed": "First Blood",
"th_observers_placed": "Observers",
"th_camps_stacked": "Stacks",
"th_league": "League",
"th_attack_type": "Attack Type",
"th_primary_attr": "Primary Attribute",
"th_opposing_team": "Opposing Team",
"ward_log_type": "タイプ",
"ward_log_owner": "設置者",
"ward_log_entered_at": "設置時間",
"ward_log_left_at": "消失時間",
"ward_log_duration": "寿命",
"ward_log_killed_by": "破壊者",
"log_detail": "詳細",
"log_heroes": "ヒーローを指定",
"tier_professional": "プロ",
"tier_premium": "Premium",
"time_past": "{0}前",
"time_just_now": "たった今",
"time_s": "1秒",
"time_abbr_s": "{0}s",
"time_ss": "{0}秒",
"time_abbr_ss": "{0}s",
"time_m": "1分",
"time_abbr_m": "{0}m",
"time_mm": "{0}分",
"time_abbr_mm": "{0}m",
"time_h": "1時間",
"time_abbr_h": "{0}h",
"time_hh": "{0}時間",
"time_abbr_hh": "{0}h",
"time_d": "1日",
"time_abbr_d": "{0}d",
"time_dd": "{0}日",
"time_abbr_dd": "{0}d",
"time_M": "1ヶ月",
"time_abbr_M": "{0}mo",
"time_MM": "{0}ヶ月",
"time_abbr_MM": "{0}mo",
"time_y": "1年",
"time_abbr_y": "{0}y",
"time_yy": "{0}年",
"time_abbr_yy": "{0}y",
"timeline_firstblood": "がFirst Bloodを獲得した: ",
"timeline_firstblood_key": "がファーストブロッドを獲得された: ",
"timeline_aegis_picked_up": "が拾った",
"timeline_aegis_snatched": "が盗んだ",
"timeline_aegis_denied": "Deny数",
"timeline_teamfight_deaths": "デス数",
"timeline_teamfight_gold_delta": "ゴールド差",
"title_default": "OpenDota - Dota 2 統計サイト",
"title_template": "%s - OpenDota - Dota 2 統計サイト",
"title_matches": "試合",
"title_request": "解析をしてもらう",
"title_search": "検索",
"title_status": "ステータス",
"title_explorer": "データを見る",
"title_meta": "Meta",
"title_records": "記録",
"title_api": "The Opendota API: Advanced Dota 2 stats for your app",
"tooltip_mmr": "プレイヤーのソロMMR",
"tooltip_abilitydraft": "Ability Drafted",
"tooltip_level": "ヒーローが到達したレベル",
"tooltip_kills": "ヒーローがキルした回数",
"tooltip_deaths": "ヒーローがデスした回数",
"tooltip_assists": "ヒーローがアシストした回数",
"tooltip_last_hits": "ヒーローがラストヒットした回数",
"tooltip_denies": "ヒーローがDenyした回数",
"tooltip_gold": "総資産額",
"tooltip_gold_per_min": "1分あたりの稼いだゴールド",
"tooltip_xp_per_min": "1分あたりの獲得した経験値",
"tooltip_stuns_per_min": "Seconds of hero stuns per minute",
"tooltip_last_hits_per_min": "1分あたりのラストヒット回数",
"tooltip_kills_per_min": "1分あたりのキル数",
"tooltip_hero_damage_per_min": "1分あたりのヒーローダメージ量",
"tooltip_hero_healing_per_min": "1分あたりのヒーロー回復量",
"tooltip_tower_damage_per_min": "1分あたりのタワーダメージ量",
"tooltip_actions_per_min": "1分あたりの操作量",
"tooltip_hero_damage": "ヒーローへのダメージ量",
"tooltip_tower_damage": "タワーへのダメージ量",
"tooltip_hero_healing": "ヒーローの回復量",
"tooltip_duration": "試合時間",
"tooltip_first_blood_time": "First blood が出た時間",
"tooltip_kda": "(キル数 + アシスト数) / (デス数 + 1)",
"tooltip_stuns": "ヒーローがディスエイブルを受けた秒数",
"tooltip_dead": "死亡時間",
"tooltip_buybacks": "バイバック数",
"tooltip_camps_stacked": "キャンプスタック数",
"tooltip_tower_kills": "タワーのキル数",
"tooltip_neutral_kills": "中立クリープのキル数",
"tooltip_courier_kills": "クーリエキル数",
"tooltip_purchase_tpscroll": "Town Portal Scroll 購入数",
"tooltip_purchase_ward_observer": "Observer Ward 購入数",
"tooltip_purchase_ward_sentry": "Sentry Ward 購入数",
"tooltip_purchase_smoke_of_deceit": "Smoke of Deceit 購入数",
"tooltip_purchase_dust": "Dust of Appearance 購入数",
"tooltip_purchase_gem": "Gem of True Sight 購入数",
"tooltip_purchase_rapier": "Divine Rapier 購入数",
"tooltip_purchase_buyback": "バイバックの使用数",
"tooltip_duration_observer": "Average lifespan of Observer Wards",
"tooltip_duration_sentry": "Average lifespan of Sentry Wards",
"tooltip_used_ward_observer": "ゲーム中に設置された Observer Wards の数",
"tooltip_used_ward_sentry": "ゲーム中に設置された Sentry Wards の数",
"tooltip_used_dust": "ゲーム中に使用された Dust of Appearance の数",
"tooltip_used_smoke_of_deceit": "ゲーム中に使用された Smoke of Deceit の数",
"tooltip_parsed": "リプレイデータから追加データが解析されました。",
"tooltip_unparsed": "このマッチはリプレイデータから解析されていません。また、リプレイデータは有効とも限りません。",
"tooltip_hero_id": "The hero played",
"tooltip_result": "プレイヤーの勝敗",
"tooltip_match_id": "この試合のマッチID",
"tooltip_game_mode": "この試合のゲームモード",
"tooltip_skill": "大体 0, 3200, 3700 MMR に近似したデータから概算されます",
"tooltip_ended": "この試合の終了時刻",
"tooltip_pick_order": "プレイヤーのピック順",
"tooltip_throw": "敗北試合での最大ゴールド差",
"tooltip_comeback": "勝利試合での最小ゴールド差",
"tooltip_stomp": "勝利試合での最大ゴールド差",
"tooltip_loss": "敗北試合での最小ゴールド差",
"tooltip_items": "アイテム作成",
"tooltip_permanent_buffs": "Permanent buffs such as Flesh Heap stacks or Tomes of Knowledge used",
"tooltip_lane": "ゲームの序盤で就いていたレーン",
"tooltip_map": "プレイヤーがよくいた場所のヒートマップ",
"tooltip_lane_efficiency": "10分間で得られたゴールドの割合 (クリープ+パッシブ+初期ゴールド)",
"tooltip_lane_efficiency_pct": "10分間で得られたゴールドの割合 (クリープ+パッシブ+初期ゴールド)",
"tooltip_pings": "プレイヤーがマップをピングした回数",
"tooltip_DOTA_UNIT_ORDER_MOVE_TO_POSITION": "プレイヤーが地点移動した回数",
"tooltip_DOTA_UNIT_ORDER_MOVE_TO_TARGET": "プレイヤーが対象への移動指定した回数",
"tooltip_DOTA_UNIT_ORDER_ATTACK_MOVE": "プレイヤーが地点攻撃指定した回数 (アタックムーブ)",
"tooltip_DOTA_UNIT_ORDER_ATTACK_TARGET": "プレイヤーが通常攻撃指定した回数",
"tooltip_DOTA_UNIT_ORDER_CAST_POSITION": "プレイヤーが地点にキャストした回数",
"tooltip_DOTA_UNIT_ORDER_CAST_TARGET": "プレイヤーが対象にキャストした回数",
"tooltip_DOTA_UNIT_ORDER_CAST_NO_TARGET": "プレイヤーが対象指定キャストを失敗した回数",
"tooltip_DOTA_UNIT_ORDER_HOLD_POSITION": "プレイヤーがアクション停止した回数",
"tooltip_DOTA_UNIT_ORDER_GLYPH": "プレイヤーが Glyph を使用した回数",
"tooltip_DOTA_UNIT_ORDER_RADAR": "プレイヤーがスキャンを使用した回数",
"tooltip_last_played": "このプレイヤーと一緒にプレイした試合数",
"tooltip_matches": "このプレイヤーと味方として一緒にプレイした試合数",
"tooltip_played_as": "このヒーローでプレイしたゲーム数",
"tooltip_played_with": "このプレイヤー/ヒーローと一緒にプレイしたゲーム数",
"tooltip_played_against": "このプレイヤー/ヒーローを敵にプレイしたゲーム数",
"tooltip_tombstone_victim": "Here Lies",
"tooltip_tombstone_killer": "殺された: ",
"tooltip_win_pct_as": "このヒーローの勝率",
"tooltip_win_pct_with": "このプレイヤーorヒーローとの勝率",
"tooltip_win_pct_against": "このプレイヤーorヒーローを敵にしたときの勝率",
"tooltip_lhten": "10分間のラストヒット回数",
"tooltip_dnten": "10分間のDeny回数",
"tooltip_biggest_hit": "このヒーローの最大ダメージ",
"tooltip_damage_dealt": "このアイテム/アビリティで与えたダメージ量",
"tooltip_damage_received": "このアイテム/アビリティから受けたダメージ量",
"tooltip_registered_user": "登録済みユーザー",
"tooltip_ability_builds": "アビリティビルド",
"tooltip_ability_builds_expired": "この試合ではアビリティアップグレードのデータの期限が切れています。データのリロードのリクエストをしてください。",
"tooltip_multikill": "最長マルチキル",
"tooltip_killstreak": "最長キルストリーク",
"tooltip_casts": "このアビリティ/アイテムのキャスト数",
"tooltip_target_abilities": "How many times each hero was targeted by this hero's abilities",
"tooltip_hits": "このアビリティ/アイテムからヒーローが受けたダメージ回数",
"tooltip_damage": "このアビリティ/アイテムによってヒーローが受けたダメージの量",
"tooltip_autoattack_other": "オートアタック/その他",
"tooltip_estimated_mmr": "このユーザーの最近の試合の平均表示 MMR に基づく MMR 推定値",
"tooltip_backpack": "バックパック",
"tooltip_others_tracked_deaths": "tracked deaths",
"tooltip_others_track_gold": "gold earned from Track",
"tooltip_others_greevils_gold": "gold earned from Greevil's Greed",
"tooltip_advantage": "Calculated by Wilson score",
"tooltip_winrate_samplesize": "Win rate and sample size",
"tooltip_teamfight_participation": "Amount of participation in teamfights",
"histograms_name": "ヒストグラム",
"histograms_description": "Percentages indicate win rates for the labeled bin",
"histograms_actions_per_min_description": "Actions performed by player per minute",
"histograms_comeback_description": "Maximum gold disadvantage in a won game",
"histograms_lane_efficiency_pct_description": "Percentage of lane gold (creeps+passive+starting) obtained at 10 minutes",
"histograms_gold_per_min_description": "Gold farmed per minute",
"histograms_hero_damage_description": "Amount of damage dealt to heroes",
"histograms_hero_healing_description": "Amount of health restored to heroes",
"histograms_level_description": "Level achieved in a game",
"histograms_loss_description": "Maximum gold disadvantage in a lost game",
"histograms_pings_description": "プレイヤーがマップをピングした回数",
"histograms_stomp_description": "Maximum gold advantage in a won game",
"histograms_stuns_description": "Seconds of disable on heroes",
"histograms_throw_description": "Maximum gold advantage in a lost game",
"histograms_purchase_tpscroll_description": "Town Portal Scroll purchases",
"histograms_xp_per_min_description": "Experience gained per minute",
"trends_name": "トレンド",
"trends_description": "過去500試合の累積平均",
"trends_tooltip_average": "平均",
"trends_no_data": "申し訳ありませんが、このグラフのデータがありません",
"xp_reasons_0": "その他",
"xp_reasons_1": "Hero",
"xp_reasons_2": "Creep",
"xp_reasons_3": "ロシャーン",
"rankings_description": "",
"rankings_none": "This player is not ranked on any heroes.",
"region_0": "自動",
"region_1": "アメリカ西部",
"region_2": "アメリカ東部",
"region_3": "ルクセンブルグ",
"region_5": "シンガポール",
"region_6": "ドバイ",
"region_7": "オーストラリア",
"region_8": "ストックホルム",
"region_9": "オーストリア",
"region_10": "ブラジル",
"region_11": "南アフリカ",
"region_12": "China TC Shanghai",
"region_13": "China UC",
"region_14": "チリ",
"region_15": "ペルー",
"region_16": "インド",
"region_17": "China TC Guangdong",
"region_18": "China TC Zhejiang",
"region_19": "日本",
"region_20": "China TC Wuhan",
"region_25": "China UC 2",
"vision_expired": "期限切れ時間: ",
"vision_destroyed": "破壊時間: ",
"vision_all_time": "全期間",
"vision_placed_observer": "がObserverを設置:",
"vision_placed_sentry": "がSentryを設置:",
"vision_ward_log": "ワードログ",
"chat_category_faction": "Faction",
"chat_category_type": "Type",
"chat_category_target": "Target",
"chat_category_other": "Other",
"chat_filter_text": "Text",
"chat_filter_phrases": "Phrases",
"chat_filter_audio": "Audio",
"chat_filter_spam": "Spam",
"chat_filter_all": "All",
"chat_filter_allies": "Allies",
"chat_filter_spectator": "Spectator",
"chat_filtered": "Filtered",
"advb_almost": "almost",
"advb_over": "over",
"advb_about": "about",
"article_before_consonant_sound": "a",
"article_before_vowel_sound": "an",
"statement_long": "hypothesised",
"statement_shouted": "shouted",
"statement_excited": "exclaimed",
"statement_normal": "said",
"statement_laughed": "laughed",
"question_long": "raised, in need of answers",
"question_shouted": "inquired",
"question_excited": "interrogated",
"question_normal": "asked",
"question_laughed": "laughed mockingly",
"statement_response_long": "advised",
"statement_response_shouted": "responded in frustration",
"statement_response_excited": "exclaimed",
"statement_response_normal": "replied",
"statement_response_laughed": "laughed",
"statement_continued_long": "ranted",
"statement_continued_shouted": "continued furiously",
"statement_continued_excited": "continued",
"statement_continued_normal": "added",
"statement_continued_laughed": "continued",
"question_response_long": "advised",
"question_response_shouted": "asked back, out of frustration",
"question_response_excited": "disputed",
"question_response_normal": "countered",
"question_response_laughed": "laughed",
"question_continued_long": "propositioned",
"question_continued_shouted": "asked furiously",
"question_continued_excited": "lovingly asked",
"question_continued_normal": "asked",
"question_continued_laughed": "asked joyfully",
"hero_disclaimer_pro": "Data from professional matches",
"hero_disclaimer_public": "Data from public matches",
"hero_duration_x_axis": "Minutes",
"top_tower": "Top Tower",
"bot_tower": "Bottom Tower",
"mid_tower": "Mid Tower",
"top_rax": "Top Barracks",
"bot_rax": "Bottom Barracks",
"mid_rax": "Mid Barracks",
"tier1": "Tier 1",
"tier2": "Tier 2",
"tier3": "Tier 3",
"tier4": "Tier 4",
"show_consumables_items": "Show consumables",
"activated": "Activated",
"rune": "Rune",
"placement": "Placement",
"exclude_turbo_matches": "Exclude Turbo matches",
"scenarios_subtitle": "Explore win rates of combinations of factors that happen in matches",
"scenarios_info": "Data compiled from matches in the last {0} weeks",
"scenarios_item_timings": "Item Timings",
"scenarios_misc": "Misc",
"scenarios_time": "時間",
"scenarios_item": "Item",
"scenarios_game_duration": "Game Duration",
"scenarios_scenario": "Scenario",
"scenarios_first_blood": "Team drew First Blood",
"scenarios_courier_kill": "Team sniped the enemy courier before the 3-minute mark",
"scenarios_pos_chat_1min": "Team all chatted positive words before the 1-minute mark",
"scenarios_neg_chat_1min": "Team all chatted negative words before the 1-minute mark",
"gosu_default": "Get personal recommendations",
"gosu_benchmarks": "Get detailed benchmarks for your hero, lane and role",
"gosu_performances": "Get your map control performance",
"gosu_laning": "Get why you missed last hits",
"gosu_combat": "Get why kills attempts were unsuccessful",
"gosu_farm": "Get why you missed last hits",
"gosu_vision": "Get how many heroes were killed under your wards",
"gosu_actions": "Get your lost time from mouse usage vs hotkeys",
"gosu_teamfights": "Get who to target during teamfights",
"gosu_analysis": "Get your real MMR bracket",
"back2Top": "Back to Top",
"activity_subtitle": "Click on a day for detailed information",
"combos": "コンボ"
} | odota/web/src/lang/ja-JP.json/0 | {
"file_path": "odota/web/src/lang/ja-JP.json",
"repo_id": "odota",
"token_count": 21653
} | 274 |
{
"yes": "có",
"no": "không",
"abbr_thousand": "k",
"abbr_million": " triệu",
"abbr_billion": "b",
"abbr_trillion": "t",
"abbr_quadrillion": "q",
"abbr_not_available": "N/A",
"abbr_pick": "P",
"abbr_win": "W",
"abbr_number": "No.",
"analysis_eff": "Hiệu quả lane",
"analysis_farm_drought": "Tiền từng phút thấp nhất mỗi 5 phút",
"analysis_skillshot": "Chiêu thức đã bắn",
"analysis_late_courier": "Thời gian trễ khi nâng cấp gà",
"analysis_wards": "Mắt đã cắm",
"analysis_roshan": "Roshan đã giết",
"analysis_rune_control": "Rune đã ăn",
"analysis_unused_item": "Trang bị chưa dùng đang có hiệu lực",
"analysis_expected": "của",
"announce_dismiss": "Bỏ qua",
"announce_github_more": "Xem trên Github",
"api_meta_description": "The OpenDota API gives you access to all the advanced Dota 2 stats offered by the OpenDota platform. Access performance graphs, heatmaps, wordclouds, and more. Get started for free.",
"api_title": "The OpenDota API",
"api_subtitle": "Build on top of the OpenDota platform. Bring advanced stats to your app and deep insights to your users.",
"api_details_free_tier": "Free Tier",
"api_details_premium_tier": "Premium Tier",
"api_details_price": "Price",
"api_details_price_free": "Free",
"api_details_price_prem": "$price per $unit calls",
"api_details_key_required": "Key Required?",
"api_details_key_required_free": "No",
"api_details_key_required_prem": "Yes -- requires payment method",
"api_details_call_limit": "Call Limit",
"api_details_call_limit_free": "$limit per month",
"api_details_call_limit_prem": "Unlimited",
"api_details_rate_limit": "Rate Limit",
"api_details_rate_limit_val": "$num calls per minute",
"api_details_support": "Support",
"api_details_support_free": "Community support via Discord group",
"api_details_support_prem": "Priority support from core developers",
"api_get_key": "Get my key",
"api_docs": "Read the docs",
"api_header_details": "Details",
"api_charging": "You're charged $cost per call, rounded up to the nearest cent.",
"api_credit_required": "Getting an API key requires a linked payment method. We'll automatically charge the card at the beginning of the month for any fees owed.",
"api_failure": "500 errors don't count as usage, since that means we messed up!",
"api_error": "There was an error with the request. Please try again. If it continues, contact us at support@opendota.com.",
"api_login": "Login to access API Key",
"api_update_billing": "Update billing method",
"api_delete": "Delete key",
"api_key_usage": "To use your key, add $param as a query parameter to your API request:",
"api_billing_cycle": "The current billing cycle ends on $date.",
"api_billed_to": "We'll automatically bill the $brand ending in $last4.",
"api_support": "Need support? Email $email.",
"api_header_usage": "Your Usage",
"api_usage_calls": "# API calls",
"api_usage_fees": "Estimated Fees",
"api_month": "Month",
"api_header_key": "Your Key",
"api_header_table": "Get started for free. Keep going at a ridiculously low price.",
"app_name": "OpenDota",
"app_language": "Ngôn ngữ",
"app_localization": "Địa phương hóa",
"app_description": "Công cụ thông tin mã nguồn mở cho Dota 2",
"app_about": "Về ứng dụng",
"app_privacy_terms": "Điều khoản và chính sách",
"app_api_docs": "Văn bản API",
"app_blog": "Blog",
"app_translate": "Dịch",
"app_donate": "Quyên góp",
"app_gravitech": "A Gravitech LLC Site",
"app_powered_by": "cung cấp bởi",
"app_donation_goal": "Mục tiêu quyên góp hàng tháng",
"app_sponsorship": "Sự ủng hộ của bạn giúp mọi người sử dụng dịch vụ này miễn phí.",
"app_twitter": "Đăng ký theo dõi trên Twitter",
"app_github": "Nguồn ở GitHub",
"app_discord": "Chat trên Discord",
"app_steam_profile": "Hồ sơ Steam",
"app_confirmed_as": "Xác nhận như",
"app_untracked": "Người dùng này không truy cập gần đây, và replays của những trận game mới sẽ không được tải tự động.",
"app_tracked": "Người dùng này đã truy cập trong thời gian gần, và replay của những trận Dota mới sẽ được tải tự động.",
"app_cheese_bought": "Phô mai đã mua",
"app_contributor": "This user has contributed to the development of the OpenDota project",
"app_dotacoach": "Hỏi ý kiến một huấn luyện viên",
"app_pvgna": "Tìm bài hướng dẫn",
"app_pvgna_alt": "Tìm bài hướng dẫn Dota2 tren Pvgna",
"app_rivalry": "Bet on Pro Matches",
"app_rivalry_team": "Bet on {0} Matches",
"app_refresh": "Làm mới lại lịch sử trận đấu: Xếp hàng để quét các trận còn sót do thiết lập bảo mật cá nhân",
"app_refresh_label": "Làm mới",
"app_login": "Đăng nhập",
"app_logout": "Đăng xuất",
"app_results": "kết quả",
"app_report_bug": "Báo lỗi",
"app_pro_players": "Người chơi chuyên nghiệp",
"app_public_players": "Những người chơi công khai",
"app_my_profile": "Hồ sơ của tôi",
"barracks_value_1": "Trụ đánh gần đường dưới Dire",
"barracks_value_2": "Trụ đánh xa đường dưới Dire",
"barracks_value_4": "Trụ đánh gần đường giữa Dire",
"barracks_value_8": "Trụ đánh xa đường giữa Dire",
"barracks_value_16": "Trụ đánh gần đường trên Dire",
"barracks_value_32": "Trụ đánh xa đường trên Dire",
"barracks_value_64": "Trụ đánh gần đường dưới Radiant",
"barracks_value_128": "Trụ đánh xa đường dưới Radiant",
"barracks_value_256": "Trụ đánh gần đường giữa Radiant",
"barracks_value_512": "Trụ đánh xa đường giữa Radiant",
"barracks_value_1024": "Trụ đánh gần đường trên Radiant",
"barracks_value_2048": "Trụ đánh xa đường trên Radiant",
"benchmarks_description": "{0} {1} is equal or higher than {2}% of recent performances on this hero",
"fantasy_description": "{0} for {1} points",
"building_melee_rax": "Trại lính cận chiến",
"building_range_rax": "Trại lính tầm xa",
"building_lasthit": "đã lấy được phát đánh cuối",
"building_damage": "nhận sát thương",
"building_hint": "Các biểu tượng trên map đều có chú thích",
"building_denied": "denied",
"building_ancient": "Ancient",
"CHAT_MESSAGE_TOWER_KILL": "Trụ",
"CHAT_MESSAGE_BARRACKS_KILL": "Trại lính",
"CHAT_MESSAGE_ROSHAN_KILL": "Roshan",
"CHAT_MESSAGE_AEGIS": "Đã nhặt Aegis",
"CHAT_MESSAGE_FIRSTBLOOD": "Mạng đầu tiên",
"CHAT_MESSAGE_TOWER_DENY": "Hủy trụ",
"CHAT_MESSAGE_AEGIS_STOLEN": "Đã đánh cắp Aegis",
"CHAT_MESSAGE_DENIED_AEGIS": "Đã phá Aegis",
"distributions_heading_ranks": "Rank Tier Distribution",
"distributions_heading_mmr": "Sự phân chia Solo MMR",
"distributions_heading_country_mmr": "MMR trung bình theo nước",
"distributions_tab_ranks": "Rank Tiers",
"distributions_tab_mmr": "MMR đơn",
"distributions_tab_country_mmr": "MMR đơn theo nước",
"distributions_warning_1": "Bộ dữ liệu này được giới hạn từ những người chơi bày ra MMR trên hồ sơ và chia sẻ công khai dữ liệu trận đấu.",
"distributions_warning_2": "Những người chơi không cần phải đăng nhập, nhưng vì sự kén chọn thông tin, những số trung bình có kar năng cao hơn dự đoán.",
"error": "Lỗi",
"error_message": "Ôi! có vấn đề gì rồi.",
"error_four_oh_four_message": "Trang bạn đang tìm không thể tìm thấy.",
"explorer_title": "Công cụ khám phá dữ liệu",
"explorer_subtitle": "Dữ liệu thống kê các Pro",
"explorer_description": "Run advanced queries on professional matches (excludes amateur leagues)",
"explorer_schema": "Mô hình",
"explorer_results": "Các kết quả",
"explorer_num_rows": "các dãy",
"explorer_select": "Lựa chọn",
"explorer_group_by": "Nhóm theo",
"explorer_hero": "Tướng",
"explorer_patch": "Phiên bản",
"explorer_min_patch": "Patch cũ nhất",
"explorer_max_patch": "Patch mới nhất",
"explorer_min_mmr": "Min MMR",
"explorer_max_mmr": "Max MMR",
"explorer_min_rank_tier": "Min Tier",
"explorer_max_rank_tier": "Max Tier",
"explorer_player": "Người chơi",
"explorer_league": "Giải đấu",
"explorer_player_purchased": "Người chơi đã mua",
"explorer_duration": "Thời gian",
"explorer_min_duration": "Thời gian thấp nhất",
"explorer_max_duration": "Thời gian tối đa",
"explorer_timing": "Canh giờ",
"explorer_uses": "Sử dụng",
"explorer_kill": "Thời gian giết",
"explorer_side": "Cạnh",
"explorer_toggle_sql": "Chế độ SQL",
"explorer_team": "Đội hiện tại",
"explorer_lane_role": "Đường",
"explorer_min_date": "Ngày thấp nhất",
"explorer_max_date": "Ngày cao nhất",
"explorer_hero_combos": "Hero Combos",
"explorer_hero_player": "Tướng-Người chơi",
"explorer_player_player": "Người chơi-Người chơi",
"explorer_sql": "SQL",
"explorer_postgresql_function": "Chức năng PostgreSQL",
"explorer_table": "Bảng",
"explorer_column": "Cột",
"explorer_query_button": "Table",
"explorer_cancel_button": "Hủy bỏ",
"explorer_table_button": "Bảng",
"explorer_api_button": "API",
"explorer_json_button": "JSON",
"explorer_csv_button": "CSV",
"explorer_donut_button": "Donut",
"explorer_bar_button": "Thanh",
"explorer_timeseries_button": "Chuỗi thời gian",
"explorer_chart_unavailable": "Đồ thị không có sẵn, thử thêm \"THEO NHÓM\"",
"explorer_value": "Giá trị",
"explorer_category": "Hạng mục",
"explorer_region": "Khu vực",
"explorer_picks_bans": "Chọn/Cấm",
"explorer_counter_picks_bans": "Chọn khắc chế/Cấm",
"explorer_organization": "Tổ chức",
"explorer_order": "Thứ tự",
"explorer_asc": "Tăng dần",
"explorer_desc": "Giảm dần",
"explorer_tier": "Cấp",
"explorer_having": "Ít nhất là nhiêu đây trận",
"explorer_limit": "Gới hạn",
"explorer_match": "Trận đấu",
"explorer_is_ti_team": "Is TI{number} Team",
"explorer_mega_comeback": "Won Against Mega Creeps",
"explorer_max_gold_adv": "Max Gold Advantage",
"explorer_min_gold_adv": "Min Gold Advantage",
"farm_heroes": "Tướng đã giết",
"farm_creeps": "Rệp lane đã giết",
"farm_neutrals": "Rệp rừng đã giết (tính cả rệp Ancients)",
"farm_ancients": "Rệp Ancient đã giết",
"farm_towers": "Trụ đã hủy",
"farm_couriers": "Gà đã giết",
"farm_observers": "Mắt đã phá",
"farm_sentries": "Mắt xanh đã phá",
"farm_roshan": "Roshan đã giết",
"farm_necronomicon": "Số lính Necronomicon đã giết",
"filter_button_text_open": "Bộ lọc",
"filter_button_text_close": "Đóng",
"filter_hero_id": "Hero",
"filter_is_radiant": "Bên",
"filter_win": "Kết quả",
"filter_lane_role": "Lane",
"filter_patch": "Patch",
"filter_game_mode": "Chế độ",
"filter_lobby_type": "Dạng lobby",
"filter_date": "Ngày",
"filter_region": "Server",
"filter_with_hero_id": "Hero cùng team",
"filter_against_hero_id": "Hero đối địch",
"filter_included_account_id": "Gồm ID tài khoản",
"filter_excluded_account_id": "Trừ ID tài khoản",
"filter_significant": "Tầm thường",
"filter_significant_include": "Bao gồm",
"filter_last_week": "Tuần trước",
"filter_last_month": "Tháng trước",
"filter_last_3_months": "3 tháng trước",
"filter_last_6_months": "6 tháng trước",
"filter_error": "Hãy chọn mục trong danh sách",
"filter_party_size": "Party Size",
"game_mode_0": "Không rõ",
"game_mode_1": "Chọn tất cả",
"game_mode_2": "Chế độ Captains",
"game_mode_3": "Nhóm ngẫu nhiên",
"game_mode_4": "Một nhóm",
"game_mode_5": "Ngẫu nhiên",
"game_mode_6": "Giới thiệu",
"game_mode_7": "Diretide",
"game_mode_8": "Chế độ Captains ngược",
"game_mode_9": "Greeviling",
"game_mode_10": "Hướng dẫn",
"game_mode_11": "Chỉ đường giữa",
"game_mode_12": "Ít được chơi nhất",
"game_mode_13": "Giới hạn hero",
"game_mode_14": "Compendium",
"game_mode_15": "Tự chọn",
"game_mode_16": "Captains Draft",
"game_mode_17": "Balance Draft",
"game_mode_18": "Chọn kĩ năng",
"game_mode_19": "Sự kiện",
"game_mode_20": "Deathmatch ngẫu nhiên",
"game_mode_21": "1v1 Solo Mid",
"game_mode_22": "All Draft",
"game_mode_23": "Turbo",
"game_mode_24": "Mutation",
"general_unknown": "Không rõ",
"general_no_hero": "Không có hero",
"general_anonymous": "Ẩn danh",
"general_radiant": "Radiant",
"general_dire": "Dire",
"general_standard_deviation": "Độ lệch chuẩn",
"general_matches": "Trận đấu",
"general_league": "Giải đấu",
"general_randomed": "Ngẫu nhiên",
"general_repicked": "Chọn lại",
"general_predicted_victory": "Đoán trận thắng",
"general_show": "Show",
"general_hide": "Hide",
"gold_reasons_0": "Khác",
"gold_reasons_1": "Chết",
"gold_reasons_2": "Buyback",
"NULL_gold_reasons_5": "Abandon",
"NULL_gold_reasons_6": "Bán đồ",
"gold_reasons_11": "Công trình",
"gold_reasons_12": "Tướng",
"gold_reasons_13": "Creep",
"gold_reasons_14": "Roshan",
"NULL_gold_reasons_15": "Courier",
"header_request": "Yêu cầu",
"header_distributions": "Xếp hạng",
"header_heroes": "Hero",
"header_blog": "Blog",
"header_ingame": "Trong game",
"header_matches": "Trận đấu",
"header_records": "Kỉ lục",
"header_explorer": "Khám phá",
"header_teams": "Các đội",
"header_meta": "Meta",
"header_scenarios": "Scenarios",
"header_api": "API",
"heading_lhten": "Điểm creep @10",
"heading_lhtwenty": "Điểm creep @ 20",
"heading_lhthirty": "Điểm creep @ 30",
"heading_lhforty": "Điểm creep @ 40",
"heading_lhfifty": "Điểm creep @ 50",
"heading_courier": "Thú chuyển đồ",
"heading_roshan": "Roshan",
"heading_tower": "Trụ",
"heading_barracks": "Nhà lính",
"heading_shrine": "Miếu",
"heading_item_purchased": "Item đã mua",
"heading_ability_used": "Ability đã sử dụng",
"heading_item_used": "Item đã dùng",
"heading_damage_inflictor": "Người gây sát thương",
"heading_damage_inflictor_received": "Người gây sát thương nhận",
"heading_damage_instances": "Sát thương chồng",
"heading_camps_stacked": "Số bãi quái được stack",
"heading_matches": "Các trận gần đây",
"heading_heroes": "Hero đã chơi",
"heading_mmr": "Lịch sử MMR",
"heading_peers": "Người chơi từng chung team",
"heading_pros": "Người chơi chuyên nghiệp từng chung team",
"heading_rankings": "Hero Rankings",
"heading_all_matches": "Trong tất cả trận đấu",
"heading_parsed_matches": "Trong các trận đấu được phân tích",
"heading_records": "Kỉ lục",
"heading_teamfights": "Giao tranh tổng",
"heading_graph_difference": "Chênh lệch tiền",
"heading_graph_gold": "Tiền",
"heading_graph_xp": "Kinh nghiệm",
"heading_graph_lh": "Last hit",
"heading_overview": "Tổng quan",
"heading_ability_draft": "Abilities Drafted",
"heading_buildings": "Bản đồ công trình",
"heading_benchmarks": "So sánh",
"heading_laning": "Giai đoạn đi lane",
"heading_overall": "Tổng quát",
"heading_kills": "Mạng giết",
"heading_deaths": "Chết",
"heading_assists": "Hỗ trợ",
"heading_damage": "Sát thương",
"heading_unit_kills": "Số unit đã giết",
"heading_last_hits": "Last hit",
"heading_gold_reasons": "Nguồn tiền",
"heading_xp_reasons": "Nguồn kinh nghiệm",
"heading_performances": "Hiệu suất",
"heading_support": "Hỗ trợ",
"heading_purchase_log": "Lịch sử mua item",
"heading_casts": "Số lần cast",
"heading_objective_damage": "Sát thương lên các mục tiêu chính",
"heading_runes": "Rune",
"heading_vision": "Tầm nhìn",
"heading_actions": "Thao tác",
"heading_analysis": "Phân tích",
"heading_cosmetics": "Đồ trang trí",
"heading_log": "Nhật ký",
"heading_chat": "Trò chuyện",
"heading_story": "Sự kiện",
"heading_fantasy": "Điểm đánh giá",
"heading_wardmap": "Bản đồ cắm ward",
"heading_wordcloud": "Biểu đồ từ ngữ",
"heading_wordcloud_said": "Những từ đã chat (chung)",
"heading_wordcloud_read": "Những từ đã đọc (chung)",
"heading_kda": "Tỉ lệ điểm",
"heading_gold_per_min": "Gold Per Min",
"heading_xp_per_min": "XP Per Min",
"heading_denies": "Số deny",
"heading_lane_efficiency_pct": "Năng suất @ 10",
"heading_duration": "Thời gian",
"heading_level": "Cấp",
"heading_hero_damage": "Sát thương lên tướng",
"heading_tower_damage": "Sát thương lên trụ",
"heading_hero_healing": "Hồi máu cho tướng",
"heading_tower_kills": "Trụ đã phá hủy",
"heading_stuns": "Choáng",
"heading_neutral_kills": "Mạng quái rừng",
"heading_courier_kills": "Mạng gà",
"heading_purchase_tpscroll": "TPs đã mua",
"heading_purchase_ward_observer": "Observers đã mua",
"heading_purchase_ward_sentry": "Sentries đã mua",
"heading_purchase_gem": "Gems đã mua",
"heading_purchase_rapier": "Rapiers đã mua",
"heading_pings": "Số lần Ping",
"heading_throw": "Thua ngược",
"heading_comeback": "Thắng ngược",
"heading_stomp": "Bán hành",
"heading_loss": "Thua",
"heading_actions_per_min": "Thao tác mỗi phút",
"heading_leaver_status": "Trạng thái rời",
"heading_game_mode": "Chế độ",
"heading_lobby_type": "Dạng lobby",
"heading_lane_role": "Vai trò",
"heading_region": "Server",
"heading_patch": "Patch",
"heading_win_rate": "Tỉ lệ thắng",
"heading_is_radiant": "Bên",
"heading_avg_and_max": "Trung bình/Tối đa",
"heading_total_matches": "Tổng số trận đấu",
"heading_median": "Trung bình",
"heading_distinct_heroes": "Phân biêt tướng",
"heading_team_elo_rankings": "Team Elo Rankings",
"heading_ability_build": "Ability Build",
"heading_attack": "Tốc độ đánh cơ bản",
"heading_attack_range": "Tầm đánh",
"heading_attack_speed": "Tốc độ đánh",
"heading_projectile_speed": "Tốc độ đạn",
"heading_base_health": "Máu",
"heading_base_health_regen": "Hồi máu",
"heading_base_mana": "Năng lượng",
"heading_base_mana_regen": "Hồi năng lượng",
"heading_base_armor": "Lượng giáp cơ bản",
"heading_base_mr": "Lượng kháng phép cơ bản",
"heading_move_speed": "Tốc độ di chuyển",
"heading_turn_rate": "Tốc độ xoay",
"heading_legs": "Số lượng chân",
"heading_cm_enabled": "CM enabled",
"heading_current_players": "Current Players",
"heading_former_players": "Former Players",
"heading_damage_dealt": "Damage Dealt",
"heading_damage_received": "Damage Received",
"show_details": "Show details",
"hide_details": "Hide details",
"subheading_avg_and_max": "in last {0} displayed matches",
"subheading_records": "Trong các trận đấu hạng. Các ghi chép được làm lại hằng tháng.",
"subheading_team_elo_rankings": "k=32, init=1000",
"hero_pro_tab": "Chuyên nghiệp",
"hero_public_tab": "Công khai",
"hero_pro_heading": "Heroes trong trận đấu chuyên nghiệp",
"hero_public_heading": "Các tướng trong các trận đấu công khai (đã thu thập)",
"hero_this_month": "trận đấu trong vòng 30 ngày",
"hero_pick_ban_rate": "Pro P+B%",
"hero_pick_rate": "Pro Pick%",
"hero_ban_rate": "Pro Ban%",
"hero_win_rate": "Pro Win%",
"hero_5000_pick_rate": ">5K P%",
"hero_5000_win_rate": ">5K W%",
"hero_4000_pick_rate": "4K P%",
"hero_4000_win_rate": "4K W%",
"hero_3000_pick_rate": "3K P%",
"hero_3000_win_rate": "3K W%",
"hero_2000_pick_rate": "2K P%",
"hero_2000_win_rate": "2K W%",
"hero_1000_pick_rate": "<2K P%",
"hero_1000_win_rate": "<2K W%",
"home_login": "Đăng nhập",
"home_login_desc": "để tự động parse replay",
"home_parse": "Yêu cầu",
"home_parse_desc": "trận đấu cụ thể",
"home_why": "",
"home_opensource_title": "Mã nguồn mở",
"home_opensource_desc": "Tất cả mã của dự án là mã nguồn mở và có sẵn cho mọi người để cải tiến và sửa chữa.",
"home_indepth_title": "Dữ liệu được phân tích kĩ",
"home_indepth_desc": "Phân tích tập tin trận đấu cho những chi tiết của trận.",
"home_free_title": "Free of charge",
"home_free_desc": "Server được tài trợ bởi nhà tài trợ và những người tình nguyện duy trì source code, vì vậy dịch vụ này là miễn phí.",
"home_background_by": "Background picture bởi",
"home_sponsored_by": "Background picture bởi",
"home_become_sponsor": "Trở thành nhà tài trợ",
"items_name": "Tên item",
"items_built": "Số lần từng mua item này",
"items_matches": "Số trận từng mua item này",
"items_uses": "Số lần đã sử dụng item này",
"items_uses_per_match": "Số lần sử dụng trung bình của item này trong các trận được mua",
"items_timing": "Thời gian trung bình item này được mua",
"items_build_pct": "Tỉ lệ số trận item này được mua",
"items_win_pct": "Phần trăm trận đấu chiến thắng khi mua item này",
"lane_role_0": "Không rõ",
"lane_role_1": "An toàn",
"lane_role_2": "Mid",
"lane_role_3": "Tắt",
"lane_role_4": "Rừng",
"lane_pos_1": "Dưới",
"lane_pos_2": "Giữa",
"lane_pos_3": "Trên",
"lane_pos_4": "Rừng Radiant",
"lane_pos_5": "Rừng Dire",
"leaver_status_0": "Không ai",
"leaver_status_1": "Rời an toàn",
"leaver_status_2": "Hủy trận (thoát)",
"leaver_status_3": "Hủy trận",
"leaver_status_4": "Hủy trận (AFK)",
"leaver_status_5": "Chưa kết nối",
"leaver_status_6": "Chưa kết nối (hết giờ)",
"lobby_type_0": "Trung bình",
"lobby_type_1": "Luyện tập",
"lobby_type_2": "Giải đấu",
"lobby_type_3": "Hướng dẫn",
"lobby_type_4": "Co-Op Bots",
"lobby_type_5": "MM đội hạng (Legacy)",
"lobby_type_6": "Ranked Solo MM (Legacy)",
"lobby_type_7": "Hạng",
"lobby_type_8": "1v1 Mid",
"lobby_type_9": "Battle Cup",
"match_radiant_win": "Radiant chiến thắng",
"match_dire_win": "Dire chiến thắng",
"match_team_win": "Chiến thắng",
"match_ended": "Đã kết thúc",
"match_id": "ID trận đấu",
"match_region": "Server",
"match_avg_mmr": "MMR trung bình",
"match_button_parse": "Phân tích",
"match_button_reparse": "Phân tích lại",
"match_button_replay": "Phát lại",
"match_button_video": "Lấy video",
"match_first_tower": "Trụ đầu tiên",
"match_first_barracks": "Nhà lính đầu tiên",
"match_pick": "Chọn",
"match_ban": "Cấm",
"matches_highest_mmr": "Top Public",
"matches_lowest_mmr": "MMR thấp",
"meta_title": "Meta",
"meta_description": "Run advanced queries on data from sampled public matches in previous 24h",
"mmr_not_up_to_date": "Why is the MMR not up to date?",
"npc_dota_beastmaster_boar_#": "Lợn rừng",
"npc_dota_lesser_eidolon": "Eidolon con",
"npc_dota_eidolon": "Eidolon",
"npc_dota_greater_eidolon": "Eidolon lớn",
"npc_dota_dire_eidolon": "Dire Ediolon",
"npc_dota_invoker_forged_spirit": "Đệ Invoker",
"npc_dota_furion_treant_large": "Treant lớn",
"npc_dota_beastmaster_hawk_#": "Chim ưng",
"npc_dota_lycan_wolf#": "Sói của Lycan",
"npc_dota_neutral_mud_golem_split_doom": "Doom Shard",
"npc_dota_broodmother_spiderling": "Đệ Broodmother",
"npc_dota_broodmother_spiderite": "Spiderite",
"npc_dota_furion_treant": "Cây",
"npc_dota_unit_undying_zombie": "Undying Zombie",
"npc_dota_unit_undying_zombie_torso": "Undying Zombie",
"npc_dota_brewmaster_earth_#": "Earth Brewling",
"npc_dota_brewmaster_fire_#": "Fire Brewling",
"npc_dota_lone_druid_bear#": "Gấu",
"npc_dota_brewmaster_storm_#": "Storm Brewling",
"npc_dota_visage_familiar#": "Familiar",
"npc_dota_warlock_golem_#": "Warlock Golem",
"npc_dota_warlock_golem_scepter_#": "Warlock Golem",
"npc_dota_witch_doctor_death_ward": "Death Ward",
"npc_dota_tusk_frozen_sigil#": "Frozen Sigil",
"npc_dota_juggernaut_healing_ward": "Healing Ward",
"npc_dota_techies_land_mine": "Proximity Mine",
"npc_dota_shadow_shaman_ward_#": "Serpent Ward",
"npc_dota_pugna_nether_ward_#": "Nether Ward",
"npc_dota_venomancer_plague_ward_#": "Plague Ward",
"npc_dota_rattletrap_cog": "Power Cog",
"npc_dota_templar_assassin_psionic_trap": "Psionic Trap",
"npc_dota_techies_remote_mine": "Remote Mine",
"npc_dota_techies_stasis_trap": "Stasis Trap",
"npc_dota_phoenix_sun": "Supernova",
"npc_dota_unit_tombstone#": "Tombstone",
"npc_dota_treant_eyes": "Eyes in the Forest",
"npc_dota_gyrocopter_homing_missile": "Homing Missile",
"npc_dota_weaver_swarm": "The Swarm",
"objective_tower1_top": "T1",
"objective_tower1_mid": "M1",
"objective_tower1_bot": "B1",
"objective_tower2_top": "T2",
"objective_tower2_mid": "M2",
"objective_tower2_bot": "B2",
"objective_tower3_top": "T3",
"objective_tower3_mid": "M3",
"objective_tower3_bot": "B3",
"objective_rax_top": "RaxT",
"objective_rax_mid": "RaxM",
"objective_rax_bot": "RaxB",
"objective_tower4": "T4",
"objective_fort": "Anc",
"objective_shrine": "Shr",
"objective_roshan": "Rosh",
"tooltip_objective_tower1_top": "Damage dealt to top Tier 1 tower",
"tooltip_objective_tower1_mid": "Damage dealt to middle Tier 1 tower",
"tooltip_objective_tower1_bot": "Damage dealt to bottom Tier 1 tower",
"tooltip_objective_tower2_top": "Damage dealt to top Tier 2 tower",
"tooltip_objective_tower2_mid": "Damage dealt to middle Tier 2 tower",
"tooltip_objective_tower2_bot": "Damage dealt to bottom Tier 2 tower",
"tooltip_objective_tower3_top": "Damage dealt to top Tier 3 tower",
"tooltip_objective_tower3_mid": "Damage dealt to middle Tier 3 tower",
"tooltip_objective_tower3_bot": "Damage dealt to bottom Tier 3 tower",
"tooltip_objective_rax_top": "Damage dealt to top barracks",
"tooltip_objective_rax_mid": "Damage dealt to middle barracks",
"tooltip_objective_rax_bot": "Damage dealt to bottom barracks",
"tooltip_objective_tower4": "Damage dealt to middle Tier 4 towers",
"tooltip_objective_fort": "Damage dealt to ancient",
"tooltip_objective_shrine": "Damage dealt to shrines",
"tooltip_objective_roshan": "Damage dealt to Roshan",
"pagination_first": "Đầu tiên",
"pagination_last": "Cuối",
"pagination_of": "của",
"peers_none": "This player has no peers.",
"rank_tier_0": "Uncalibrated",
"rank_tier_1": "Herald",
"rank_tier_2": "Guardian",
"rank_tier_3": "Crusader",
"rank_tier_4": "Archon",
"rank_tier_5": "Legend",
"rank_tier_6": "Ancient",
"rank_tier_7": "Divine",
"rank_tier_8": "Immortal",
"request_title": "Đề nghị phân tích",
"request_match_id": "ID trận đấu",
"request_invalid_match_id": "Invalid Match ID",
"request_error": "Có lỗi khi lấy dữ liệu",
"request_submit": "Submit",
"roaming": "Roaming",
"rune_0": "Double Damage",
"rune_1": "Haste",
"rune_2": "Illusion",
"rune_3": "Invisibility",
"rune_4": "Regeneration",
"rune_5": "Bounty",
"rune_6": "Arcane",
"rune_7": "Water",
"search_title": "Search by player name, match ID...",
"skill_0": "Unknown Skill",
"skill_1": "Normal Skill",
"skill_2": "High Skill",
"skill_3": "Very High Skill",
"story_invalid_template": "(invalid template)",
"story_error": "An error occured while compiling the story for this match",
"story_intro": "on {date}, two teams decided to play {game_mode_article} {game_mode} game of Dota 2 in {region}. Little did they know, the game would last {duration_in_words}",
"story_invalid_hero": "Unrecognized Hero",
"story_fullstop": ".",
"story_list_2": "{1} và {2}",
"story_list_3": "{1}, {2}, và {3}",
"story_list_n": "{i}, {rest}",
"story_firstblood": "first blood was drawn when {killer} killed {victim} at {time}",
"story_chatmessage": "\"{message}\", {player} {said_verb}",
"story_teamfight": "{winning_team} chiến thắng teamfight bằng cách đổi {win_dead} lấy {lose_dead}, kết quả lượng vàng chênh lệch tăng {net_change}",
"story_teamfight_none_dead": "{winning_team} chiến thắng teamfight bằng cách giết {lose_dead} mà không mất hero nào, kết quả lượng vàng chênh lệch tăng {net_change}",
"story_teamfight_none_dead_loss": "{winning_team} somehow won a teamfight without killing anyone, and losing {win_dead}, resulting in a net worth increase of {net_change}",
"story_lane_intro": "Tại thời điểm 10 phút trong game, lanes có diễn biến như sau:",
"story_lane_radiant_win": "{radiant_players} thắng {lane} Lane trước {dire_players}",
"story_lane_radiant_lose": "{radiant_players} thua {lane} Lane trước {dire_players}",
"story_lane_draw": "{radiant_players} drew even in {lane} Lane with {dire_players}",
"story_lane_free": "{players} had a free {lane} lane",
"story_lane_empty": "không có hero nào ở {lane} lane",
"story_lane_jungle": "{players} farmed ở rừng",
"story_lane_roam": "{players} roamed",
"story_roshan": "{team} giết Roshan",
"story_aegis": "{player} {action} the aegis",
"story_gameover": "Trận đấu kết thúc với chiến thắng của {winning_team} trong vòng {duration} với điểm số {radiant_score} của radiant với {dire_score} của dire",
"story_during_teamfight": "trong khi chiến đấu, {events}",
"story_after_teamfight": "sau khi chiến đấu, {events}",
"story_expensive_item": "tại thời điểm {time}, {player} mua {item}, đây là trang bị đầu tiên trong trận đấu có giá cao hơn {price_limit}",
"story_building_destroy": "{building} bị phá hủy",
"story_building_destroy_player": "{player} phá hủy {building}",
"story_building_deny_player": "{player} denied {building}",
"story_building_list_destroy": "{buildings} bị phá hủy",
"story_courier_kill": "{team}'s courier was killed",
"story_tower": "{team}'s Tier {tier} {lane} tower",
"story_tower_simple": "one of {team}'s towers",
"story_towers_n": "{n} of {team}'s Towers",
"story_barracks": "{rax_type} {lane} của {team}",
"story_barracks_both": "tất cả Trại lính {lane} của {team}",
"story_time_marker": "{minutes} Minutes In",
"story_item_purchase": "{player} mua một {item} lúc {time}",
"story_predicted_victory": "{players} dự đoán {team} sẽ giành chiến thắng",
"story_predicted_victory_empty": "No one",
"story_networth_diff": "{percent}% / {gold} Diff",
"story_gold": "gold",
"story_chat_asked": "asked",
"story_chat_said": "said",
"tab_overview": "Tổng quan",
"tab_matches": "Trận đấu",
"tab_heroes": "Hero",
"tab_peers": "Peers",
"tab_pros": "Pros",
"tab_activity": "Hoạt động",
"tab_records": "Kỉ lục",
"tab_totals": "Totals",
"tab_counts": "Counts",
"tab_histograms": "Biểu đồ",
"tab_trends": "Xu hướng",
"tab_items": "Item",
"tab_wardmap": "Bản đồ cắm ward",
"tab_wordcloud": "Biểu đồ từ ngữ",
"tab_mmr": "MMR",
"tab_rankings": "Bảng xếp hạng",
"tab_drafts": "Draft",
"tab_benchmarks": "So sánh",
"tab_performances": "Hiệu suất",
"tab_damage": "Sát thương",
"tab_purchases": "Purchases",
"tab_farm": "Farm",
"tab_combat": "Giao chiến",
"tab_graphs": "Biểu đồ",
"tab_casts": "Số lần sử dụng",
"tab_vision": "Tầm nhìn",
"tab_objectives": "Mục tiêu",
"tab_teamfights": "Giao tranh tổng",
"tab_actions": "Thao tác",
"tab_analysis": "Phân tích",
"tab_cosmetics": "Đồ trang trí",
"tab_log": "Nhật ký",
"tab_chat": "Trò chuyện",
"tab_story": "Sự kiện",
"tab_fantasy": "Fantasy",
"tab_laning": "Laning",
"tab_recent": "Recent",
"tab_matchups": "Matchups",
"tab_durations": "Durations",
"tab_players": "Players",
"placeholder_filter_heroes": "Lọc hero",
"td_win": "Won Match",
"td_loss": "Lost Match",
"td_no_result": "Không có kết quả",
"th_hero_id": "Tướng",
"th_match_id": "ID",
"th_account_id": "Account ID",
"th_result": "Kết quả",
"th_skill": "Trình độ",
"th_duration": "Thời gian",
"th_games": "MP",
"th_games_played": "Games",
"th_win": "Tỉ lệ % thắng",
"th_advantage": "Advantage",
"th_with_games": "Với",
"th_with_win": "Win with %",
"th_against_games": "Chống lại",
"th_against_win": "Win against %",
"th_gpm_with": "GPM With",
"th_xpm_with": "XPM With",
"th_avatar": "Người chơi",
"th_last_played": "Lần cuối",
"th_record": "Kỷ lục",
"th_title": "Tiêu đề",
"th_category": "Hạng mục",
"th_matches": "Trận đấu",
"th_percentile": "Phần trăm",
"th_rank": "Hạng",
"th_items": "Item",
"th_stacked": "Bãi quái đã stack",
"th_multikill": "Multikill",
"th_killstreak": "Killstreak",
"th_stuns": "Choáng",
"th_dead": "Chết",
"th_buybacks": "Buyback",
"th_biggest_hit": "Phát đánh mạnh nhất",
"th_lane": "Đường",
"th_map": "Bản đồ",
"th_lane_efficiency": "Năng suất @ 10",
"th_lhten": "LH@10",
"th_dnten": "DN@10",
"th_tpscroll": "TP",
"th_ward_observer": "Observer",
"th_ward_sentry": "Sentry",
"th_smoke_of_deceit": "Smoke",
"th_dust": "Dust",
"th_gem": "Gem",
"th_time": "Thời gian",
"th_message": "Tin nhắn",
"th_heroes": "Hero",
"th_creeps": "Quái",
"th_neutrals": "Quái rừng",
"th_ancients": "Ancients",
"th_towers": "Trụ",
"th_couriers": "Ngựa",
"th_roshan": "Roshan",
"th_necronomicon": "Necronomicon",
"th_other": "Khác",
"th_cosmetics": "Đồ trang trí",
"th_damage_received": "Đã nhận",
"th_damage_dealt": "Gây",
"th_players": "Người chơi",
"th_analysis": "Phân tích",
"th_death": "Chết",
"th_damage": "Sát thương",
"th_healing": "Hồi máu",
"th_gold": "Tiền",
"th_xp": "XP",
"th_abilities": "Kĩ năng",
"th_target_abilities": "Ability Targets",
"th_mmr": "MMR",
"th_level": "Cấp",
"th_kills": "Mạng",
"th_kills_per_min": "KPM",
"th_deaths": "D",
"th_assists": "A",
"th_last_hits": "LH",
"th_last_hits_per_min": "LHM",
"th_denies": "DN",
"th_gold_per_min": "GPM",
"th_xp_per_min": "XPM",
"th_stuns_per_min": "SPM",
"th_hero_damage": "HD",
"th_hero_damage_per_min": "HDM",
"th_hero_healing": "HH",
"th_hero_healing_per_min": "HHM",
"th_tower_damage": "TD",
"th_tower_damage_per_min": "TDM",
"th_kda": "Tỉ lệ điểm",
"th_actions_per_min": "APM",
"th_pings": "PNG (M)",
"th_DOTA_UNIT_ORDER_MOVE_TO_POSITION": "MV (P)",
"th_DOTA_UNIT_ORDER_MOVE_TO_TARGET": "MV (T)",
"th_DOTA_UNIT_ORDER_ATTACK_TARGET": "ATK (T)",
"th_DOTA_UNIT_ORDER_ATTACK_MOVE": "ATK (P)",
"th_DOTA_UNIT_ORDER_CAST_POSITION": "CST (P)",
"th_DOTA_UNIT_ORDER_CAST_TARGET": "CST (T)",
"th_DOTA_UNIT_ORDER_CAST_NO_TARGET": "CST (N)",
"th_DOTA_UNIT_ORDER_HOLD_POSITION": "HLD",
"th_DOTA_UNIT_ORDER_GLYPH": "GLYPH",
"th_DOTA_UNIT_ORDER_RADAR": "SCN",
"th_ability_builds": "AB",
"th_purchase_shorthand": "PUR",
"th_use_shorthand": "USE",
"th_duration_shorthand": "DUR",
"th_country": "Quốc gia",
"th_count": "Số lần",
"th_sum": "Tổng hợp",
"th_average": "Trung bình",
"th_name": "Tên",
"th_team_name": "Tên đội",
"th_score": "Điểm",
"th_casts": "Số lần sử dụng",
"th_hits": "Trúng",
"th_wins": "Thắng",
"th_losses": "Thua",
"th_winrate": "Tỉ lệ thắng",
"th_solo_mmr": "MMR đơn",
"th_party_mmr": "Party MMR",
"th_estimated_mmr": "MMR ước tính",
"th_permanent_buffs": "Buff",
"th_winner": "Bên thắng",
"th_played_with": "Kỉ lục của tôi với",
"th_obs_placed": "Mắt vàng đã cắm",
"th_sen_placed": "Mắt xanh đã cắm",
"th_obs_destroyed": "Mắt vàng đã phá",
"th_sen_destroyed": "Mắt xanh đã phá",
"th_scans_used": "Scan đã dùng",
"th_glyphs_used": "Glyph đã dùng",
"th_legs": "Chân",
"th_fantasy_points": "Fantasy Pts",
"th_rating": "Rating",
"th_teamfight_participation": "Participation",
"th_firstblood_claimed": "First Blood",
"th_observers_placed": "Observers",
"th_camps_stacked": "Stacks",
"th_league": "League",
"th_attack_type": "Attack Type",
"th_primary_attr": "Primary Attribute",
"th_opposing_team": "Opposing Team",
"ward_log_type": "Loại",
"ward_log_owner": "Người sở hữu",
"ward_log_entered_at": "Đặt",
"ward_log_left_at": "Trái",
"ward_log_duration": "Thời gian",
"ward_log_killed_by": "Bị giết bởi",
"log_detail": "Chi tiết",
"log_heroes": "Chỉ rõ tướng",
"tier_professional": "Chuyên nghiệp",
"tier_premium": "Premium",
"time_past": "{0} ago",
"time_just_now": "vừa mới đây",
"time_s": "một giây",
"time_abbr_s": "{0}s",
"time_ss": "{0} seconds",
"time_abbr_ss": "{0}s",
"time_m": "một phút",
"time_abbr_m": "{0}m",
"time_mm": "{0} minutes",
"time_abbr_mm": "{0}m",
"time_h": "một giờ",
"time_abbr_h": "{0}h",
"time_hh": "{0} hours",
"time_abbr_hh": "{0}h",
"time_d": "một ngày",
"time_abbr_d": "{0}d",
"time_dd": "{0} days",
"time_abbr_dd": "{0}d",
"time_M": "một tháng",
"time_abbr_M": "{0}mo",
"time_MM": "{0} months",
"time_abbr_MM": "{0}mo",
"time_y": "một năm",
"time_abbr_y": "{0}y",
"time_yy": "{0} years",
"time_abbr_yy": "{0}y",
"timeline_firstblood": "giành first blood",
"timeline_firstblood_key": "giành first blood bằng cách giết",
"timeline_aegis_picked_up": "nhặt",
"timeline_aegis_snatched": "cướp",
"timeline_aegis_denied": "từ chối",
"timeline_teamfight_deaths": "Chết",
"timeline_teamfight_gold_delta": "tiền",
"title_default": "OpenDota - Phân tích trận đấu Dota2",
"title_template": "%s - OpenDota - Phân tích trận đấu Dota2",
"title_matches": "Trận đấu",
"title_request": "Đề nghị phân tích",
"title_search": "Tìm kiếm",
"title_status": "Trạng thái",
"title_explorer": "Công cụ khám phá dữ liệu",
"title_meta": "Meta",
"title_records": "Kỉ lục",
"title_api": "The Opendota API: Advanced Dota 2 stats for your app",
"tooltip_mmr": "Solo MMR của người chơi",
"tooltip_abilitydraft": "Ability Drafted",
"tooltip_level": "Level achieved by hero",
"tooltip_kills": "Số lần kill bởi hero",
"tooltip_deaths": "Số lần chết của hero",
"tooltip_assists": "Số lần hỗ trợ bằng hero",
"tooltip_last_hits": "Số last hit của hero",
"tooltip_denies": "Số creep bị deny",
"tooltip_gold": "Tổng lượng tiền farm được",
"tooltip_gold_per_min": "Lượng tiền farm được mỗi phút",
"tooltip_xp_per_min": "Điểm kinh nghiệm thu được mỗi phút",
"tooltip_stuns_per_min": "Seconds of hero stuns per minute",
"tooltip_last_hits_per_min": "Số last hit trung bình mỗi phút",
"tooltip_kills_per_min": "Số mạng giết mỗi phút",
"tooltip_hero_damage_per_min": "Sát thương lên hero mỗi phút",
"tooltip_hero_healing_per_min": "Lượng máu hồi cho hero mỗi phút",
"tooltip_tower_damage_per_min": "Sát thương trụ mỗi phút",
"tooltip_actions_per_min": "Số thao tác thực hiện mỗi phút",
"tooltip_hero_damage": "Lượng sát thương gây ra cho hero",
"tooltip_tower_damage": "Lượng sát thương gây ra cho trụ",
"tooltip_hero_healing": "Lượng máu đã hồi cho hero",
"tooltip_duration": "Độ dài trận đấu",
"tooltip_first_blood_time": "Thời điểm có first blood",
"tooltip_kda": "(Mạng giết + Mạng hỗ trợ)/ (Mạng chết + 1)",
"tooltip_stuns": "Số giây vô hiệu hóa hero địch",
"tooltip_dead": "Thời gian chết",
"tooltip_buybacks": "Số lần buybacks",
"tooltip_camps_stacked": "Số bãi quái đã stack",
"tooltip_tower_kills": "Số trụ đã bị hạ",
"tooltip_neutral_kills": "Số quái rừng đã bị giết",
"tooltip_courier_kills": "Số lượng courier đã bị giết",
"tooltip_purchase_tpscroll": "Số TP đã dùng",
"tooltip_purchase_ward_observer": "Số Observer Ward đã mua",
"tooltip_purchase_ward_sentry": "Số Sentry Ward đã mua",
"tooltip_purchase_smoke_of_deceit": "Số Smoke of Deceit đã mua",
"tooltip_purchase_dust": "Số Dust of Appearance đã mua",
"tooltip_purchase_gem": "Số Gem of True Sight đã mua",
"tooltip_purchase_rapier": "Số Divine Rapier đã mua",
"tooltip_purchase_buyback": "Số lần buyback",
"tooltip_duration_observer": "Average lifespan of Observer Wards",
"tooltip_duration_sentry": "Average lifespan of Sentry Wards",
"tooltip_used_ward_observer": "Số lượng Observer Wards cắm trong trận đấu",
"tooltip_used_ward_sentry": "Số lượng Sentry Wards cắm trong trận đấu",
"tooltip_used_dust": "Số lần Dust of Appearance được sử dụng trong trận đấu",
"tooltip_used_smoke_of_deceit": "Số lần Smoke of Deceit được sử dụng trong trận đấu",
"tooltip_parsed": "Replay has been parsed for additional data",
"tooltip_unparsed": "Replay của trận đấu này vẫn chưa được phân tích. Một số thông tin sẽ bị thiếu.",
"tooltip_hero_id": "The hero played",
"tooltip_result": "Whether the player won or lost",
"tooltip_match_id": "ID của trận đấu",
"tooltip_game_mode": "Chế độ chơi của trận đấu",
"tooltip_skill": "Approximate MMR cutoffs for the brackets are 0, 3200 and 3700",
"tooltip_ended": "Thời gian trận đấu kết thúc",
"tooltip_pick_order": "Thứ tự chọn hero",
"tooltip_throw": "Maximum gold advantage in a lost game",
"tooltip_comeback": "Maximum gold disadvantage in a won game",
"tooltip_stomp": "Maximum gold advantage in a won game",
"tooltip_loss": "Maximum gold disadvantage in a lost game",
"tooltip_items": "Item đã mua",
"tooltip_permanent_buffs": "Permanent buffs such as Flesh Heap stacks or Tomes of Knowledge used",
"tooltip_lane": "Vị trí đi lane ở đầu trận đấu",
"tooltip_map": "Biểu đồ di chuyển của người chơi ở đầu trận",
"tooltip_lane_efficiency": "Percentage of lane gold (creeps+passive+starting) obtained at 10 minutes",
"tooltip_lane_efficiency_pct": "Percentage of lane gold (creeps+passive+starting) obtained at 10 minutes",
"tooltip_pings": "Số lần người chơi ping trên map",
"tooltip_DOTA_UNIT_ORDER_MOVE_TO_POSITION": "Số lần người chơi di chuyển đến một vị trí",
"tooltip_DOTA_UNIT_ORDER_MOVE_TO_TARGET": "Số lần người chơi di chuyển đến một đối tượng",
"tooltip_DOTA_UNIT_ORDER_ATTACK_MOVE": "Số lần người chơi tấn công đến một ví trí (di chuyển tấn công)",
"tooltip_DOTA_UNIT_ORDER_ATTACK_TARGET": "Số lần người chơi tấn công một đối tượng",
"tooltip_DOTA_UNIT_ORDER_CAST_POSITION": "Số lần người chơi cast lên một vị trí",
"tooltip_DOTA_UNIT_ORDER_CAST_TARGET": "Số lần người chơi cast lên một đối tượng",
"tooltip_DOTA_UNIT_ORDER_CAST_NO_TARGET": "Số lần người chơi cast không trúng đối tượng",
"tooltip_DOTA_UNIT_ORDER_HOLD_POSITION": "Số lần người chơi giữ vị trí",
"tooltip_DOTA_UNIT_ORDER_GLYPH": "Số lần người chơi sử dụng bảo vệ công trình",
"tooltip_DOTA_UNIT_ORDER_RADAR": "Số lần người chơi sử dụng scan",
"tooltip_last_played": "Lần cuối cùng một trận đấu được chơi bằng người chơi/hero này",
"tooltip_matches": "Matches played with/against this player",
"tooltip_played_as": "Number of games played as this hero",
"tooltip_played_with": "Number of games with this player/hero on the team",
"tooltip_played_against": "Number of games with this player/hero on the opposing team",
"tooltip_tombstone_victim": "Here Lies",
"tooltip_tombstone_killer": "giết bởi",
"tooltip_win_pct_as": "Phần trăm chiến thắng với hero",
"tooltip_win_pct_with": "Phần trăm chiến thắng với player/hero",
"tooltip_win_pct_against": "Phần trăm chiến thắng trước player/hero",
"tooltip_lhten": "Last hits at 10 minutes",
"tooltip_dnten": "Denies at 10 minutes",
"tooltip_biggest_hit": "Largest instance of damage on a hero",
"tooltip_damage_dealt": "Damage dealt to heroes by items/abilities",
"tooltip_damage_received": "Damage received from heroes by items/abilities",
"tooltip_registered_user": "Registered user",
"tooltip_ability_builds": "Ability Builds",
"tooltip_ability_builds_expired": "Ability upgrade data has expired for this match. Use the request form to reload data.",
"tooltip_multikill": "Longest multi-kill",
"tooltip_killstreak": "Longest killstreak",
"tooltip_casts": "Số lần kỉ năng/item được sử dụng",
"tooltip_target_abilities": "How many times each hero was targeted by this hero's abilities",
"tooltip_hits": "Number of damage instances to heroes caused by this ability/item",
"tooltip_damage": "Amount of damage dealt to heroes by this ability/item",
"tooltip_autoattack_other": "Auto Attack/Other",
"tooltip_estimated_mmr": "MMR estimate based on the mean visible MMR of the recent matches played by this user",
"tooltip_backpack": "Backpack",
"tooltip_others_tracked_deaths": "tracked deaths",
"tooltip_others_track_gold": "gold earned from Track",
"tooltip_others_greevils_gold": "gold earned from Greevil's Greed",
"tooltip_advantage": "Calculated by Wilson score",
"tooltip_winrate_samplesize": "Win rate and sample size",
"tooltip_teamfight_participation": "Amount of participation in teamfights",
"histograms_name": "Biểu đồ",
"histograms_description": "Percentages indicate win rates for the labeled bin",
"histograms_actions_per_min_description": "Actions performed by player per minute",
"histograms_comeback_description": "Maximum gold disadvantage in a won game",
"histograms_lane_efficiency_pct_description": "Percentage of lane gold (creeps+passive+starting) obtained at 10 minutes",
"histograms_gold_per_min_description": "Gold farmed per minute",
"histograms_hero_damage_description": "Amount of damage dealt to heroes",
"histograms_hero_healing_description": "Amount of health restored to heroes",
"histograms_level_description": "Level achieved in a game",
"histograms_loss_description": "Maximum gold disadvantage in a lost game",
"histograms_pings_description": "Number of times the player pinged the map",
"histograms_stomp_description": "Maximum gold advantage in a won game",
"histograms_stuns_description": "Seconds of disable on heroes",
"histograms_throw_description": "Maximum gold advantage in a lost game",
"histograms_purchase_tpscroll_description": "Town Portal Scroll purchases",
"histograms_xp_per_min_description": "Experience gained per minute",
"trends_name": "Xu hướng",
"trends_description": "Cumulative average over last 500 games",
"trends_tooltip_average": "Avg.",
"trends_no_data": "Xin lỗi, không có dữ liệu cho biểu đồ",
"xp_reasons_0": "Khác",
"xp_reasons_1": "Hero",
"xp_reasons_2": "Creep",
"xp_reasons_3": "Roshan",
"rankings_description": "",
"rankings_none": "This player is not ranked on any heroes.",
"region_0": "Automatic",
"region_1": "US West",
"region_2": "US East",
"region_3": "Luxembourg",
"region_5": "Singapore",
"region_6": "Dubai",
"region_7": "Australia",
"region_8": "Stockholm",
"region_9": "Austria",
"region_10": "Brazil",
"region_11": "South Africa",
"region_12": "China TC Shanghai",
"region_13": "China UC",
"region_14": "Chile",
"region_15": "Peru",
"region_16": "India",
"region_17": "China TC Guangdong",
"region_18": "China TC Zhejiang",
"region_19": "Japan",
"region_20": "China TC Wuhan",
"region_25": "China UC 2",
"vision_expired": "Hết hạn sau",
"vision_destroyed": "Phá hủy sau",
"vision_all_time": "All time",
"vision_placed_observer": "cắm Observer tại",
"vision_placed_sentry": "cắm Sentry tại",
"vision_ward_log": "Ward Log",
"chat_category_faction": "Faction",
"chat_category_type": "Type",
"chat_category_target": "Target",
"chat_category_other": "Other",
"chat_filter_text": "Text",
"chat_filter_phrases": "Phrases",
"chat_filter_audio": "Audio",
"chat_filter_spam": "Spam",
"chat_filter_all": "All",
"chat_filter_allies": "Allies",
"chat_filter_spectator": "Spectator",
"chat_filtered": "Filtered",
"advb_almost": "almost",
"advb_over": "over",
"advb_about": "about",
"article_before_consonant_sound": "a",
"article_before_vowel_sound": "an",
"statement_long": "hypothesised",
"statement_shouted": "shouted",
"statement_excited": "exclaimed",
"statement_normal": "said",
"statement_laughed": "laughed",
"question_long": "raised, in need of answers",
"question_shouted": "inquired",
"question_excited": "interrogated",
"question_normal": "asked",
"question_laughed": "laughed mockingly",
"statement_response_long": "advised",
"statement_response_shouted": "responded in frustration",
"statement_response_excited": "exclaimed",
"statement_response_normal": "replied",
"statement_response_laughed": "laughed",
"statement_continued_long": "ranted",
"statement_continued_shouted": "continued furiously",
"statement_continued_excited": "continued",
"statement_continued_normal": "added",
"statement_continued_laughed": "continued",
"question_response_long": "advised",
"question_response_shouted": "asked back, out of frustration",
"question_response_excited": "disputed",
"question_response_normal": "countered",
"question_response_laughed": "laughed",
"question_continued_long": "propositioned",
"question_continued_shouted": "asked furiously",
"question_continued_excited": "lovingly asked",
"question_continued_normal": "asked",
"question_continued_laughed": "asked joyfully",
"hero_disclaimer_pro": "Data from professional matches",
"hero_disclaimer_public": "Data from public matches",
"hero_duration_x_axis": "Minutes",
"top_tower": "Top Tower",
"bot_tower": "Bottom Tower",
"mid_tower": "Mid Tower",
"top_rax": "Top Barracks",
"bot_rax": "Bottom Barracks",
"mid_rax": "Mid Barracks",
"tier1": "Tier 1",
"tier2": "Tier 2",
"tier3": "Tier 3",
"tier4": "Tier 4",
"show_consumables_items": "Show consumables",
"activated": "Activated",
"rune": "Rune",
"placement": "Placement",
"exclude_turbo_matches": "Exclude Turbo matches",
"scenarios_subtitle": "Explore win rates of combinations of factors that happen in matches",
"scenarios_info": "Data compiled from matches in the last {0} weeks",
"scenarios_item_timings": "Item Timings",
"scenarios_misc": "Misc",
"scenarios_time": "Time",
"scenarios_item": "Item",
"scenarios_game_duration": "Game Duration",
"scenarios_scenario": "Scenario",
"scenarios_first_blood": "Team drew First Blood",
"scenarios_courier_kill": "Team sniped the enemy courier before the 3-minute mark",
"scenarios_pos_chat_1min": "Team all chatted positive words before the 1-minute mark",
"scenarios_neg_chat_1min": "Team all chatted negative words before the 1-minute mark",
"gosu_default": "Get personal recommendations",
"gosu_benchmarks": "Get detailed benchmarks for your hero, lane and role",
"gosu_performances": "Get your map control performance",
"gosu_laning": "Get why you missed last hits",
"gosu_combat": "Get why kills attempts were unsuccessful",
"gosu_farm": "Get why you missed last hits",
"gosu_vision": "Get how many heroes were killed under your wards",
"gosu_actions": "Get your lost time from mouse usage vs hotkeys",
"gosu_teamfights": "Get who to target during teamfights",
"gosu_analysis": "Get your real MMR bracket",
"back2Top": "Back to Top",
"activity_subtitle": "Click on a day for detailed information"
} | odota/web/src/lang/vi-VN.json/0 | {
"file_path": "odota/web/src/lang/vi-VN.json",
"repo_id": "odota",
"token_count": 24740
} | 275 |
[
{
"match_id": 4644814938,
"teama": [
68,
2,
26,
104,
106
],
"teamb": [
100,
3,
99,
73,
8
],
"teamawin": true,
"start_time": null
},
{
"match_id": 4644782923,
"teama": [
121,
109,
32,
34,
2
],
"teamb": [
67,
3,
107,
28,
13
],
"teamawin": false,
"start_time": null
},
{
"match_id": 4644792377,
"teama": [
14,
3,
71,
18,
55
],
"teamb": [
2,
6,
114,
23,
68
],
"teamawin": true,
"start_time": null
},
{
"match_id": 4644810256,
"teama": [
74,
8,
105,
3,
72
],
"teamb": [
36,
111,
2,
100,
41
],
"teamawin": true,
"start_time": null
},
{
"match_id": 4644819277,
"teama": [
3,
114,
120,
74,
9
],
"teamb": [
14,
48,
2,
17,
79
],
"teamawin": false,
"start_time": null
},
{
"match_id": 4644829226,
"teama": [
70,
37,
6,
22,
3
],
"teamb": [
27,
44,
8,
75,
2
],
"teamawin": true,
"start_time": null
},
{
"match_id": 4644811083,
"teama": [
10,
6,
3,
73,
54
],
"teamb": [
67,
2,
101,
64,
106
],
"teamawin": false,
"start_time": null
},
{
"match_id": 4644822475,
"teama": [
89,
5,
39,
50,
2
],
"teamb": [
114,
3,
34,
53,
97
],
"teamawin": true,
"start_time": null
},
{
"match_id": 4644837646,
"teama": [
26,
18,
27,
3,
81
],
"teamb": [
2,
11,
35,
74,
68
],
"teamawin": false,
"start_time": null
},
{
"match_id": 4644835937,
"teama": [
104,
45,
3,
42,
11
],
"teamb": [
2,
44,
110,
4,
26
],
"teamawin": true,
"start_time": null
}
] | odota/web/testcafe/cachedAjax/findMatches_teamA=2&teamB=3.json/0 | {
"file_path": "odota/web/testcafe/cachedAjax/findMatches_teamA=2&teamB=3.json",
"repo_id": "odota",
"token_count": 1213
} | 276 |
[
{
"account_id": 101695162,
"name": "fy",
"country_code": "",
"fantasy_role": 2,
"team_id": 15,
"team_name": "PSG.LGD",
"team_tag": "PSG.LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198061960890",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/71/7137bb86c5fdbd79bd37222438a7b903f87fbbc3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/71/7137bb86c5fdbd79bd37222438a7b903f87fbbc3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/71/7137bb86c5fdbd79bd37222438a7b903f87fbbc3_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198061960890/",
"personaname": "Mbappé",
"last_login": null,
"full_history_time": "2018-09-01T13:59:18.584Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:45:24.000Z",
"last_played": 1536594324,
"win": 3747,
"games": 6075,
"with_win": 3747,
"with_games": 6075,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 113800818,
"name": "Fenrir",
"country_code": "",
"fantasy_role": 2,
"team_id": 726228,
"team_name": "Vici Gaming",
"team_tag": "VG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198074066546",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b1/b1835c9abbd84e77f71629aa5496ec421b709152.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b1/b1835c9abbd84e77f71629aa5496ec421b709152_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b1/b1835c9abbd84e77f71629aa5496ec421b709152_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198074066546/",
"personaname": "OMG",
"last_login": null,
"full_history_time": "2018-06-25T13:14:33.249Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T17:26:16.000Z",
"last_played": 1531558441,
"win": 1007,
"games": 1559,
"with_win": 961,
"with_games": 1468,
"against_win": 46,
"against_games": 91,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 90882159,
"name": "Super!",
"country_code": "",
"fantasy_role": 0,
"team_id": 3331948,
"team_name": "LGD.Forever Young",
"team_tag": "LFY",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198051147887",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1f/1f6fca6138e0edd757ff7e60fa643f81bf2d519b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1f/1f6fca6138e0edd757ff7e60fa643f81bf2d519b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1f/1f6fca6138e0edd757ff7e60fa643f81bf2d519b_full.jpg",
"profileurl": "https://steamcommunity.com/id/superbao123/",
"personaname": "正能量选手",
"last_login": null,
"full_history_time": "2017-12-01T17:25:12.289Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-06-21T07:46:03.000Z",
"last_played": 1524207829,
"win": 506,
"games": 797,
"with_win": 481,
"with_games": 747,
"against_win": 25,
"against_games": 50,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 114239371,
"name": "ddc",
"country_code": "",
"fantasy_role": 2,
"team_id": 5027210,
"team_name": "VGJ Thunder",
"team_tag": "VGJ.T",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198074505099",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9b/9bdf31276c1cb3f06ed98fde6ba94f37dd323ce5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9b/9bdf31276c1cb3f06ed98fde6ba94f37dd323ce5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9b/9bdf31276c1cb3f06ed98fde6ba94f37dd323ce5_full.jpg",
"profileurl": "https://steamcommunity.com/id/845418549/",
"personaname": "12345",
"last_login": null,
"full_history_time": "2018-08-10T15:26:43.360Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-08-27T11:53:03.000Z",
"last_played": 1534371166,
"win": 319,
"games": 547,
"with_win": 242,
"with_games": 397,
"against_win": 77,
"against_games": 150,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 106863163,
"name": "Somnus丶M",
"country_code": "",
"fantasy_role": 1,
"team_id": 15,
"team_name": "PSG.LGD",
"team_tag": "PSG.LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198067128891",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/07/0770d08f36d7a9aa5272a2e2ff5be29ebc7dd55a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/07/0770d08f36d7a9aa5272a2e2ff5be29ebc7dd55a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/07/0770d08f36d7a9aa5272a2e2ff5be29ebc7dd55a_full.jpg",
"profileurl": "https://steamcommunity.com/id/106863163/",
"personaname": "sqm",
"last_login": null,
"full_history_time": "2018-09-09T07:08:18.201Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-06T15:33:13.000Z",
"last_played": 1535249730,
"win": 315,
"games": 529,
"with_win": 228,
"with_games": 366,
"against_win": 87,
"against_games": 163,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 84772440,
"name": "!@#!@#!@#",
"country_code": "",
"fantasy_role": 0,
"team_id": 2780125,
"team_name": "iiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
"team_tag": "iiiiiiii",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198045038168",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3e/3e6a5b7994e312cb4d864d79082e1701347df2fb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3e/3e6a5b7994e312cb4d864d79082e1701347df2fb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3e/3e6a5b7994e312cb4d864d79082e1701347df2fb_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198045038168/",
"personaname": "llllllllllllllllllllll",
"last_login": null,
"full_history_time": "2018-09-01T14:06:40.655Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-22T03:14:21.000Z",
"last_played": 1534619764,
"win": 299,
"games": 492,
"with_win": 259,
"with_games": 398,
"against_win": 40,
"against_games": 94,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 139937922,
"name": "Yang",
"country_code": "",
"fantasy_role": 3,
"team_id": 5027210,
"team_name": "VGJ Thunder",
"team_tag": "VGJ.T",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198100203650",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b3/b365ec9695e3c8fbff251122f89d3441f3c044a7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b3/b365ec9695e3c8fbff251122f89d3441f3c044a7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b3/b365ec9695e3c8fbff251122f89d3441f3c044a7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198100203650/",
"personaname": "二哈",
"last_login": null,
"full_history_time": "2018-09-04T19:35:07.875Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T14:24:04.000Z",
"last_played": 1534371166,
"win": 293,
"games": 491,
"with_win": 252,
"with_games": 406,
"against_win": 41,
"against_games": 85,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 91698091,
"name": "rOtk",
"country_code": "cn",
"fantasy_role": 3,
"team_id": 3547682,
"team_name": "Team VGJ",
"team_tag": "VGJ",
"is_locked": false,
"is_pro": false,
"locked_until": 1502694000,
"steamid": "76561198051963819",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f0055ba551901c6ec5d29a39201c80f92790ffd8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f0055ba551901c6ec5d29a39201c80f92790ffd8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f0055ba551901c6ec5d29a39201c80f92790ffd8_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198051963819/",
"personaname": "阿文",
"last_login": null,
"full_history_time": "2017-02-24T07:13:54.087Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2017-06-28T13:24:15.000Z",
"last_played": 1498656255,
"win": 277,
"games": 466,
"with_win": 256,
"with_games": 437,
"against_win": 21,
"against_games": 29,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 139280377,
"name": "OoO",
"country_code": "",
"fantasy_role": 0,
"team_id": 5,
"team_name": "Invictus Gaming",
"team_tag": "iG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198099546105",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/39/3925035c9677da480d2737a3b083f07b48d272b9.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/39/3925035c9677da480d2737a3b083f07b48d272b9_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/39/3925035c9677da480d2737a3b083f07b48d272b9_full.jpg",
"profileurl": "https://steamcommunity.com/id/844862303/",
"personaname": "改名转运",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-07-23T12:00:53.000Z",
"last_played": 1530450044,
"win": 271,
"games": 461,
"with_win": 229,
"with_games": 392,
"against_win": 42,
"against_games": 69,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 125581247,
"name": "Ame",
"country_code": "",
"fantasy_role": 1,
"team_id": 15,
"team_name": "PSG.LGD",
"team_tag": "PSG.LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198085846975",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d2cd9cf052722362b66dc5de2ad0dce1015ce62a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d2cd9cf052722362b66dc5de2ad0dce1015ce62a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d2cd9cf052722362b66dc5de2ad0dce1015ce62a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198085846975/",
"personaname": "英 勇 无 比 的 查 理 斯",
"last_login": null,
"full_history_time": "2018-09-06T21:18:32.500Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-08-26T02:15:30.000Z",
"last_played": 1535249730,
"win": 245,
"games": 410,
"with_win": 205,
"with_games": 311,
"against_win": 40,
"against_games": 99,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 108382060,
"name": "Sylar",
"country_code": "",
"fantasy_role": 1,
"team_id": 5027210,
"team_name": "VGJ Thunder",
"team_tag": "VGJ.T",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198068647788",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/98/98737399177f5f04e41205ed38f192de45e62fa9.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/98/98737399177f5f04e41205ed38f192de45e62fa9_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/98/98737399177f5f04e41205ed38f192de45e62fa9_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198068647788/",
"personaname": "0.0",
"last_login": null,
"full_history_time": "2018-09-04T14:03:07.609Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T14:36:53.000Z",
"last_played": 1534371166,
"win": 239,
"games": 401,
"with_win": 162,
"with_games": 257,
"against_win": 77,
"against_games": 144,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 94738847,
"name": "Chalice",
"country_code": "",
"fantasy_role": 3,
"team_id": 15,
"team_name": "PSG.LGD",
"team_tag": "PSG.LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198055004575",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/11111d2601310221a2f0e9f67f32898c2df32b7d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/11111d2601310221a2f0e9f67f32898c2df32b7d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/11111d2601310221a2f0e9f67f32898c2df32b7d_full.jpg",
"profileurl": "https://steamcommunity.com/id/chalice15/",
"personaname": "我执",
"last_login": null,
"full_history_time": "2018-08-30T13:25:24.213Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-08-26T02:15:30.000Z",
"last_played": 1535249730,
"win": 209,
"games": 331,
"with_win": 178,
"with_games": 267,
"against_win": 31,
"against_games": 64,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 98878010,
"name": "Yao",
"country_code": "",
"fantasy_role": 0,
"team_id": 3331948,
"team_name": "LGD.Forever Young",
"team_tag": "LFY",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198059143738",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2e7dc8d4dfd43a64accea6449a75f487c91a8ff1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2e7dc8d4dfd43a64accea6449a75f487c91a8ff1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2e7dc8d4dfd43a64accea6449a75f487c91a8ff1_full.jpg",
"profileurl": "https://steamcommunity.com/id/98878010/",
"personaname": "梁公",
"last_login": null,
"full_history_time": "2017-10-10T03:34:44.227Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:49:24.000Z",
"last_played": 1524207829,
"win": 161,
"games": 317,
"with_win": 58,
"with_games": 128,
"against_win": 103,
"against_games": 189,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 94296097,
"name": "xNova",
"country_code": "",
"fantasy_role": 2,
"team_id": 15,
"team_name": "PSG.LGD",
"team_tag": "PSG.LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198054561825",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/2773d345d5fadd885cc74c3922fd200c237a3206.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/2773d345d5fadd885cc74c3922fd200c237a3206_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/2773d345d5fadd885cc74c3922fd200c237a3206_full.jpg",
"profileurl": "https://steamcommunity.com/id/xNovaJw/",
"personaname": "kara",
"last_login": null,
"full_history_time": "2018-09-09T11:53:52.379Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "MY",
"last_match_time": "2018-09-10T03:25:00.000Z",
"last_played": 1535249730,
"win": 195,
"games": 295,
"with_win": 170,
"with_games": 255,
"against_win": 25,
"against_games": 40,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 108484186,
"name": "mikasa",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 726228,
"team_name": "Vici Gaming",
"team_tag": "VG",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198068749914",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a838c2582180bdf9b37095eafbe916c882591aa9.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a838c2582180bdf9b37095eafbe916c882591aa9_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a838c2582180bdf9b37095eafbe916c882591aa9_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198068749914/",
"personaname": "Messi~",
"last_login": null,
"full_history_time": "2017-07-13T23:59:54.168Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T13:20:14.000Z",
"last_played": 1533127933,
"win": 177,
"games": 287,
"with_win": 162,
"with_games": 254,
"against_win": 15,
"against_games": 33,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 137272985,
"name": "Freeze",
"country_code": "",
"fantasy_role": 1,
"team_id": 5027210,
"team_name": "VGJ Thunder",
"team_tag": "VGJ.T",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198097538713",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3ede10fa6f82d2d5f4dbfa4ba0cbd2a78c7f18a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3ede10fa6f82d2d5f4dbfa4ba0cbd2a78c7f18a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3ede10fa6f82d2d5f4dbfa4ba0cbd2a78c7f18a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198097538713/",
"personaname": "50ping dota",
"last_login": null,
"full_history_time": "2018-05-27T17:17:29.019Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T17:09:28.000Z",
"last_played": 1534371166,
"win": 151,
"games": 280,
"with_win": 83,
"with_games": 159,
"against_win": 68,
"against_games": 121,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 111533846,
"name": "Xtt",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 3258149,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198071799574",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a1/a1e8788848b90f65f3f4ecd4e0e082bde0f755bc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a1/a1e8788848b90f65f3f4ecd4e0e082bde0f755bc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a1/a1e8788848b90f65f3f4ecd4e0e082bde0f755bc_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198071799574/",
"personaname": "Happydota",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:57:54.000Z",
"last_played": 1505722915,
"win": 171,
"games": 254,
"with_win": 136,
"with_games": 200,
"against_win": 35,
"against_games": 54,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 113705693,
"name": "ZSMJ",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "White Fries Gaming",
"team_tag": "WF",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198073971421",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da38f15197d004ee135bdcc269d30ba536bb6ab2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da38f15197d004ee135bdcc269d30ba536bb6ab2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da38f15197d004ee135bdcc269d30ba536bb6ab2_full.jpg",
"profileurl": "https://steamcommunity.com/id/zsmj_111/",
"personaname": "ZSMJ",
"last_login": null,
"full_history_time": "2018-09-06T20:44:23.043Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-08T13:40:01.000Z",
"last_played": 1533118938,
"win": 157,
"games": 249,
"with_win": 105,
"with_games": 152,
"against_win": 52,
"against_games": 97,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 80929738,
"name": "Sr",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 3740105,
"team_name": "LOL",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198041195466",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4f/4f35c7a2a8009239ba7ef49a52930015989f3e6e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4f/4f35c7a2a8009239ba7ef49a52930015989f3e6e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4f/4f35c7a2a8009239ba7ef49a52930015989f3e6e_full.jpg",
"profileurl": "https://steamcommunity.com/id/80929738/",
"personaname": "yuyuzhixia",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-08-27T13:49:41.000Z",
"last_played": 1521013889,
"win": 145,
"games": 243,
"with_win": 117,
"with_games": 194,
"against_win": 28,
"against_games": 49,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 88508515,
"name": "Hao",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Vici Gaming",
"team_tag": "VG",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198048774243",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/2701d789647610ead91e011569fd18703721060b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/2701d789647610ead91e011569fd18703721060b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/2701d789647610ead91e011569fd18703721060b_full.jpg",
"profileurl": "https://steamcommunity.com/id/kanshouhao/",
"personaname": "IQ博士",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-01-29T10:59:11.000Z",
"last_played": 1498536730,
"win": 152,
"games": 242,
"with_win": 108,
"with_games": 158,
"against_win": 44,
"against_games": 84,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 130416036,
"name": "Agressif",
"country_code": "",
"fantasy_role": 1,
"team_id": 5,
"team_name": "Invictus Gaming",
"team_tag": "iG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198090681764",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e5/e539ffdadd0cf5d82b48fb33d3b60069f7baf8c7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e5/e539ffdadd0cf5d82b48fb33d3b60069f7baf8c7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e5/e539ffdadd0cf5d82b48fb33d3b60069f7baf8c7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198090681764/",
"personaname": "你快乐吗",
"last_login": null,
"full_history_time": "2018-04-08T11:59:21.000Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-03T01:16:22.000Z",
"last_played": 1534559540,
"win": 125,
"games": 239,
"with_win": 75,
"with_games": 150,
"against_win": 50,
"against_games": 89,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 21289303,
"name": "Black^",
"country_code": "",
"fantasy_role": 0,
"team_id": 3659536,
"team_name": "Clutch Gamers",
"team_tag": "CG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197981555031",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/ee107982963e38934b439aee89b1e9016cc50810.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/ee107982963e38934b439aee89b1e9016cc50810_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/ee107982963e38934b439aee89b1e9016cc50810_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197981555031/",
"personaname": "Black^",
"last_login": null,
"full_history_time": "2018-04-09T01:34:06.173Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-15T08:55:29.000Z",
"last_played": 1491143592,
"win": 156,
"games": 220,
"with_win": 139,
"with_games": 200,
"against_win": 17,
"against_games": 20,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 90892734,
"name": "BurNIng",
"country_code": "",
"fantasy_role": 0,
"team_id": 5219641,
"team_name": "Big God",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198051158462",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dd66350673bd8f5323a68f7d630fb65c8fbcc348.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dd66350673bd8f5323a68f7d630fb65c8fbcc348_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dd66350673bd8f5323a68f7d630fb65c8fbcc348_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198051158462/",
"personaname": "ojbk",
"last_login": null,
"full_history_time": "2018-06-23T10:24:44.120Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "CN",
"last_match_time": "2018-03-22T12:02:23.000Z",
"last_played": 1517812014,
"win": 104,
"games": 210,
"with_win": 57,
"with_games": 106,
"against_win": 47,
"against_games": 104,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 107081378,
"name": "黑凤梨丶",
"country_code": "",
"fantasy_role": 0,
"team_id": 2635099,
"team_name": "cdec.y",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198067347106",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c9396e564582c9f128d9eda25c363be6278cdfd2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c9396e564582c9f128d9eda25c363be6278cdfd2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c9396e564582c9f128d9eda25c363be6278cdfd2_full.jpg",
"profileurl": "https://steamcommunity.com/id/107081378/",
"personaname": "黑凤梨.",
"last_login": null,
"full_history_time": "2018-07-02T01:32:32.944Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:16:31.000Z",
"last_played": 1532435462,
"win": 99,
"games": 183,
"with_win": 78,
"with_games": 138,
"against_win": 21,
"against_games": 45,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 108376607,
"name": "火",
"country_code": "",
"fantasy_role": 0,
"team_id": 4,
"team_name": "EHOME",
"team_tag": "EHOME",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198068642335",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a27329a0c644630ced08398e7dc9fe9007e5f7d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a27329a0c644630ced08398e7dc9fe9007e5f7d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a27329a0c644630ced08398e7dc9fe9007e5f7d_full.jpg",
"profileurl": "https://steamcommunity.com/id/ctyholyshit/",
"personaname": "怎么,就赢不了呢?",
"last_login": null,
"full_history_time": "2018-05-26T05:06:02.590Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-06-16T12:58:13.000Z",
"last_played": 1521888737,
"win": 104,
"games": 171,
"with_win": 60,
"with_games": 102,
"against_win": 44,
"against_games": 69,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89423756,
"name": "LaNm",
"country_code": "",
"fantasy_role": 2,
"team_id": 726228,
"team_name": "Vici Gaming",
"team_tag": "VG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198049689484",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/71/7139f2c35be77813c7acaf31396241939e475f13.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/71/7139f2c35be77813c7acaf31396241939e475f13_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/71/7139f2c35be77813c7acaf31396241939e475f13_full.jpg",
"profileurl": "https://steamcommunity.com/id/lanm2011/",
"personaname": "子午谷",
"last_login": null,
"full_history_time": "2017-08-24T17:15:22.577Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-08-24T03:36:52.000Z",
"last_played": 1526798171,
"win": 79,
"games": 165,
"with_win": 3,
"with_games": 7,
"against_win": 76,
"against_games": 158,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 139876032,
"name": "kaka",
"country_code": "",
"fantasy_role": 2,
"team_id": 1375614,
"team_name": "Newbee",
"team_tag": "Newbee",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198100141760",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/de/defe501288b4e5301d52099e7c0b58aa79daf65a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/de/defe501288b4e5301d52099e7c0b58aa79daf65a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/de/defe501288b4e5301d52099e7c0b58aa79daf65a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198100141760/",
"personaname": "最后的战役",
"last_login": null,
"full_history_time": "2017-12-04T17:12:06.809Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:21:37.000Z",
"last_played": 1533186003,
"win": 88,
"games": 161,
"with_win": 7,
"with_games": 13,
"against_win": 81,
"against_games": 148,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 111189717,
"name": "剑来!",
"country_code": "",
"fantasy_role": 0,
"team_id": 3331948,
"team_name": "LGD.Forever Young",
"team_tag": "LFY",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198071455445",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/1807a17f125f6f54c0b1016d65f9cff7ddd71fb3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/1807a17f125f6f54c0b1016d65f9cff7ddd71fb3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/1807a17f125f6f54c0b1016d65f9cff7ddd71fb3_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198071455445/",
"personaname": "Happier",
"last_login": null,
"full_history_time": "2018-04-09T23:17:35.025Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:57:11.000Z",
"last_played": 1533124806,
"win": 90,
"games": 159,
"with_win": 22,
"with_games": 46,
"against_win": 68,
"against_games": 113,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 88585077,
"name": "Ferrari_430",
"country_code": "",
"fantasy_role": 0,
"team_id": 5219641,
"team_name": "Big God",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198048850805",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a8d482e801943636fb5b466e1c83dbc0909da56e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a8d482e801943636fb5b466e1c83dbc0909da56e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a8d482e801943636fb5b466e1c83dbc0909da56e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198048850805/",
"personaname": "没有人能在我的BGM里战胜我",
"last_login": null,
"full_history_time": "2018-06-15T12:53:54.433Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-08T05:18:06.000Z",
"last_played": 1525889601,
"win": 91,
"games": 158,
"with_win": 12,
"with_games": 23,
"against_win": 79,
"against_games": 135,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 98887913,
"name": "xiao8",
"country_code": "",
"fantasy_role": 0,
"team_id": 5219641,
"team_name": "Big God",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198059153641",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a2/a29d8bd1dd794fc765ff4fbe0cfd210f79ae1d16.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a2/a29d8bd1dd794fc765ff4fbe0cfd210f79ae1d16_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a2/a29d8bd1dd794fc765ff4fbe0cfd210f79ae1d16_full.jpg",
"profileurl": "https://steamcommunity.com/id/x_xiao8/",
"personaname": "虎",
"last_login": null,
"full_history_time": "2018-02-05T09:00:25.184Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T12:20:50.000Z",
"last_played": 1532019730,
"win": 81,
"games": 157,
"with_win": 12,
"with_games": 20,
"against_win": 69,
"against_games": 137,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 182331313,
"name": "Fade",
"country_code": "",
"fantasy_role": 2,
"team_id": 5027210,
"team_name": "VGJ Thunder",
"team_tag": "VGJ.T",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198142597041",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4f85cc3c59e30f2a83526f3d38185533960b568.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4f85cc3c59e30f2a83526f3d38185533960b568_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4f85cc3c59e30f2a83526f3d38185533960b568_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198142597041/",
"personaname": "乌龙院",
"last_login": null,
"full_history_time": "2018-09-01T14:00:14.563Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:45:24.000Z",
"last_played": 1536594324,
"win": 105,
"games": 155,
"with_win": 63,
"with_games": 83,
"against_win": 42,
"against_games": 72,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 135878232,
"name": "old chicken",
"country_code": "",
"fantasy_role": 0,
"team_id": 4,
"team_name": "EHOME",
"team_tag": "EHOME",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198096143960",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/755bcdd782f58c84d24a3770dc1771d5904750bc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/755bcdd782f58c84d24a3770dc1771d5904750bc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/755bcdd782f58c84d24a3770dc1771d5904750bc_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198096143960/",
"personaname": "OC",
"last_login": null,
"full_history_time": "2018-09-01T18:19:56.631Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T18:11:45.000Z",
"last_played": 1530507652,
"win": 84,
"games": 153,
"with_win": 22,
"with_games": 37,
"against_win": 62,
"against_games": 116,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 82327674,
"name": "Faith",
"country_code": "",
"fantasy_role": 2,
"team_id": 1375614,
"team_name": "Newbee",
"team_tag": "Newbee",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198042593402",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/43/438bc76cbbe86ebd18bb4c71e3a930cf49f65d34.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/43/438bc76cbbe86ebd18bb4c71e3a930cf49f65d34_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/43/438bc76cbbe86ebd18bb4c71e3a930cf49f65d34_full.jpg",
"profileurl": "https://steamcommunity.com/id/382120427/",
"personaname": "wwwwwwwww",
"last_login": null,
"full_history_time": "2018-09-01T14:12:18.185Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "CA",
"last_match_time": "2018-08-21T01:43:22.000Z",
"last_played": 1526720258,
"win": 80,
"games": 152,
"with_win": 2,
"with_games": 3,
"against_win": 78,
"against_games": 149,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 186977347,
"name": "ghost",
"country_code": "",
"fantasy_role": 0,
"team_id": 4425650,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198147243075",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ef/ef9df60075f6b0735de5d0b6a0576b757632f802.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ef/ef9df60075f6b0735de5d0b6a0576b757632f802_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ef/ef9df60075f6b0735de5d0b6a0576b757632f802_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198147243075/",
"personaname": "god送",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T14:53:02.000Z",
"last_played": 1531031816,
"win": 76,
"games": 138,
"with_win": 60,
"with_games": 111,
"against_win": 16,
"against_games": 27,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 100812084,
"name": "JaL",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 726228,
"team_name": "Vici Gaming",
"team_tag": "VG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198061077812",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e0b03c483b34715bc2e03be3114a59990760d505.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e0b03c483b34715bc2e03be3114a59990760d505_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e0b03c483b34715bc2e03be3114a59990760d505_full.jpg",
"profileurl": "https://steamcommunity.com/id/IamJal/",
"personaname": "Orz",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T13:33:04.000Z",
"last_played": 1488212661,
"win": 85,
"games": 133,
"with_win": 81,
"with_games": 122,
"against_win": 4,
"against_games": 11,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 149486894,
"name": "Sccc",
"country_code": "",
"fantasy_role": 1,
"team_id": 1375614,
"team_name": "Newbee",
"team_tag": "Newbee",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198109752622",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4d/4d2c4dee73877cefe41fd9534ed1a82dfb71c74a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4d/4d2c4dee73877cefe41fd9534ed1a82dfb71c74a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4d/4d2c4dee73877cefe41fd9534ed1a82dfb71c74a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198109752622/",
"personaname": "烈烈风中丶",
"last_login": null,
"full_history_time": "2018-09-01T14:12:23.597Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:55:21.000Z",
"last_played": 1532532640,
"win": 70,
"games": 131,
"with_win": 15,
"with_games": 22,
"against_win": 55,
"against_games": 109,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 137193239,
"name": "Paparazi灬",
"country_code": "",
"fantasy_role": 1,
"team_id": 726228,
"team_name": "Vici Gaming",
"team_tag": "VG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198097458967",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1b/1bab44a6f48ecb7bb56f1b77a1e9ce64819a70e9.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1b/1bab44a6f48ecb7bb56f1b77a1e9ce64819a70e9_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1b/1bab44a6f48ecb7bb56f1b77a1e9ce64819a70e9_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198097458967/",
"personaname": "deku",
"last_login": null,
"full_history_time": "2018-07-23T17:25:29.918Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-22T22:38:37.000Z",
"last_played": 1526798171,
"win": 68,
"games": 124,
"with_win": 6,
"with_games": 14,
"against_win": 62,
"against_games": 110,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 123854991,
"name": "Rabbit",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "CDEC Gaming",
"team_tag": "CDEC",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198084120719",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ec/ec964f2917665de80d666d55ee9aba731be4d8a2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ec/ec964f2917665de80d666d55ee9aba731be4d8a2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ec/ec964f2917665de80d666d55ee9aba731be4d8a2_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198084120719/",
"personaname": "1111",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-07-14T00:37:42.000Z",
"last_played": 1468316365,
"win": 76,
"games": 123,
"with_win": 6,
"with_games": 10,
"against_win": 70,
"against_games": 113,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 117281554,
"name": "Moogy",
"country_code": "",
"fantasy_role": 1,
"team_id": 1375614,
"team_name": "Newbee",
"team_tag": "Newbee",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198077547282",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fe1ce4d3d4aa0e2dafe131ce12263c6c18400483.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fe1ce4d3d4aa0e2dafe131ce12263c6c18400483_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fe1ce4d3d4aa0e2dafe131ce12263c6c18400483_full.jpg",
"profileurl": "https://steamcommunity.com/id/uuu9/",
"personaname": "1111",
"last_login": null,
"full_history_time": "2018-09-01T14:12:24.897Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-21T01:43:22.000Z",
"last_played": 1526720258,
"win": 71,
"games": 122,
"with_win": 8,
"with_games": 11,
"against_win": 63,
"against_games": 111,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89407113,
"name": "MMY!",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 0,
"team_name": "LGD-GAMING",
"team_tag": "LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198049672841",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/55/558175bf835d63ae119b645078e4f8d56f9233b7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/55/558175bf835d63ae119b645078e4f8d56f9233b7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/55/558175bf835d63ae119b645078e4f8d56f9233b7_full.jpg",
"profileurl": "https://steamcommunity.com/id/xwkkx/",
"personaname": "毛毛狗",
"last_login": null,
"full_history_time": "2018-09-01T13:55:12.425Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "CN",
"last_match_time": null,
"last_played": 1468418714,
"win": 59,
"games": 117,
"with_win": 2,
"with_games": 3,
"against_win": 57,
"against_games": 114,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 111291593,
"name": "InJuly",
"country_code": "",
"fantasy_role": 0,
"team_id": 2640025,
"team_name": "iG.Vitality",
"team_tag": "iG.V",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198071557321",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/93/93850b037b6f2313626afabcc9b2a881d3188dd6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/93/93850b037b6f2313626afabcc9b2a881d3188dd6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/93/93850b037b6f2313626afabcc9b2a881d3188dd6_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198071557321/",
"personaname": "lov stran",
"last_login": null,
"full_history_time": "2017-07-25T12:49:46.636Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:00:58.000Z",
"last_played": 1526629671,
"win": 64,
"games": 117,
"with_win": 4,
"with_games": 10,
"against_win": 60,
"against_games": 107,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 138885864,
"name": "丶MINI幂",
"country_code": "",
"fantasy_role": 0,
"team_id": 4425650,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198099151592",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f9/f970cfabc68e1cfc3d619a7d74bab8ceaf3d5fee.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f9/f970cfabc68e1cfc3d619a7d74bab8ceaf3d5fee_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f9/f970cfabc68e1cfc3d619a7d74bab8ceaf3d5fee_full.jpg",
"profileurl": "https://steamcommunity.com/id/june123/",
"personaname": "身勝手の極意.",
"last_login": null,
"full_history_time": "2017-09-07T19:32:09.916Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:19:10.000Z",
"last_played": 1525872875,
"win": 73,
"games": 113,
"with_win": 5,
"with_games": 9,
"against_win": 68,
"against_games": 104,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 131043881,
"name": "RAI",
"country_code": "",
"fantasy_role": 0,
"team_id": 3325252,
"team_name": "Team Max",
"team_tag": "MAX",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198091309609",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/49/4909f0b038103d88293d5bfc8c32e92a25d1913c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/49/4909f0b038103d88293d5bfc8c32e92a25d1913c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/49/4909f0b038103d88293d5bfc8c32e92a25d1913c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198091309609/",
"personaname": "Sophie Marceau",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-07-25T17:58:24.000Z",
"last_played": 1524669960,
"win": 74,
"games": 109,
"with_win": 17,
"with_games": 25,
"against_win": 57,
"against_games": 84,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 113051039,
"name": "冷鸟",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "竟技宝竞猜",
"team_tag": "JJ-B",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198073316767",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d9750eb73e6a301c98e9bd6d34ec50a0b21bf069.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d9750eb73e6a301c98e9bd6d34ec50a0b21bf069_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d9750eb73e6a301c98e9bd6d34ec50a0b21bf069_full.jpg",
"profileurl": "https://steamcommunity.com/id/113051039/",
"personaname": "无人欣赏",
"last_login": "2017-08-21T03:53:51.625Z",
"full_history_time": "2018-02-18T11:02:25.802Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T18:07:56.000Z",
"last_played": 1532609370,
"win": 67,
"games": 109,
"with_win": 40,
"with_games": 59,
"against_win": 27,
"against_games": 50,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 103039499,
"name": "super",
"country_code": "",
"fantasy_role": 0,
"team_id": 2640025,
"team_name": "iG.Vitality",
"team_tag": "iG.V",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198063305227",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/9540e43f540407a23cb9e5d8161991996330a66b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/9540e43f540407a23cb9e5d8161991996330a66b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/9540e43f540407a23cb9e5d8161991996330a66b_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198063305227/",
"personaname": "AAA",
"last_login": null,
"full_history_time": "2018-05-31T09:09:27.326Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-07-24T14:21:18.000Z",
"last_played": 1526629671,
"win": 62,
"games": 109,
"with_win": 3,
"with_games": 6,
"against_win": 59,
"against_games": 103,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89246836,
"name": " ",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "EHOME",
"team_tag": "EHOME",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198049512564",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6f/6fa265642983a5723e2c67068a38f4e1ffa6bad6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6f/6fa265642983a5723e2c67068a38f4e1ffa6bad6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6f/6fa265642983a5723e2c67068a38f4e1ffa6bad6_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049512564/",
"personaname": "X",
"last_login": null,
"full_history_time": "2018-04-09T23:25:54.967Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:48:30.000Z",
"last_played": 1484197577,
"win": 63,
"games": 105,
"with_win": 3,
"with_games": 5,
"against_win": 60,
"against_games": 100,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 118134220,
"name": "Faith_bian",
"country_code": "",
"fantasy_role": 0,
"team_id": 4,
"team_name": "EHOME",
"team_tag": "EHOME",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198078399948",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/81/8120efda3316a573def8bd7dc8bfb0789574cd70.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/81/8120efda3316a573def8bd7dc8bfb0789574cd70_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/81/8120efda3316a573def8bd7dc8bfb0789574cd70_full.jpg",
"profileurl": "https://steamcommunity.com/id/Faith_bian/",
"personaname": "Faith_bian_vicky",
"last_login": null,
"full_history_time": "2018-02-02T06:09:31.781Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:49:49.000Z",
"last_played": 1535509973,
"win": 55,
"games": 103,
"with_win": 7,
"with_games": 12,
"against_win": 48,
"against_games": 91,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 111114687,
"name": "y`",
"country_code": "",
"fantasy_role": 0,
"team_id": 4,
"team_name": "EHOME",
"team_tag": "EHOME",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198071380415",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7d/7d7c866e2d2cd65016bb90c8552da63f597bd422.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7d/7d7c866e2d2cd65016bb90c8552da63f597bd422_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7d/7d7c866e2d2cd65016bb90c8552da63f597bd422_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198071380415/",
"personaname": "How long will i love u",
"last_login": null,
"full_history_time": "2018-05-04T06:22:39.430Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:57:54.000Z",
"last_played": 1531419573,
"win": 54,
"games": 102,
"with_win": 14,
"with_games": 28,
"against_win": 40,
"against_games": 74,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 177416702,
"name": "AME",
"country_code": "",
"fantasy_role": 0,
"team_id": 15,
"team_name": "PSG.LGD",
"team_tag": "PSG.LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198137682430",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/09/099291826ff11358f611cb0c0be9bfa37386b3e5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/09/099291826ff11358f611cb0c0be9bfa37386b3e5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/09/099291826ff11358f611cb0c0be9bfa37386b3e5_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198137682430/",
"personaname": "lhddsb",
"last_login": null,
"full_history_time": "2018-07-23T18:47:46.075Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2017-12-15T22:23:12.000Z",
"last_played": 1513376592,
"win": 44,
"games": 101,
"with_win": 31,
"with_games": 70,
"against_win": 13,
"against_games": 31,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 148215639,
"name": "Monet",
"country_code": "",
"fantasy_role": 0,
"team_id": 3331948,
"team_name": "LGD.Forever Young",
"team_tag": "LFY",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198108481367",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7f/7f8a525d0fe92f6628fa51c935b0834e18f8fdd8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7f/7f8a525d0fe92f6628fa51c935b0834e18f8fdd8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7f/7f8a525d0fe92f6628fa51c935b0834e18f8fdd8_full.jpg",
"profileurl": "https://steamcommunity.com/id/Monetttt/",
"personaname": "汤",
"last_login": "2016-02-13T17:13:10.687Z",
"full_history_time": "2018-08-30T00:22:27.434Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-06-21T07:46:03.000Z",
"last_played": 1529160350,
"win": 53,
"games": 99,
"with_win": 12,
"with_games": 23,
"against_win": 41,
"against_games": 76,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 173880329,
"name": "S",
"country_code": "",
"fantasy_role": 0,
"team_id": 2640025,
"team_name": "iG.Vitality",
"team_tag": "iG.V",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198134146057",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274ad47765c16181d475a7e7f599f6afd442d5e4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274ad47765c16181d475a7e7f599f6afd442d5e4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274ad47765c16181d475a7e7f599f6afd442d5e4_full.jpg",
"profileurl": "https://steamcommunity.com/id/173880329/",
"personaname": "HA",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T14:45:31.000Z",
"last_played": 1527605268,
"win": 48,
"games": 97,
"with_win": 7,
"with_games": 26,
"against_win": 41,
"against_games": 71,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89157606,
"name": "Mu",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 1375614,
"team_name": "Newbee",
"team_tag": "Newbee",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198049423334",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d0/d03cea87fb40f538e58b57629d55389221bab8d7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d0/d03cea87fb40f538e58b57629d55389221bab8d7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d0/d03cea87fb40f538e58b57629d55389221bab8d7_full.jpg",
"profileurl": "https://steamcommunity.com/id/Piglara/",
"personaname": "Alice丶Nakiri",
"last_login": null,
"full_history_time": "2018-09-06T16:38:31.894Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2017-04-22T07:25:12.000Z",
"last_played": 1470284508,
"win": 56,
"games": 96,
"with_win": 1,
"with_games": 1,
"against_win": 55,
"against_games": 95,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 134276083,
"name": "eLeVen",
"country_code": "",
"fantasy_role": 3,
"team_id": 726228,
"team_name": "Vici Gaming",
"team_tag": "VG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198094541811",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ca/ca2e471cea186589f7f3b9f2671977f0f8667f48.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ca/ca2e471cea186589f7f3b9f2671977f0f8667f48_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ca/ca2e471cea186589f7f3b9f2671977f0f8667f48_full.jpg",
"profileurl": "https://steamcommunity.com/id/eLeVeNjiezoumowang/",
"personaname": "白い悪魔",
"last_login": null,
"full_history_time": "2018-08-07T17:57:51.083Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-22T22:38:37.000Z",
"last_played": 1526798171,
"win": 45,
"games": 95,
"with_win": 2,
"with_games": 4,
"against_win": 43,
"against_games": 91,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 88553213,
"name": "ChuaN",
"country_code": "",
"fantasy_role": 0,
"team_id": 5216274,
"team_name": " Echo.Int",
"team_tag": " ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198048818941",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9e/9e748456748f98f0330fe72bc7458492de77d94d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9e/9e748456748f98f0330fe72bc7458492de77d94d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9e/9e748456748f98f0330fe72bc7458492de77d94d_full.jpg",
"profileurl": "https://steamcommunity.com/id/bestdotachuan/",
"personaname": "9",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "MY",
"last_match_time": "2018-08-28T12:27:40.000Z",
"last_played": 1527224113,
"win": 50,
"games": 94,
"with_win": 1,
"with_games": 2,
"against_win": 49,
"against_games": 92,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89598554,
"name": "黑色大猫",
"country_code": "",
"fantasy_role": 0,
"team_id": 4425650,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198049864282",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/53/53270d47e074a90504821651bbc8670c1671470f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/53/53270d47e074a90504821651bbc8670c1671470f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/53/53270d47e074a90504821651bbc8670c1671470f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049864282/",
"personaname": "喵星人",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T17:32:18.000Z",
"last_played": 1525883168,
"win": 49,
"games": 93,
"with_win": 12,
"with_games": 21,
"against_win": 37,
"against_games": 72,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 157475523,
"name": "XinQ",
"country_code": "",
"fantasy_role": 3,
"team_id": 5066616,
"team_name": "Team Serenity",
"team_tag": "Serenity",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198117741251",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/20/20affb8e132ef9d53e92d20736b65c6ca5d93d9b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/20/20affb8e132ef9d53e92d20736b65c6ca5d93d9b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/20/20affb8e132ef9d53e92d20736b65c6ca5d93d9b_full.jpg",
"profileurl": "https://steamcommunity.com/id/157475523/",
"personaname": "OH",
"last_login": null,
"full_history_time": "2018-08-21T10:08:24.802Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:35:47.000Z",
"last_played": 1534289873,
"win": 52,
"games": 90,
"with_win": 28,
"with_games": 45,
"against_win": 24,
"against_games": 45,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 87012746,
"name": "kpii",
"country_code": "",
"fantasy_role": 3,
"team_id": 1375614,
"team_name": "Newbee",
"team_tag": "Newbee",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047278474",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d2da7c0cdf01614b0374ef471ec73b6decfa7328.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d2da7c0cdf01614b0374ef471ec73b6decfa7328_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d2da7c0cdf01614b0374ef471ec73b6decfa7328_full.jpg",
"profileurl": "https://steamcommunity.com/id/kpiidota/",
"personaname": "kps",
"last_login": null,
"full_history_time": "2018-09-01T14:12:46.809Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T08:46:54.000Z",
"last_played": 1531575450,
"win": 42,
"games": 88,
"with_win": 6,
"with_games": 10,
"against_win": 36,
"against_games": 78,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 102644565,
"name": "★Ice ice☆",
"country_code": "",
"fantasy_role": 0,
"team_id": 5036221,
"team_name": "Sun Gaming",
"team_tag": "Sun",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198062910293",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/94/947a7ab542c6c6206f241cd72128c4187c1d97d6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/94/947a7ab542c6c6206f241cd72128c4187c1d97d6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/94/947a7ab542c6c6206f241cd72128c4187c1d97d6_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198062910293/",
"personaname": "马超",
"last_login": null,
"full_history_time": "2017-04-17T01:58:58.828Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T14:34:00.000Z",
"last_played": 1536590040,
"win": 49,
"games": 86,
"with_win": 15,
"with_games": 26,
"against_win": 34,
"against_games": 60,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 129585121,
"name": "shadow",
"country_code": "",
"fantasy_role": 0,
"team_id": 4425650,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198089850849",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/677aed9601af714b5ea724fb128ed8a6ed68243d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/677aed9601af714b5ea724fb128ed8a6ed68243d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/677aed9601af714b5ea724fb128ed8a6ed68243d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198089850849/",
"personaname": "Shadow",
"last_login": null,
"full_history_time": "2017-07-02T11:45:27.339Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-06T18:08:45.000Z",
"last_played": 1533219868,
"win": 43,
"games": 81,
"with_win": 6,
"with_games": 14,
"against_win": 37,
"against_games": 67,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 90045009,
"name": "OB.YYF",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198050310737",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/55/5551c10c4b3ca7885a4a2b9c6466e8517c21174d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/55/5551c10c4b3ca7885a4a2b9c6466e8517c21174d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/55/5551c10c4b3ca7885a4a2b9c6466e8517c21174d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198050310737/",
"personaname": "姜太公",
"last_login": null,
"full_history_time": "2018-06-12T15:34:46.832Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T09:38:13.000Z",
"last_played": 1509713005,
"win": 36,
"games": 80,
"with_win": 5,
"with_games": 8,
"against_win": 31,
"against_games": 72,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89871557,
"name": "Mushi",
"country_code": "",
"fantasy_role": 1,
"team_id": 543897,
"team_name": "Mineski",
"team_tag": "Mski",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198050137285",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f2/f2d66dcc4a8f5baa872ddaf4825a607bc2b40c18.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f2/f2d66dcc4a8f5baa872ddaf4825a607bc2b40c18_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f2/f2d66dcc4a8f5baa872ddaf4825a607bc2b40c18_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198050137285/",
"personaname": "fggftg",
"last_login": null,
"full_history_time": "2018-09-01T14:06:24.621Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-22T03:14:21.000Z",
"last_played": 1534619764,
"win": 32,
"games": 80,
"with_win": 0,
"with_games": 0,
"against_win": 32,
"against_games": 80,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 103940975,
"name": "@dogf1ghts",
"country_code": "",
"fantasy_role": 0,
"team_id": 2640025,
"team_name": "iG.Vitality",
"team_tag": "iG.V",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198064206703",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b7/b7dbb122edc92d2733833b15b8f9e04559a71e58.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b7/b7dbb122edc92d2733833b15b8f9e04559a71e58_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b7/b7dbb122edc92d2733833b15b8f9e04559a71e58_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198064206703/",
"personaname": "@dogf1ghts",
"last_login": null,
"full_history_time": "2018-03-20T03:15:49.519Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:49:04.000Z",
"last_played": 1526629671,
"win": 46,
"games": 79,
"with_win": 5,
"with_games": 7,
"against_win": 41,
"against_games": 72,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 136477860,
"name": "Meteor",
"country_code": "",
"fantasy_role": 0,
"team_id": 4288603,
"team_name": "Rock.Young",
"team_tag": "Rock.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198096743588",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f1361354c16e2660aeab6c3b9c68e0228d4068d5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f1361354c16e2660aeab6c3b9c68e0228d4068d5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f1361354c16e2660aeab6c3b9c68e0228d4068d5_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198096743588/",
"personaname": "FML",
"last_login": "2017-08-21T03:48:55.738Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-08-31T06:30:28.000Z",
"last_played": 1523970586,
"win": 50,
"games": 78,
"with_win": 7,
"with_games": 10,
"against_win": 43,
"against_games": 68,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89217927,
"name": "banana",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 0,
"team_name": "LGD-GAMING",
"team_tag": "LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198049483655",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/0586284bfb5ff5372fdd80cf630cdd32c5bbe16f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/0586284bfb5ff5372fdd80cf630cdd32c5bbe16f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/0586284bfb5ff5372fdd80cf630cdd32c5bbe16f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049483655/",
"personaname": "biubiubiu!",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1492073518,
"win": 44,
"games": 78,
"with_win": 1,
"with_games": 2,
"against_win": 43,
"against_games": 76,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 107803494,
"name": "Ori",
"country_code": "",
"fantasy_role": 1,
"team_id": 726228,
"team_name": "Vici Gaming",
"team_tag": "VG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198068069222",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da2d632af06d0b00c2148747213fdf22ac1ab83f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da2d632af06d0b00c2148747213fdf22ac1ab83f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da2d632af06d0b00c2148747213fdf22ac1ab83f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198068069222/",
"personaname": "Ori",
"last_login": null,
"full_history_time": "2018-08-11T15:34:40.776Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-06T09:26:42.000Z",
"last_played": 1532776722,
"win": 35,
"games": 78,
"with_win": 9,
"with_games": 23,
"against_win": 26,
"against_games": 55,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 131237305,
"name": "XZ",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 15,
"team_name": "PSG.LGD",
"team_tag": "PSG.LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198091503033",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/91/9165f77ef21f53d670675b8e5e4f93fb4a0aee2a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/91/9165f77ef21f53d670675b8e5e4f93fb4a0aee2a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/91/9165f77ef21f53d670675b8e5e4f93fb4a0aee2a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198091503033/",
"personaname": "head shot",
"last_login": null,
"full_history_time": "2017-07-08T17:31:59.462Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-05-25T15:10:08.000Z",
"last_played": 1490109109,
"win": 45,
"games": 77,
"with_win": 6,
"with_games": 8,
"against_win": 39,
"against_games": 69,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 100883708,
"name": "SanSheng",
"country_code": "",
"fantasy_role": 2,
"team_id": 1375614,
"team_name": "Newbee",
"team_tag": "Newbee",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198061149436",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/051b6bd029c09aff9baf517273effb5116feb93b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/051b6bd029c09aff9baf517273effb5116feb93b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/051b6bd029c09aff9baf517273effb5116feb93b_full.jpg",
"profileurl": "https://steamcommunity.com/id/SanSheng/",
"personaname": "江湖小虾米丶",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2017-09-09T08:14:09.000Z",
"last_played": 1478258764,
"win": 45,
"games": 77,
"with_win": 1,
"with_games": 2,
"against_win": 44,
"against_games": 75,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 90031225,
"name": "Ch",
"country_code": "",
"fantasy_role": 0,
"team_id": 4287101,
"team_name": "TEAM EVER",
"team_tag": "EVER",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198050296953",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c2/c2af73fa45ebea558407345f18828f08131688de.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c2/c2af73fa45ebea558407345f18828f08131688de_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c2/c2af73fa45ebea558407345f18828f08131688de_full.jpg",
"profileurl": "https://steamcommunity.com/id/shayuge/",
"personaname": "鲨鱼哥",
"last_login": null,
"full_history_time": "2016-12-24T12:22:17.649Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-06T13:51:25.000Z",
"last_played": 1532088150,
"win": 44,
"games": 77,
"with_win": 9,
"with_games": 14,
"against_win": 35,
"against_games": 63,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 90137663,
"name": "OB.Zhou",
"country_code": "",
"fantasy_role": 1,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198050403391",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/63/63d2413a6aa64bee2e8bf40c2f3dec79d9bd07df.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/63/63d2413a6aa64bee2e8bf40c2f3dec79d9bd07df_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/63/63d2413a6aa64bee2e8bf40c2f3dec79d9bd07df_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198050403391/",
"personaname": "周公瑾",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T18:11:45.000Z",
"last_played": 1523520586,
"win": 39,
"games": 76,
"with_win": 11,
"with_games": 20,
"against_win": 28,
"against_games": 56,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 207829314,
"name": "BoBoKa",
"country_code": "",
"fantasy_role": 2,
"team_id": 5,
"team_name": "Invictus Gaming",
"team_tag": "iG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198168095042",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4c3359aa4ef20ae91ab19391dd627c1d117bda7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4c3359aa4ef20ae91ab19391dd627c1d117bda7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4c3359aa4ef20ae91ab19391dd627c1d117bda7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198168095042/",
"personaname": "雷洛",
"last_login": null,
"full_history_time": "2018-08-15T18:29:29.315Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T17:26:16.000Z",
"last_played": 1534559540,
"win": 43,
"games": 76,
"with_win": 7,
"with_games": 8,
"against_win": 36,
"against_games": 68,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 278006984,
"name": "XuAn",
"country_code": "",
"fantasy_role": 0,
"team_id": 6165499,
"team_name": "KG.L",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198238272712",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/10/100c2b275488cff503f0eec65a70f19013bbf9d8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/10/100c2b275488cff503f0eec65a70f19013bbf9d8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/10/100c2b275488cff503f0eec65a70f19013bbf9d8_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198238272712/",
"personaname": "心里有了一个宝宝",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-08T06:30:01.000Z",
"last_played": 1533124806,
"win": 37,
"games": 75,
"with_win": 14,
"with_games": 33,
"against_win": 23,
"against_games": 42,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 140153524,
"name": "Q",
"country_code": "",
"fantasy_role": 2,
"team_id": 5,
"team_name": "Invictus Gaming",
"team_tag": "iG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198100419252",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/2460e926a6f9984c71c9a2e65965236f274c9b43.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/2460e926a6f9984c71c9a2e65965236f274c9b43_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/2460e926a6f9984c71c9a2e65965236f274c9b43_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198100419252/",
"personaname": "像你这样的傻逼太多了",
"last_login": null,
"full_history_time": "2017-04-01T23:02:12.367Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-19T00:51:05.000Z",
"last_played": 1534559540,
"win": 39,
"games": 74,
"with_win": 2,
"with_games": 3,
"against_win": 37,
"against_games": 71,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 129958758,
"name": "Xxs",
"country_code": "",
"fantasy_role": 1,
"team_id": 5,
"team_name": "Invictus Gaming",
"team_tag": "iG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198090224486",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b4/b488bb1e085324adae5cd40c82f8cd00c0442dba.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b4/b488bb1e085324adae5cd40c82f8cd00c0442dba_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b4/b488bb1e085324adae5cd40c82f8cd00c0442dba_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198090224486/",
"personaname": "EVER GARDEN",
"last_login": null,
"full_history_time": "2018-06-19T13:52:36.269Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-07T11:55:55.000Z",
"last_played": 1534559540,
"win": 42,
"games": 72,
"with_win": 5,
"with_games": 8,
"against_win": 37,
"against_games": 64,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 108717482,
"name": "chocolate",
"country_code": "my",
"fantasy_role": 0,
"team_id": 5131954,
"team_name": "ForTheDream",
"team_tag": "FTD",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198068983210",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ce/ce87926ccbb5c36c47691a47b12ae651373b959c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ce/ce87926ccbb5c36c47691a47b12ae651373b959c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ce/ce87926ccbb5c36c47691a47b12ae651373b959c_full.jpg",
"profileurl": "https://steamcommunity.com/id/roddgeee/",
"personaname": "KΛMIKΛZΞ",
"last_login": "2017-03-08T06:54:19.075Z",
"full_history_time": "2018-02-16T19:41:36.635Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:55:21.000Z",
"last_played": 1532616122,
"win": 32,
"games": 70,
"with_win": 12,
"with_games": 28,
"against_win": 20,
"against_games": 42,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 135384059,
"name": "Manny",
"country_code": "",
"fantasy_role": 0,
"team_id": 4,
"team_name": "EHOME",
"team_tag": "EHOME",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198095649787",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2d/2d3f80821c669dcffd0e4293c62c003673f63e49.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2d/2d3f80821c669dcffd0e4293c62c003673f63e49_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2d/2d3f80821c669dcffd0e4293c62c003673f63e49_full.jpg",
"profileurl": "https://steamcommunity.com/id/hymzzz/",
"personaname": "弟弟打游戏能不能动动脑子",
"last_login": null,
"full_history_time": "2017-07-05T16:45:44.404Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:59:02.000Z",
"last_played": 1521888737,
"win": 44,
"games": 70,
"with_win": 17,
"with_games": 28,
"against_win": 27,
"against_games": 42,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89371588,
"name": "10",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "O1d Boys",
"team_tag": "Old boys",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198049637316",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9f/9ff66ab22ebe4fa0669e8b822ec011d6798d1554.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9f/9ff66ab22ebe4fa0669e8b822ec011d6798d1554_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9f/9ff66ab22ebe4fa0669e8b822ec011d6798d1554_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049637316/",
"personaname": "三千雷动",
"last_login": null,
"full_history_time": "2018-05-01T03:21:04.062Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "CN",
"last_match_time": "2018-07-14T14:43:57.000Z",
"last_played": 1515422663,
"win": 35,
"games": 68,
"with_win": 2,
"with_games": 4,
"against_win": 33,
"against_games": 64,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 158847773,
"name": "天命",
"country_code": "",
"fantasy_role": 0,
"team_id": 2626685,
"team_name": "KEEN GAMING",
"team_tag": "KG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198119113501",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a7/a7d20f714ae34cad8e3999b10a2a53d40e3ad64f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a7/a7d20f714ae34cad8e3999b10a2a53d40e3ad64f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a7/a7d20f714ae34cad8e3999b10a2a53d40e3ad64f_full.jpg",
"profileurl": "https://steamcommunity.com/id/ningchensama/",
"personaname": "阿佳妮",
"last_login": null,
"full_history_time": "2018-09-03T16:22:09.031Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T13:46:23.000Z",
"last_played": 1524461723,
"win": 42,
"games": 67,
"with_win": 9,
"with_games": 17,
"against_win": 33,
"against_games": 50,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 186627166,
"name": "Flyby",
"country_code": "",
"fantasy_role": 0,
"team_id": 2640025,
"team_name": "iG.Vitality",
"team_tag": "iG.V",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198146892894",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/57/575cf8b31bf1f589b96d4111f7b46d1bbde598b2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/57/575cf8b31bf1f589b96d4111f7b46d1bbde598b2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/57/575cf8b31bf1f589b96d4111f7b46d1bbde598b2_full.jpg",
"profileurl": "https://steamcommunity.com/id/186627166/",
"personaname": "咳咳咳",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T06:50:36.000Z",
"last_played": 1527605268,
"win": 40,
"games": 66,
"with_win": 11,
"with_games": 17,
"against_win": 29,
"against_games": 49,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 93119769,
"name": "QO",
"country_code": "",
"fantasy_role": 0,
"team_id": 5051649,
"team_name": "Immortals",
"team_tag": "IMT",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198053385497",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2a/2aee6593cec9d40c23cf0c2cb8f5488701265987.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2a/2aee6593cec9d40c23cf0c2cb8f5488701265987_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2a/2aee6593cec9d40c23cf0c2cb8f5488701265987_full.jpg",
"profileurl": "https://steamcommunity.com/id/WAKWAKWAK/",
"personaname": "pyrie",
"last_login": "2016-05-23T05:17:57.185Z",
"full_history_time": "2018-09-05T08:35:03.947Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-07T14:31:01.000Z",
"last_played": 1525878229,
"win": 40,
"games": 66,
"with_win": 11,
"with_games": 21,
"against_win": 29,
"against_games": 45,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 156662698,
"name": "raining",
"country_code": "",
"fantasy_role": 0,
"team_id": 5,
"team_name": "Invictus Gaming",
"team_tag": "iG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198116928426",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5a/5a3a95eef1c54197bd56e037d57e2a04a7dd4812.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5a/5a3a95eef1c54197bd56e037d57e2a04a7dd4812_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5a/5a3a95eef1c54197bd56e037d57e2a04a7dd4812_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198116928426/",
"personaname": "Sunail",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T09:59:13.000Z",
"last_played": 1534559540,
"win": 42,
"games": 65,
"with_win": 6,
"with_games": 14,
"against_win": 36,
"against_games": 51,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 110228930,
"name": "Yoggee",
"country_code": "",
"fantasy_role": 0,
"team_id": 6173841,
"team_name": "··",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198070494658",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/79/79060e02669af7b0e9e4886a7b0b344cf471fbed.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/79/79060e02669af7b0e9e4886a7b0b344cf471fbed_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/79/79060e02669af7b0e9e4886a7b0b344cf471fbed_full.jpg",
"profileurl": "https://steamcommunity.com/id/110228930/",
"personaname": "热Skr人",
"last_login": "2016-11-10T11:44:10.095Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:02:56.000Z",
"last_played": 1536585193,
"win": 42,
"games": 65,
"with_win": 7,
"with_games": 11,
"against_win": 35,
"against_games": 54,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89166519,
"name": "prettyHaw",
"country_code": "",
"fantasy_role": 0,
"team_id": 5000254,
"team_name": "ForTheDream",
"team_tag": "FTD",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198049432247",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c5690fc7dcec10f55be79f8f11c9174a30bfc80c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c5690fc7dcec10f55be79f8f11c9174a30bfc80c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c5690fc7dcec10f55be79f8f11c9174a30bfc80c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049432247/",
"personaname": "小赵",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-06-23T08:41:54.000Z",
"last_played": 1477620112,
"win": 43,
"games": 65,
"with_win": 2,
"with_games": 3,
"against_win": 41,
"against_games": 62,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 129748056,
"name": "Chaoyue",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 4997871,
"team_name": "Team Waooo",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198090013784",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/33d5e31c96f5423bce59ff8ec435fe31b83048bc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/33d5e31c96f5423bce59ff8ec435fe31b83048bc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/33d5e31c96f5423bce59ff8ec435fe31b83048bc_full.jpg",
"profileurl": "https://steamcommunity.com/id/chaoyuedota/",
"personaname": "钟",
"last_login": null,
"full_history_time": "2018-06-24T01:19:10.834Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:13:41.000Z",
"last_played": 1531752070,
"win": 34,
"games": 64,
"with_win": 10,
"with_games": 21,
"against_win": 24,
"against_games": 43,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 114031486,
"name": "black.m",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "dddog",
"team_tag": "dddog",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198074297214",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/83/830e8f3fd352fa8d99575eff46acdade446f4670.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/83/830e8f3fd352fa8d99575eff46acdade446f4670_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/83/830e8f3fd352fa8d99575eff46acdade446f4670_full.jpg",
"profileurl": "https://steamcommunity.com/id/black_zzzzz/",
"personaname": "目中无人",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-05T19:09:55.000Z",
"last_played": 1512400920,
"win": 46,
"games": 64,
"with_win": 8,
"with_games": 11,
"against_win": 38,
"against_games": 53,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 182325064,
"name": "sss",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 3786336,
"team_name": "vampire",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198142590792",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/94/94855e8cb266dea30868e35f8e5ad119076ec0cb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/94/94855e8cb266dea30868e35f8e5ad119076ec0cb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/94/94855e8cb266dea30868e35f8e5ad119076ec0cb_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198142590792/",
"personaname": "Eminem",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:09:28.000Z",
"last_played": 1533121410,
"win": 30,
"games": 63,
"with_win": 9,
"with_games": 19,
"against_win": 21,
"against_games": 44,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 90892194,
"name": "longdd",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 2224698,
"team_name": "O1d Boys",
"team_tag": "Old boys",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198051157922",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3f/3f34ff589cee014e5c71d451d300bd1d1dd904ce.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3f/3f34ff589cee014e5c71d451d300bd1d1dd904ce_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3f/3f34ff589cee014e5c71d451d300bd1d1dd904ce_full.jpg",
"profileurl": "https://steamcommunity.com/id/longdd520/",
"personaname": "神.赵云",
"last_login": null,
"full_history_time": "2018-04-30T12:24:48.077Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CA",
"last_match_time": "2018-09-10T17:52:37.000Z",
"last_played": 1529138475,
"win": 35,
"games": 62,
"with_win": 8,
"with_games": 14,
"against_win": 27,
"against_games": 48,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 136186119,
"name": "LPC",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 5235338,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198096451847",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc1e9c816f9d8165dc0f4d1f4422bc1d524fcbd6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc1e9c816f9d8165dc0f4d1f4422bc1d524fcbd6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc1e9c816f9d8165dc0f4d1f4422bc1d524fcbd6_full.jpg",
"profileurl": "https://steamcommunity.com/id/985985589/",
"personaname": "烤箱终结者",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:35:47.000Z",
"last_played": 1536306184,
"win": 36,
"games": 60,
"with_win": 2,
"with_games": 7,
"against_win": 34,
"against_games": 53,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 160678812,
"name": "Rong",
"country_code": "",
"fantasy_role": 0,
"team_id": 3325252,
"team_name": "Team Max",
"team_tag": "MAX",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198120944540",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/972725fae4bfd7dd6bd74456612195ba1f844fd9.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/972725fae4bfd7dd6bd74456612195ba1f844fd9_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/972725fae4bfd7dd6bd74456612195ba1f844fd9_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198120944540/",
"personaname": "Shy",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:11:08.000Z",
"last_played": 1521373329,
"win": 39,
"games": 59,
"with_win": 7,
"with_games": 13,
"against_win": 32,
"against_games": 46,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 82262664,
"name": "KuroKy",
"country_code": "",
"fantasy_role": 2,
"team_id": 2163,
"team_name": "Team Liquid",
"team_tag": "Liquid",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198042528392",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/336ab487ff460c5b808dfa1b5a74bc6413ab7063.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/336ab487ff460c5b808dfa1b5a74bc6413ab7063_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/336ab487ff460c5b808dfa1b5a74bc6413ab7063_full.jpg",
"profileurl": "https://steamcommunity.com/id/kurokykky/",
"personaname": "an naml",
"last_login": null,
"full_history_time": "2018-09-01T14:01:21.567Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "DE",
"last_match_time": "2018-08-25T02:19:14.000Z",
"last_played": 1534990401,
"win": 31,
"games": 59,
"with_win": 0,
"with_games": 0,
"against_win": 31,
"against_games": 59,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 168028715,
"name": "zhizhizhi",
"country_code": "",
"fantasy_role": 1,
"team_id": 5066616,
"team_name": "Team Serenity",
"team_tag": "Serenity",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198128294443",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8eb98333cb20862e1f802bde7d3b3179e3c08c02.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8eb98333cb20862e1f802bde7d3b3179e3c08c02_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8eb98333cb20862e1f802bde7d3b3179e3c08c02_full.jpg",
"profileurl": "https://steamcommunity.com/id/168028715/",
"personaname": "O",
"last_login": null,
"full_history_time": "2017-11-03T18:39:57.232Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:49:24.000Z",
"last_played": 1532668417,
"win": 34,
"games": 59,
"with_win": 8,
"with_games": 15,
"against_win": 26,
"against_games": 44,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 171211166,
"name": "S1umang",
"country_code": "",
"fantasy_role": 0,
"team_id": 5131954,
"team_name": "ForTheDream",
"team_tag": "FTD",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198131476894",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c8/c8ec8a8c8f0001819b83be112e8d78f02d85b30c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c8/c8ec8a8c8f0001819b83be112e8d78f02d85b30c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c8/c8ec8a8c8f0001819b83be112e8d78f02d85b30c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198131476894/",
"personaname": "Tsuki",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:24:29.000Z",
"last_played": 1532616122,
"win": 28,
"games": 59,
"with_win": 7,
"with_games": 15,
"against_win": 21,
"against_games": 44,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 119594755,
"name": "K D",
"country_code": "",
"fantasy_role": 0,
"team_id": 1951061,
"team_name": "Newbee.Young",
"team_tag": "Newbee.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198079860483",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/72/722c0d6a99ab8f1e068d88276026f9e615d2847c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/72/722c0d6a99ab8f1e068d88276026f9e615d2847c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/72/722c0d6a99ab8f1e068d88276026f9e615d2847c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198079860483/",
"personaname": "2099",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T12:15:10.000Z",
"last_played": 1533124806,
"win": 38,
"games": 58,
"with_win": 11,
"with_games": 16,
"against_win": 27,
"against_games": 42,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 230617400,
"name": "yChen",
"country_code": "",
"fantasy_role": 0,
"team_id": 1983234,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198190883128",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d0a59bed6df1b0e9bd2366226e23cfd64220515.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d0a59bed6df1b0e9bd2366226e23cfd64220515_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d0a59bed6df1b0e9bd2366226e23cfd64220515_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198190883128/",
"personaname": "mid or throw",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T08:25:58.000Z",
"last_played": 1531844134,
"win": 34,
"games": 57,
"with_win": 13,
"with_games": 20,
"against_win": 21,
"against_games": 37,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89399750,
"name": "QQQ",
"country_code": "",
"fantasy_role": 2,
"team_id": 15,
"team_name": "PSG.LGD",
"team_tag": "PSG.LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198049665478",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f76cd976940045b25ab1736069dbff27bb22a057.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f76cd976940045b25ab1736069dbff27bb22a057_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f76cd976940045b25ab1736069dbff27bb22a057_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049665478/",
"personaname": "66",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2017-12-15T22:23:12.000Z",
"last_played": 1513376592,
"win": 31,
"games": 57,
"with_win": 20,
"with_games": 37,
"against_win": 11,
"against_games": 20,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 101375717,
"name": "ShiKi",
"country_code": "",
"fantasy_role": 0,
"team_id": 5017210,
"team_name": "EHOME.immortal",
"team_tag": "EHOME.i",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198061641445",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb91292394d325e17b74ed3d2365fc306863b6a0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb91292394d325e17b74ed3d2365fc306863b6a0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb91292394d325e17b74ed3d2365fc306863b6a0_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198061641445/",
"personaname": "三千世界鸦杀",
"last_login": null,
"full_history_time": "2016-09-02T23:51:10.145Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T20:28:33.000Z",
"last_played": 1531217175,
"win": 35,
"games": 56,
"with_win": 8,
"with_games": 12,
"against_win": 27,
"against_games": 44,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 139174891,
"name": "897",
"country_code": "",
"fantasy_role": 0,
"team_id": 3325252,
"team_name": "Team Max",
"team_tag": "MAX",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198099440619",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f01ecde6f2ba56e7b6442da71180e07719ec6761.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f01ecde6f2ba56e7b6442da71180e07719ec6761_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f01ecde6f2ba56e7b6442da71180e07719ec6761_full.jpg",
"profileurl": "https://steamcommunity.com/id/807753218/",
"personaname": "Sondia",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-07T13:21:59.000Z",
"last_played": 1524487236,
"win": 27,
"games": 56,
"with_win": 9,
"with_games": 18,
"against_win": 18,
"against_games": 38,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 262367336,
"name": "Shining",
"country_code": "",
"fantasy_role": 0,
"team_id": 3349045,
"team_name": "Σ(っ°Д°;)っ",
"team_tag": "Σ(っ°Д°;)っ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198222633064",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/64/643b64d52a887741127b98da70fbedf55a286344.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/64/643b64d52a887741127b98da70fbedf55a286344_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/64/643b64d52a887741127b98da70fbedf55a286344_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198222633064/",
"personaname": "ADC",
"last_login": "2017-08-21T10:15:13.313Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T18:32:06.000Z",
"last_played": 1523370668,
"win": 31,
"games": 56,
"with_win": 7,
"with_games": 19,
"against_win": 24,
"against_games": 37,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 167372590,
"name": "leng",
"country_code": "",
"fantasy_role": 1,
"team_id": 5152964,
"team_name": "Echo Gaming",
"team_tag": "Echo",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198127638318",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b0/b01d5e73b922dcd536001d1facb941e728361cde.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b0/b01d5e73b922dcd536001d1facb941e728361cde_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b0/b01d5e73b922dcd536001d1facb941e728361cde_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198127638318/",
"personaname": "路人甲",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-05T14:50:26.000Z",
"last_played": 1523970586,
"win": 31,
"games": 54,
"with_win": 6,
"with_games": 13,
"against_win": 25,
"against_games": 41,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 88521435,
"name": "kabu",
"country_code": "cn",
"fantasy_role": 0,
"team_id": 6096729,
"team_name": "Newbee.Young",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198048787163",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e5/e556576c852b55cf29636588ac33eca775755681.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e5/e556576c852b55cf29636588ac33eca775755681_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e5/e556576c852b55cf29636588ac33eca775755681_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198048787163/",
"personaname": "车轮滚滚",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-09T05:14:48.000Z",
"last_played": 1510080296,
"win": 34,
"games": 54,
"with_win": 3,
"with_games": 7,
"against_win": 31,
"against_games": 47,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 254013249,
"name": "Noble",
"country_code": "",
"fantasy_role": 1,
"team_id": 5897282,
"team_name": "KG.V",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198214278977",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/92/92954359d5d598a0401c66a2206656009856d305.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/92/92954359d5d598a0401c66a2206656009856d305_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/92/92954359d5d598a0401c66a2206656009856d305_full.jpg",
"profileurl": "https://steamcommunity.com/id/gc-noble/",
"personaname": "Monga",
"last_login": null,
"full_history_time": "2017-03-31T06:04:02.700Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-03T11:24:20.000Z",
"last_played": 1523607599,
"win": 38,
"games": 53,
"with_win": 33,
"with_games": 45,
"against_win": 5,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 205813150,
"name": "Op",
"country_code": "",
"fantasy_role": 0,
"team_id": 5,
"team_name": "Invictus Gaming",
"team_tag": "iG",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198166078878",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6c3212c16c65ca930076824c161efc256253ac2e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6c3212c16c65ca930076824c161efc256253ac2e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6c3212c16c65ca930076824c161efc256253ac2e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198166078878/",
"personaname": "O",
"last_login": null,
"full_history_time": "2017-04-18T05:49:22.424Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-06-16T12:58:17.000Z",
"last_played": 1515579685,
"win": 19,
"games": 52,
"with_win": 4,
"with_games": 5,
"against_win": 15,
"against_games": 47,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 19672354,
"name": "BigDaddyN0tail",
"country_code": "",
"fantasy_role": 2,
"team_id": 2586976,
"team_name": "OG",
"team_tag": "OG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197979938082",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/91/914c45c9d877bef94f6e0d20bab2c645ac2645a8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/91/914c45c9d877bef94f6e0d20bab2c645ac2645a8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/91/914c45c9d877bef94f6e0d20bab2c645ac2645a8_full.jpg",
"profileurl": "https://steamcommunity.com/id/BigDaddyN0tail42/",
"personaname": "OG.N0tail Q('.'Q)",
"last_login": null,
"full_history_time": "2018-09-01T13:59:59.887Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "DK",
"last_match_time": "2018-08-26T02:15:30.000Z",
"last_played": 1535249730,
"win": 28,
"games": 50,
"with_win": 0,
"with_games": 0,
"against_win": 28,
"against_games": 50,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 87382579,
"name": "MISERY",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "Evil Geniuses",
"team_tag": "EG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047648307",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/0577b6d4f11cf8e286301dd507c85911df2accd1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/0577b6d4f11cf8e286301dd507c85911df2accd1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/0577b6d4f11cf8e286301dd507c85911df2accd1_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047648307/",
"personaname": "sleepy cat",
"last_login": null,
"full_history_time": "2017-11-24T23:33:19.135Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "DK",
"last_match_time": "2018-06-25T14:27:04.000Z",
"last_played": 1522811618,
"win": 29,
"games": 49,
"with_win": 0,
"with_games": 0,
"against_win": 29,
"against_games": 49,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 124566285,
"name": "老实人",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Bheart.Zombie",
"team_tag": "Bheart.z",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198084832013",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ca/cab8625c257be3ea8f0feef24c308720ca3d5704.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ca/cab8625c257be3ea8f0feef24c308720ca3d5704_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ca/cab8625c257be3ea8f0feef24c308720ca3d5704_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198084832013/",
"personaname": "骂你是激励你",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-06-24T14:43:33.000Z",
"last_played": 1478446425,
"win": 41,
"games": 48,
"with_win": 11,
"with_games": 14,
"against_win": 30,
"against_games": 34,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 137925613,
"name": "浅浅",
"country_code": "",
"fantasy_role": 2,
"team_id": 6096729,
"team_name": "Newbee.Young",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198098191341",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e0493c3850a59dc147dc4c83d6efdf038452f82c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e0493c3850a59dc147dc4c83d6efdf038452f82c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e0493c3850a59dc147dc4c83d6efdf038452f82c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198098191341/",
"personaname": "天有点黑",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:20:30.000Z",
"last_played": 1522335885,
"win": 27,
"games": 48,
"with_win": 6,
"with_games": 13,
"against_win": 21,
"against_games": 35,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 103354522,
"name": "marlin``",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 5120419,
"team_name": " ",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198063620250",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17c5dc10dc0a44dd844fd70c29ab0c0d9c1af3f6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17c5dc10dc0a44dd844fd70c29ab0c0d9c1af3f6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17c5dc10dc0a44dd844fd70c29ab0c0d9c1af3f6_full.jpg",
"profileurl": "https://steamcommunity.com/id/lyh1130/",
"personaname": "wd,nmlg,b!!!",
"last_login": null,
"full_history_time": "2018-08-29T06:56:25.991Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:46:27.000Z",
"last_played": 1527252646,
"win": 29,
"games": 48,
"with_win": 4,
"with_games": 11,
"against_win": 25,
"against_games": 37,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 134711350,
"name": "Dstones石头",
"country_code": "",
"fantasy_role": 0,
"team_id": 5152964,
"team_name": "Echo Gaming",
"team_tag": "Echo",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198094977078",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c427106e6d6d5487dd93da2b121c1a7ef6f9fdce.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c427106e6d6d5487dd93da2b121c1a7ef6f9fdce_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c427106e6d6d5487dd93da2b121c1a7ef6f9fdce_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198094977078/",
"personaname": "Mid,ty",
"last_login": null,
"full_history_time": "2017-09-04T05:28:27.420Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T13:58:50.000Z",
"last_played": 1531931944,
"win": 23,
"games": 48,
"with_win": 5,
"with_games": 19,
"against_win": 18,
"against_games": 29,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 254710104,
"name": "Ms",
"country_code": "",
"fantasy_role": 0,
"team_id": 2634810,
"team_name": "KG.Luminous",
"team_tag": "KG.L",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198214975832",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/177639c006d69ce448300774131aa390fa642c3f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/177639c006d69ce448300774131aa390fa642c3f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/177639c006d69ce448300774131aa390fa642c3f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198214975832/",
"personaname": ".",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:26:59.000Z",
"last_played": 1533127933,
"win": 20,
"games": 47,
"with_win": 8,
"with_games": 17,
"against_win": 12,
"against_games": 30,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 125576983,
"name": "Maps",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "team_ftd_c",
"team_tag": "FTD.c",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198085842711",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/14/140d21fdb66bb243934f8a92eae49851a209ce7e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/14/140d21fdb66bb243934f8a92eae49851a209ce7e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/14/140d21fdb66bb243934f8a92eae49851a209ce7e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198085842711/",
"personaname": "Maps",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:21:30.000Z",
"last_played": 1533124806,
"win": 25,
"games": 47,
"with_win": 8,
"with_games": 12,
"against_win": 17,
"against_games": 35,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 87276347,
"name": "Universe",
"country_code": "",
"fantasy_role": 3,
"team_id": 350190,
"team_name": "Fnatic",
"team_tag": "Fnatic",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047542075",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f35a86b9b1cbbb83e32735fe625f4ad9db9915e2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f35a86b9b1cbbb83e32735fe625f4ad9db9915e2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f35a86b9b1cbbb83e32735fe625f4ad9db9915e2_full.jpg",
"profileurl": "https://steamcommunity.com/id/universe112/",
"personaname": "universe",
"last_login": null,
"full_history_time": "2018-08-25T18:56:44.719Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-20T22:38:27.000Z",
"last_played": 1534542458,
"win": 20,
"games": 46,
"with_win": 0,
"with_games": 0,
"against_win": 20,
"against_games": 46,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86745912,
"name": "rtz",
"country_code": "",
"fantasy_role": 1,
"team_id": 39,
"team_name": "Evil Geniuses",
"team_tag": "EG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047011640",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23a2f5c786fd4ac153baaec915e92bfd4520ed7a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23a2f5c786fd4ac153baaec915e92bfd4520ed7a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23a2f5c786fd4ac153baaec915e92bfd4520ed7a_full.jpg",
"profileurl": "https://steamcommunity.com/id/77777Il77777i1li1IlIl71IlIlIl/",
"personaname": "REAL_LIFE",
"last_login": "2015-07-04T22:30:19.778Z",
"full_history_time": "2018-08-31T07:16:34.782Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-25T18:58:16.000Z",
"last_played": 1535223496,
"win": 23,
"games": 46,
"with_win": 0,
"with_games": 0,
"against_win": 23,
"against_games": 46,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86727555,
"name": "Peterpandam",
"country_code": "",
"fantasy_role": 2,
"team_id": 5026801,
"team_name": "OpTic Gaming",
"team_tag": "OpTic",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198046993283",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4775eaa88bc473610d0cc770f40a20029c44b4c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4775eaa88bc473610d0cc770f40a20029c44b4c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4775eaa88bc473610d0cc770f40a20029c44b4c_full.jpg",
"profileurl": "https://steamcommunity.com/id/ppd17/",
"personaname": "NADCL signups are live",
"last_login": "2017-02-24T01:14:02.759Z",
"full_history_time": "2018-09-08T23:43:09.991Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-23T19:50:43.000Z",
"last_played": 1528007711,
"win": 19,
"games": 46,
"with_win": 0,
"with_games": 0,
"against_win": 19,
"against_games": 46,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 142750189,
"name": "Garder",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 4,
"team_name": "EHOME",
"team_tag": "EHOME",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198103015917",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c576c0a26cdf110e47d8b7884accf51c13aa5caf.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c576c0a26cdf110e47d8b7884accf51c13aa5caf_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c576c0a26cdf110e47d8b7884accf51c13aa5caf_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198103015917/",
"personaname": "1",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-06T15:02:40.000Z",
"last_played": 1498559604,
"win": 25,
"games": 46,
"with_win": 0,
"with_games": 1,
"against_win": 25,
"against_games": 45,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 117990312,
"name": "HYNB",
"country_code": "",
"fantasy_role": 0,
"team_id": 4425650,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198078256040",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7b/7b011db2594d978261f86bb6941a208934df1647.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7b/7b011db2594d978261f86bb6941a208934df1647_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7b/7b011db2594d978261f86bb6941a208934df1647_full.jpg",
"profileurl": "https://steamcommunity.com/id/youknowjdh/",
"personaname": "hydsb",
"last_login": "2016-11-16T10:13:20.096Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-04T15:47:13.000Z",
"last_played": 1527602515,
"win": 29,
"games": 45,
"with_win": 12,
"with_games": 20,
"against_win": 17,
"against_games": 25,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 110837826,
"name": "doodle",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "ECHO POGGERS",
"team_tag": "Echo.POG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198071103554",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ec/ec4aada88dd2dfccfc591d504ef74be425a26a3b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ec/ec4aada88dd2dfccfc591d504ef74be425a26a3b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ec/ec4aada88dd2dfccfc591d504ef74be425a26a3b_full.jpg",
"profileurl": "https://steamcommunity.com/id/doodlew/",
"personaname": "sovoz",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:34:29.000Z",
"last_played": 1532440858,
"win": 26,
"games": 45,
"with_win": 10,
"with_games": 14,
"against_win": 16,
"against_games": 31,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 175538337,
"name": "Piao",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "C5Gaming",
"team_tag": "C5",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198135804065",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/29/2972805ad23f9325ceeae3589dee4ed0b009b5c4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/29/2972805ad23f9325ceeae3589dee4ed0b009b5c4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/29/2972805ad23f9325ceeae3589dee4ed0b009b5c4_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198135804065/",
"personaname": "山与海",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-04-22T10:04:30.000Z",
"last_played": 1509979058,
"win": 30,
"games": 45,
"with_win": 9,
"with_games": 13,
"against_win": 21,
"against_games": 32,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 142589406,
"name": "Xmy",
"country_code": "",
"fantasy_role": 0,
"team_id": 2833354,
"team_name": "Vici Gaming Potential",
"team_tag": "VG.P",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198102855134",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9db85528a41961c14cf7077b8826f12784e52a30.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9db85528a41961c14cf7077b8826f12784e52a30_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9db85528a41961c14cf7077b8826f12784e52a30_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198102855134/",
"personaname": "alies",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-04T06:47:02.000Z",
"last_played": 1531991191,
"win": 24,
"games": 45,
"with_win": 15,
"with_games": 27,
"against_win": 9,
"against_games": 18,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 130921377,
"name": "队友帮帮我",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Wings.Red",
"team_tag": "Wings.Red",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198091187105",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b3/b3f78305617ec62b82e543fe1e5d78a78d58a638.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b3/b3f78305617ec62b82e543fe1e5d78a78d58a638_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b3/b3f78305617ec62b82e543fe1e5d78a78d58a638_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198091187105/",
"personaname": "历劫归来,势不可挡。",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:22:25.000Z",
"last_played": 1531493602,
"win": 28,
"games": 45,
"with_win": 12,
"with_games": 18,
"against_win": 16,
"against_games": 27,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 43276219,
"name": "EternaLEnVy",
"country_code": "",
"fantasy_role": 1,
"team_id": 1333179,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198003541947",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/245704b994dddca4205b7a275711746b7d69c4c8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/245704b994dddca4205b7a275711746b7d69c4c8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/245704b994dddca4205b7a275711746b7d69c4c8_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198003541947/",
"personaname": "Again",
"last_login": null,
"full_history_time": "2018-09-03T11:03:32.504Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-24T03:36:52.000Z",
"last_played": 1534542458,
"win": 22,
"games": 44,
"with_win": 1,
"with_games": 1,
"against_win": 21,
"against_games": 43,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 136575603,
"name": "Waixi",
"country_code": "",
"fantasy_role": 0,
"team_id": 5036221,
"team_name": "Sun Gaming",
"team_tag": "Sun",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198096841331",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/6763e97b1c56c11c6d2f4426c54daa908e12d4fa.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/6763e97b1c56c11c6d2f4426c54daa908e12d4fa_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/6763e97b1c56c11c6d2f4426c54daa908e12d4fa_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198096841331/",
"personaname": "马腾",
"last_login": null,
"full_history_time": "2017-05-17T12:59:18.422Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "BZ",
"last_match_time": "2018-09-10T16:00:58.000Z",
"last_played": 1524143480,
"win": 26,
"games": 44,
"with_win": 12,
"with_games": 17,
"against_win": 14,
"against_games": 27,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 135656964,
"name": "xiaofu",
"country_code": "",
"fantasy_role": 0,
"team_id": 2634810,
"team_name": "KG.Luminous",
"team_tag": "KG.L",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198095922692",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c4c24ccc5dba9765d9712213ad4d4dad699f4e1c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c4c24ccc5dba9765d9712213ad4d4dad699f4e1c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c4c24ccc5dba9765d9712213ad4d4dad699f4e1c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198095922692/",
"personaname": "11",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:46:27.000Z",
"last_played": 1533124806,
"win": 28,
"games": 44,
"with_win": 10,
"with_games": 16,
"against_win": 18,
"against_games": 28,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 120569619,
"name": ".....",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 0,
"team_name": "Wings.Red",
"team_tag": "Wings.Red",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198080835347",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d3/d3d86d064b0b4e7b60bf867a5ccd7345b8079bce.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d3/d3d86d064b0b4e7b60bf867a5ccd7345b8079bce_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d3/d3d86d064b0b4e7b60bf867a5ccd7345b8079bce_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198080835347/",
"personaname": "出来打我!",
"last_login": null,
"full_history_time": "2016-12-29T10:51:22.474Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-09T16:59:47.000Z",
"last_played": 1525871001,
"win": 22,
"games": 44,
"with_win": 11,
"with_games": 22,
"against_win": 11,
"against_games": 22,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 167072778,
"name": "闷油瓶",
"country_code": "",
"fantasy_role": 0,
"team_id": 5152964,
"team_name": "Echo Gaming",
"team_tag": "Echo",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198127338506",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/10/10276b7e6b6680e4d8efa2aee8c5066c795cf9ea.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/10/10276b7e6b6680e4d8efa2aee8c5066c795cf9ea_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/10/10276b7e6b6680e4d8efa2aee8c5066c795cf9ea_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198127338506/",
"personaname": "想要变得更强",
"last_login": null,
"full_history_time": "2017-03-23T18:47:46.835Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T10:18:54.000Z",
"last_played": 1531582719,
"win": 22,
"games": 43,
"with_win": 10,
"with_games": 17,
"against_win": 12,
"against_games": 26,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 41231571,
"name": "s4",
"country_code": "",
"fantasy_role": 3,
"team_id": 39,
"team_name": "Evil Geniuses",
"team_tag": "EG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198001497299",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/45/451217b025c207a1291c49ff90f691044cb75e36.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/45/451217b025c207a1291c49ff90f691044cb75e36_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/45/451217b025c207a1291c49ff90f691044cb75e36_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198001497299/",
"personaname": "Carl",
"last_login": null,
"full_history_time": "2018-07-12T01:06:26.455Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SE",
"last_match_time": "2018-09-04T12:40:57.000Z",
"last_played": 1535223496,
"win": 21,
"games": 43,
"with_win": 2,
"with_games": 3,
"against_win": 19,
"against_games": 40,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 142974425,
"name": "yoona",
"country_code": "",
"fantasy_role": 0,
"team_id": 2626685,
"team_name": "KEEN GAMING",
"team_tag": "KG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198103240153",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/53/537a7cb755518eb5b7e5ecd11072e7900e580b55.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/53/537a7cb755518eb5b7e5ecd11072e7900e580b55_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/53/537a7cb755518eb5b7e5ecd11072e7900e580b55_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198103240153/",
"personaname": "音音音.",
"last_login": null,
"full_history_time": "2018-09-10T14:32:21.877Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-08-13T13:30:08.000Z",
"last_played": 1531582719,
"win": 25,
"games": 42,
"with_win": 4,
"with_games": 10,
"against_win": 21,
"against_games": 32,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 117197143,
"name": "zhongyuanren",
"country_code": "",
"fantasy_role": 0,
"team_id": 2634810,
"team_name": "KG.Luminous",
"team_tag": "KG.L",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198077462871",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6d/6dfa6e964e248694e5c9b3e539137b86d33b052e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6d/6dfa6e964e248694e5c9b3e539137b86d33b052e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6d/6dfa6e964e248694e5c9b3e539137b86d33b052e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198077462871/",
"personaname": "这个少女不太冷丶",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-05T10:01:20.000Z",
"last_played": 1506608092,
"win": 30,
"games": 42,
"with_win": 13,
"with_games": 20,
"against_win": 17,
"against_games": 22,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 113055496,
"name": "Speed!",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Avalon_Club",
"team_tag": "Avalon",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198073321224",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4d/4d3271ba562730ad9e3a23e6267357d13128008d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4d/4d3271ba562730ad9e3a23e6267357d13128008d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4d/4d3271ba562730ad9e3a23e6267357d13128008d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198073321224/",
"personaname": "Speed!",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-08-26T15:20:41.000Z",
"last_played": 1469037894,
"win": 31,
"games": 42,
"with_win": 0,
"with_games": 0,
"against_win": 31,
"against_games": 42,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 117199412,
"name": "zhi!",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5526737,
"team_name": "Cola",
"team_tag": "Cola",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198077465140",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c2/c2842ab02c021cf25e98459fc36b4cf5eb36496f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c2/c2842ab02c021cf25e98459fc36b4cf5eb36496f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c2/c2842ab02c021cf25e98459fc36b4cf5eb36496f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198077465140/",
"personaname": "天天头都被锤晕。",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-08T12:15:32.000Z",
"last_played": 1527426818,
"win": 32,
"games": 42,
"with_win": 9,
"with_games": 12,
"against_win": 23,
"against_games": 30,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 40547474,
"name": "Aui_2000",
"country_code": "",
"fantasy_role": 0,
"team_id": 5196328,
"team_name": "Digital Chaos",
"team_tag": "DC",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198000813202",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/88/882de59e69df6f53da75503e96caf4a7f04e5ac5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/88/882de59e69df6f53da75503e96caf4a7f04e5ac5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/88/882de59e69df6f53da75503e96caf4a7f04e5ac5_full.jpg",
"profileurl": "https://steamcommunity.com/id/aui_2000/",
"personaname": "aui_2000",
"last_login": null,
"full_history_time": "2018-07-21T13:52:28.543Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CA",
"last_match_time": "2018-09-10T03:16:52.000Z",
"last_played": 1497555401,
"win": 17,
"games": 42,
"with_win": 1,
"with_games": 4,
"against_win": 16,
"against_games": 38,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 94155156,
"name": "Fly",
"country_code": "",
"fantasy_role": 2,
"team_id": 39,
"team_name": "Evil Geniuses",
"team_tag": "EG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198054420884",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b9/b927f9eb3c9a7ff9715676ec7b27d01216a9e033.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b9/b927f9eb3c9a7ff9715676ec7b27d01216a9e033_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b9/b927f9eb3c9a7ff9715676ec7b27d01216a9e033_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198054420884/",
"personaname": "SAYA!!!",
"last_login": "2017-11-04T11:32:51.650Z",
"full_history_time": "2018-09-06T08:39:59.887Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-25T18:58:16.000Z",
"last_played": 1535223496,
"win": 23,
"games": 42,
"with_win": 0,
"with_games": 0,
"against_win": 23,
"against_games": 42,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 101586543,
"name": "跳刀跳刀丶",
"country_code": "",
"fantasy_role": 0,
"team_id": 5036221,
"team_name": "Sun Gaming",
"team_tag": "Sun",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198061852271",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/33460d3cd454c1fcdb53428126c04f34d75839cc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/33460d3cd454c1fcdb53428126c04f34d75839cc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/33460d3cd454c1fcdb53428126c04f34d75839cc_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198061852271/",
"personaname": "跳刀跳刀丶",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-25T12:01:03.000Z",
"last_played": 1490619025,
"win": 22,
"games": 41,
"with_win": 0,
"with_games": 2,
"against_win": 22,
"against_games": 39,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 93289364,
"name": "BinGo",
"country_code": "",
"fantasy_role": 0,
"team_id": 3325252,
"team_name": "Team Max",
"team_tag": "MAX",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198053555092",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fc/fce4fbcbc68a2485fdf74aaaa614255b45f422fd.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fc/fce4fbcbc68a2485fdf74aaaa614255b45f422fd_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fc/fce4fbcbc68a2485fdf74aaaa614255b45f422fd_full.jpg",
"profileurl": "https://steamcommunity.com/id/zexbingo/",
"personaname": "ez",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-03T14:58:28.000Z",
"last_played": 1530167653,
"win": 31,
"games": 41,
"with_win": 8,
"with_games": 11,
"against_win": 23,
"against_games": 30,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 99460568,
"name": "icy",
"country_code": "",
"fantasy_role": 0,
"team_id": 1951061,
"team_name": "Newbee.Young",
"team_tag": "Newbee.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198059726296",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1a/1a68c3e74d1d1b95a93b289bb50d988cff47aba2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1a/1a68c3e74d1d1b95a93b289bb50d988cff47aba2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1a/1a68c3e74d1d1b95a93b289bb50d988cff47aba2_full.jpg",
"profileurl": "https://steamcommunity.com/id/icyicyi/",
"personaname": "不听话",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-06-09T17:09:26.000Z",
"last_played": 1426928212,
"win": 25,
"games": 40,
"with_win": 0,
"with_games": 0,
"against_win": 25,
"against_games": 40,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 34505203,
"name": "MinD_ContRoL",
"country_code": "",
"fantasy_role": 3,
"team_id": 2163,
"team_name": "Team Liquid",
"team_tag": "Liquid",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197994770931",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d5/d512e3f62b499e5c5166952cff5b6cf30cdc8067.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d5/d512e3f62b499e5c5166952cff5b6cf30cdc8067_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d5/d512e3f62b499e5c5166952cff5b6cf30cdc8067_full.jpg",
"profileurl": "https://steamcommunity.com/id/MinD_ContRoL/",
"personaname": "a boi",
"last_login": null,
"full_history_time": "2018-09-01T14:03:28.762Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "BG",
"last_match_time": "2018-08-25T02:19:14.000Z",
"last_played": 1534990401,
"win": 21,
"games": 40,
"with_win": 0,
"with_games": 0,
"against_win": 21,
"against_games": 40,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 87177591,
"name": "Fear",
"country_code": "",
"fantasy_role": 0,
"team_id": 39,
"team_name": "Evil Geniuses",
"team_tag": "EG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047443319",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/14/1489f0405ce605853ba6739fa45ec91778b4ca82.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/14/1489f0405ce605853ba6739fa45ec91778b4ca82_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/14/1489f0405ce605853ba6739fa45ec91778b4ca82_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047443319/",
"personaname": "Fear",
"last_login": null,
"full_history_time": "2018-05-11T03:34:58.584Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-06-29T04:49:35.000Z",
"last_played": 1523015911,
"win": 19,
"games": 40,
"with_win": 2,
"with_games": 2,
"against_win": 17,
"against_games": 38,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 208796906,
"name": "Fonte",
"country_code": "",
"fantasy_role": 0,
"team_id": 3325252,
"team_name": "Team Max",
"team_tag": "MAX",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198169062634",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b2d2b784d928529db02a57d1461652ae9a0815f1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b2d2b784d928529db02a57d1461652ae9a0815f1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b2d2b784d928529db02a57d1461652ae9a0815f1_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198169062634/",
"personaname": "F",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:57:11.000Z",
"last_played": 1525883168,
"win": 30,
"games": 40,
"with_win": 8,
"with_games": 12,
"against_win": 22,
"against_games": 28,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 88933594,
"name": "FoREv",
"country_code": "",
"fantasy_role": 0,
"team_id": 1148284,
"team_name": "MVP Phoenix",
"team_tag": "MVP",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198049199322",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/85/85900bc1e6c29f104e7df3160a28ae6e7663700e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/85/85900bc1e6c29f104e7df3160a28ae6e7663700e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/85/85900bc1e6c29f104e7df3160a28ae6e7663700e_full.jpg",
"profileurl": "https://steamcommunity.com/id/Lsound/",
"personaname": "forev",
"last_login": null,
"full_history_time": "2018-07-01T16:02:40.997Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "KR",
"last_match_time": "2018-09-10T16:16:31.000Z",
"last_played": 1532784561,
"win": 24,
"games": 40,
"with_win": 5,
"with_games": 6,
"against_win": 19,
"against_games": 34,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 117731777,
"name": "XCJ",
"country_code": "",
"fantasy_role": 2,
"team_id": 5066616,
"team_name": "Team Serenity",
"team_tag": "Serenity",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198077997505",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a4/a430bc60e7dbcce2d6f2e97ec1b1ee00ecbdcc10.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a4/a430bc60e7dbcce2d6f2e97ec1b1ee00ecbdcc10_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a4/a430bc60e7dbcce2d6f2e97ec1b1ee00ecbdcc10_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198077997505/",
"personaname": "......",
"last_login": null,
"full_history_time": "2017-05-02T19:58:24.168Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:24:29.000Z",
"last_played": 1532100347,
"win": 25,
"games": 40,
"with_win": 9,
"with_games": 13,
"against_win": 16,
"against_games": 27,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 72312627,
"name": "MATUMBAMAN",
"country_code": "",
"fantasy_role": 1,
"team_id": 2163,
"team_name": "Team Liquid",
"team_tag": "Liquid",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198032578355",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/72/72c826876f64498a0231b82cc5c2afaabf119389.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/72/72c826876f64498a0231b82cc5c2afaabf119389_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/72/72c826876f64498a0231b82cc5c2afaabf119389_full.jpg",
"profileurl": "https://steamcommunity.com/id/pjlaz/",
"personaname": "Hangry Beef",
"last_login": null,
"full_history_time": "2018-09-05T12:45:22.160Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-25T02:19:14.000Z",
"last_played": 1534990401,
"win": 21,
"games": 40,
"with_win": 0,
"with_games": 0,
"against_win": 21,
"against_games": 40,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 222189151,
"name": "小哑巴",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 3756899,
"team_name": "ZuoBaoGao",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198182454879",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/07/07be1e2c6516b0ddf6215a1d44acc3d8fb43f578.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/07/07be1e2c6516b0ddf6215a1d44acc3d8fb43f578_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/07/07be1e2c6516b0ddf6215a1d44acc3d8fb43f578_full.jpg",
"profileurl": "https://steamcommunity.com/id/hz1995/",
"personaname": "千秋雪",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T18:32:06.000Z",
"last_played": 1530850327,
"win": 21,
"games": 40,
"with_win": 3,
"with_games": 8,
"against_win": 18,
"against_games": 32,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 87278757,
"name": "Puppey",
"country_code": "",
"fantasy_role": 2,
"team_id": 1838315,
"team_name": "Team Secret",
"team_tag": "Secret",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047544485",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
"profileurl": "https://steamcommunity.com/id/puppexa/",
"personaname": "Puppey",
"last_login": null,
"full_history_time": "2018-09-01T14:05:19.978Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-24T19:07:02.000Z",
"last_played": 1526710482,
"win": 16,
"games": 39,
"with_win": 0,
"with_games": 0,
"against_win": 16,
"against_games": 39,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 255219872,
"name": "一",
"country_code": "",
"fantasy_role": 0,
"team_id": 2626685,
"team_name": "KEEN GAMING",
"team_tag": "KG",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198215485600",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c61de958a6b2fa5d8f743a72acbc8243867b2247.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c61de958a6b2fa5d8f743a72acbc8243867b2247_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c61de958a6b2fa5d8f743a72acbc8243867b2247_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198215485600/",
"personaname": "Zjk",
"last_login": null,
"full_history_time": "2018-08-08T13:09:22.250Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T13:37:40.000Z",
"last_played": 1533124806,
"win": 24,
"games": 39,
"with_win": 7,
"with_games": 14,
"against_win": 17,
"against_games": 25,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 141065684,
"name": "judy",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5804516,
"team_name": "123",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198101331412",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23461ebbdd38b03e4ebf84775ef3b1f1320a1e0c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23461ebbdd38b03e4ebf84775ef3b1f1320a1e0c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23461ebbdd38b03e4ebf84775ef3b1f1320a1e0c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198101331412/",
"personaname": "占地面积180",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T18:32:06.000Z",
"last_played": 1524487236,
"win": 18,
"games": 39,
"with_win": 5,
"with_games": 16,
"against_win": 13,
"against_games": 23,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 101908305,
"name": "Gintoki",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 2341812,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198062174033",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fe876645fd862b7428c4967200d1b505fad9edf3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fe876645fd862b7428c4967200d1b505fad9edf3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fe876645fd862b7428c4967200d1b505fad9edf3_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198062174033/",
"personaname": "Aoko",
"last_login": "2017-08-21T04:06:03.013Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-02T12:40:29.000Z",
"last_played": 1512059432,
"win": 23,
"games": 39,
"with_win": 2,
"with_games": 5,
"against_win": 21,
"against_games": 34,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 163587550,
"name": "James",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 5131954,
"team_name": "ForTheDream",
"team_tag": "FTD",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198123853278",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/02/023b9c1b6549b05d494f9d71897965cb07922ed3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/02/023b9c1b6549b05d494f9d71897965cb07922ed3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/02/023b9c1b6549b05d494f9d71897965cb07922ed3_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198123853278/",
"personaname": "爱睡觉觉 ﻬ",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:00:58.000Z",
"last_played": 1532094050,
"win": 26,
"games": 39,
"with_win": 13,
"with_games": 15,
"against_win": 13,
"against_games": 24,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 105248644,
"name": "Miracle-",
"country_code": "",
"fantasy_role": 1,
"team_id": 2163,
"team_name": "Team Liquid",
"team_tag": "Liquid",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198065514372",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5c/5c3df379d3ea564557d2c503cd225041b7babe37.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5c/5c3df379d3ea564557d2c503cd225041b7babe37_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5c/5c3df379d3ea564557d2c503cd225041b7babe37_full.jpg",
"profileurl": "https://steamcommunity.com/id/dafuqq4/",
"personaname": "Kuroky-IR",
"last_login": null,
"full_history_time": "2018-09-10T17:07:23.913Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-25T02:19:14.000Z",
"last_played": 1534990401,
"win": 20,
"games": 39,
"with_win": 0,
"with_games": 0,
"against_win": 20,
"against_games": 39,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 231622898,
"name": ".",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5945865,
"team_name": "1",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198191888626",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/42/42e314b244a6d35e56f9e313fe96bac37d3ee8e0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/42/42e314b244a6d35e56f9e313fe96bac37d3ee8e0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/42/42e314b244a6d35e56f9e313fe96bac37d3ee8e0_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198191888626/",
"personaname": "破梦",
"last_login": null,
"full_history_time": "2018-05-05T22:50:21.610Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:41:54.000Z",
"last_played": 1531045622,
"win": 20,
"games": 38,
"with_win": 6,
"with_games": 18,
"against_win": 14,
"against_games": 20,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 134683396,
"name": "puer tea",
"country_code": "",
"fantasy_role": 0,
"team_id": 5017210,
"team_name": "EHOME.immortal",
"team_tag": "EHOME.i",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198094949124",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bd/bd17093cbe2c6ec1b94fde42cb25200127a2d97d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bd/bd17093cbe2c6ec1b94fde42cb25200127a2d97d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bd/bd17093cbe2c6ec1b94fde42cb25200127a2d97d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198094949124/",
"personaname": "灵魂",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-02-07T06:00:57.000Z",
"last_played": 1511441216,
"win": 23,
"games": 38,
"with_win": 5,
"with_games": 9,
"against_win": 18,
"against_games": 29,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 253962772,
"name": "Guvara",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 4425650,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198214228500",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c52a4dfcf642497c69ddcba9812fafbd65b1bc36.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c52a4dfcf642497c69ddcba9812fafbd65b1bc36_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c52a4dfcf642497c69ddcba9812fafbd65b1bc36_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198214228500/",
"personaname": "32金开偷",
"last_login": null,
"full_history_time": "2017-04-17T00:11:19.652Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:26:16.000Z",
"last_played": 1531730934,
"win": 21,
"games": 38,
"with_win": 8,
"with_games": 14,
"against_win": 13,
"against_games": 24,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 111620041,
"name": "SumaiL",
"country_code": "",
"fantasy_role": 1,
"team_id": 39,
"team_name": "Evil Geniuses",
"team_tag": "EG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198071885769",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c43575103e5234b0882676ca8baa0e8e6bea5744.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c43575103e5234b0882676ca8baa0e8e6bea5744_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c43575103e5234b0882676ca8baa0e8e6bea5744_full.jpg",
"profileurl": "https://steamcommunity.com/id/SUMAyLLL/",
"personaname": "50PacksofCigarettes",
"last_login": null,
"full_history_time": "2018-08-28T21:58:11.480Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-25T18:58:16.000Z",
"last_played": 1535223496,
"win": 17,
"games": 38,
"with_win": 0,
"with_games": 1,
"against_win": 17,
"against_games": 37,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 240727522,
"name": "HY",
"country_code": "",
"fantasy_role": 0,
"team_id": 6121263,
"team_name": "4124",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198200993250",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/db/dbc3bddc09f449080b5a9adabc3f26a32ee7591a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/db/dbc3bddc09f449080b5a9adabc3f26a32ee7591a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/db/dbc3bddc09f449080b5a9adabc3f26a32ee7591a_full.jpg",
"profileurl": "https://steamcommunity.com/id/935006431/",
"personaname": "富察傅恒",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:11:08.000Z",
"last_played": 1532494824,
"win": 15,
"games": 38,
"with_win": 3,
"with_games": 8,
"against_win": 12,
"against_games": 30,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 119576842,
"name": "- ah fu -",
"country_code": "",
"fantasy_role": 0,
"team_id": 3331948,
"team_name": "LGD.Forever Young",
"team_tag": "LFY",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198079842570",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/14/1402c65305a70b45c8c8635806a438d7fed66303.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/14/1402c65305a70b45c8c8635806a438d7fed66303_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/14/1402c65305a70b45c8c8635806a438d7fed66303_full.jpg",
"profileurl": "https://steamcommunity.com/id/l_taufu/",
"personaname": "- ah fu -",
"last_login": null,
"full_history_time": "2018-04-09T23:16:20.666Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-05T14:39:22.000Z",
"last_played": 1524207829,
"win": 19,
"games": 38,
"with_win": 0,
"with_games": 1,
"against_win": 19,
"against_games": 37,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 135726105,
"name": "Happy",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 0,
"team_name": "Newbee.Young",
"team_tag": "Newbee.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198095991833",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/16/16ea54b414ad35288ffcbd3bdeea3a7d483fb35e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/16/16ea54b414ad35288ffcbd3bdeea3a7d483fb35e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/16/16ea54b414ad35288ffcbd3bdeea3a7d483fb35e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198095991833/",
"personaname": "QAZ",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2017-09-16T05:20:12.000Z",
"last_played": 1488194829,
"win": 29,
"games": 37,
"with_win": 5,
"with_games": 5,
"against_win": 24,
"against_games": 32,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 100881809,
"name": "121~",
"country_code": "",
"fantasy_role": 1,
"team_id": 2833354,
"team_name": "Vici Gaming Potential",
"team_tag": "VG.P",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198061147537",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/af/af49124e1345b73fe69484543664201bf263b59e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/af/af49124e1345b73fe69484543664201bf263b59e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/af/af49124e1345b73fe69484543664201bf263b59e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198061147537/",
"personaname": "..",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-07T11:03:20.000Z",
"last_played": 1536318200,
"win": 26,
"games": 37,
"with_win": 17,
"with_games": 22,
"against_win": 9,
"against_games": 15,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 103275898,
"name": "JiaJia",
"country_code": "",
"fantasy_role": 0,
"team_id": 4327349,
"team_name": "奶提儿",
"team_tag": "Liao",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198063541626",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1c/1c8df04c2d46007fcec70843ae0861b35e6caef8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1c/1c8df04c2d46007fcec70843ae0861b35e6caef8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1c/1c8df04c2d46007fcec70843ae0861b35e6caef8_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198063541626/",
"personaname": "L",
"last_login": null,
"full_history_time": "2018-09-07T17:46:30.474Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:59:02.000Z",
"last_played": 1532004172,
"win": 25,
"games": 37,
"with_win": 10,
"with_games": 13,
"against_win": 15,
"against_games": 24,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 136562659,
"name": "Eros",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 2208748,
"team_name": "Team VDuoBao",
"team_tag": "VDuoBao",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198096828387",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f02d1d7a7210171a11eec27f16da6e390f845711.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f02d1d7a7210171a11eec27f16da6e390f845711_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f02d1d7a7210171a11eec27f16da6e390f845711_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198096828387/",
"personaname": "75.",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T15:00:44.000Z",
"last_played": 1535531667,
"win": 19,
"games": 36,
"with_win": 7,
"with_games": 10,
"against_win": 12,
"against_games": 26,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 118678359,
"name": "Fei",
"country_code": "",
"fantasy_role": 0,
"team_id": 15,
"team_name": "PSG.LGD",
"team_tag": "PSG.LGD",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198078944087",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b6/b6ffb59c017b28ffcf283114834c2b02ef660e35.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b6/b6ffb59c017b28ffcf283114834c2b02ef660e35_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b6/b6ffb59c017b28ffcf283114834c2b02ef660e35_full.jpg",
"profileurl": "https://steamcommunity.com/id/hongxingdafei/",
"personaname": "Little WolfPig",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-08T11:44:39.000Z",
"last_played": 1532412761,
"win": 24,
"games": 36,
"with_win": 5,
"with_games": 8,
"against_win": 19,
"against_games": 28,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 6922000,
"name": "pieliedie",
"country_code": "",
"fantasy_role": 2,
"team_id": 350190,
"team_name": "Fnatic",
"team_tag": "Fnatic",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197967187728",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5d/5dbe3ad241f5e510ecca321a44cd79f6d10e8a57.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5d/5dbe3ad241f5e510ecca321a44cd79f6d10e8a57_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5d/5dbe3ad241f5e510ecca321a44cd79f6d10e8a57_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197967187728/",
"personaname": "small retarded fish",
"last_login": "2015-10-02T15:29:33.590Z",
"full_history_time": "2018-08-24T22:03:09.851Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-20T22:38:27.000Z",
"last_played": 1534542458,
"win": 13,
"games": 36,
"with_win": 0,
"with_games": 0,
"against_win": 13,
"against_games": 36,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 217386639,
"name": "LongGGG_",
"country_code": "",
"fantasy_role": 0,
"team_id": 5066616,
"team_name": "Team Serenity",
"team_tag": "Serenity",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198177652367",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3b/3b37c8dbc812cc4ce0ca72df749860132d89ea37.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3b/3b37c8dbc812cc4ce0ca72df749860132d89ea37_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3b/3b37c8dbc812cc4ce0ca72df749860132d89ea37_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198177652367/",
"personaname": "龙哥被砍死了",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:49:04.000Z",
"last_played": 1532440858,
"win": 22,
"games": 36,
"with_win": 9,
"with_games": 15,
"against_win": 13,
"against_games": 21,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86799300,
"name": "Fata",
"country_code": "",
"fantasy_role": 3,
"team_id": 1838315,
"team_name": "Team Secret",
"team_tag": "Secret",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047065028",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/110b57c0beabc0a4ea8fdcb5366013b91a5188b0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/110b57c0beabc0a4ea8fdcb5366013b91a5188b0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/110b57c0beabc0a4ea8fdcb5366013b91a5188b0_full.jpg",
"profileurl": "https://steamcommunity.com/id/Dota2Fata/",
"personaname": "☻☻☻☻",
"last_login": null,
"full_history_time": "2018-07-21T07:48:46.600Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-24T19:07:02.000Z",
"last_played": 1526710482,
"win": 23,
"games": 35,
"with_win": 0,
"with_games": 0,
"against_win": 23,
"against_games": 35,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 194710965,
"name": "886",
"country_code": "",
"fantasy_role": 0,
"team_id": 2322278,
"team_name": "yaobaiaaaa",
"team_tag": "niyaonib",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198154976693",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc8751684be57a5ab5680caad1c73815c19971b2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc8751684be57a5ab5680caad1c73815c19971b2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc8751684be57a5ab5680caad1c73815c19971b2_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198154976693/",
"personaname": "免费游戏!了解一哈",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-05-18T19:59:29.000Z",
"last_played": 1487345600,
"win": 24,
"games": 35,
"with_win": 7,
"with_games": 13,
"against_win": 17,
"against_games": 22,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 88470,
"name": "TZY",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 6020739,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561197960354198",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1ebd57e6f505eb7fc09e943a09a6e79fffabbbd2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1ebd57e6f505eb7fc09e943a09a6e79fffabbbd2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1ebd57e6f505eb7fc09e943a09a6e79fffabbbd2_full.jpg",
"profileurl": "https://steamcommunity.com/id/misterdurst69/",
"personaname": "斗鱼5340978.Tzy丶",
"last_login": null,
"full_history_time": "2017-03-29T12:29:31.688Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T09:00:58.000Z",
"last_played": 1532583956,
"win": 19,
"games": 35,
"with_win": 2,
"with_games": 10,
"against_win": 17,
"against_games": 25,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 113070925,
"name": "xdd",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 5,
"team_name": "Invictus Gaming",
"team_tag": "iG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198073336653",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/46/46f79231e1e7d88e1f073cf64d9162891c8e32ac.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/46/46f79231e1e7d88e1f073cf64d9162891c8e32ac_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/46/46f79231e1e7d88e1f073cf64d9162891c8e32ac_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198073336653/",
"personaname": "123.",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1449047953,
"win": 26,
"games": 35,
"with_win": 0,
"with_games": 2,
"against_win": 26,
"against_games": 33,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 109758944,
"name": " Rice.",
"country_code": "",
"fantasy_role": 1,
"team_id": 0,
"team_name": "EHOME.LUMINOUS",
"team_tag": "EHOME.L",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198070024672",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/52/52168bbe7f40e308ba00a6b07faabc437227c6d4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/52/52168bbe7f40e308ba00a6b07faabc437227c6d4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/52/52168bbe7f40e308ba00a6b07faabc437227c6d4_full.jpg",
"profileurl": "https://steamcommunity.com/id/11223365464981/",
"personaname": "结棍。",
"last_login": "2016-09-03T06:07:28.618Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:17:36.000Z",
"last_played": 1523710606,
"win": 22,
"games": 35,
"with_win": 2,
"with_games": 3,
"against_win": 20,
"against_games": 32,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 51684352,
"name": "LuLu^^",
"country_code": "",
"fantasy_role": 0,
"team_id": 6098336,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198011950080",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bb/bbbddec43cdeebea9596dac2bd0201565cce6530.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bb/bbbddec43cdeebea9596dac2bd0201565cce6530_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bb/bbbddec43cdeebea9596dac2bd0201565cce6530_full.jpg",
"profileurl": "https://steamcommunity.com/id/lulushow/",
"personaname": "LuLu~",
"last_login": "2017-03-21T07:42:39.881Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-08-08T11:13:21.000Z",
"last_played": 1507557614,
"win": 19,
"games": 34,
"with_win": 4,
"with_games": 9,
"against_win": 15,
"against_games": 25,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 139822354,
"name": "Setsu",
"country_code": "",
"fantasy_role": 0,
"team_id": 4425650,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198100088082",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/0672d9ffa9004fe21997dd9ae785e14310cc1534.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/0672d9ffa9004fe21997dd9ae785e14310cc1534_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/0672d9ffa9004fe21997dd9ae785e14310cc1534_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198100088082/",
"personaname": "奥里里",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T12:45:58.000Z",
"last_played": 1532583956,
"win": 17,
"games": 34,
"with_win": 6,
"with_games": 10,
"against_win": 11,
"against_games": 24,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 102525542,
"name": "Reisen",
"country_code": "",
"fantasy_role": 0,
"team_id": 5017210,
"team_name": "EHOME.immortal",
"team_tag": "EHOME.i",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198062791270",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f1eb6d9969123bf5ed013a4a67fe475fd0a481e2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f1eb6d9969123bf5ed013a4a67fe475fd0a481e2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f1eb6d9969123bf5ed013a4a67fe475fd0a481e2_full.jpg",
"profileurl": "https://steamcommunity.com/id/Inabaking/",
"personaname": "Wild FloweR",
"last_login": "2017-06-23T16:58:09.407Z",
"full_history_time": "2017-04-09T13:32:13.548Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T21:13:50.000Z",
"last_played": 1523882141,
"win": 15,
"games": 34,
"with_win": 4,
"with_games": 12,
"against_win": 11,
"against_games": 22,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 277742444,
"name": "Eve",
"country_code": "",
"fantasy_role": 1,
"team_id": 3258149,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198238008172",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/02/02ed3e04b54f63eb3c1a2835240ad8188d6721cb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/02/02ed3e04b54f63eb3c1a2835240ad8188d6721cb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/02/02ed3e04b54f63eb3c1a2835240ad8188d6721cb_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198238008172/",
"personaname": "Eve",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-07-08T06:43:57.000Z",
"last_played": 1530447121,
"win": 20,
"games": 34,
"with_win": 4,
"with_games": 8,
"against_win": 16,
"against_games": 26,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 248941611,
"name": "loveuloveme",
"country_code": "",
"fantasy_role": 1,
"team_id": 5131954,
"team_name": "ForTheDream",
"team_tag": "FTD",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198209207339",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8a/8a1d6850696a154123a4413287ab7a6b2b55c864.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8a/8a1d6850696a154123a4413287ab7a6b2b55c864_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8a/8a1d6850696a154123a4413287ab7a6b2b55c864_full.jpg",
"profileurl": "https://steamcommunity.com/id/664936721/",
"personaname": "Combo meal",
"last_login": null,
"full_history_time": "2018-03-05T11:31:13.734Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:50:44.000Z",
"last_played": 1527602515,
"win": 18,
"games": 34,
"with_win": 6,
"with_games": 10,
"against_win": 12,
"against_games": 24,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 73562326,
"name": "zai",
"country_code": "",
"fantasy_role": 2,
"team_id": 5026801,
"team_name": "OpTic Gaming",
"team_tag": "OpTic",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198033828054",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/6778c7abe37aa1a3909f25e140d6a580b0e07866.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/6778c7abe37aa1a3909f25e140d6a580b0e07866_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/6778c7abe37aa1a3909f25e140d6a580b0e07866_full.jpg",
"profileurl": "https://steamcommunity.com/id/zai46/",
"personaname": "sugon",
"last_login": null,
"full_history_time": "2018-09-08T10:19:48.287Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "SE",
"last_match_time": "2018-08-23T19:50:43.000Z",
"last_played": 1528007711,
"win": 15,
"games": 34,
"with_win": 0,
"with_games": 0,
"against_win": 15,
"against_games": 34,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 197849259,
"name": "mianmian",
"country_code": "",
"fantasy_role": 0,
"team_id": 5066616,
"team_name": "Team Serenity",
"team_tag": "Serenity",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198158114987",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/56/56cc54ca673005a0c43d00db5e2d36626d237397.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/56/56cc54ca673005a0c43d00db5e2d36626d237397_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/56/56cc54ca673005a0c43d00db5e2d36626d237397_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198158114987/",
"personaname": "肆无忌惮",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-28T09:07:12.000Z",
"last_played": 1520954884,
"win": 21,
"games": 33,
"with_win": 11,
"with_games": 18,
"against_win": 10,
"against_games": 15,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 169672157,
"name": "strawberry",
"country_code": "",
"fantasy_role": 0,
"team_id": 5035956,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198129937885",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/df/df2d088c76c3585709fc74f2ecec7e7c000cf42c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/df/df2d088c76c3585709fc74f2ecec7e7c000cf42c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/df/df2d088c76c3585709fc74f2ecec7e7c000cf42c_full.jpg",
"profileurl": "https://steamcommunity.com/id/169672157/",
"personaname": "草莓",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T08:25:58.000Z",
"last_played": 1525889601,
"win": 20,
"games": 33,
"with_win": 7,
"with_games": 12,
"against_win": 13,
"against_games": 21,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 101356886,
"name": "Gh",
"country_code": "",
"fantasy_role": 2,
"team_id": 2163,
"team_name": "Team Liquid",
"team_tag": "Liquid",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198061622614",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/57/57a38405ca614f3beb64444d2cfb46dc0e0ceb47.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/57/57a38405ca614f3beb64444d2cfb46dc0e0ceb47_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/57/57a38405ca614f3beb64444d2cfb46dc0e0ceb47_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198061622614/",
"personaname": "Gh",
"last_login": null,
"full_history_time": "2018-08-16T05:33:43.250Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T18:15:48.000Z",
"last_played": 1534990401,
"win": 16,
"games": 33,
"with_win": 0,
"with_games": 0,
"against_win": 16,
"against_games": 33,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 88719902,
"name": "bOne7",
"country_code": "ro",
"fantasy_role": 1,
"team_id": 59,
"team_name": "Kaipi",
"team_tag": "KP",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198048985630",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/51/5150d6ca22f370c64d536ae8c24b947dd228de40.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/51/5150d6ca22f370c64d536ae8c24b947dd228de40_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/51/5150d6ca22f370c64d536ae8c24b947dd228de40_full.jpg",
"profileurl": "https://steamcommunity.com/id/boneseven/",
"personaname": "Congratulations",
"last_login": "2016-10-30T23:52:58.489Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "RO",
"last_match_time": "2018-09-10T19:42:51.000Z",
"last_played": 1520947138,
"win": 19,
"games": 33,
"with_win": 1,
"with_games": 3,
"against_win": 18,
"against_games": 30,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 108221389,
"name": "骑牛的",
"country_code": "",
"fantasy_role": 1,
"team_id": 4996415,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198068487117",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/89/89437c1af3ad4fc3c5a7d35b683249958513492e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/89/89437c1af3ad4fc3c5a7d35b683249958513492e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/89/89437c1af3ad4fc3c5a7d35b683249958513492e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198068487117/",
"personaname": "暴戾",
"last_login": null,
"full_history_time": "2017-07-14T23:31:00.109Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T13:09:21.000Z",
"last_played": 1533121410,
"win": 18,
"games": 32,
"with_win": 6,
"with_games": 9,
"against_win": 12,
"against_games": 23,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 124013062,
"name": "๓仙女静๓",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5235105,
"team_name": "Fly",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198084278790",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6e/6e158fa2074e96ae01332f0692563fcd180a5c07.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6e/6e158fa2074e96ae01332f0692563fcd180a5c07_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6e/6e158fa2074e96ae01332f0692563fcd180a5c07_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198084278790/",
"personaname": "Cassiopeia♥",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-29T22:45:53.000Z",
"last_played": 1489504590,
"win": 23,
"games": 32,
"with_win": 7,
"with_games": 10,
"against_win": 16,
"against_games": 22,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 113175114,
"name": "-_-!",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "Newbee",
"team_tag": "Newbee",
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198073440842",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/959f2bf34e664a56803490f190f9056fc89dfca4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/959f2bf34e664a56803490f190f9056fc89dfca4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/959f2bf34e664a56803490f190f9056fc89dfca4_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198073440842/",
"personaname": "小钵子甜酒糯米粉子",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-07-28T18:01:00.000Z",
"last_played": 1451022565,
"win": 19,
"games": 32,
"with_win": 6,
"with_games": 8,
"against_win": 13,
"against_games": 24,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 137273293,
"name": "RAY",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "Team VDuoBao",
"team_tag": "VDuoBao",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198097539021",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0e/0e264ff6242ee52479f23a0260f62a7cb53df3ce.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0e/0e264ff6242ee52479f23a0260f62a7cb53df3ce_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0e/0e264ff6242ee52479f23a0260f62a7cb53df3ce_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198097539021/",
"personaname": "{R}ay!",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-08T08:36:51.000Z",
"last_played": 1492356919,
"win": 19,
"games": 32,
"with_win": 5,
"with_games": 8,
"against_win": 14,
"against_games": 24,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 145550466,
"name": "DuBu",
"country_code": "",
"fantasy_role": 0,
"team_id": 5051649,
"team_name": "Immortals",
"team_tag": "IMT",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198105816194",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/73/73d3aa1a5dea2bf56f0fca758ed9b417b3bfcbb8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/73/73d3aa1a5dea2bf56f0fca758ed9b417b3bfcbb8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/73/73d3aa1a5dea2bf56f0fca758ed9b417b3bfcbb8_full.jpg",
"profileurl": "https://steamcommunity.com/id/dubudota/",
"personaname": "DuBu",
"last_login": null,
"full_history_time": "2018-01-24T05:36:11.076Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "KR",
"last_match_time": "2018-09-10T12:49:12.000Z",
"last_played": 1534184106,
"win": 19,
"games": 32,
"with_win": 6,
"with_games": 8,
"against_win": 13,
"against_games": 24,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89230834,
"name": "Kingj",
"country_code": "",
"fantasy_role": 2,
"team_id": 0,
"team_name": "FTD club a",
"team_tag": "FTD.A",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198049496562",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/21/21f1c804fc5070c175a8521d03550e9f261b64ab.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/21/21f1c804fc5070c175a8521d03550e9f261b64ab_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/21/21f1c804fc5070c175a8521d03550e9f261b64ab_full.jpg",
"profileurl": "https://steamcommunity.com/id/KINGJ1988/",
"personaname": "Ringo丶Winbee",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1483611224,
"win": 20,
"games": 32,
"with_win": 3,
"with_games": 5,
"against_win": 17,
"against_games": 27,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 311360822,
"name": "ana",
"country_code": "",
"fantasy_role": 1,
"team_id": 2586976,
"team_name": "OG",
"team_tag": "OG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198271626550",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1e99c3b7e85333673a6b1645abeb5fd1a8a968e5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1e99c3b7e85333673a6b1645abeb5fd1a8a968e5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1e99c3b7e85333673a6b1645abeb5fd1a8a968e5_full.jpg",
"profileurl": "https://steamcommunity.com/id/ana_than/",
"personaname": "beemaster999",
"last_login": "2017-09-29T18:09:00.352Z",
"full_history_time": "2018-09-09T19:39:19.449Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "AU",
"last_match_time": "2018-09-10T15:28:17.000Z",
"last_played": 1535249730,
"win": 14,
"games": 31,
"with_win": 1,
"with_games": 2,
"against_win": 13,
"against_games": 29,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 173812218,
"name": "Robin",
"country_code": "",
"fantasy_role": 0,
"team_id": 5017210,
"team_name": "EHOME.immortal",
"team_tag": "EHOME.i",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198134077946",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c1/c1d002d7f0f4f79a994a4f10b03efb05488bf1f1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c1/c1d002d7f0f4f79a994a4f10b03efb05488bf1f1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c1/c1d002d7f0f4f79a994a4f10b03efb05488bf1f1_full.jpg",
"profileurl": "https://steamcommunity.com/id/ripuck/",
"personaname": "ROBIN",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:36:46.000Z",
"last_played": 1536585193,
"win": 22,
"games": 31,
"with_win": 11,
"with_games": 14,
"against_win": 11,
"against_games": 17,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 112960848,
"name": "Ezio",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198073226576",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/69/69f10c77107b529f7a2800dab70000350cf7fa60.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/69/69f10c77107b529f7a2800dab70000350cf7fa60_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/69/69f10c77107b529f7a2800dab70000350cf7fa60_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198073226576/",
"personaname": "白给",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1436201153,
"win": 23,
"games": 31,
"with_win": 10,
"with_games": 15,
"against_win": 13,
"against_games": 16,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 87285329,
"name": "Pajkatt",
"country_code": "",
"fantasy_role": 1,
"team_id": 5026801,
"team_name": "OpTic Gaming",
"team_tag": "OpTic",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047551057",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5e/5e78dc542cb4b25190b0e4e04d33dd1a09fec3bd.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5e/5e78dc542cb4b25190b0e4e04d33dd1a09fec3bd_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5e/5e78dc542cb4b25190b0e4e04d33dd1a09fec3bd_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047551057/",
"personaname": "trash player",
"last_login": null,
"full_history_time": "2018-05-11T00:08:07.280Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-24T03:36:52.000Z",
"last_played": 1528007711,
"win": 18,
"games": 31,
"with_win": 0,
"with_games": 0,
"against_win": 18,
"against_games": 31,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86861614,
"name": "Mrrr丶",
"country_code": "",
"fantasy_role": 0,
"team_id": 5036221,
"team_name": "Sun Gaming",
"team_tag": "Sun",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047127342",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0f/0f5698529dd7ce79bdec11731dec620395ea494d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0f/0f5698529dd7ce79bdec11731dec620395ea494d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0f/0f5698529dd7ce79bdec11731dec620395ea494d_full.jpg",
"profileurl": "https://steamcommunity.com/id/eric8848211/",
"personaname": "星球坠落",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-07T17:41:13.000Z",
"last_played": 1523638596,
"win": 23,
"games": 30,
"with_win": 4,
"with_games": 4,
"against_win": 19,
"against_games": 26,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 114193693,
"name": " Sgr",
"country_code": "",
"fantasy_role": 0,
"team_id": 2643401,
"team_name": "CDEC.Avenger",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198074459421",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c3/c35da601984569bf3edb5c0e303fb313771d0b73.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c3/c35da601984569bf3edb5c0e303fb313771d0b73_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c3/c35da601984569bf3edb5c0e303fb313771d0b73_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198074459421/",
"personaname": "Akira",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T16:49:04.000Z",
"last_played": 1532163631,
"win": 17,
"games": 30,
"with_win": 9,
"with_games": 14,
"against_win": 8,
"against_games": 16,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 131766964,
"name": "Protoss",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 2634810,
"team_name": "KG.Luminous",
"team_tag": "KG.L",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198092032692",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/90c87effac7f12a1e23840b0bf8f56c14bff3ae2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/90c87effac7f12a1e23840b0bf8f56c14bff3ae2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/90c87effac7f12a1e23840b0bf8f56c14bff3ae2_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198092032692/",
"personaname": "使徒",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T13:28:19.000Z",
"last_played": 1532755534,
"win": 19,
"games": 30,
"with_win": 9,
"with_games": 12,
"against_win": 10,
"against_games": 18,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 92590479,
"name": "Polaris",
"country_code": "",
"fantasy_role": 0,
"team_id": 4288603,
"team_name": "Rock.Young",
"team_tag": "Rock.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198052856207",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c55a39e11c75d625a1ca593699280b5c50229d97.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c55a39e11c75d625a1ca593699280b5c50229d97_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c55a39e11c75d625a1ca593699280b5c50229d97_full.jpg",
"profileurl": "https://steamcommunity.com/id/92590479/",
"personaname": "shafufu",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:02:56.000Z",
"last_played": 1523705996,
"win": 16,
"games": 30,
"with_win": 4,
"with_games": 9,
"against_win": 12,
"against_games": 21,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 189398048,
"name": "swtte",
"country_code": "",
"fantasy_role": 0,
"team_id": 3346336,
"team_name": "LYG.Gaming",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198149663776",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f84f6aa50f065bf8f5c5e10425c5fef12ee365e7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f84f6aa50f065bf8f5c5e10425c5fef12ee365e7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f84f6aa50f065bf8f5c5e10425c5fef12ee365e7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198149663776/",
"personaname": "Sweet๑",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:28:04.000Z",
"last_played": 1523638596,
"win": 18,
"games": 29,
"with_win": 9,
"with_games": 15,
"against_win": 9,
"against_games": 14,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 116852311,
"name": "Hitagi",
"country_code": "",
"fantasy_role": 0,
"team_id": 4288603,
"team_name": "Rock.Young",
"team_tag": "Rock.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198077118039",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b2e1da964f9c6bfa76793a11d1e13980070789ef.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b2e1da964f9c6bfa76793a11d1e13980070789ef_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b2e1da964f9c6bfa76793a11d1e13980070789ef_full.jpg",
"profileurl": "https://steamcommunity.com/id/cmt1992313/",
"personaname": "fdsfdsjfj",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-08-04T09:22:45.000Z",
"last_played": 1496679900,
"win": 15,
"games": 29,
"with_win": 2,
"with_games": 2,
"against_win": 13,
"against_games": 27,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 134679634,
"name": "God_7",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 3929023,
"team_name": "7",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198094945362",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b236c7dfcd23b129541c9e43466649621b7942db.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b236c7dfcd23b129541c9e43466649621b7942db_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b236c7dfcd23b129541c9e43466649621b7942db_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198094945362/",
"personaname": "嘎德七",
"last_login": null,
"full_history_time": "2017-08-25T04:55:06.882Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-06T16:39:46.000Z",
"last_played": 1511202523,
"win": 17,
"games": 29,
"with_win": 4,
"with_games": 10,
"against_win": 13,
"against_games": 19,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 26771994,
"name": "JerAx",
"country_code": "",
"fantasy_role": 2,
"team_id": 2586976,
"team_name": "OG",
"team_tag": "OG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197987037722",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b55073049b162e8a9617e1c20bf30d0b71766443.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b55073049b162e8a9617e1c20bf30d0b71766443_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b55073049b162e8a9617e1c20bf30d0b71766443_full.jpg",
"profileurl": "https://steamcommunity.com/id/JerAx123/",
"personaname": "K1ngOfRiceGG",
"last_login": null,
"full_history_time": "2018-09-01T14:08:21.504Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "FI",
"last_match_time": "2018-08-26T02:15:30.000Z",
"last_played": 1535249730,
"win": 13,
"games": 28,
"with_win": 0,
"with_games": 0,
"against_win": 13,
"against_games": 28,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86725175,
"name": "Resolut1on",
"country_code": "",
"fantasy_role": 1,
"team_id": 5228654,
"team_name": "VGJ Storm",
"team_tag": "VGJ.Storm",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198046990903",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c950ccf7cf3cc7c813ec54c6c5700d3854419cb8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c950ccf7cf3cc7c813ec54c6c5700d3854419cb8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c950ccf7cf3cc7c813ec54c6c5700d3854419cb8_full.jpg",
"profileurl": "https://steamcommunity.com/id/resolut1on/",
"personaname": "LeBron James",
"last_login": null,
"full_history_time": "2018-09-01T14:19:42.333Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-23T22:06:35.000Z",
"last_played": 1526816781,
"win": 15,
"games": 28,
"with_win": 0,
"with_games": 0,
"against_win": 15,
"against_games": 28,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 205239629,
"name": "SangSang",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "Team Max",
"team_tag": "MAX",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198165505357",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f6/f6326e481469927a3d0a8d1e3aea143fcc652aad.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f6/f6326e481469927a3d0a8d1e3aea143fcc652aad_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f6/f6326e481469927a3d0a8d1e3aea143fcc652aad_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198165505357/",
"personaname": "Isaac·Foster",
"last_login": null,
"full_history_time": "2018-05-21T06:14:14.436Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-07-29T11:00:01.000Z",
"last_played": 1532094050,
"win": 16,
"games": 28,
"with_win": 3,
"with_games": 8,
"against_win": 13,
"against_games": 20,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 133705802,
"name": "XiaoXiaoSala",
"country_code": "",
"fantasy_role": 0,
"team_id": 1951061,
"team_name": "Newbee.Young",
"team_tag": "Newbee.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198093971530",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/240d791e46a07c89ff6966e4ac36c5dcdeb6c2f2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/240d791e46a07c89ff6966e4ac36c5dcdeb6c2f2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/240d791e46a07c89ff6966e4ac36c5dcdeb6c2f2_full.jpg",
"profileurl": "https://steamcommunity.com/id/XiaoXiaoSala/",
"personaname": "╮(╯▽╰)╭",
"last_login": null,
"full_history_time": "2018-05-26T12:28:20.151Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T17:39:46.000Z",
"last_played": 1524063136,
"win": 15,
"games": 27,
"with_win": 9,
"with_games": 16,
"against_win": 6,
"against_games": 11,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 93616251,
"name": "Ohaiyo",
"country_code": "",
"fantasy_role": 0,
"team_id": 3331948,
"team_name": "LGD.Forever Young",
"team_tag": "LFY",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198053881979",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/958babbb8d5497b4aa4cdcf06d1c849e1842976d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/958babbb8d5497b4aa4cdcf06d1c849e1842976d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/958babbb8d5497b4aa4cdcf06d1c849e1842976d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198053881979/",
"personaname": "唐三`",
"last_login": null,
"full_history_time": "2018-04-09T23:15:49.712Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "MY",
"last_match_time": "2018-09-10T13:39:34.000Z",
"last_played": 1513376592,
"win": 12,
"games": 27,
"with_win": 0,
"with_games": 0,
"against_win": 12,
"against_games": 27,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 102024536,
"name": "楚源Cy",
"country_code": "",
"fantasy_role": 0,
"team_id": 1983234,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198062290264",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3a2fc106cd139bda8c806edf04e6ff2e255e082.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3a2fc106cd139bda8c806edf04e6ff2e255e082_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3a2fc106cd139bda8c806edf04e6ff2e255e082_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198062290264/",
"personaname": "..",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-04T08:17:38.000Z",
"last_played": 1521036333,
"win": 19,
"games": 27,
"with_win": 8,
"with_games": 11,
"against_win": 11,
"against_games": 16,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 168829831,
"name": "Llenn",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 0,
"team_name": "Echo Gaming",
"team_tag": "Echo",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198129095559",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/38/38d36fd33853c4f0e3e2f892a9d8b1ce75848396.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/38/38d36fd33853c4f0e3e2f892a9d8b1ce75848396_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/38/38d36fd33853c4f0e3e2f892a9d8b1ce75848396_full.jpg",
"profileurl": "https://steamcommunity.com/id/teamever5/",
"personaname": "Llenn",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:51:05.000Z",
"last_played": 1532179136,
"win": 14,
"games": 26,
"with_win": 6,
"with_games": 14,
"against_win": 8,
"against_games": 12,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 397462905,
"name": "dark",
"country_code": "",
"fantasy_role": 0,
"team_id": 2626685,
"team_name": "KEEN GAMING",
"team_tag": "KG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198357728633",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/22/22fd8ccceeed297f26c432f96b70de2bdcec7985.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/22/22fd8ccceeed297f26c432f96b70de2bdcec7985_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/22/22fd8ccceeed297f26c432f96b70de2bdcec7985_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198357728633/",
"personaname": "qwer",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:35:12.000Z",
"last_played": 1524461723,
"win": 14,
"games": 26,
"with_win": 3,
"with_games": 7,
"against_win": 11,
"against_games": 19,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 102020930,
"name": "JoHnNy",
"country_code": "",
"fantasy_role": 0,
"team_id": 5017210,
"team_name": "EHOME.immortal",
"team_tag": "EHOME.i",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198062286658",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d3/d3c72f23838590ae7c4cf6d30614e7e013580780.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d3/d3c72f23838590ae7c4cf6d30614e7e013580780_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d3/d3c72f23838590ae7c4cf6d30614e7e013580780_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198062286658/",
"personaname": "JoHnNyʕ•̫͡•ʔ ♥",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:34:46.000Z",
"last_played": 1522520238,
"win": 20,
"games": 26,
"with_win": 1,
"with_games": 3,
"against_win": 19,
"against_games": 23,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 114787051,
"name": "YRG",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 4997871,
"team_name": "Team Waooo",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198075052779",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a2c3a2140e6985485054ad93b4b12ca95caeaa6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a2c3a2140e6985485054ad93b4b12ca95caeaa6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a2c3a2140e6985485054ad93b4b12ca95caeaa6_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198075052779/",
"personaname": "YRG",
"last_login": null,
"full_history_time": "2018-08-28T12:36:16.715Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:24:29.000Z",
"last_played": 1533118938,
"win": 13,
"games": 26,
"with_win": 6,
"with_games": 15,
"against_win": 7,
"against_games": 11,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 91443418,
"name": "ninjaboogie",
"country_code": "",
"fantasy_role": 2,
"team_id": 543897,
"team_name": "Mineski",
"team_tag": "Mski",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198051709146",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/98/98cb09292df090ee4b96383a7cfbf9f55ef9fcdc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/98/98cb09292df090ee4b96383a7cfbf9f55ef9fcdc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/98/98cb09292df090ee4b96383a7cfbf9f55ef9fcdc_full.jpg",
"profileurl": "https://steamcommunity.com/id/ninjaboogie/",
"personaname": "nb",
"last_login": "2016-04-20T17:22:54.367Z",
"full_history_time": "2018-06-01T23:41:15.155Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "US",
"last_match_time": "2018-08-22T03:14:21.000Z",
"last_played": 1534619764,
"win": 13,
"games": 26,
"with_win": 0,
"with_games": 0,
"against_win": 13,
"against_games": 26,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 133084797,
"name": "ddr",
"country_code": "",
"fantasy_role": 0,
"team_id": 3349045,
"team_name": "Σ(っ°Д°;)っ",
"team_tag": "Σ(っ°Д°;)っ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198093350525",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d6bbbdebdafd4c30c3d99e1f263b84cbcfe11d05.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d6bbbdebdafd4c30c3d99e1f263b84cbcfe11d05_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d6bbbdebdafd4c30c3d99e1f263b84cbcfe11d05_full.jpg",
"profileurl": "https://steamcommunity.com/id/ruanddr/",
"personaname": "NO十三",
"last_login": null,
"full_history_time": "2018-04-15T18:07:04.173Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T08:25:58.000Z",
"last_played": 1521881420,
"win": 20,
"games": 26,
"with_win": 6,
"with_games": 7,
"against_win": 14,
"against_games": 19,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 103729052,
"name": "876",
"country_code": "",
"fantasy_role": 0,
"team_id": 1983234,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198063994780",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ec/ec543af54cd6d0a7750cf710926790ef83bb9f80.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ec/ec543af54cd6d0a7750cf710926790ef83bb9f80_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ec/ec543af54cd6d0a7750cf710926790ef83bb9f80_full.jpg",
"profileurl": "https://steamcommunity.com/id/MK876/",
"personaname": "你可太棒了",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-05T13:24:09.000Z",
"last_played": 1510489111,
"win": 19,
"games": 26,
"with_win": 6,
"with_games": 6,
"against_win": 13,
"against_games": 20,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89296893,
"name": "柚子",
"country_code": "",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Newbee.Young",
"team_tag": "Newbee.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198049562621",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17fa58024390d41081a4bfb8e6d1abcaccc6abb5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17fa58024390d41081a4bfb8e6d1abcaccc6abb5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17fa58024390d41081a4bfb8e6d1abcaccc6abb5_full.jpg",
"profileurl": "https://steamcommunity.com/id/neo87/",
"personaname": "Lu.",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-01-29T08:58:40.000Z",
"last_played": 1467697544,
"win": 19,
"games": 26,
"with_win": 0,
"with_games": 0,
"against_win": 19,
"against_games": 26,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 136187546,
"name": "方云华",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 5948438,
"team_name": "we are young",
"team_tag": "WAY",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198096453274",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ea/ea01f0f13cd55102f673ddf8b49d5ef8d5f0c222.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ea/ea01f0f13cd55102f673ddf8b49d5ef8d5f0c222_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ea/ea01f0f13cd55102f673ddf8b49d5ef8d5f0c222_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198096453274/",
"personaname": "Addict.",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:49:49.000Z",
"last_played": 1532440858,
"win": 21,
"games": 26,
"with_win": 3,
"with_games": 3,
"against_win": 18,
"against_games": 23,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 25907144,
"name": "Cr1t-",
"country_code": "",
"fantasy_role": 2,
"team_id": 39,
"team_name": "Evil Geniuses",
"team_tag": "EG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197986172872",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a5/a5c9ddf0709d9269e2a71468645a7ba0c3186a8f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a5/a5c9ddf0709d9269e2a71468645a7ba0c3186a8f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a5/a5c9ddf0709d9269e2a71468645a7ba0c3186a8f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197986172872/",
"personaname": "13",
"last_login": "2015-09-21T15:40:50.644Z",
"full_history_time": "2018-05-22T20:34:47.387Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-09T22:49:16.000Z",
"last_played": 1535223496,
"win": 18,
"games": 25,
"with_win": 0,
"with_games": 0,
"against_win": 18,
"against_games": 25,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 134903105,
"name": "老A",
"country_code": "",
"fantasy_role": 0,
"team_id": 1983234,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198095168833",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d5/d5d281ba06e769bc93bf9b062912ea4ebe2e4000.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d5/d5d281ba06e769bc93bf9b062912ea4ebe2e4000_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d5/d5d281ba06e769bc93bf9b062912ea4ebe2e4000_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198095168833/",
"personaname": "寻找激情",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-01-08T11:15:50.000Z",
"last_played": 1512398119,
"win": 21,
"games": 25,
"with_win": 8,
"with_games": 11,
"against_win": 13,
"against_games": 14,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 120374476,
"name": "DXM",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5259051,
"team_name": "Aurora Esports club",
"team_tag": "AE",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198080640204",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/86/865d28b3cc42fe3a723774adee9b4e118d2eee0a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/86/865d28b3cc42fe3a723774adee9b4e118d2eee0a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/86/865d28b3cc42fe3a723774adee9b4e118d2eee0a_full.jpg",
"profileurl": "https://steamcommunity.com/id/398907848/",
"personaname": "DXMaw",
"last_login": null,
"full_history_time": "2016-09-04T02:10:49.801Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-08-07T02:32:49.000Z",
"last_played": 1531028644,
"win": 18,
"games": 25,
"with_win": 5,
"with_games": 6,
"against_win": 13,
"against_games": 19,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 149970561,
"name": "ZP",
"country_code": "",
"fantasy_role": 0,
"team_id": 6151727,
"team_name": "123",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198110236289",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/6789fb71938ee5030077267f2b6151ad32589deb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/6789fb71938ee5030077267f2b6151ad32589deb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/67/6789fb71938ee5030077267f2b6151ad32589deb_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198110236289/",
"personaname": "很菜",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T16:10:11.000Z",
"last_played": 1511202523,
"win": 18,
"games": 25,
"with_win": 3,
"with_games": 4,
"against_win": 15,
"against_games": 21,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 101450083,
"name": "MP",
"country_code": "",
"fantasy_role": 0,
"team_id": 5051649,
"team_name": "Immortals",
"team_tag": "IMT",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198061715811",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4b/4b99446d63b9f69ae6de78f8ce16b1d7d45f3386.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4b/4b99446d63b9f69ae6de78f8ce16b1d7d45f3386_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4b/4b99446d63b9f69ae6de78f8ce16b1d7d45f3386_full.jpg",
"profileurl": "https://steamcommunity.com/id/FiReBaT_/",
"personaname": "rehab",
"last_login": "2016-04-09T14:00:18.184Z",
"full_history_time": "2018-02-28T20:02:01.584Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "KR",
"last_match_time": "2018-09-10T15:07:39.000Z",
"last_played": 1508584750,
"win": 12,
"games": 24,
"with_win": 2,
"with_games": 3,
"against_win": 10,
"against_games": 21,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89269794,
"name": "Silent",
"country_code": "",
"fantasy_role": 1,
"team_id": 5229127,
"team_name": "Winstrike",
"team_tag": "Winstrike",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198049535522",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0e/0e068dcca1fa0ee1329ac6b00b51d36d7666e23f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0e/0e068dcca1fa0ee1329ac6b00b51d36d7666e23f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0e/0e068dcca1fa0ee1329ac6b00b51d36d7666e23f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049535522/",
"personaname": "acc",
"last_login": null,
"full_history_time": "2018-09-01T22:30:11.883Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-08-22T18:39:39.000Z",
"last_played": 1534447604,
"win": 13,
"games": 23,
"with_win": 0,
"with_games": 0,
"against_win": 13,
"against_games": 23,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 132851371,
"name": "RAMZES666",
"country_code": "",
"fantasy_role": 1,
"team_id": 1883502,
"team_name": "Virtus.pro",
"team_tag": "VP",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198093117099",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/56/5669747a23a87f5f8c8999fe4a782db851bccf28.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/56/5669747a23a87f5f8c8999fe4a782db851bccf28_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/56/5669747a23a87f5f8c8999fe4a782db851bccf28_full.jpg",
"profileurl": "https://steamcommunity.com/id/dotagop/",
"personaname": "LOSER",
"last_login": null,
"full_history_time": "2018-09-02T13:23:31.039Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T15:27:42.000Z",
"last_played": 1534800190,
"win": 13,
"games": 23,
"with_win": 0,
"with_games": 2,
"against_win": 13,
"against_games": 21,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 166458146,
"name": "晴",
"country_code": "",
"fantasy_role": 0,
"team_id": 2833354,
"team_name": "Vici Gaming Potential",
"team_tag": "VG.P",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198126723874",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/92/92f4908d213188ff96378b16bbd6f3f9f3543ece.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/92/92f4908d213188ff96378b16bbd6f3f9f3543ece_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/92/92f4908d213188ff96378b16bbd6f3f9f3543ece_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198126723874/",
"personaname": "清净",
"last_login": null,
"full_history_time": "2018-08-07T17:24:53.978Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-07T13:21:59.000Z",
"last_played": 1527777300,
"win": 16,
"games": 23,
"with_win": 3,
"with_games": 3,
"against_win": 13,
"against_games": 20,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 220202887,
"name": "Mt",
"country_code": "",
"fantasy_role": 0,
"team_id": 2434570,
"team_name": "Tun.",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198180468615",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/00/00f5094fedae0da72096e4e21f3cac5f9cd42183.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/00/00f5094fedae0da72096e4e21f3cac5f9cd42183_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/00/00f5094fedae0da72096e4e21f3cac5f9cd42183_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198180468615/",
"personaname": "谋",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T05:32:52.000Z",
"last_played": 1530972790,
"win": 9,
"games": 23,
"with_win": 2,
"with_games": 9,
"against_win": 7,
"against_games": 14,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 100471531,
"name": "Jabz",
"country_code": "",
"fantasy_role": 2,
"team_id": 543897,
"team_name": "Mineski",
"team_tag": "Mski",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198060737259",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/68/686e2e15f4390d064be37dd4bce10b5dc0a018ae.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/68/686e2e15f4390d064be37dd4bce10b5dc0a018ae_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/68/686e2e15f4390d064be37dd4bce10b5dc0a018ae_full.jpg",
"profileurl": "https://steamcommunity.com/id/jabz_/",
"personaname": "?",
"last_login": null,
"full_history_time": "2018-09-07T10:24:25.102Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "TH",
"last_match_time": "2018-08-22T03:14:21.000Z",
"last_played": 1534619764,
"win": 10,
"games": 23,
"with_win": 1,
"with_games": 1,
"against_win": 9,
"against_games": 22,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89249333,
"name": "Net",
"country_code": "my",
"fantasy_role": 2,
"team_id": 5896956,
"team_name": "Battle Arena Elites",
"team_tag": "B.A.E",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198049515061",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/88/88e178d2bc942c5274554eb4a9f015d1fe4f5902.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/88/88e178d2bc942c5274554eb4a9f015d1fe4f5902_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/88/88e178d2bc942c5274554eb4a9f015d1fe4f5902_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049515061/",
"personaname": "總要飛",
"last_login": null,
"full_history_time": "2017-03-04T15:15:41.781Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "JP",
"last_match_time": "2018-08-27T15:27:21.000Z",
"last_played": 1478609382,
"win": 12,
"games": 23,
"with_win": 0,
"with_games": 0,
"against_win": 12,
"against_games": 23,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 101495620,
"name": "Loda",
"country_code": "",
"fantasy_role": 0,
"team_id": 111474,
"team_name": "Alliance",
"team_tag": "Alliance",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198061761348",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/0693285461cd4c80bb8754a7e1da60c4970847a5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/0693285461cd4c80bb8754a7e1da60c4970847a5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/0693285461cd4c80bb8754a7e1da60c4970847a5_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198061761348/",
"personaname": "Father Alliance",
"last_login": null,
"full_history_time": "2018-02-02T09:11:42.389Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-04-22T14:02:13.000Z",
"last_played": 1495104095,
"win": 12,
"games": 23,
"with_win": 0,
"with_games": 0,
"against_win": 12,
"against_games": 23,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 186939694,
"name": "斗圣",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 5117631,
"team_name": "CDEC.AVENGER",
"team_tag": "CDEC.A",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198147205422",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/32/3223e3d281758ede3c88e6731c7d128d385135df.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/32/3223e3d281758ede3c88e6731c7d128d385135df_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/32/3223e3d281758ede3c88e6731c7d128d385135df_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198147205422/",
"personaname": "奋斗",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:08:01.000Z",
"last_played": 1530525518,
"win": 8,
"games": 23,
"with_win": 4,
"with_games": 12,
"against_win": 4,
"against_games": 11,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 136624722,
"name": "楚天歌",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 5259051,
"team_name": "Aurora Esports club",
"team_tag": "AE",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198096890450",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c6e7ad79267433fd8fefb06780ad6adf1be470a8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c6e7ad79267433fd8fefb06780ad6adf1be470a8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c6e7ad79267433fd8fefb06780ad6adf1be470a8_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198096890450/",
"personaname": "人艰不拆",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-08-01T15:19:11.000Z",
"last_played": 1523377192,
"win": 14,
"games": 22,
"with_win": 4,
"with_games": 7,
"against_win": 10,
"against_games": 15,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 119525384,
"name": "CLugia",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 0,
"team_name": "CDEC Gaming",
"team_tag": "CDEC",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198079791112",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0d/0d8d741dfbe7daa6ecff29c01fcd9a9552245e24.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0d/0d8d741dfbe7daa6ecff29c01fcd9a9552245e24_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0d/0d8d741dfbe7daa6ecff29c01fcd9a9552245e24_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198079791112/",
"personaname": "lUG1A",
"last_login": "2016-11-10T15:14:33.106Z",
"full_history_time": "2016-04-29T07:27:02.617Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-03T12:02:57.000Z",
"last_played": 1523607599,
"win": 16,
"games": 22,
"with_win": 4,
"with_games": 4,
"against_win": 12,
"against_games": 18,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 376376587,
"name": "Ego",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 1520578,
"team_name": "CDEC ",
"team_tag": "CDEC",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198336642315",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc0d4c924097a7173085a87c3f2ab73fa90caa78.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc0d4c924097a7173085a87c3f2ab73fa90caa78_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc0d4c924097a7173085a87c3f2ab73fa90caa78_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198336642315/",
"personaname": "SeaaaaaaaaaaaaaNNNNNNNNNNNNNNN",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:57:11.000Z",
"last_played": 1531816225,
"win": 14,
"games": 22,
"with_win": 5,
"with_games": 10,
"against_win": 9,
"against_games": 12,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 87586992,
"name": "G",
"country_code": "",
"fantasy_role": 0,
"team_id": 4425117,
"team_name": "Gambit Esports",
"team_tag": "Gambit",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047852720",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/eefccd5993c8d496b788b68a9cea0d83aa83dde7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/eefccd5993c8d496b788b68a9cea0d83aa83dde7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/eefccd5993c8d496b788b68a9cea0d83aa83dde7_full.jpg",
"profileurl": "https://steamcommunity.com/id/Gkta13/",
"personaname": "GGGGGGGGGGGGG",
"last_login": null,
"full_history_time": "2017-02-03T07:55:24.272Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:35:33.000Z",
"last_played": 1460797782,
"win": 9,
"games": 22,
"with_win": 0,
"with_games": 0,
"against_win": 9,
"against_games": 22,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 134729228,
"name": "vam",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 1884658,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198094994956",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/43/43c8ab388a29d8ae4af040798edda70b25073bf6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/43/43c8ab388a29d8ae4af040798edda70b25073bf6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/43/43c8ab388a29d8ae4af040798edda70b25073bf6_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198094994956/",
"personaname": "Mélanie Laurent",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-28T14:16:06.000Z",
"last_played": 1521559484,
"win": 14,
"games": 22,
"with_win": 4,
"with_games": 10,
"against_win": 10,
"against_games": 12,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 221743617,
"name": "HMX",
"country_code": "",
"fantasy_role": 0,
"team_id": 1983234,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198182009345",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/34b99c85b07ce722f2993801b7cb96ef0cb80a39.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/34b99c85b07ce722f2993801b7cb96ef0cb80a39_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/34b99c85b07ce722f2993801b7cb96ef0cb80a39_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198182009345/",
"personaname": "这游戏没法玩了。",
"last_login": null,
"full_history_time": "2018-09-10T18:10:35.935Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T20:05:51.000Z",
"last_played": 1531486714,
"win": 16,
"games": 22,
"with_win": 5,
"with_games": 8,
"against_win": 11,
"against_games": 14,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 130027499,
"name": "Carrot",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 2414475,
"team_name": "We.are.young",
"team_tag": "Way",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198090293227",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9b/9b3e9e66314606981f7f577eeeef5c6c69ad3eb8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9b/9b3e9e66314606981f7f577eeeef5c6c69ad3eb8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9b/9b3e9e66314606981f7f577eeeef5c6c69ad3eb8_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198090293227/",
"personaname": "Carrot灬",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-07T15:19:35.000Z",
"last_played": 1521818027,
"win": 8,
"games": 22,
"with_win": 1,
"with_games": 6,
"against_win": 7,
"against_games": 16,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 138543123,
"name": "Pyw",
"country_code": "",
"fantasy_role": 2,
"team_id": 5066616,
"team_name": "Team Serenity",
"team_tag": "Serenity",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198098808851",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1eae8e343cd48b7a9ae23ec3dcf7b71b6baf587f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1eae8e343cd48b7a9ae23ec3dcf7b71b6baf587f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1eae8e343cd48b7a9ae23ec3dcf7b71b6baf587f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198098808851/",
"personaname": "Neil",
"last_login": null,
"full_history_time": "2018-09-06T07:56:18.616Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T04:54:24.000Z",
"last_played": 1532019730,
"win": 9,
"games": 21,
"with_win": 3,
"with_games": 7,
"against_win": 6,
"against_games": 14,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 103735745,
"name": "Saksa",
"country_code": "",
"fantasy_role": 0,
"team_id": 5216274,
"team_name": " Echo.Int",
"team_tag": " ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198064001473",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5d/5db21fae0069344e6e6640e0d800870954588518.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5d/5db21fae0069344e6e6640e0d800870954588518_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5d/5db21fae0069344e6e6640e0d800870954588518_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198064001473/",
"personaname": "Sterling",
"last_login": null,
"full_history_time": "2018-06-27T20:07:09.189Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-09T21:39:40.000Z",
"last_played": 1525273121,
"win": 12,
"games": 21,
"with_win": 2,
"with_games": 2,
"against_win": 10,
"against_games": 19,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 88271237,
"name": "Ceb",
"country_code": "fr",
"fantasy_role": 3,
"team_id": 2586976,
"team_name": "OG",
"team_tag": "OG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198048536965",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/251512a83188c91b2feeaf92ff200e7245d5bc61.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/251512a83188c91b2feeaf92ff200e7245d5bc61_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/251512a83188c91b2feeaf92ff200e7245d5bc61_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198048536965/",
"personaname": "gtrphgthgmrt",
"last_login": "2018-04-14T15:19:35.975Z",
"full_history_time": "2018-09-02T00:31:24.178Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:19:55.000Z",
"last_played": 1535249730,
"win": 11,
"games": 21,
"with_win": 1,
"with_games": 3,
"against_win": 10,
"against_games": 18,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 113457795,
"name": "Moonn",
"country_code": "",
"fantasy_role": 1,
"team_id": 543897,
"team_name": "Mineski",
"team_tag": "Mski",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198073723523",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/7525826bfdfb21d233fe321a209f01fec1adb284.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/7525826bfdfb21d233fe321a209f01fec1adb284_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/7525826bfdfb21d233fe321a209f01fec1adb284_full.jpg",
"profileurl": "https://steamcommunity.com/id/NaNaFTW/",
"personaname": "ChasingTheMoon",
"last_login": null,
"full_history_time": "2018-08-10T02:57:43.107Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "MY",
"last_match_time": "2018-08-22T03:14:21.000Z",
"last_played": 1534619764,
"win": 10,
"games": 21,
"with_win": 0,
"with_games": 0,
"against_win": 10,
"against_games": 21,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 106573901,
"name": "No[o]ne-",
"country_code": "",
"fantasy_role": 1,
"team_id": 1883502,
"team_name": "Virtus.pro",
"team_tag": "VP",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198066839629",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/16/16c5287318286afe068e298115e769996dedb813.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/16/16c5287318286afe068e298115e769996dedb813_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/16/16c5287318286afe068e298115e769996dedb813_full.jpg",
"profileurl": "https://steamcommunity.com/id/xdd15/",
"personaname": "Times have Changed.",
"last_login": null,
"full_history_time": "2018-09-05T16:30:56.850Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-24T01:55:29.000Z",
"last_played": 1534800190,
"win": 13,
"games": 20,
"with_win": 0,
"with_games": 0,
"against_win": 13,
"against_games": 20,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 31818853,
"name": "Lindon",
"country_code": "us",
"fantasy_role": 2,
"team_id": 4817405,
"team_name": "Only cares anime",
"team_tag": "Anime",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561197992084581",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a971a2033f0b6da72c38b02089ccce696df533f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a971a2033f0b6da72c38b02089ccce696df533f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a971a2033f0b6da72c38b02089ccce696df533f_full.jpg",
"profileurl": "https://steamcommunity.com/id/Howl311113311/",
"personaname": "Lindon Aurelius",
"last_login": "2016-03-15T22:40:03.590Z",
"full_history_time": "2018-07-04T05:05:32.222Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "UM",
"last_match_time": "2018-09-10T08:22:02.000Z",
"last_played": 1437566335,
"win": 13,
"games": 20,
"with_win": 1,
"with_games": 2,
"against_win": 12,
"against_games": 18,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 114441753,
"name": "gg",
"country_code": "",
"fantasy_role": 1,
"team_id": 0,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198074707481",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8eb0b6159f869bfaca46d9c79b0dbab71243b084.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8eb0b6159f869bfaca46d9c79b0dbab71243b084_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8eb0b6159f869bfaca46d9c79b0dbab71243b084_full.jpg",
"profileurl": "https://steamcommunity.com/id/loljwk/",
"personaname": "feed",
"last_login": null,
"full_history_time": "2017-08-28T21:57:40.330Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-08-09T05:08:06.000Z",
"last_played": 1531585697,
"win": 9,
"games": 20,
"with_win": 5,
"with_games": 9,
"against_win": 4,
"against_games": 11,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 216067541,
"name": "~",
"country_code": "",
"fantasy_role": 0,
"team_id": 1951061,
"team_name": "Newbee.Young",
"team_tag": "Newbee.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198176333269",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/234b046899ee1f5ee82f1528ee54f296d9c9162f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/234b046899ee1f5ee82f1528ee54f296d9c9162f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/234b046899ee1f5ee82f1528ee54f296d9c9162f_full.jpg",
"profileurl": "https://steamcommunity.com/id/216067541/",
"personaname": "~",
"last_login": null,
"full_history_time": "2018-03-31T17:52:18.972Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T18:13:03.000Z",
"last_played": 1524069767,
"win": 15,
"games": 20,
"with_win": 4,
"with_games": 5,
"against_win": 11,
"against_games": 15,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 92423451,
"name": "9pasha",
"country_code": "",
"fantasy_role": 3,
"team_id": 1883502,
"team_name": "Virtus.pro",
"team_tag": "VP",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198052689179",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c55a56d114c40c789000021b2076760a403d3e27.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c55a56d114c40c789000021b2076760a403d3e27_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c55a56d114c40c789000021b2076760a403d3e27_full.jpg",
"profileurl": "https://steamcommunity.com/id/888777666/",
"personaname": "Geraldinio",
"last_login": null,
"full_history_time": "2018-07-19T19:51:34.456Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "RU",
"last_match_time": "2018-08-24T01:55:29.000Z",
"last_played": 1534800190,
"win": 13,
"games": 20,
"with_win": 0,
"with_games": 0,
"against_win": 13,
"against_games": 20,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 163497368,
"name": "...",
"country_code": "cn",
"fantasy_role": 0,
"team_id": 0,
"team_name": "Sc.int",
"team_tag": "Sc.int",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198123763096",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/38/3876813d7fd963212134d0948eaf024d6e147f59.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/38/3876813d7fd963212134d0948eaf024d6e147f59_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/38/3876813d7fd963212134d0948eaf024d6e147f59_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198123763096/",
"personaname": "重新做人",
"last_login": null,
"full_history_time": "2017-03-11T06:49:06.330Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T03:04:21.000Z",
"last_played": 1530850327,
"win": 9,
"games": 20,
"with_win": 5,
"with_games": 10,
"against_win": 4,
"against_games": 10,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 124936122,
"name": "Zyd",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5066616,
"team_name": "Team Serenity",
"team_tag": "Serenity",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198085201850",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b7/b7116eb26a9977efa64d4ae548ac94f75ad3b4d8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b7/b7116eb26a9977efa64d4ae548ac94f75ad3b4d8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b7/b7116eb26a9977efa64d4ae548ac94f75ad3b4d8_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198085201850/",
"personaname": "Z",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:50:50.000Z",
"last_played": 1531229992,
"win": 12,
"games": 20,
"with_win": 7,
"with_games": 12,
"against_win": 5,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86700461,
"name": "w33",
"country_code": "",
"fantasy_role": 1,
"team_id": 67,
"team_name": "paiN Gaming",
"team_tag": "paiN",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198046966189",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6a/6a8f4102b2709fb5dd976c8b6bc2f6cb0521049f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6a/6a8f4102b2709fb5dd976c8b6bc2f6cb0521049f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6a/6a8f4102b2709fb5dd976c8b6bc2f6cb0521049f_full.jpg",
"profileurl": "https://steamcommunity.com/id/w33haa/",
"personaname": "w33",
"last_login": "2016-01-02T20:11:00.779Z",
"full_history_time": "2018-08-29T13:34:19.487Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "RO",
"last_match_time": "2018-08-18T21:20:16.000Z",
"last_played": 1493109358,
"win": 9,
"games": 20,
"with_win": 0,
"with_games": 0,
"against_win": 9,
"against_games": 20,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 110090274,
"name": "sjl.",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5090262,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198070356002",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/47/479e7e870cbf1250525b0a8de9b1c161ae7cb4ff.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/47/479e7e870cbf1250525b0a8de9b1c161ae7cb4ff_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/47/479e7e870cbf1250525b0a8de9b1c161ae7cb4ff_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198070356002/",
"personaname": "hjw.♥",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-14T10:38:46.000Z",
"last_played": 1510925014,
"win": 11,
"games": 20,
"with_win": 2,
"with_games": 6,
"against_win": 9,
"against_games": 14,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 76482434,
"name": "AdmiralBulldog",
"country_code": "se",
"fantasy_role": 1,
"team_id": 111474,
"team_name": "Alliance",
"team_tag": "Alliance",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198036748162",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d7/d7fd5cba1e2715a3b526b347ca13ca82a6c0ac77.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d7/d7fd5cba1e2715a3b526b347ca13ca82a6c0ac77_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d7/d7fd5cba1e2715a3b526b347ca13ca82a6c0ac77_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198036748162/",
"personaname": "ML.syndereNstupid",
"last_login": null,
"full_history_time": "2018-09-07T16:15:50.274Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T13:00:37.000Z",
"last_played": 1465037308,
"win": 9,
"games": 19,
"with_win": 1,
"with_games": 1,
"against_win": 8,
"against_games": 18,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 91064780,
"name": "ALWAYSWANNAFLY",
"country_code": "",
"fantasy_role": 2,
"team_id": 5229127,
"team_name": "Winstrike",
"team_tag": "Winstrike",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198051330508",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3624bacb3bcd6698c248dd624f4d808e7aaf12c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3624bacb3bcd6698c248dd624f4d808e7aaf12c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3624bacb3bcd6698c248dd624f4d808e7aaf12c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198051330508/",
"personaname": "ФЦА",
"last_login": null,
"full_history_time": "2017-12-30T18:49:32.802Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "UA",
"last_match_time": "2018-08-22T18:39:39.000Z",
"last_played": 1534447604,
"win": 11,
"games": 19,
"with_win": 0,
"with_games": 0,
"against_win": 11,
"against_games": 19,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 92588070,
"name": "Sheezry",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 7,
"team_name": "DK",
"team_tag": "DK",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198052853798",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e4/e47aa726b6eb0e820bad19279a01a86e3c08c3ae.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e4/e47aa726b6eb0e820bad19279a01a86e3c08c3ae_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e4/e47aa726b6eb0e820bad19279a01a86e3c08c3ae_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198052853798/",
"personaname": "DreamyU丶",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": null,
"last_played": 1414058584,
"win": 16,
"games": 19,
"with_win": 0,
"with_games": 0,
"against_win": 16,
"against_games": 19,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 94049589,
"name": "Fng",
"country_code": "",
"fantasy_role": 0,
"team_id": 2621843,
"team_name": "Team. Spirit",
"team_tag": "TSpirit",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198054315317",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/35/35c20d02986eda374cb88152edbc30ee3a9bea03.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/35/35c20d02986eda374cb88152edbc30ee3a9bea03_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/35/35c20d02986eda374cb88152edbc30ee3a9bea03_full.jpg",
"profileurl": "https://steamcommunity.com/id/defoxalone/",
"personaname": "@Fnggshka",
"last_login": null,
"full_history_time": "2018-06-17T11:18:40.585Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "BY",
"last_match_time": "2018-09-10T18:42:21.000Z",
"last_played": 1460797782,
"win": 10,
"games": 19,
"with_win": 0,
"with_games": 0,
"against_win": 10,
"against_games": 19,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 174833121,
"name": "GokinG",
"country_code": "",
"fantasy_role": 2,
"team_id": 5805234,
"team_name": "TAICHI GAMING",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198135098849",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ae/ae9cc03a8b8391803289d2fa713120649c2a3601.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ae/ae9cc03a8b8391803289d2fa713120649c2a3601_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ae/ae9cc03a8b8391803289d2fa713120649c2a3601_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198135098849/",
"personaname": "素敵",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-05T13:24:09.000Z",
"last_played": 1525880322,
"win": 9,
"games": 19,
"with_win": 5,
"with_games": 10,
"against_win": 4,
"against_games": 9,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 134556694,
"name": "Solo",
"country_code": "",
"fantasy_role": 2,
"team_id": 1883502,
"team_name": "Virtus.pro",
"team_tag": "VP",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198094822422",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/97aef1702d83dd008e8261b36a0dac67c60f3098.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/97aef1702d83dd008e8261b36a0dac67c60f3098_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/97aef1702d83dd008e8261b36a0dac67c60f3098_full.jpg",
"profileurl": "https://steamcommunity.com/id/dotaSolo/",
"personaname": "Solo",
"last_login": null,
"full_history_time": "2018-09-04T14:12:31.668Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "RU",
"last_match_time": "2018-08-24T01:55:29.000Z",
"last_played": 1534800190,
"win": 12,
"games": 19,
"with_win": 0,
"with_games": 0,
"against_win": 12,
"against_games": 19,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 41288955,
"name": "Akke",
"country_code": "se",
"fantasy_role": 2,
"team_id": 5136509,
"team_name": "Team Sweden",
"team_tag": "SWE",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198001554683",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3aa5df3d323c365ce82cb7b8dab424d6aaad1ca.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3aa5df3d323c365ce82cb7b8dab424d6aaad1ca_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3aa5df3d323c365ce82cb7b8dab424d6aaad1ca_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198001554683/",
"personaname": "Wilhelm",
"last_login": null,
"full_history_time": "2018-02-18T12:51:03.314Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:14:07.000Z",
"last_played": 1521096213,
"win": 10,
"games": 19,
"with_win": 1,
"with_games": 1,
"against_win": 9,
"against_games": 18,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 102099826,
"name": "DJ",
"country_code": "",
"fantasy_role": 2,
"team_id": 350190,
"team_name": "Fnatic",
"team_tag": "Fnatic",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198062365554",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4a/4a95e10447ae1a29952200975e7ab5e22096675a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4a/4a95e10447ae1a29952200975e7ab5e22096675a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4a/4a95e10447ae1a29952200975e7ab5e22096675a_full.jpg",
"profileurl": "https://steamcommunity.com/id/DjardelJicko/",
"personaname": "dj",
"last_login": null,
"full_history_time": "2018-03-29T09:29:21.577Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-08-20T22:38:27.000Z",
"last_played": 1534542458,
"win": 10,
"games": 19,
"with_win": 0,
"with_games": 0,
"against_win": 10,
"against_games": 19,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 124780194,
"name": "BiaBia_A",
"country_code": "",
"fantasy_role": 0,
"team_id": 5021898,
"team_name": "Team Serenity",
"team_tag": "Serenity",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198085045922",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/99/99781696aeefc0877acb470015d4d782d79d3450.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/99/99781696aeefc0877acb470015d4d782d79d3450_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/99/99781696aeefc0877acb470015d4d782d79d3450_full.jpg",
"profileurl": "https://steamcommunity.com/id/bigaaa/",
"personaname": "老年选手再创辉煌",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T13:33:04.000Z",
"last_played": 1515249184,
"win": 9,
"games": 19,
"with_win": 2,
"with_games": 7,
"against_win": 7,
"against_games": 12,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 188674980,
"name": "snow god",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 0,
"team_name": "Vici Gaming Potential",
"team_tag": "VG.P",
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198148940708",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/18a34ff3d1c4401276ae34f8cb65d1dc35835112.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/18a34ff3d1c4401276ae34f8cb65d1dc35835112_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/18a34ff3d1c4401276ae34f8cb65d1dc35835112_full.jpg",
"profileurl": "https://steamcommunity.com/id/188674980/",
"personaname": "雪宝宝给你送分",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-06-12T15:35:01.000Z",
"last_played": 1457599390,
"win": 10,
"games": 19,
"with_win": 2,
"with_games": 5,
"against_win": 8,
"against_games": 14,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 117587043,
"name": "290",
"country_code": "",
"fantasy_role": 1,
"team_id": 5526737,
"team_name": "Cola",
"team_tag": "Cola",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198077852771",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d9612dbb9157424bf21d0ad2d56cbcad54fd0c62.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d9612dbb9157424bf21d0ad2d56cbcad54fd0c62_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d9612dbb9157424bf21d0ad2d56cbcad54fd0c62_full.jpg",
"profileurl": "https://steamcommunity.com/id/yccch/",
"personaname": "ooo",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-08T12:15:32.000Z",
"last_played": 1531492067,
"win": 11,
"games": 19,
"with_win": 3,
"with_games": 7,
"against_win": 8,
"against_games": 12,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 106809101,
"name": "Lil",
"country_code": "",
"fantasy_role": 0,
"team_id": 36,
"team_name": "Natus Vincere",
"team_tag": "Na`Vi",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198067074829",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17a8de6174f2412b7d5587f6ca282137b6ae9a8c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17a8de6174f2412b7d5587f6ca282137b6ae9a8c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17a8de6174f2412b7d5587f6ca282137b6ae9a8c_full.jpg",
"profileurl": "https://steamcommunity.com/id/Lil_HaRDy/",
"personaname": "øbsessiøn",
"last_login": null,
"full_history_time": "2018-09-08T15:19:23.214Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-07T17:18:13.000Z",
"last_played": 1512720294,
"win": 8,
"games": 19,
"with_win": 0,
"with_games": 0,
"against_win": 8,
"against_games": 19,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 82630959,
"name": "99",
"country_code": "sg",
"fantasy_role": 1,
"team_id": 1245961,
"team_name": "ZephyrDota",
"team_tag": "Zephyr",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198042896687",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/42/42ff73b005a80bf1465f0f0166547700289c6b11.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/42/42ff73b005a80bf1465f0f0166547700289c6b11_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/42/42ff73b005a80bf1465f0f0166547700289c6b11_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198042896687/",
"personaname": "EVERYTHING CAN WORK",
"last_login": "2016-09-02T03:58:27.085Z",
"full_history_time": "2018-05-21T20:40:32.561Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:18:45.000Z",
"last_played": 1487687526,
"win": 14,
"games": 18,
"with_win": 1,
"with_games": 1,
"against_win": 13,
"against_games": 17,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 137129583,
"name": "Xm",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5017210,
"team_name": "EHOME.immortal",
"team_tag": "EHOME.i",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198097395311",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c0c461a14b27f9d2584d30d5c4bb67101062605a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c0c461a14b27f9d2584d30d5c4bb67101062605a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c0c461a14b27f9d2584d30d5c4bb67101062605a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198097395311/",
"personaname": "Xm",
"last_login": null,
"full_history_time": "2018-06-24T08:19:36.969Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-05T10:01:20.000Z",
"last_played": 1532779736,
"win": 11,
"games": 18,
"with_win": 6,
"with_games": 10,
"against_win": 5,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 70388657,
"name": "Dendi",
"country_code": "",
"fantasy_role": 0,
"team_id": 36,
"team_name": "Natus Vincere",
"team_tag": "Na`Vi",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198030654385",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f3c7a79c2b18a79a9aa2e757adc4bc763d3c400b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f3c7a79c2b18a79a9aa2e757adc4bc763d3c400b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f3c7a79c2b18a79a9aa2e757adc4bc763d3c400b_full.jpg",
"profileurl": "https://steamcommunity.com/id/DendiQ/",
"personaname": "Garena",
"last_login": null,
"full_history_time": "2018-09-04T04:56:43.573Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "UA",
"last_match_time": "2018-07-06T16:26:33.000Z",
"last_played": 1512710626,
"win": 10,
"games": 18,
"with_win": 0,
"with_games": 0,
"against_win": 10,
"against_games": 18,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 200520919,
"name": "Zx",
"country_code": "",
"fantasy_role": 0,
"team_id": 3258149,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198160786647",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fd/fd58a58a02d95d157d26c06d986224df9efc42ac.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fd/fd58a58a02d95d157d26c06d986224df9efc42ac_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fd/fd58a58a02d95d157d26c06d986224df9efc42ac_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198160786647/",
"personaname": "Shirley",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-06-27T13:50:42.000Z",
"last_played": 1507643282,
"win": 8,
"games": 18,
"with_win": 7,
"with_games": 13,
"against_win": 1,
"against_games": 5,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 112250781,
"name": "yoky-",
"country_code": "",
"fantasy_role": 0,
"team_id": 46,
"team_name": "Team Empire",
"team_tag": "Empire",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198072516509",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a4/a482751479a9cb6f80e6a771f38308f7511c9ec3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a4/a482751479a9cb6f80e6a771f38308f7511c9ec3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a4/a482751479a9cb6f80e6a771f38308f7511c9ec3_full.jpg",
"profileurl": "https://steamcommunity.com/id/yoky-/",
"personaname": "kb",
"last_login": null,
"full_history_time": "2017-06-20T09:15:53.270Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T12:02:16.000Z",
"last_played": 1525091404,
"win": 10,
"games": 18,
"with_win": 0,
"with_games": 0,
"against_win": 10,
"against_games": 18,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 194673410,
"name": "JUST",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5084724,
"team_name": "Newbee.M",
"team_tag": "Newbee.M",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198154939138",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b5c496a1f2d66971dcabde7b5ac101cc0a952a37.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b5c496a1f2d66971dcabde7b5ac101cc0a952a37_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b5c496a1f2d66971dcabde7b5ac101cc0a952a37_full.jpg",
"profileurl": "https://steamcommunity.com/id/944421511/",
"personaname": "刺客伍六七",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T08:33:28.000Z",
"last_played": 1531585697,
"win": 12,
"games": 18,
"with_win": 6,
"with_games": 8,
"against_win": 6,
"against_games": 10,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 112377459,
"name": "Febby?",
"country_code": "",
"fantasy_role": 0,
"team_id": 5051649,
"team_name": "Immortals",
"team_tag": "IMT",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198072643187",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/876ad3dbf2e3635a09e17c72105bfceba2d9e21b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/876ad3dbf2e3635a09e17c72105bfceba2d9e21b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/876ad3dbf2e3635a09e17c72105bfceba2d9e21b_full.jpg",
"profileurl": "https://steamcommunity.com/id/febby/",
"personaname": "Febby♥金佳暎",
"last_login": null,
"full_history_time": "2018-08-14T05:39:27.247Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "KR",
"last_match_time": "2018-06-25T02:22:20.000Z",
"last_played": 1508427198,
"win": 11,
"games": 17,
"with_win": 0,
"with_games": 1,
"against_win": 11,
"against_games": 16,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 131768153,
"name": "Arthas",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 4424935,
"team_name": "PPX",
"team_tag": "11",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198092033881",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2e334ce5119ff2a2ca603b9332c99d7fabdc04f7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2e334ce5119ff2a2ca603b9332c99d7fabdc04f7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2e334ce5119ff2a2ca603b9332c99d7fabdc04f7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198092033881/",
"personaname": "格斯",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2017-09-10T06:38:48.000Z",
"last_played": 1447018629,
"win": 11,
"games": 17,
"with_win": 1,
"with_games": 1,
"against_win": 10,
"against_games": 16,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 116585378,
"name": "MidOne",
"country_code": "",
"fantasy_role": 1,
"team_id": 1838315,
"team_name": "Team Secret",
"team_tag": "Secret",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198076851106",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/29/29e04fc76e5806c2cad3abef66a2354f9fb2868e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/29/29e04fc76e5806c2cad3abef66a2354f9fb2868e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/29/29e04fc76e5806c2cad3abef66a2354f9fb2868e_full.jpg",
"profileurl": "https://steamcommunity.com/id/midonedota2/",
"personaname": "MidOne",
"last_login": null,
"full_history_time": "2018-09-10T15:55:10.750Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-24T19:07:02.000Z",
"last_played": 1526710482,
"win": 6,
"games": 17,
"with_win": 0,
"with_games": 0,
"against_win": 6,
"against_games": 17,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 140680642,
"name": "X",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5923615,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198100946370",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d3/d3953993fce32c71db34eefc17642011cd844433.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d3/d3953993fce32c71db34eefc17642011cd844433_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d3/d3953993fce32c71db34eefc17642011cd844433_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198100946370/",
"personaname": "last",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T07:37:57.000Z",
"last_played": 1524487236,
"win": 7,
"games": 17,
"with_win": 2,
"with_games": 6,
"against_win": 5,
"against_games": 11,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 141010367,
"name": "Yp",
"country_code": "",
"fantasy_role": 0,
"team_id": 2879409,
"team_name": "骨头帮",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198101276095",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/9776f0d39795fb4083fdd3416434917cd54ed00e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/9776f0d39795fb4083fdd3416434917cd54ed00e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/9776f0d39795fb4083fdd3416434917cd54ed00e_full.jpg",
"profileurl": "https://steamcommunity.com/id/490666066/",
"personaname": ":)",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T13:31:14.000Z",
"last_played": 1532019730,
"win": 8,
"games": 17,
"with_win": 4,
"with_games": 7,
"against_win": 4,
"against_games": 10,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 132291754,
"name": "IAMNOBODI",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 2776208,
"team_name": "White Fries Gaming",
"team_tag": "WF",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198092557482",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/26/2609f91634775d36e0244519205001ffe631e870.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/26/2609f91634775d36e0244519205001ffe631e870_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/26/2609f91634775d36e0244519205001ffe631e870_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198092557482/",
"personaname": "隱",
"last_login": null,
"full_history_time": "2018-08-30T08:53:21.916Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-06-29T18:07:54.000Z",
"last_played": 1512140459,
"win": 10,
"games": 17,
"with_win": 1,
"with_games": 3,
"against_win": 9,
"against_games": 14,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 382225911,
"name": "sss,",
"country_code": "",
"fantasy_role": 0,
"team_id": 3258149,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198342491639",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/53/53d26358e4ac18ac22f5e51103a8ae60cdf32ded.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/53/53d26358e4ac18ac22f5e51103a8ae60cdf32ded_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/53/53d26358e4ac18ac22f5e51103a8ae60cdf32ded_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198342491639/",
"personaname": "空谷幽兰.",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-02T16:09:47.000Z",
"last_played": 1532599091,
"win": 7,
"games": 17,
"with_win": 2,
"with_games": 5,
"against_win": 5,
"against_games": 12,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 247607981,
"name": "yyyyyxb",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 3727485,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198207873709",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2ec4350a0aea3deaf6a949a97ee1a0dd70bc3dfc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2ec4350a0aea3deaf6a949a97ee1a0dd70bc3dfc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2ec4350a0aea3deaf6a949a97ee1a0dd70bc3dfc_full.jpg",
"profileurl": "https://steamcommunity.com/id/yexiaobai/",
"personaname": "轮盘dota,Best dota!",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-01T13:44:26.000Z",
"last_played": 1491155653,
"win": 8,
"games": 17,
"with_win": 3,
"with_games": 8,
"against_win": 5,
"against_games": 9,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 12231202,
"name": "Limmp",
"country_code": "",
"fantasy_role": 0,
"team_id": 3,
"team_name": "compLexity Gaming",
"team_tag": "coL",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197972496930",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2e985da2ee34dc4c1877984593c41b0da8b48f9f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2e985da2ee34dc4c1877984593c41b0da8b48f9f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/2e/2e985da2ee34dc4c1877984593c41b0da8b48f9f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197972496930/",
"personaname": "love yourz",
"last_login": null,
"full_history_time": "2018-08-13T00:18:16.710Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T20:21:40.000Z",
"last_played": 1525273121,
"win": 11,
"games": 17,
"with_win": 1,
"with_games": 1,
"against_win": 10,
"against_games": 16,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 181092754,
"name": "bobo",
"country_code": "",
"fantasy_role": 0,
"team_id": 5216146,
"team_name": "Team Ever",
"team_tag": "Ever",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198141358482",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/70/70871c0605cb230452ac9fe7864c339739b8d5fa.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/70/70871c0605cb230452ac9fe7864c339739b8d5fa_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/70/70871c0605cb230452ac9fe7864c339739b8d5fa_full.jpg",
"profileurl": "https://steamcommunity.com/id/181092754/",
"personaname": "不醉",
"last_login": null,
"full_history_time": "2017-06-12T05:40:41.275Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-08T11:58:08.000Z",
"last_played": 1517887015,
"win": 11,
"games": 17,
"with_win": 1,
"with_games": 5,
"against_win": 10,
"against_games": 12,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 136099804,
"name": "·.·.",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 5035956,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198096365532",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a5/a542b27a47d851db9ba5c35016689b08432dca9a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a5/a542b27a47d851db9ba5c35016689b08432dca9a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a5/a542b27a47d851db9ba5c35016689b08432dca9a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198096365532/",
"personaname": "A",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-08T12:00:47.000Z",
"last_played": 1511330214,
"win": 10,
"games": 17,
"with_win": 4,
"with_games": 9,
"against_win": 6,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 159235251,
"name": "Marlboro",
"country_code": "",
"fantasy_role": 1,
"team_id": 5017210,
"team_name": "EHOME.immortal",
"team_tag": "EHOME.i",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198119500979",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/47/475d323244bc42ab9f2ef7bdfe4805d0992d4bdc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/47/475d323244bc42ab9f2ef7bdfe4805d0992d4bdc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/47/475d323244bc42ab9f2ef7bdfe4805d0992d4bdc_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198119500979/",
"personaname": "帅哦",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-27T10:54:46.000Z",
"last_played": 1506867511,
"win": 11,
"games": 16,
"with_win": 3,
"with_games": 6,
"against_win": 8,
"against_games": 10,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 157557921,
"name": "slf",
"country_code": "",
"fantasy_role": 0,
"team_id": 6143582,
"team_name": "Vampire Gaming",
"team_tag": "Vampire",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198117823649",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f14c9a291a88b6c3652d45bee960a360a57de392.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f14c9a291a88b6c3652d45bee960a360a57de392_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f14c9a291a88b6c3652d45bee960a360a57de392_full.jpg",
"profileurl": "https://steamcommunity.com/id/157557921/",
"personaname": "全平台丢人",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-08T12:00:47.000Z",
"last_played": 1525784115,
"win": 12,
"games": 16,
"with_win": 4,
"with_games": 6,
"against_win": 8,
"against_games": 10,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 138154666,
"name": "Kk",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 3258149,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198098420394",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/188950ba757bf4bcc32080069d42be4766de7f3b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/188950ba757bf4bcc32080069d42be4766de7f3b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/188950ba757bf4bcc32080069d42be4766de7f3b_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198098420394/",
"personaname": "KKK",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-07-24T09:44:20.000Z",
"last_played": 1524487236,
"win": 7,
"games": 16,
"with_win": 2,
"with_games": 7,
"against_win": 5,
"against_games": 9,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 91369376,
"name": "Meracle-",
"country_code": "",
"fantasy_role": 0,
"team_id": 6016776,
"team_name": "Resurgence",
"team_tag": "RSG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198051635104",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75e3a7cdc0920ac53e85ffeb3603a00bf8aaf2d3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75e3a7cdc0920ac53e85ffeb3603a00bf8aaf2d3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75e3a7cdc0920ac53e85ffeb3603a00bf8aaf2d3_full.jpg",
"profileurl": "https://steamcommunity.com/id/meraclechamlotte/",
"personaname": "drevis",
"last_login": "2016-11-05T15:09:04.194Z",
"full_history_time": "2018-09-02T05:45:15.586Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SG",
"last_match_time": "2018-09-10T12:25:37.000Z",
"last_played": 1526629671,
"win": 11,
"games": 16,
"with_win": 0,
"with_games": 1,
"against_win": 11,
"against_games": 15,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 3940262,
"name": "March",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "MVP Phoenix",
"team_tag": "MVP",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197964205990",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da0ec8e60f4d9bbb4a19f27f356e2b7c513956fb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da0ec8e60f4d9bbb4a19f27f356e2b7c513956fb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da0ec8e60f4d9bbb4a19f27f356e2b7c513956fb_full.jpg",
"profileurl": "https://steamcommunity.com/id/March8/",
"personaname": "March",
"last_login": null,
"full_history_time": "2018-05-03T08:14:33.014Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:26:59.000Z",
"last_played": 1523017774,
"win": 9,
"games": 16,
"with_win": 1,
"with_games": 3,
"against_win": 8,
"against_games": 13,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 3916428,
"name": "EGM",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "ftp",
"team_tag": "ftp",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561197964182156",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c8/c8cbb76d9e905d0d22f8ff17eb0fc0c17b8ac862.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c8/c8cbb76d9e905d0d22f8ff17eb0fc0c17b8ac862_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c8/c8cbb76d9e905d0d22f8ff17eb0fc0c17b8ac862_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197964182156/",
"personaname": "Im da best",
"last_login": null,
"full_history_time": "2017-03-23T16:02:13.727Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:35:33.000Z",
"last_played": 1495104095,
"win": 9,
"games": 16,
"with_win": 0,
"with_games": 0,
"against_win": 9,
"against_games": 16,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 372595310,
"name": "MEVIUS",
"country_code": "",
"fantasy_role": 0,
"team_id": 2634810,
"team_name": "KEENGAMING.LUMINOUS",
"team_tag": "KGL",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198332861038",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/054fbdb220cd518ddfdb39850dfb02426ddc198d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/054fbdb220cd518ddfdb39850dfb02426ddc198d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/05/054fbdb220cd518ddfdb39850dfb02426ddc198d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198332861038/",
"personaname": "套你猴子",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T14:26:28.000Z",
"last_played": 1532583956,
"win": 9,
"games": 15,
"with_win": 1,
"with_games": 3,
"against_win": 8,
"against_games": 12,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 91644707,
"name": "ky..`",
"country_code": "my",
"fantasy_role": 1,
"team_id": 5407259,
"team_name": "TNC Tigers",
"team_tag": "Tigers",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198051910435",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c0ac098de91b051f8f1d901faf549d4a80d2c803.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c0ac098de91b051f8f1d901faf549d4a80d2c803_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c0ac098de91b051f8f1d901faf549d4a80d2c803_full.jpg",
"profileurl": "https://steamcommunity.com/id/kyxynoinoi/",
"personaname": "=.- \"",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "MY",
"last_match_time": "2018-09-10T10:50:30.000Z",
"last_played": 1478609382,
"win": 10,
"games": 15,
"with_win": 0,
"with_games": 0,
"against_win": 10,
"against_games": 15,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 199222238,
"name": "Dust",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 4817847,
"team_name": "SC",
"team_tag": "SC",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198159487966",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c7/c73a757b6208702e84ba87fed26617fe3e9fe2a2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c7/c73a757b6208702e84ba87fed26617fe3e9fe2a2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c7/c73a757b6208702e84ba87fed26617fe3e9fe2a2_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198159487966/",
"personaname": "山水画泼墨大师",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-26T08:21:10.000Z",
"last_played": 1527605268,
"win": 9,
"games": 15,
"with_win": 4,
"with_games": 7,
"against_win": 5,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 154715080,
"name": "Abed",
"country_code": "",
"fantasy_role": 1,
"team_id": 350190,
"team_name": "Fnatic",
"team_tag": "Fnatic",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198114980808",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/32/3222b629eade7a2a8752ebb57a7a87ee5d7a2bc2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/32/3222b629eade7a2a8752ebb57a7a87ee5d7a2bc2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/32/3222b629eade7a2a8752ebb57a7a87ee5d7a2bc2_full.jpg",
"profileurl": "https://steamcommunity.com/id/idolismyabed/",
"personaname": "tokyo",
"last_login": "2015-12-29T12:27:58.743Z",
"full_history_time": "2018-08-22T19:42:45.017Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "PH",
"last_match_time": "2018-08-20T22:38:27.000Z",
"last_played": 1534542458,
"win": 7,
"games": 15,
"with_win": 2,
"with_games": 3,
"against_win": 5,
"against_games": 12,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 104963314,
"name": "ddz",
"country_code": "my",
"fantasy_role": 0,
"team_id": 3260216,
"team_name": "Team HighGround",
"team_tag": "HG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198065229042",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4a/4adaa4e1fff34715f41e000438ed0733bb1d7022.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4a/4adaa4e1fff34715f41e000438ed0733bb1d7022_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4a/4adaa4e1fff34715f41e000438ed0733bb1d7022_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198065229042/",
"personaname": "di",
"last_login": null,
"full_history_time": "2017-11-10T12:24:58.693Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-07-23T11:33:10.000Z",
"last_played": 1492004430,
"win": 9,
"games": 15,
"with_win": 3,
"with_games": 5,
"against_win": 6,
"against_games": 10,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 110539311,
"name": "Velo",
"country_code": "",
"fantasy_role": 0,
"team_id": 5051649,
"team_name": "Immortals",
"team_tag": "IMT",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198070805039",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7edef6342d68657c85d0e289c10958bd66f7a013.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7edef6342d68657c85d0e289c10958bd66f7a013_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7edef6342d68657c85d0e289c10958bd66f7a013_full.jpg",
"profileurl": "https://steamcommunity.com/id/velodota2/",
"personaname": "Saitama",
"last_login": "2015-09-21T14:49:04.972Z",
"full_history_time": "2017-04-14T18:53:07.306Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "AU",
"last_match_time": "2018-09-10T13:07:13.000Z",
"last_played": 1480032453,
"win": 9,
"games": 15,
"with_win": 3,
"with_games": 4,
"against_win": 6,
"against_games": 11,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 342340720,
"name": "无敌",
"country_code": "",
"fantasy_role": 0,
"team_id": 5219641,
"team_name": "Big God",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198302606448",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/88/88d44c32ea3a8129885244ef841875776dfc24d6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/88/88d44c32ea3a8129885244ef841875776dfc24d6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/88/88d44c32ea3a8129885244ef841875776dfc24d6_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198302606448/",
"personaname": "刻苦",
"last_login": null,
"full_history_time": "2018-04-09T23:26:04.541Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T10:03:45.000Z",
"last_played": 1523366913,
"win": 4,
"games": 14,
"with_win": 2,
"with_games": 5,
"against_win": 2,
"against_games": 9,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 8712306,
"name": "Trixi",
"country_code": "",
"fantasy_role": 0,
"team_id": 5154470,
"team_name": "5 Anchors No Captain",
"team_tag": "5ANC",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197968978034",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/25a9069454b2baccd2ffab5a1979b09402751d52.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/25a9069454b2baccd2ffab5a1979b09402751d52_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/25a9069454b2baccd2ffab5a1979b09402751d52_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197968978034/",
"personaname": "diggoo",
"last_login": null,
"full_history_time": "2018-07-05T00:19:31.054Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "FI",
"last_match_time": "2018-06-27T17:04:36.000Z",
"last_played": 1405029136,
"win": 8,
"games": 14,
"with_win": 0,
"with_games": 0,
"against_win": 8,
"against_games": 14,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 123051238,
"name": "thereayou",
"country_code": "",
"fantasy_role": 0,
"team_id": 2006913,
"team_name": "Vega Squadron",
"team_tag": "Vega",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198083316966",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fa98a0b5df21b9009815c4c8988894933c7313fc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fa98a0b5df21b9009815c4c8988894933c7313fc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fa98a0b5df21b9009815c4c8988894933c7313fc_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198083316966/",
"personaname": "cursed mark",
"last_login": "2016-09-06T11:42:45.765Z",
"full_history_time": "2018-08-08T02:50:33.733Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UA",
"last_match_time": "2018-09-06T18:52:42.000Z",
"last_played": 1460797782,
"win": 7,
"games": 14,
"with_win": 0,
"with_games": 0,
"against_win": 7,
"against_games": 14,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 158719194,
"name": "ScorPio",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Ftm",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198118984922",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3c/3c314cf3ed7e68ad2786736229b3b0de9f7daee3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3c/3c314cf3ed7e68ad2786736229b3b0de9f7daee3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3c/3c314cf3ed7e68ad2786736229b3b0de9f7daee3_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198118984922/",
"personaname": "123",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-11T12:08:55.000Z",
"last_played": 1525789647,
"win": 7,
"games": 14,
"with_win": 2,
"with_games": 4,
"against_win": 5,
"against_games": 10,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 159020918,
"name": "RodjER",
"country_code": "",
"fantasy_role": 2,
"team_id": 1883502,
"team_name": "Virtus.pro",
"team_tag": "VP",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198119286646",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/11cb3175b609882228e5acc04dadba04e5826f77.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/11cb3175b609882228e5acc04dadba04e5826f77_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/11cb3175b609882228e5acc04dadba04e5826f77_full.jpg",
"profileurl": "https://steamcommunity.com/id/rodjerrr/",
"personaname": "RodjER",
"last_login": "2015-12-18T03:48:59.023Z",
"full_history_time": "2018-09-09T23:55:11.679Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "RU",
"last_match_time": "2018-08-24T01:55:29.000Z",
"last_played": 1534800190,
"win": 9,
"games": 14,
"with_win": 0,
"with_games": 0,
"against_win": 9,
"against_games": 14,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86762037,
"name": "WinteR",
"country_code": "my",
"fantasy_role": 1,
"team_id": 283205,
"team_name": "Beyond The Summit",
"team_tag": "BTS",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198047027765",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b7/b7a6764f0c9684577e47919a4c2f9e6365ef9113.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b7/b7a6764f0c9684577e47919a4c2f9e6365ef9113_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b7/b7a6764f0c9684577e47919a4c2f9e6365ef9113_full.jpg",
"profileurl": "https://steamcommunity.com/id/WinteRDota/",
"personaname": "WtR",
"last_login": null,
"full_history_time": "2018-05-24T07:03:35.625Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "MY",
"last_match_time": "2018-09-10T16:31:43.000Z",
"last_played": 1511189604,
"win": 8,
"games": 14,
"with_win": 0,
"with_games": 0,
"against_win": 8,
"against_games": 14,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 130049546,
"name": "Going go",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 2643401,
"team_name": "CDEC.Avenger",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198090315274",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5e/5e507d6320468b67982f83b7662a92440b76102f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5e/5e507d6320468b67982f83b7662a92440b76102f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5e/5e507d6320468b67982f83b7662a92440b76102f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198090315274/",
"personaname": "兔球",
"last_login": null,
"full_history_time": "2017-08-02T01:55:47.461Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-04-11T12:52:44.000Z",
"last_played": 1521129234,
"win": 10,
"games": 14,
"with_win": 5,
"with_games": 6,
"against_win": 5,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 19757254,
"name": "SingSing",
"country_code": "hk",
"fantasy_role": 1,
"team_id": 59,
"team_name": "Kaipi",
"team_tag": "KP",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561197980022982",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc5079d4d6deda11de747290b00ee8a51a661649.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc5079d4d6deda11de747290b00ee8a51a661649_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc5079d4d6deda11de747290b00ee8a51a661649_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197980022982/",
"personaname": "SINGSONG",
"last_login": null,
"full_history_time": "2018-09-06T05:38:14.611Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-04-11T11:46:42.000Z",
"last_played": 1431267850,
"win": 9,
"games": 14,
"with_win": 0,
"with_games": 1,
"against_win": 9,
"against_games": 13,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 94338967,
"name": "DkPhobos",
"country_code": "",
"fantasy_role": 0,
"team_id": 2621843,
"team_name": "Team. Spirit",
"team_tag": "TSpirit",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198054604695",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fea92ae3381b6380302b37acbaa2bccd766a914d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fea92ae3381b6380302b37acbaa2bccd766a914d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fea92ae3381b6380302b37acbaa2bccd766a914d_full.jpg",
"profileurl": "https://steamcommunity.com/id/Dk_Phobos/",
"personaname": "Fobi",
"last_login": "2015-09-11T19:40:41.321Z",
"full_history_time": "2017-10-14T23:52:18.868Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "UA",
"last_match_time": "2018-06-21T13:44:13.000Z",
"last_played": 1456932000,
"win": 6,
"games": 14,
"with_win": 0,
"with_games": 0,
"against_win": 6,
"against_games": 14,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 38628747,
"name": "MoonMeander",
"country_code": "",
"fantasy_role": 0,
"team_id": 5197343,
"team_name": "Team Canada",
"team_tag": "OCAN",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197998894475",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1d/1d52f2a6a1bb6a6391fcaa968f7b544bdcc74919.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1d/1d52f2a6a1bb6a6391fcaa968f7b544bdcc74919_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1d/1d52f2a6a1bb6a6391fcaa968f7b544bdcc74919_full.jpg",
"profileurl": "https://steamcommunity.com/id/MoonMeanderated/",
"personaname": "DEY TERK OUR JERBS",
"last_login": "2018-04-04T06:05:16.487Z",
"full_history_time": "2018-06-17T06:41:14.109Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "CA",
"last_match_time": "2018-09-10T12:32:11.000Z",
"last_played": 1493109358,
"win": 9,
"games": 14,
"with_win": 0,
"with_games": 0,
"against_win": 9,
"against_games": 14,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 84429681,
"name": "Moo",
"country_code": "",
"fantasy_role": 0,
"team_id": 3,
"team_name": "compLexity Gaming",
"team_tag": "coL",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198044695409",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f01b78d09e372b025bc0721475e5d8f31a094a5a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f01b78d09e372b025bc0721475e5d8f31a094a5a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f01b78d09e372b025bc0721475e5d8f31a094a5a_full.jpg",
"profileurl": "https://steamcommunity.com/id/moodota2/",
"personaname": "moo",
"last_login": "2015-07-15T08:14:55.423Z",
"full_history_time": "2017-10-08T22:45:38.131Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-09-10T19:45:24.000Z",
"last_played": 1534214085,
"win": 10,
"games": 13,
"with_win": 0,
"with_games": 0,
"against_win": 10,
"against_games": 13,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 89330493,
"name": "Xtinct",
"country_code": "",
"fantasy_role": 0,
"team_id": 5196343,
"team_name": "TEAM FLASH",
"team_tag": "FLASH",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198049596221",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b4/b492b48568b278e1cf66b618ad1dd4261ce6b4b5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b4/b492b48568b278e1cf66b618ad1dd4261ce6b4b5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b4/b492b48568b278e1cf66b618ad1dd4261ce6b4b5_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049596221/",
"personaname": "紙短情長",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T00:39:23.000Z",
"last_played": 1443627338,
"win": 8,
"games": 13,
"with_win": 0,
"with_games": 0,
"against_win": 8,
"against_games": 13,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 80576254,
"name": "watwatwatttt",
"country_code": "my",
"fantasy_role": 1,
"team_id": 1826766,
"team_name": "aBcaBcABCccc",
"team_tag": "ABC",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198040841982",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/ee9a196d32ec25d4e0087a7357ac9e6627c3f794.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/ee9a196d32ec25d4e0087a7357ac9e6627c3f794_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/ee9a196d32ec25d4e0087a7357ac9e6627c3f794_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198040841982/",
"personaname": "golden grape",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CV",
"last_match_time": "2018-09-10T16:25:53.000Z",
"last_played": 1377419060,
"win": 8,
"games": 13,
"with_win": 0,
"with_games": 0,
"against_win": 8,
"against_games": 13,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 30237211,
"name": "bulba",
"country_code": "",
"fantasy_role": 0,
"team_id": 2512249,
"team_name": "123",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561197990502939",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8c/8c64eaca3abf6552ca6ad61420190005e29502fb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8c/8c64eaca3abf6552ca6ad61420190005e29502fb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8c/8c64eaca3abf6552ca6ad61420190005e29502fb_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197990502939/",
"personaname": "Kagami",
"last_login": null,
"full_history_time": "2018-09-01T14:02:40.633Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-08T05:27:07.000Z",
"last_played": 1497651220,
"win": 8,
"games": 13,
"with_win": 0,
"with_games": 0,
"against_win": 8,
"against_games": 13,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 159979850,
"name": "Sayaka.",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Avalon_Club",
"team_tag": "Avalon",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198120245578",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc06fe6ae8e101b74cd14c5ae251350169513ecd.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc06fe6ae8e101b74cd14c5ae251350169513ecd_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bc/bc06fe6ae8e101b74cd14c5ae251350169513ecd_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198120245578/",
"personaname": "Make China great again",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2017-07-05T06:59:17.000Z",
"last_played": 1456301665,
"win": 7,
"games": 12,
"with_win": 3,
"with_games": 3,
"against_win": 4,
"against_games": 9,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 202217968,
"name": "HAlf",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 4817847,
"team_name": "SC",
"team_tag": "SC",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198162483696",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ba/bae5378f9621818b2d106732b96e12bb4d7d0ab8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ba/bae5378f9621818b2d106732b96e12bb4d7d0ab8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ba/bae5378f9621818b2d106732b96e12bb4d7d0ab8_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198162483696/",
"personaname": "Emo",
"last_login": null,
"full_history_time": "2018-08-23T11:22:13.393Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-08-22T15:32:00.000Z",
"last_played": 1526629671,
"win": 8,
"games": 12,
"with_win": 4,
"with_games": 5,
"against_win": 4,
"against_games": 7,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 113331514,
"name": "Miposhka",
"country_code": "",
"fantasy_role": 0,
"team_id": 46,
"team_name": "Team Empire",
"team_tag": "Empire",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198073597242",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f4/f4c437f8b46d84d14f5f4cf6a0903cfc52d26006.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f4/f4c437f8b46d84d14f5f4cf6a0903cfc52d26006_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f4/f4c437f8b46d84d14f5f4cf6a0903cfc52d26006_full.jpg",
"profileurl": "https://steamcommunity.com/id/5498657/",
"personaname": "Жизнь - боль",
"last_login": null,
"full_history_time": "2017-01-05T03:09:21.632Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T20:39:03.000Z",
"last_played": 1525091404,
"win": 6,
"games": 12,
"with_win": 1,
"with_games": 2,
"against_win": 5,
"against_games": 10,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 137526096,
"name": "fcb",
"country_code": "",
"fantasy_role": 2,
"team_id": 3855427,
"team_name": " ",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198097791824",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/be/be0e25777610f0748c5f2baff44fadaa346ccb27.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/be/be0e25777610f0748c5f2baff44fadaa346ccb27_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/be/be0e25777610f0748c5f2baff44fadaa346ccb27_full.jpg",
"profileurl": "https://steamcommunity.com/id/fcb201314/",
"personaname": "fcb",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-01-17T16:58:56.000Z",
"last_played": 1487172846,
"win": 6,
"games": 12,
"with_win": 2,
"with_games": 4,
"against_win": 4,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 139730879,
"name": "YYaiKK",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Newbee.Young",
"team_tag": "Newbee.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198099996607",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/20/209887ef967d3a6ce605b92603305713f2bd3625.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/20/209887ef967d3a6ce605b92603305713f2bd3625_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/20/209887ef967d3a6ce605b92603305713f2bd3625_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198099996607/",
"personaname": "woyaoying",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": null,
"last_played": 1452794210,
"win": 9,
"games": 12,
"with_win": 1,
"with_games": 1,
"against_win": 8,
"against_games": 11,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 118320193,
"name": "Accelerator",
"country_code": "",
"fantasy_role": 1,
"team_id": 2643401,
"team_name": "CDEC.Avenger",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198078585921",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a2954f417fc3b7c8bac34336c6daa1a327edf6f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a2954f417fc3b7c8bac34336c6daa1a327edf6f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a2954f417fc3b7c8bac34336c6daa1a327edf6f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198078585921/",
"personaname": "雪融",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-08T19:22:45.000Z",
"last_played": 1525868162,
"win": 7,
"games": 12,
"with_win": 3,
"with_games": 5,
"against_win": 4,
"against_games": 7,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 250114507,
"name": "Iceberg",
"country_code": "",
"fantasy_role": 1,
"team_id": 5229127,
"team_name": "Winstrike",
"team_tag": "Winstrike",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198210380235",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/78/781c0ad1d23ea32487be45da1c4db4e66384460b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/78/781c0ad1d23ea32487be45da1c4db4e66384460b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/78/781c0ad1d23ea32487be45da1c4db4e66384460b_full.jpg",
"profileurl": "https://steamcommunity.com/id/Icebergdota/",
"personaname": "Iceberg (shas bi pod KONDER)",
"last_login": null,
"full_history_time": "2018-08-22T22:21:32.847Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UA",
"last_match_time": "2018-09-10T17:14:43.000Z",
"last_played": 1534447604,
"win": 8,
"games": 12,
"with_win": 1,
"with_games": 2,
"against_win": 7,
"against_games": 10,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 179603165,
"name": "xxx",
"country_code": "cn",
"fantasy_role": 0,
"team_id": 3325252,
"team_name": "Team Max",
"team_tag": "MAX",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198139868893",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4ba512707c83f39b31c3afc7b3c5c70c179e9b4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4ba512707c83f39b31c3afc7b3c5c70c179e9b4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4ba512707c83f39b31c3afc7b3c5c70c179e9b4_full.jpg",
"profileurl": "https://steamcommunity.com/id/wantao19941013/",
"personaname": "OOO",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T12:43:22.000Z",
"last_played": 1532435462,
"win": 7,
"games": 12,
"with_win": 2,
"with_games": 4,
"against_win": 5,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 97590558,
"name": "Ace",
"country_code": "",
"fantasy_role": 1,
"team_id": 1838315,
"team_name": "Team Secret",
"team_tag": "Secret",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198057856286",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/89/89a9a0f73c23208a39d716d6e4170193ff318861.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/89/89a9a0f73c23208a39d716d6e4170193ff318861_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/89/89a9a0f73c23208a39d716d6e4170193ff318861_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198057856286/",
"personaname": "50centaur",
"last_login": "2016-11-16T17:34:02.615Z",
"full_history_time": "2018-09-05T09:33:33.089Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "DK",
"last_match_time": "2018-08-24T19:07:02.000Z",
"last_played": 1526710482,
"win": 4,
"games": 11,
"with_win": 1,
"with_games": 2,
"against_win": 3,
"against_games": 9,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 151550803,
"name": "LT",
"country_code": "",
"fantasy_role": 0,
"team_id": 3349045,
"team_name": "Σ(っ°Д°;)っ",
"team_tag": "Σ(っ°Д°;)っ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198111816531",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ad/adb5c2862d25969e21b7135482b36b7ad2f7e002.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ad/adb5c2862d25969e21b7135482b36b7ad2f7e002_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ad/adb5c2862d25969e21b7135482b36b7ad2f7e002_full.jpg",
"profileurl": "https://steamcommunity.com/id/151550803/",
"personaname": "aoeiuuaieiui",
"last_login": null,
"full_history_time": "2018-05-08T06:51:19.361Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-06-20T18:24:23.000Z",
"last_played": 1523520586,
"win": 8,
"games": 11,
"with_win": 2,
"with_games": 3,
"against_win": 6,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 91143798,
"name": "-",
"country_code": "my",
"fantasy_role": 1,
"team_id": 3658280,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198051409526",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b4/b4f117b6af4034ff39f89771062123e24f267881.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b4/b4f117b6af4034ff39f89771062123e24f267881_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b4/b4f117b6af4034ff39f89771062123e24f267881_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198051409526/",
"personaname": "runboyrun",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "MY",
"last_match_time": "2017-12-21T14:31:56.000Z",
"last_played": 1374244109,
"win": 6,
"games": 11,
"with_win": 0,
"with_games": 0,
"against_win": 6,
"against_games": 11,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 184950344,
"name": "Kuku",
"country_code": "",
"fantasy_role": 2,
"team_id": 2108395,
"team_name": "TNC Predator",
"team_tag": "TNC",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198145216072",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/44/446a813c7724178d5ac390a0e2bcd8440054abe4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/44/446a813c7724178d5ac390a0e2bcd8440054abe4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/44/446a813c7724178d5ac390a0e2bcd8440054abe4_full.jpg",
"profileurl": "https://steamcommunity.com/id/carloooooooo/",
"personaname": "Offlane or throw?",
"last_login": null,
"full_history_time": "2018-08-16T23:02:00.861Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-21T00:09:34.000Z",
"last_played": 1526656426,
"win": 5,
"games": 11,
"with_win": 0,
"with_games": 0,
"against_win": 5,
"against_games": 11,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 168340162,
"name": "tmt",
"country_code": "",
"fantasy_role": 0,
"team_id": 4369633,
"team_name": "Entity Gaming",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198128605890",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cb/cb92b8b0a121d98bf7d03c4bd8a2e004454619b0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cb/cb92b8b0a121d98bf7d03c4bd8a2e004454619b0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cb/cb92b8b0a121d98bf7d03c4bd8a2e004454619b0_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198128605890/",
"personaname": "lincoln",
"last_login": "2017-05-28T18:49:16.421Z",
"full_history_time": "2018-09-04T17:19:53.769Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-09T22:09:34.000Z",
"last_played": 1465643804,
"win": 6,
"games": 11,
"with_win": 2,
"with_games": 4,
"against_win": 4,
"against_games": 7,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 21265941,
"name": "N1",
"country_code": "de",
"fantasy_role": 0,
"team_id": 0,
"team_name": "Ninjas in Pyjamas",
"team_tag": "NiP",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561197981531669",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ae/aee911277ad9caaec3c3d376f8ddcc5fed442bad.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ae/aee911277ad9caaec3c3d376f8ddcc5fed442bad_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ae/aee911277ad9caaec3c3d376f8ddcc5fed442bad_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197981531669/",
"personaname": "n1",
"last_login": null,
"full_history_time": "2018-06-13T13:44:54.045Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "GN",
"last_match_time": "2017-05-26T15:55:21.000Z",
"last_played": 1405029136,
"win": 7,
"games": 11,
"with_win": 0,
"with_games": 0,
"against_win": 7,
"against_games": 11,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 96708830,
"name": "Fz",
"country_code": "my",
"fantasy_role": 1,
"team_id": 0,
"team_name": "BLACKJACK",
"team_tag": "BLACKJACK",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198056974558",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ca/cadd7563a6700226caabbe5a58208f09e72cb5dd.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ca/cadd7563a6700226caabbe5a58208f09e72cb5dd_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ca/cadd7563a6700226caabbe5a58208f09e72cb5dd_full.jpg",
"profileurl": "https://steamcommunity.com/id/fzfz1/",
"personaname": "BabyF3on",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "MY",
"last_match_time": "2018-06-16T10:43:44.000Z",
"last_played": 1401099779,
"win": 6,
"games": 11,
"with_win": 0,
"with_games": 0,
"against_win": 6,
"against_games": 11,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 87360406,
"name": "Jeyo",
"country_code": "",
"fantasy_role": 0,
"team_id": 6184950,
"team_name": "1",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047626134",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/12/12bf7babea6fdd615d71ca583e57656fe6342509.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/12/12bf7babea6fdd615d71ca583e57656fe6342509_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/12/12bf7babea6fdd615d71ca583e57656fe6342509_full.jpg",
"profileurl": "https://steamcommunity.com/id/Jeyo/",
"personaname": "Anti-Bobo",
"last_login": "2015-09-21T20:52:51.133Z",
"full_history_time": "2015-09-27T03:11:00.088Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "CA",
"last_match_time": "2018-09-10T07:20:56.000Z",
"last_played": 1525865297,
"win": 8,
"games": 10,
"with_win": 0,
"with_games": 1,
"against_win": 8,
"against_games": 9,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86726887,
"name": "MSS-",
"country_code": "",
"fantasy_role": 2,
"team_id": 5228654,
"team_name": "VGJ Storm",
"team_tag": "VGJ.Storm",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198046992615",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5c/5c058d3cd1924e71df629b712a47fca0ea13d0ff.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5c/5c058d3cd1924e71df629b712a47fca0ea13d0ff_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5c/5c058d3cd1924e71df629b712a47fca0ea13d0ff_full.jpg",
"profileurl": "https://steamcommunity.com/id/MSSDota/",
"personaname": "Gemie",
"last_login": "2016-09-14T16:00:58.220Z",
"full_history_time": "2016-12-06T11:12:28.929Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-08-23T22:06:35.000Z",
"last_played": 1527484403,
"win": 8,
"games": 10,
"with_win": 1,
"with_games": 1,
"against_win": 7,
"against_games": 9,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 208163435,
"name": "pkt",
"country_code": "",
"fantasy_role": 0,
"team_id": 5216146,
"team_name": "Team Ever",
"team_tag": "Ever",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198168429163",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/45/45afcfe2d4df36e556fcebf0f400e6796e946f95.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/45/45afcfe2d4df36e556fcebf0f400e6796e946f95_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/45/45afcfe2d4df36e556fcebf0f400e6796e946f95_full.jpg",
"profileurl": "https://steamcommunity.com/id/pkt1997/",
"personaname": "...",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-08-28T17:01:08.000Z",
"last_played": 1517887015,
"win": 8,
"games": 10,
"with_win": 5,
"with_games": 5,
"against_win": 3,
"against_games": 5,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 167586065,
"name": "fresh",
"country_code": "",
"fantasy_role": 1,
"team_id": 5587697,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198127851793",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d40b59a6e81175a29d0b2d628a909804114ab5f6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d40b59a6e81175a29d0b2d628a909804114ab5f6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d40b59a6e81175a29d0b2d628a909804114ab5f6_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198127851793/",
"personaname": "fresh",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T14:23:49.000Z",
"last_played": 1514364132,
"win": 4,
"games": 10,
"with_win": 2,
"with_games": 2,
"against_win": 2,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 164536353,
"name": "longb",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 4997871,
"team_name": "Team Waooo",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198124802081",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c3/c38751a2bb5fa2cfb6d7c7787a3d0bd06f67ab1c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c3/c38751a2bb5fa2cfb6d7c7787a3d0bd06f67ab1c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c3/c38751a2bb5fa2cfb6d7c7787a3d0bd06f67ab1c_full.jpg",
"profileurl": "https://steamcommunity.com/id/longblongb/",
"personaname": "221b",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T14:19:53.000Z",
"last_played": 1521123399,
"win": 6,
"games": 10,
"with_win": 4,
"with_games": 5,
"against_win": 2,
"against_games": 5,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89625472,
"name": "XBOCT",
"country_code": "ua",
"fantasy_role": 1,
"team_id": 36,
"team_name": "Natus Vincere",
"team_tag": "Na`Vi",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198049891200",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dd0ff49186e98593811851be1c0443cb53b44cba.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dd0ff49186e98593811851be1c0443cb53b44cba_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dd0ff49186e98593811851be1c0443cb53b44cba_full.jpg",
"profileurl": "https://steamcommunity.com/id/sashulya132/",
"personaname": "Vitya Bomj",
"last_login": null,
"full_history_time": "2018-06-24T14:12:29.339Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UA",
"last_match_time": "2018-09-04T11:54:50.000Z",
"last_played": 1493208268,
"win": 7,
"games": 10,
"with_win": 0,
"with_games": 0,
"against_win": 7,
"against_games": 10,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 94054712,
"name": "Topson",
"country_code": "",
"fantasy_role": 1,
"team_id": 2586976,
"team_name": "OG",
"team_tag": "OG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198054320440",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e1/e1d05a104838995d7fa218e2f179d455ea21b5c1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e1/e1d05a104838995d7fa218e2f179d455ea21b5c1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e1/e1d05a104838995d7fa218e2f179d455ea21b5c1_full.jpg",
"profileurl": "https://steamcommunity.com/id/47027356/",
"personaname": "Topson",
"last_login": "2017-12-11T14:15:48.477Z",
"full_history_time": "2018-09-09T19:41:03.306Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "FI",
"last_match_time": "2018-08-26T02:15:30.000Z",
"last_played": 1535249730,
"win": 4,
"games": 10,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 10,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 172424257,
"name": "Chessie",
"country_code": "",
"fantasy_role": 0,
"team_id": 3,
"team_name": "compLexity Gaming",
"team_tag": "coL",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198132689985",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d084fb0aaf5720b8a3f76a7bbbf6d8a61d02c43.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d084fb0aaf5720b8a3f76a7bbbf6d8a61d02c43_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d084fb0aaf5720b8a3f76a7bbbf6d8a61d02c43_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198132689985/",
"personaname": "Chessie",
"last_login": null,
"full_history_time": "2018-03-07T18:18:25.145Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:04:24.000Z",
"last_played": 1525273121,
"win": 6,
"games": 10,
"with_win": 0,
"with_games": 2,
"against_win": 6,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89268488,
"name": "ling",
"country_code": "",
"fantasy_role": 1,
"team_id": 2789395,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198049534216",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1c/1c050c37bd268f017734a99ef161b01f8ace7092.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1c/1c050c37bd268f017734a99ef161b01f8ace7092_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1c/1c050c37bd268f017734a99ef161b01f8ace7092_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049534216/",
"personaname": "= =''",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "HK",
"last_match_time": "2017-12-15T12:07:22.000Z",
"last_played": 1374244109,
"win": 5,
"games": 10,
"with_win": 0,
"with_games": 0,
"against_win": 5,
"against_games": 10,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 72981488,
"name": "Ossss",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 184636,
"team_name": "Osiris Gaming",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198033247216",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e399f97e5e347bb409759b2281aaf00096828196.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e399f97e5e347bb409759b2281aaf00096828196_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e399f97e5e347bb409759b2281aaf00096828196_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198033247216/",
"personaname": "Ossss",
"last_login": null,
"full_history_time": "2017-02-21T04:04:35.698Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-02-02T20:10:17.000Z",
"last_played": 1495899824,
"win": 8,
"games": 10,
"with_win": 3,
"with_games": 3,
"against_win": 5,
"against_games": 7,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 10366616,
"name": "Sneyking",
"country_code": "",
"fantasy_role": 3,
"team_id": 5228654,
"team_name": "VGJ Storm",
"team_tag": "VGJ.Storm",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197970632344",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/ee42a838030c527ed0a80e278734c756ae71b8aa.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/ee42a838030c527ed0a80e278734c756ae71b8aa_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ee/ee42a838030c527ed0a80e278734c756ae71b8aa_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197970632344/",
"personaname": "XD",
"last_login": "2016-04-11T03:56:15.700Z",
"full_history_time": "2017-09-22T21:46:38.128Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T21:00:49.000Z",
"last_played": 1526816781,
"win": 7,
"games": 10,
"with_win": 1,
"with_games": 1,
"against_win": 6,
"against_games": 9,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 117421467,
"name": "SoNNeikO",
"country_code": "uz",
"fantasy_role": 2,
"team_id": 36,
"team_name": "Natus Vincere",
"team_tag": "Na`Vi",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198077687195",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6b/6bcf392f060d9f529bc16a1e27373db6fe1b14c6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6b/6bcf392f060d9f529bc16a1e27373db6fe1b14c6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6b/6bcf392f060d9f529bc16a1e27373db6fe1b14c6_full.jpg",
"profileurl": "https://steamcommunity.com/id/SoNNeikO_o/",
"personaname": "! SoNNeikO !",
"last_login": null,
"full_history_time": "2018-08-19T21:08:31.215Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UZ",
"last_match_time": "2018-09-10T18:10:30.000Z",
"last_played": 1512710626,
"win": 4,
"games": 10,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 10,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 89654154,
"name": "chibix",
"country_code": "sg",
"fantasy_role": 1,
"team_id": 465605,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198049919882",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/24fcb095cc21bbbc57c781fc9c4e4b677016ed7a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/24fcb095cc21bbbc57c781fc9c4e4b677016ed7a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/24fcb095cc21bbbc57c781fc9c4e4b677016ed7a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049919882/",
"personaname": "mimi ❤",
"last_login": null,
"full_history_time": "2018-06-28T13:14:01.411Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SG",
"last_match_time": "2018-09-10T15:08:40.000Z",
"last_played": 1387800811,
"win": 7,
"games": 10,
"with_win": 0,
"with_games": 0,
"against_win": 7,
"against_games": 10,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86723143,
"name": "Funn1k",
"country_code": "",
"fantasy_role": 0,
"team_id": 36,
"team_name": "Natus Vincere",
"team_tag": "Na`Vi",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198046988871",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d190ce2fda5704fd5688d7b4658ed5727896880.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d190ce2fda5704fd5688d7b4658ed5727896880_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d190ce2fda5704fd5688d7b4658ed5727896880_full.jpg",
"profileurl": "https://steamcommunity.com/id/Funn1Que/",
"personaname": "dumb magnet",
"last_login": null,
"full_history_time": "2018-05-22T13:52:26.071Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T18:57:09.000Z",
"last_played": 1438658562,
"win": 8,
"games": 10,
"with_win": 0,
"with_games": 0,
"against_win": 8,
"against_games": 10,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 221666230,
"name": "CCnC",
"country_code": "",
"fantasy_role": 1,
"team_id": 5026801,
"team_name": "OpTic Gaming",
"team_tag": "OpTic",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198181931958",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ea/eace0825c229b225a449d959c35f601e4bfcebb3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ea/eace0825c229b225a449d959c35f601e4bfcebb3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ea/eace0825c229b225a449d959c35f601e4bfcebb3_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198181931958/",
"personaname": "Gormless",
"last_login": null,
"full_history_time": "2018-08-23T06:58:56.970Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "AO",
"last_match_time": "2018-09-10T19:36:42.000Z",
"last_played": 1528007711,
"win": 3,
"games": 9,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 9,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 89251386,
"name": "Sharky",
"country_code": "my",
"fantasy_role": 2,
"team_id": 1990121,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198049517114",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1f/1f99f31aa6443efaa7bf4459c07957dfb136598e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1f/1f99f31aa6443efaa7bf4459c07957dfb136598e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1f/1f99f31aa6443efaa7bf4459c07957dfb136598e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049517114/",
"personaname": "HANGOVER",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1399815712,
"win": 6,
"games": 9,
"with_win": 3,
"with_games": 3,
"against_win": 3,
"against_games": 6,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 47434686,
"name": "SVG",
"country_code": "",
"fantasy_role": 2,
"team_id": 5228654,
"team_name": "VGJ Storm",
"team_tag": "VGJ.Storm",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198007700414",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/af/af746efb52ce821e91aa904d0dbc41c53fbce866.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/af/af746efb52ce821e91aa904d0dbc41c53fbce866_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/af/af746efb52ce821e91aa904d0dbc41c53fbce866_full.jpg",
"profileurl": "https://steamcommunity.com/id/Electa/",
"personaname": "PorcupineGods",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T21:13:54.000Z",
"last_played": 1526816781,
"win": 5,
"games": 9,
"with_win": 1,
"with_games": 3,
"against_win": 4,
"against_games": 6,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89550641,
"name": "GeneRaL",
"country_code": "",
"fantasy_role": 0,
"team_id": 36,
"team_name": "Natus Vincere",
"team_tag": "Na`Vi",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198049816369",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/18ec231e0aa1682de00562bbb37a795e23bd8c13.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/18ec231e0aa1682de00562bbb37a795e23bd8c13_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/18ec231e0aa1682de00562bbb37a795e23bd8c13_full.jpg",
"profileurl": "https://steamcommunity.com/id/generalqw/",
"personaname": "твой номер второй",
"last_login": null,
"full_history_time": "2018-09-01T14:14:00.338Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UA",
"last_match_time": "2018-09-10T09:59:38.000Z",
"last_played": 1512710626,
"win": 3,
"games": 9,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 9,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 132309493,
"name": "Raven",
"country_code": "",
"fantasy_role": 1,
"team_id": 2108395,
"team_name": "TNC Predator",
"team_tag": "TNC",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198092575221",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/80/80d3491cec2f738629a2629568f99f2ca4a8e6c7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/80/80d3491cec2f738629a2629568f99f2ca4a8e6c7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/80/80d3491cec2f738629a2629568f99f2ca4a8e6c7_full.jpg",
"profileurl": "https://steamcommunity.com/id/napolodre/",
"personaname": "strawhat",
"last_login": null,
"full_history_time": "2018-07-10T09:37:18.053Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T13:39:34.000Z",
"last_played": 1526656426,
"win": 3,
"games": 9,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 9,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 108452107,
"name": "YS",
"country_code": "",
"fantasy_role": 1,
"team_id": 5228654,
"team_name": "VGJ Storm",
"team_tag": "VGJ.Storm",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198068717835",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/84/84224fddbad24f9dc4fabeb1a9821063f5bc05ea.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/84/84224fddbad24f9dc4fabeb1a9821063f5bc05ea_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/84/84224fddbad24f9dc4fabeb1a9821063f5bc05ea_full.jpg",
"profileurl": "https://steamcommunity.com/id/iwishyuwerehere/",
"personaname": "greatness",
"last_login": null,
"full_history_time": "2017-12-27T17:32:12.976Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-09T23:06:31.000Z",
"last_played": 1526816781,
"win": 6,
"games": 9,
"with_win": 3,
"with_games": 4,
"against_win": 3,
"against_games": 5,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 105599955,
"name": "Heen",
"country_code": "kr",
"fantasy_role": 2,
"team_id": 2163,
"team_name": "Team Liquid",
"team_tag": "Liquid",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198065865683",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1d/1dd377cfdae53c4e733b2262d12d274198b024e4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1d/1dd377cfdae53c4e733b2262d12d274198b024e4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1d/1dd377cfdae53c4e733b2262d12d274198b024e4_full.jpg",
"profileurl": "https://steamcommunity.com/id/heen1337/",
"personaname": "Elizabeth",
"last_login": null,
"full_history_time": "2018-02-04T21:05:32.015Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-03-24T18:20:09.000Z",
"last_played": 1438059103,
"win": 6,
"games": 9,
"with_win": 0,
"with_games": 0,
"against_win": 6,
"against_games": 9,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 170569148,
"name": "M。",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 4647990,
"team_name": "Winning Gaming",
"team_tag": "Winning ",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198130834876",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/8755360b307010517f67608b3ba9b27acf7296cd.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/8755360b307010517f67608b3ba9b27acf7296cd_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/8755360b307010517f67608b3ba9b27acf7296cd_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198130834876/",
"personaname": "越来越不懂",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T17:19:27.000Z",
"last_played": 1494855449,
"win": 7,
"games": 9,
"with_win": 5,
"with_games": 6,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 187619311,
"name": "SamH",
"country_code": "",
"fantasy_role": 3,
"team_id": 2108395,
"team_name": "TNC Predator",
"team_tag": "TNC",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198147885039",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d98b4e2cf6d7e9e5f8ca7608a28606513ebb405a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d98b4e2cf6d7e9e5f8ca7608a28606513ebb405a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d98b4e2cf6d7e9e5f8ca7608a28606513ebb405a_full.jpg",
"profileurl": "https://steamcommunity.com/id/SamHDoto/",
"personaname": "B*LLSH*T",
"last_login": null,
"full_history_time": "2017-01-26T15:14:53.862Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-21T00:09:34.000Z",
"last_played": 1526656426,
"win": 3,
"games": 9,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 9,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 87196890,
"name": "1437",
"country_code": "",
"fantasy_role": 0,
"team_id": 2108395,
"team_name": "TNC Predator",
"team_tag": "TNC",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198047462618",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/02/02bfc5f3a6d2a4b7685c1affa2666d6a0bc4f9d4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/02/02bfc5f3a6d2a4b7685c1affa2666d6a0bc4f9d4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/02/02bfc5f3a6d2a4b7685c1affa2666d6a0bc4f9d4_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047462618/",
"personaname": "BOCHEAL",
"last_login": null,
"full_history_time": "2017-05-24T09:49:43.442Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T12:32:11.000Z",
"last_played": 1512727183,
"win": 4,
"games": 9,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 9,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 107615580,
"name": "Yi",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 1373008,
"team_name": "Orenda.US",
"team_tag": "Orenda",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198067881308",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d96e8551be59af1c0584c94a4840e81a5ed92e27.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d96e8551be59af1c0584c94a4840e81a5ed92e27_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d9/d96e8551be59af1c0584c94a4840e81a5ed92e27_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198067881308/",
"personaname": "hercu1es",
"last_login": "2016-12-22T20:55:43.303Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-04-09T08:45:47.000Z",
"last_played": 1399104105,
"win": 7,
"games": 9,
"with_win": 1,
"with_games": 1,
"against_win": 6,
"against_games": 8,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 100317750,
"name": "Era",
"country_code": "",
"fantasy_role": 0,
"team_id": 5059375,
"team_name": "The Final Tribe",
"team_tag": "TFT",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198060583478",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/04/04d61c2451183847796b4ee32d0ff724803242fc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/04/04d61c2451183847796b4ee32d0ff724803242fc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/04/04d61c2451183847796b4ee32d0ff724803242fc_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198060583478/",
"personaname": "Psycho",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:04:24.000Z",
"last_played": 1431179936,
"win": 8,
"games": 9,
"with_win": 0,
"with_games": 0,
"against_win": 8,
"against_games": 9,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 121847953,
"name": "i rtz fansmurfx",
"country_code": "cx",
"fantasy_role": 2,
"team_id": 5014960,
"team_name": "xd",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198082113681",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/93/93c861aa0ae12376becf3995c6b10077f3dd829d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/93/93c861aa0ae12376becf3995c6b10077f3dd829d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/93/93c861aa0ae12376becf3995c6b10077f3dd829d_full.jpg",
"profileurl": "https://steamcommunity.com/id/wieopqwepio/",
"personaname": "4k avg = i core i 5.5k",
"last_login": null,
"full_history_time": "2017-05-24T23:20:59.258Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1405903516,
"win": 4,
"games": 8,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 8,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 133885475,
"name": "^V^",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "Sc.int",
"team_tag": "Sc.int",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198094151203",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f3ecf8d9f12d4892b2e5e79c9b21ca2fbe2d0fc9.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f3ecf8d9f12d4892b2e5e79c9b21ca2fbe2d0fc9_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f3ecf8d9f12d4892b2e5e79c9b21ca2fbe2d0fc9_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198094151203/",
"personaname": "^",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-06-16T11:40:39.000Z",
"last_played": 1520952185,
"win": 3,
"games": 8,
"with_win": 2,
"with_games": 4,
"against_win": 1,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 176184718,
"name": "artstyle",
"country_code": "ua",
"fantasy_role": 2,
"team_id": 5092555,
"team_name": "Team Ukraine",
"team_tag": "UA",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198136450446",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198136450446/",
"personaname": "mda",
"last_login": null,
"full_history_time": "2018-08-12T19:10:27.051Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2017-12-18T02:18:21.000Z",
"last_played": 1512720294,
"win": 5,
"games": 8,
"with_win": 0,
"with_games": 0,
"against_win": 5,
"against_games": 8,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 155494381,
"name": "Tims",
"country_code": "",
"fantasy_role": 2,
"team_id": 2108395,
"team_name": "TNC Predator",
"team_tag": "TNC",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198115760109",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8ed2ca90c6ba0712ab2cc3f7213d2d24b9984fe2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8ed2ca90c6ba0712ab2cc3f7213d2d24b9984fe2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8ed2ca90c6ba0712ab2cc3f7213d2d24b9984fe2_full.jpg",
"profileurl": "https://steamcommunity.com/id/Timzxc/",
"personaname": "CANCER HERE",
"last_login": null,
"full_history_time": "2018-07-19T05:24:18.387Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "PH",
"last_match_time": "2018-08-21T00:09:34.000Z",
"last_played": 1526656426,
"win": 3,
"games": 8,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 8,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 96429099,
"name": "LaNcE",
"country_code": "my",
"fantasy_role": 1,
"team_id": 3260216,
"team_name": "Team HighGround",
"team_tag": "HG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198056694827",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf98a59af5a8554c8633486b4d49f2da516ee68d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf98a59af5a8554c8633486b4d49f2da516ee68d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf98a59af5a8554c8633486b4d49f2da516ee68d_full.jpg",
"profileurl": "https://steamcommunity.com/id/LaNcExEruS/",
"personaname": "sleep 24hours everyday",
"last_login": null,
"full_history_time": "2017-12-19T03:48:30.300Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "MY",
"last_match_time": "2018-09-07T16:23:52.000Z",
"last_played": 1405185328,
"win": 6,
"games": 8,
"with_win": 0,
"with_games": 0,
"against_win": 6,
"against_games": 8,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 26316691,
"name": "IllidanSTR SF46",
"country_code": "",
"fantasy_role": 0,
"team_id": 2621843,
"team_name": "Team. Spirit",
"team_tag": "TSpirit",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197986582419",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e2/e25bf9d1937676fa2b9c0163bf2f98c2679e10e7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e2/e25bf9d1937676fa2b9c0163bf2f98c2679e10e7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e2/e25bf9d1937676fa2b9c0163bf2f98c2679e10e7_full.jpg",
"profileurl": "https://steamcommunity.com/id/IllidanSTR/",
"personaname": "Light's paragon",
"last_login": null,
"full_history_time": "2018-09-06T15:24:43.481Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T19:34:12.000Z",
"last_played": 1447772152,
"win": 4,
"games": 8,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 8,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 164532005,
"name": "Armel",
"country_code": "",
"fantasy_role": 1,
"team_id": 2108395,
"team_name": "TNC Predator",
"team_tag": "TNC",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198124797733",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7e203035e9a20b6deaba9f49b191d9431ef1ba39.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7e203035e9a20b6deaba9f49b191d9431ef1ba39_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7e203035e9a20b6deaba9f49b191d9431ef1ba39_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198124797733/",
"personaname": "ljcute",
"last_login": null,
"full_history_time": "2018-05-21T23:27:26.497Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-21T00:09:34.000Z",
"last_played": 1526656426,
"win": 4,
"games": 8,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 8,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 89603649,
"name": "NutZ",
"country_code": "kr",
"fantasy_role": 2,
"team_id": 6030840,
"team_name": "space",
"team_tag": " ",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198049869377",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/db/db15e1cb7da990de0143c9407ab16537727e3c30.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/db/db15e1cb7da990de0143c9407ab16537727e3c30_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/db/db15e1cb7da990de0143c9407ab16537727e3c30_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049869377/",
"personaname": "00000",
"last_login": null,
"full_history_time": "2018-09-09T13:38:19.320Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:39:51.000Z",
"last_played": 1490676446,
"win": 7,
"games": 8,
"with_win": 0,
"with_games": 0,
"against_win": 7,
"against_games": 8,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 380320771,
"name": "fdskh",
"country_code": "",
"fantasy_role": 0,
"team_id": 5465310,
"team_name": "Dawn Gaming",
"team_tag": "DG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198340586499",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9c/9c5c29cdf75836d6dd96c3af8d4586aa000e74ca.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9c/9c5c29cdf75836d6dd96c3af8d4586aa000e74ca_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9c/9c5c29cdf75836d6dd96c3af8d4586aa000e74ca_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198340586499/",
"personaname": "靖然(站在你看得到的地方)",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-06T11:10:40.000Z",
"last_played": 1521648427,
"win": 6,
"games": 8,
"with_win": 2,
"with_games": 3,
"against_win": 4,
"against_games": 5,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 93552791,
"name": "Nofear",
"country_code": "",
"fantasy_role": 2,
"team_id": 5229127,
"team_name": "Winstrike",
"team_tag": "Winstrike",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198053818519",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ea/ea3c9be2f9f712b66c1858d20fa037e0273b98db.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ea/ea3c9be2f9f712b66c1858d20fa037e0273b98db_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ea/ea3c9be2f9f712b66c1858d20fa037e0273b98db_full.jpg",
"profileurl": "https://steamcommunity.com/id/03079320/",
"personaname": "real",
"last_login": null,
"full_history_time": "2018-09-06T14:17:51.086Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:50:01.000Z",
"last_played": 1534447604,
"win": 6,
"games": 8,
"with_win": 0,
"with_games": 0,
"against_win": 6,
"against_games": 8,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 169181898,
"name": "Ditya Ra",
"country_code": "",
"fantasy_role": 0,
"team_id": 5167588,
"team_name": "Double Dimension",
"team_tag": " ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198129447626",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/95a2bae1876fdd6ddd23f93e3c6ae459c49a1ada.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/95a2bae1876fdd6ddd23f93e3c6ae459c49a1ada_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/95a2bae1876fdd6ddd23f93e3c6ae459c49a1ada_full.jpg",
"profileurl": "https://steamcommunity.com/id/Ditya_Ra/",
"personaname": "qwerty",
"last_login": "2015-09-21T15:49:13.416Z",
"full_history_time": "2017-11-07T06:27:20.175Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-04-12T16:57:30.000Z",
"last_played": 1465564878,
"win": 5,
"games": 8,
"with_win": 2,
"with_games": 2,
"against_win": 3,
"against_games": 6,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 95566398,
"name": "Bison",
"country_code": "ph",
"fantasy_role": 1,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198055832126",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/92/928ebfc44169226b31f6196e39c3530753e64ed2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/92/928ebfc44169226b31f6196e39c3530753e64ed2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/92/928ebfc44169226b31f6196e39c3530753e64ed2_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198055832126/",
"personaname": "xD",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CA",
"last_match_time": null,
"last_played": 1402923028,
"win": 7,
"games": 8,
"with_win": 0,
"with_games": 0,
"against_win": 7,
"against_games": 8,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 50828662,
"name": "Zfreek",
"country_code": "",
"fantasy_role": 0,
"team_id": 3,
"team_name": "compLexity Gaming",
"team_tag": "coL",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198011094390",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/be/be3c897025938ff4e3a2629f8f8048c8afa6e472.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/be/be3c897025938ff4e3a2629f8f8048c8afa6e472_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/be/be3c897025938ff4e3a2629f8f8048c8afa6e472_full.jpg",
"profileurl": "https://steamcommunity.com/id/zfreek94/",
"personaname": "Spelunker",
"last_login": "2018-03-25T06:23:27.734Z",
"full_history_time": "2018-07-17T20:34:48.942Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-06-24T23:09:04.000Z",
"last_played": 1525273121,
"win": 7,
"games": 8,
"with_win": 1,
"with_games": 1,
"against_win": 6,
"against_games": 7,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 91460772,
"name": "Slayer",
"country_code": "",
"fantasy_role": 0,
"team_id": 2006913,
"team_name": "Vega Squadron",
"team_tag": "Vega",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198051726500",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9df6c1f405dde5ca23cad562f92a3fa67877d32c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9df6c1f405dde5ca23cad562f92a3fa67877d32c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9df6c1f405dde5ca23cad562f92a3fa67877d32c_full.jpg",
"profileurl": "https://steamcommunity.com/id/cematheslayer/",
"personaname": "Freedom",
"last_login": "2017-08-18T10:48:26.603Z",
"full_history_time": "2018-09-10T18:33:50.600Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UA",
"last_match_time": "2018-09-10T20:47:34.000Z",
"last_played": 1526273421,
"win": 4,
"games": 8,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 8,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 85417034,
"name": "[]",
"country_code": "",
"fantasy_role": 0,
"team_id": 3326875,
"team_name": "Faceless",
"team_tag": "fL",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198045682762",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/06c0cd42806c9bb8a355b4296e6bd0933209f191.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/06c0cd42806c9bb8a355b4296e6bd0933209f191_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/06c0cd42806c9bb8a355b4296e6bd0933209f191_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198045682762/",
"personaname": "Raging PIMPKARP",
"last_login": null,
"full_history_time": "2016-10-17T18:14:30.454Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SG",
"last_match_time": "2018-02-03T07:32:57.000Z",
"last_played": 1490676446,
"win": 6,
"games": 7,
"with_win": 0,
"with_games": 0,
"against_win": 6,
"against_games": 7,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 102856993,
"name": "川果",
"country_code": "",
"fantasy_role": 0,
"team_id": 2208748,
"team_name": "Team VDuoBao",
"team_tag": "VDuoBao",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198063122721",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c2/c2c974ebab56d3ae7803252baa6777314804aa72.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c2/c2c974ebab56d3ae7803252baa6777314804aa72_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c2/c2c974ebab56d3ae7803252baa6777314804aa72_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198063122721/",
"personaname": "xfcy",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-06-26T16:16:00.000Z",
"last_played": 1483444137,
"win": 3,
"games": 7,
"with_win": 0,
"with_games": 1,
"against_win": 3,
"against_games": 6,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89117038,
"name": "YapzOr",
"country_code": "",
"fantasy_role": 2,
"team_id": 1838315,
"team_name": "Team Secret",
"team_tag": "Secret",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198049382766",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/063eacba043191fd41713d893267825e0b862c51.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/063eacba043191fd41713d893267825e0b862c51_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/06/063eacba043191fd41713d893267825e0b862c51_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049382766/",
"personaname": "YapzOr",
"last_login": null,
"full_history_time": "2018-07-15T17:51:45.351Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-07T21:31:31.000Z",
"last_played": 1526710482,
"win": 3,
"games": 7,
"with_win": 0,
"with_games": 1,
"against_win": 3,
"against_games": 6,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 121052479,
"name": "YamateH",
"country_code": "my",
"fantasy_role": 2,
"team_id": 5896956,
"team_name": "Battle Arena Elites",
"team_tag": "B.A.E",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198081318207",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/43/43ac0254401a7eb76c09ce40ac8ef28d02084b4f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/43/43ac0254401a7eb76c09ce40ac8ef28d02084b4f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/43/43ac0254401a7eb76c09ce40ac8ef28d02084b4f_full.jpg",
"profileurl": "https://steamcommunity.com/id/nwpnwpnwp/",
"personaname": "YamateH",
"last_login": null,
"full_history_time": "2018-01-16T15:56:52.512Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "MY",
"last_match_time": "2018-09-10T13:39:34.000Z",
"last_played": 1478609382,
"win": 6,
"games": 7,
"with_win": 0,
"with_games": 0,
"against_win": 6,
"against_games": 7,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 120402898,
"name": "dota~",
"country_code": "",
"fantasy_role": 0,
"team_id": 5219641,
"team_name": "Big God",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198080668626",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/81/81aa7559892192734ab6d234d06452d371442690.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/81/81aa7559892192734ab6d234d06452d371442690_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/81/81aa7559892192734ab6d234d06452d371442690_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198080668626/",
"personaname": "送赏金的猎人",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T14:03:57.000Z",
"last_played": 1517812014,
"win": 2,
"games": 7,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 7,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 85805514,
"name": "DeMoN",
"country_code": "",
"fantasy_role": 0,
"team_id": 5207190,
"team_name": "admiral",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198046071242",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cb/cb62e7af822591631c53b51e5f728ab86afb7b37.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cb/cb62e7af822591631c53b51e5f728ab86afb7b37_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cb/cb62e7af822591631c53b51e5f728ab86afb7b37_full.jpg",
"profileurl": "https://steamcommunity.com/id/idontcareanymore555/",
"personaname": "demondotes",
"last_login": null,
"full_history_time": "2018-05-07T18:43:07.830Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-04-11T08:01:36.000Z",
"last_played": 1493314724,
"win": 4,
"games": 7,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 7,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 147534374,
"name": "Spectre!",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 2668926,
"team_name": "Recall",
"team_tag": " ",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198107800102",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d93f0e812d08f54df25183e65b808ce5eb4d698.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d93f0e812d08f54df25183e65b808ce5eb4d698_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9d/9d93f0e812d08f54df25183e65b808ce5eb4d698_full.jpg",
"profileurl": "https://steamcommunity.com/id/ReAsyyy/",
"personaname": "Spectre!",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T11:34:15.000Z",
"last_played": 1532599091,
"win": 5,
"games": 7,
"with_win": 3,
"with_games": 5,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 115102590,
"name": "ryOyr",
"country_code": "ph",
"fantasy_role": 1,
"team_id": 0,
"team_name": "TaskUs TITANS",
"team_tag": "TITANS",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198075368318",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/19/19337484c090870a195a85d1e5d9ef7a77ad14e4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/19/19337484c090870a195a85d1e5d9ef7a77ad14e4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/19/19337484c090870a195a85d1e5d9ef7a77ad14e4_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198075368318/",
"personaname": "Saber Alter",
"last_login": "2016-09-03T13:38:48.893Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T13:27:51.000Z",
"last_played": 1445928537,
"win": 7,
"games": 7,
"with_win": 0,
"with_games": 0,
"against_win": 7,
"against_games": 7,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 91364275,
"name": "AtuunN///JR`20",
"country_code": "",
"fantasy_role": 0,
"team_id": 3705786,
"team_name": "/////",
"team_tag": "/////",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198051630003",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d2a544e0801e239025b6c311c8e00032a37084a7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d2a544e0801e239025b6c311c8e00032a37084a7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d2a544e0801e239025b6c311c8e00032a37084a7_full.jpg",
"profileurl": "https://steamcommunity.com/id/fleastorm666/",
"personaname": "█████████",
"last_login": "2017-12-05T15:30:59.792Z",
"full_history_time": "2018-02-14T09:01:08.937Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "JP",
"last_match_time": "2018-09-10T20:56:56.000Z",
"last_played": 1513557019,
"win": 3,
"games": 7,
"with_win": 1,
"with_games": 3,
"against_win": 2,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 143693439,
"name": "Dy",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 5805234,
"team_name": "TAICHI GAMING",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198103959167",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f80be5b440593392405d3104751f8d3b5fc94a6c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f80be5b440593392405d3104751f8d3b5fc94a6c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f80be5b440593392405d3104751f8d3b5fc94a6c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198103959167/",
"personaname": "MC子龙",
"last_login": null,
"full_history_time": "2018-05-17T10:29:32.327Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T09:23:11.000Z",
"last_played": 1531388893,
"win": 4,
"games": 7,
"with_win": 2,
"with_games": 3,
"against_win": 2,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 157989498,
"name": "Scofield",
"country_code": "",
"fantasy_role": 0,
"team_id": 5065748,
"team_name": "Infamous",
"team_tag": "Infamous",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198118255226",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bfc482dd14fed58e9811fa2fe63bf10349388be5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bfc482dd14fed58e9811fa2fe63bf10349388be5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bfc482dd14fed58e9811fa2fe63bf10349388be5_full.jpg",
"profileurl": "https://steamcommunity.com/id/lechesscofiescld/",
"personaname": "只有上帝才能审判我",
"last_login": "2018-09-10T01:48:12.778Z",
"full_history_time": "2018-08-16T14:19:43.765Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "PE",
"last_match_time": "2018-09-10T20:56:56.000Z",
"last_played": 1534184106,
"win": 3,
"games": 7,
"with_win": 1,
"with_games": 3,
"against_win": 2,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 113874152,
"name": "Bokerino",
"country_code": "",
"fantasy_role": 0,
"team_id": 5113081,
"team_name": "Bokerino",
"team_tag": "Bok",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198074139880",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bd/bd30e6b7c7838ea1baaa5a9c0f9342d9828be43d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bd/bd30e6b7c7838ea1baaa5a9c0f9342d9828be43d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bd/bd30e6b7c7838ea1baaa5a9c0f9342d9828be43d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198074139880/",
"personaname": "we hawt! XINQ!",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "JP",
"last_match_time": "2018-09-10T16:58:37.000Z",
"last_played": 1521008517,
"win": 1,
"games": 7,
"with_win": 0,
"with_games": 2,
"against_win": 1,
"against_games": 5,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 99796146,
"name": "Lyzerg-",
"country_code": "",
"fantasy_role": 0,
"team_id": 6167279,
"team_name": "braxstone",
"team_tag": "Bx",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198060061874",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9f/9f41bf633fd99c4ed78e816bdf82373a6ea9f307.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9f/9f41bf633fd99c4ed78e816bdf82373a6ea9f307_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9f/9f41bf633fd99c4ed78e816bdf82373a6ea9f307_full.jpg",
"profileurl": "https://steamcommunity.com/id/imjuststoned/",
"personaname": "Her king ~",
"last_login": null,
"full_history_time": "2017-05-30T17:43:56.341Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "BG",
"last_match_time": "2018-09-08T01:59:52.000Z",
"last_played": 1527996693,
"win": 6,
"games": 7,
"with_win": 0,
"with_games": 0,
"against_win": 6,
"against_games": 7,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 163879323,
"name": "sugar baby",
"country_code": "",
"fantasy_role": 0,
"team_id": 4997871,
"team_name": "Team Waooo",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198124145051",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a947a9cc0264f2b56154c1110daa0b3b58536ea.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a947a9cc0264f2b56154c1110daa0b3b58536ea_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a947a9cc0264f2b56154c1110daa0b3b58536ea_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198124145051/",
"personaname": "戏精男孩皮几糖",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "BV",
"last_match_time": "2018-08-23T13:28:36.000Z",
"last_played": 1481987638,
"win": 4,
"games": 7,
"with_win": 2,
"with_games": 4,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86698277,
"name": "33",
"country_code": "",
"fantasy_role": 3,
"team_id": 5026801,
"team_name": "OpTic Gaming",
"team_tag": "OpTic",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198046964005",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f3f23c40588cd98670d45f9d7d7de2f7f3f58dc0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f3f23c40588cd98670d45f9d7d7de2f7f3f58dc0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f3f23c40588cd98670d45f9d7d7de2f7f3f58dc0_full.jpg",
"profileurl": "https://steamcommunity.com/id/Neta33/",
"personaname": "dog player",
"last_login": "2017-06-23T22:38:25.754Z",
"full_history_time": "2018-05-04T22:07:25.053Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "IL",
"last_match_time": "2018-09-10T14:28:48.000Z",
"last_played": 1528007711,
"win": 4,
"games": 6,
"with_win": 0,
"with_games": 1,
"against_win": 4,
"against_games": 5,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 176996872,
"name": "Origami",
"country_code": "",
"fantasy_role": 0,
"team_id": 1951061,
"team_name": "Newbee.Young",
"team_tag": "Newbee.Y",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198137262600",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ac/ac8aab3a61b0e53915bc487657d1db7282ac3aa8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ac/ac8aab3a61b0e53915bc487657d1db7282ac3aa8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ac/ac8aab3a61b0e53915bc487657d1db7282ac3aa8_full.jpg",
"profileurl": "https://steamcommunity.com/id/zhezhi/",
"personaname": "古明地觉",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-02T15:39:11.000Z",
"last_played": 1510080296,
"win": 6,
"games": 6,
"with_win": 1,
"with_games": 1,
"against_win": 5,
"against_games": 5,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 178096221,
"name": "forGet",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "CAVALRY",
"team_tag": "CG",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198138361949",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8e6081286b15a1171461e4a6928b52c5f0847eff.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8e6081286b15a1171461e4a6928b52c5f0847eff_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8e/8e6081286b15a1171461e4a6928b52c5f0847eff_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198138361949/",
"personaname": "thomasfans",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-02-18T17:06:51.000Z",
"last_played": 1476790664,
"win": 5,
"games": 6,
"with_win": 3,
"with_games": 3,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86750861,
"name": "@Sdn",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 4590658,
"team_name": "Team Solid",
"team_tag": "Solid",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198047016589",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75c32016a189a758442fb3d98697a179e4654cad.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75c32016a189a758442fb3d98697a179e4654cad_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75c32016a189a758442fb3d98697a179e4654cad_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047016589/",
"personaname": "@Sdn",
"last_login": null,
"full_history_time": "2016-09-03T23:01:43.248Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-04T09:33:51.000Z",
"last_played": 1462214497,
"win": 2,
"games": 6,
"with_win": 0,
"with_games": 4,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 182993582,
"name": "kingr-",
"country_code": "",
"fantasy_role": 0,
"team_id": 5197722,
"team_name": "Effect",
"team_tag": "Effect",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198143259310",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a9/a9589dab307087eb5d3620ef83a1369fac67035f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a9/a9589dab307087eb5d3620ef83a1369fac67035f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a9/a9589dab307087eb5d3620ef83a1369fac67035f_full.jpg",
"profileurl": "https://steamcommunity.com/id/rinatq/",
"personaname": "kingr-",
"last_login": null,
"full_history_time": "2017-09-10T04:06:08.897Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "GW",
"last_match_time": "2018-09-10T18:11:06.000Z",
"last_played": 1493035329,
"win": 2,
"games": 6,
"with_win": 1,
"with_games": 3,
"against_win": 1,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86761912,
"name": " ",
"country_code": "kr",
"fantasy_role": 1,
"team_id": 0,
"team_name": "MVP HOT6",
"team_tag": "MVP",
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198047027640",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f326deb331490f6cb951568145abaa14d99a97fa.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f326deb331490f6cb951568145abaa14d99a97fa_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f326deb331490f6cb951568145abaa14d99a97fa_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047027640/",
"personaname": "Nari",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2017-07-05T19:20:49.000Z",
"last_played": 1491750018,
"win": 3,
"games": 6,
"with_win": 2,
"with_games": 4,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 110759067,
"name": "SkiD",
"country_code": "",
"fantasy_role": 0,
"team_id": 4369633,
"team_name": "Entity Gaming",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198071024795",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/93/9338a8d67bf20d828febd93751b0170c038ac495.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/93/9338a8d67bf20d828febd93751b0170c038ac495_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/93/9338a8d67bf20d828febd93751b0170c038ac495_full.jpg",
"profileurl": "https://steamcommunity.com/id/teeheedota/",
"personaname": "Old Teehee",
"last_login": null,
"full_history_time": "2016-09-04T04:15:33.634Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "PH",
"last_match_time": "2018-06-01T12:48:53.000Z",
"last_played": 1465573669,
"win": 2,
"games": 6,
"with_win": 1,
"with_games": 2,
"against_win": 1,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 144971992,
"name": "quan",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5120437,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198105237720",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d0/d0ebeac73070a8ab4fda78af363b56e1aa8b0505.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d0/d0ebeac73070a8ab4fda78af363b56e1aa8b0505_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d0/d0ebeac73070a8ab4fda78af363b56e1aa8b0505_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198105237720/",
"personaname": "11",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-05-31T21:43:35.000Z",
"last_played": 1508055345,
"win": 3,
"games": 6,
"with_win": 0,
"with_games": 1,
"against_win": 3,
"against_games": 5,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86765434,
"name": "Kygo",
"country_code": "",
"fantasy_role": 0,
"team_id": 5216146,
"team_name": "Team Ever",
"team_tag": "Ever",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047031162",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274f9ed2fc88d7f7301adbfe14e93fe92c3e8cc3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274f9ed2fc88d7f7301adbfe14e93fe92c3e8cc3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274f9ed2fc88d7f7301adbfe14e93fe92c3e8cc3_full.jpg",
"profileurl": "https://steamcommunity.com/id/MaxDota/",
"personaname": ".MAX.",
"last_login": "2018-02-02T09:55:12.300Z",
"full_history_time": "2018-07-23T05:56:50.887Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "CN",
"last_match_time": "2018-06-16T10:51:53.000Z",
"last_played": 1517887015,
"win": 4,
"games": 6,
"with_win": 2,
"with_games": 4,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 151625242,
"name": "ilLogic",
"country_code": "",
"fantasy_role": 0,
"team_id": 3262331,
"team_name": "Team EVOS",
"team_tag": "EVOS",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198111890970",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/35/35bbe3e69c7f942beeef459a61108036e7f4f000.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/35/35bbe3e69c7f942beeef459a61108036e7f4f000_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/35/35bbe3e69c7f942beeef459a61108036e7f4f000_full.jpg",
"profileurl": "https://steamcommunity.com/id/Ervandi/",
"personaname": "mendokusai",
"last_login": "2017-06-22T17:38:27.633Z",
"full_history_time": "2017-07-16T12:33:19.264Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T14:58:08.000Z",
"last_played": 1465555194,
"win": 5,
"games": 6,
"with_win": 3,
"with_games": 3,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86772934,
"name": "JessieVash*",
"country_code": "",
"fantasy_role": 0,
"team_id": 3725701,
"team_name": "Happy Feet",
"team_tag": "HF",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047038662",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f6/f664d65b5a0e81eddfff6ad42c26705445a586aa.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f6/f664d65b5a0e81eddfff6ad42c26705445a586aa_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f6/f664d65b5a0e81eddfff6ad42c26705445a586aa_full.jpg",
"profileurl": "https://steamcommunity.com/id/Sadlaz/",
"personaname": "qwerty",
"last_login": "2017-04-18T16:31:46.307Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T12:18:22.000Z",
"last_played": 1445928537,
"win": 5,
"games": 6,
"with_win": 0,
"with_games": 0,
"against_win": 5,
"against_games": 6,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 121833213,
"name": "rappy",
"country_code": "",
"fantasy_role": 0,
"team_id": 4652955,
"team_name": "Neon Esports",
"team_tag": "Neon",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198082098941",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fc/fc72cf6996023fed02d2c6312088fa784f6e2ed7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fc/fc72cf6996023fed02d2c6312088fa784f6e2ed7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fc/fc72cf6996023fed02d2c6312088fa784f6e2ed7_full.jpg",
"profileurl": "https://steamcommunity.com/id/rapyy/",
"personaname": "Jacob Seed",
"last_login": null,
"full_history_time": "2017-04-10T13:17:23.322Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T13:39:34.000Z",
"last_played": 1499322861,
"win": 5,
"games": 6,
"with_win": 3,
"with_games": 3,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 92145869,
"name": "ks",
"country_code": "sg",
"fantasy_role": 2,
"team_id": 0,
"team_name": "WarriorsGaming.Unity",
"team_tag": "WG.Unity",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198052411597",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40433ddb090771eac726aa4315df912d3a3676bf.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40433ddb090771eac726aa4315df912d3a3676bf_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40433ddb090771eac726aa4315df912d3a3676bf_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198052411597/",
"personaname": "Ks",
"last_login": null,
"full_history_time": "2017-02-21T15:59:53.177Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-04-14T19:35:45.000Z",
"last_played": 1387800811,
"win": 4,
"games": 6,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 6,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 97975407,
"name": "StingeR",
"country_code": "",
"fantasy_role": 2,
"team_id": 6167284,
"team_name": "Braxstone",
"team_tag": "Bx",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198058241135",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274b6d15792a67d147dc998466f6eda26a711fd8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274b6d15792a67d147dc998466f6eda26a711fd8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274b6d15792a67d147dc998466f6eda26a711fd8_full.jpg",
"profileurl": "https://steamcommunity.com/id/wh033/",
"personaname": "Panthera",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-08T01:59:52.000Z",
"last_played": 1527996693,
"win": 5,
"games": 6,
"with_win": 0,
"with_games": 0,
"against_win": 5,
"against_games": 6,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 139266129,
"name": "La fee vErte‘",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 2826112,
"team_name": "La fee vErte",
"team_tag": "nan",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198099531857",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4a/4a0a628b2cb6daf940d2ca87df044194fec9ee13.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4a/4a0a628b2cb6daf940d2ca87df044194fec9ee13_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4a/4a0a628b2cb6daf940d2ca87df044194fec9ee13_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198099531857/",
"personaname": "mimi",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1398751909,
"win": 6,
"games": 6,
"with_win": 4,
"with_games": 4,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 328056842,
"name": "Secret,",
"country_code": "",
"fantasy_role": 0,
"team_id": 5216146,
"team_name": "Team Ever",
"team_tag": "Ever",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198288322570",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4b/4b74cbaa04297ff2676fdb4f726b3295f0f6a462.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4b/4b74cbaa04297ff2676fdb4f726b3295f0f6a462_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4b/4b74cbaa04297ff2676fdb4f726b3295f0f6a462_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198288322570/",
"personaname": "cherish",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:31:25.000Z",
"last_played": 1527252646,
"win": 4,
"games": 6,
"with_win": 2,
"with_games": 3,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 371374667,
"name": "(~ ̄▽ ̄)~",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "Vici Gaming Potential",
"team_tag": "VG.P",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198331640395",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75fda7efea61dd21256f4f0b0cfd933e64dfce3c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75fda7efea61dd21256f4f0b0cfd933e64dfce3c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75fda7efea61dd21256f4f0b0cfd933e64dfce3c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198331640395/",
"personaname": "ropz",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-04T10:08:27.000Z",
"last_played": 1529329308,
"win": 5,
"games": 6,
"with_win": 5,
"with_games": 6,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 97658618,
"name": "marzipan",
"country_code": "",
"fantasy_role": 0,
"team_id": 5228654,
"team_name": "VGJ Storm",
"team_tag": "VGJ.Storm",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198057924346",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f7a7c5fd54998130c408c0fded398389d97e7c22.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f7a7c5fd54998130c408c0fded398389d97e7c22_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f7a7c5fd54998130c408c0fded398389d97e7c22_full.jpg",
"profileurl": "https://steamcommunity.com/id/timado123/",
"personaname": "PIZZApartyFORp4pita",
"last_login": "2016-11-07T04:21:10.477Z",
"full_history_time": "2017-12-21T06:07:24.321Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T20:15:50.000Z",
"last_played": 1470202962,
"win": 3,
"games": 6,
"with_win": 2,
"with_games": 3,
"against_win": 1,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 90547237,
"name": "Yuki",
"country_code": "id",
"fantasy_role": 1,
"team_id": 1105664,
"team_name": "Rex Regum QEON",
"team_tag": "RR.QEON",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198050812965",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0b/0bf9cd0af91da8348e95156fdbceb38b7c237253.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0b/0bf9cd0af91da8348e95156fdbceb38b7c237253_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0b/0bf9cd0af91da8348e95156fdbceb38b7c237253_full.jpg",
"profileurl": "https://steamcommunity.com/id/rrqkoala/",
"personaname": "?",
"last_login": null,
"full_history_time": "2016-09-23T09:53:47.606Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T13:46:31.000Z",
"last_played": 1465658014,
"win": 3,
"games": 5,
"with_win": 0,
"with_games": 1,
"against_win": 3,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 91162296,
"name": "Cast",
"country_code": "",
"fantasy_role": 0,
"team_id": 5063845,
"team_name": "TaskUs TITANS",
"team_tag": "TITANS",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198051428024",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b8/b8335546704801263172ae8e5ffb4de9e16dd14f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b8/b8335546704801263172ae8e5ffb4de9e16dd14f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b8/b8335546704801263172ae8e5ffb4de9e16dd14f_full.jpg",
"profileurl": "https://steamcommunity.com/id/castong/",
"personaname": "Cast",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "PH",
"last_match_time": "2018-02-27T10:14:23.000Z",
"last_played": 1431538246,
"win": 5,
"games": 5,
"with_win": 0,
"with_games": 0,
"against_win": 5,
"against_games": 5,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 28070572,
"name": "p4pita",
"country_code": "ar",
"fantasy_role": 1,
"team_id": 5065748,
"team_name": "Infamous",
"team_tag": "Infamous",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561197988336300",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ba/ba1d990a5f3496f96fe30cdc4c8161d9094ea168.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ba/ba1d990a5f3496f96fe30cdc4c8161d9094ea168_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ba/ba1d990a5f3496f96fe30cdc4c8161d9094ea168_full.jpg",
"profileurl": "https://steamcommunity.com/id/p4pita/",
"personaname": ". (capitan)",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-06T22:35:21.000Z",
"last_played": 1527996693,
"win": 4,
"games": 5,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 5,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 107374743,
"name": "Vurtune",
"country_code": "",
"fantasy_role": 0,
"team_id": 2458785,
"team_name": "RMP",
"team_tag": "RMP",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198067640471",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f5/f543b323fa325a59887f8bca7b8a10d9c2c613ab.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f5/f543b323fa325a59887f8bca7b8a10d9c2c613ab_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f5/f543b323fa325a59887f8bca7b8a10d9c2c613ab_full.jpg",
"profileurl": "https://steamcommunity.com/id/107374743/",
"personaname": "★",
"last_login": "2016-02-09T18:10:52.226Z",
"full_history_time": "2018-08-02T09:17:19.341Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-07T23:27:26.000Z",
"last_played": 1391196534,
"win": 3,
"games": 5,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 5,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 49317728,
"name": "Kyle",
"country_code": "",
"fantasy_role": 0,
"team_id": 3,
"team_name": "compLexity Gaming",
"team_tag": "coL",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198009583456",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f35b52a095badc008e6a24f0f2a39fbc61a8d9ea.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f35b52a095badc008e6a24f0f2a39fbc61a8d9ea_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f3/f35b52a095badc008e6a24f0f2a39fbc61a8d9ea_full.jpg",
"profileurl": "https://steamcommunity.com/id/kfree/",
"personaname": "~Kyle",
"last_login": null,
"full_history_time": "2017-05-13T19:46:08.403Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "US",
"last_match_time": "2018-09-07T17:09:07.000Z",
"last_played": 1517655926,
"win": 4,
"games": 5,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 5,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 119939006,
"name": "QeonationJr",
"country_code": "id",
"fantasy_role": 1,
"team_id": 5231224,
"team_name": "Rex Regum Qeon",
"team_tag": "RR.QEON",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198080204734",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ac/ace206db1ff3a6ad9328792be733c6f9487304fb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ac/ace206db1ff3a6ad9328792be733c6f9487304fb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ac/ace206db1ff3a6ad9328792be733c6f9487304fb_full.jpg",
"profileurl": "https://steamcommunity.com/id/yabyooo/",
"personaname": "Undecided",
"last_login": null,
"full_history_time": "2018-07-22T10:32:35.572Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "ID",
"last_match_time": "2018-09-10T13:46:31.000Z",
"last_played": 1465648050,
"win": 1,
"games": 5,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 5,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 130801103,
"name": "nongrata",
"country_code": "",
"fantasy_role": 3,
"team_id": 5229127,
"team_name": "Winstrike",
"team_tag": "Winstrike",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198091066831",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/09/093013f3e84e265470170c119ee157f1f6e60431.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/09/093013f3e84e265470170c119ee157f1f6e60431_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/09/093013f3e84e265470170c119ee157f1f6e60431_full.jpg",
"profileurl": "https://steamcommunity.com/id/nongrataaa2/",
"personaname": "pro123",
"last_login": "2017-08-23T18:53:43.730Z",
"full_history_time": "2018-08-18T00:49:43.964Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T21:23:41.000Z",
"last_played": 1534447604,
"win": 5,
"games": 5,
"with_win": 1,
"with_games": 1,
"against_win": 4,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 130909394,
"name": "lu",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Bheart.Zombie",
"team_tag": "Bheart.z",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198091175122",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f88e5c9563e84b6f61a90d8c000895e3c807b0ab.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f88e5c9563e84b6f61a90d8c000895e3c807b0ab_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f88e5c9563e84b6f61a90d8c000895e3c807b0ab_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198091175122/",
"personaname": "lu",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-09T13:45:27.000Z",
"last_played": 1463293689,
"win": 3,
"games": 5,
"with_win": 1,
"with_games": 2,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 115141430,
"name": "Ryoya",
"country_code": "",
"fantasy_role": 0,
"team_id": 5051649,
"team_name": "Immortals",
"team_tag": "IMT",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198075407158",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8f/8f5e593eaa51add433b5541e8ebc640e50c51220.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8f/8f5e593eaa51add433b5541e8ebc640e50c51220_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8f/8f5e593eaa51add433b5541e8ebc640e50c51220_full.jpg",
"profileurl": "https://steamcommunity.com/id/747-god/",
"personaname": "Ryoya",
"last_login": "2016-11-05T17:15:25.652Z",
"full_history_time": "2017-02-26T14:20:55.757Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T05:43:29.000Z",
"last_played": 1513553105,
"win": 4,
"games": 5,
"with_win": 0,
"with_games": 1,
"against_win": 4,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 11550182,
"name": "VANSKOR",
"country_code": "",
"fantasy_role": 0,
"team_id": 4425117,
"team_name": "Gambit Esports",
"team_tag": "Gambit",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197971815910",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/18f3f2f4218a580ce954badcb11d4cf34b044318.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/18f3f2f4218a580ce954badcb11d4cf34b044318_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/18/18f3f2f4218a580ce954badcb11d4cf34b044318_full.jpg",
"profileurl": "https://steamcommunity.com/id/vanskor/",
"personaname": "OpenAI 5 (Bot)",
"last_login": "2016-09-06T07:38:29.909Z",
"full_history_time": "2017-12-30T07:15:17.899Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-04T09:37:26.000Z",
"last_played": 1508328620,
"win": 4,
"games": 5,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 5,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 5150808,
"name": "fn!",
"country_code": "",
"fantasy_role": 0,
"team_id": 46,
"team_name": "Team Empire",
"team_tag": "Empire",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197965416536",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/89/89b474bf9fbfb467ea6a98a89b904d0e4f36ffb2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/89/89b474bf9fbfb467ea6a98a89b904d0e4f36ffb2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/89/89b474bf9fbfb467ea6a98a89b904d0e4f36ffb2_full.jpg",
"profileurl": "https://steamcommunity.com/id/he110dota/",
"personaname": "elated",
"last_login": null,
"full_history_time": "2018-09-06T00:43:02.137Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-26T12:21:10.000Z",
"last_played": 1525091404,
"win": 2,
"games": 5,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 5,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 18180970,
"name": "Handsken",
"country_code": "",
"fantasy_role": 0,
"team_id": 5059375,
"team_name": "The Final Tribe",
"team_tag": "TFT",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197978446698",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/09/095ba162cd2e0ae7c5bb504fb1ae88e7cadb9c84.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/09/095ba162cd2e0ae7c5bb504fb1ae88e7cadb9c84_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/09/095ba162cd2e0ae7c5bb504fb1ae88e7cadb9c84_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197978446698/",
"personaname": "You can't buy culture",
"last_login": "2016-03-25T17:31:22.021Z",
"full_history_time": "2016-04-05T07:53:09.017Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:04:24.000Z",
"last_played": 1495104095,
"win": 3,
"games": 5,
"with_win": 1,
"with_games": 1,
"against_win": 2,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 121917409,
"name": "Wenn.",
"country_code": "",
"fantasy_role": 0,
"team_id": 4327600,
"team_name": "迪丽热巴",
"team_tag": "DILIDILI",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198082183137",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f11decbbbe7d4462940097f532d796fdc7e06e62.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f11decbbbe7d4462940097f532d796fdc7e06e62_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f11decbbbe7d4462940097f532d796fdc7e06e62_full.jpg",
"profileurl": "https://steamcommunity.com/id/wennn/",
"personaname": "老祖宗",
"last_login": null,
"full_history_time": "2017-03-25T11:43:10.704Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "VG",
"last_match_time": "2018-09-09T10:29:06.000Z",
"last_played": 1506355371,
"win": 3,
"games": 5,
"with_win": 0,
"with_games": 1,
"against_win": 3,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 92847434,
"name": "Ghostik",
"country_code": "",
"fantasy_role": 0,
"team_id": 46,
"team_name": "Team Empire",
"team_tag": "Empire",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198053113162",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b2fc88ee7e4cbf665d4fcb6c354f6d8b7220c6c8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b2fc88ee7e4cbf665d4fcb6c354f6d8b7220c6c8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b2/b2fc88ee7e4cbf665d4fcb6c354f6d8b7220c6c8_full.jpg",
"profileurl": "https://steamcommunity.com/id/Ghostikdota/",
"personaname": "Courage",
"last_login": null,
"full_history_time": "2016-11-21T01:09:34.840Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T20:49:12.000Z",
"last_played": 1525091404,
"win": 2,
"games": 5,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 5,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 92949094,
"name": "SsaSpartan",
"country_code": "",
"fantasy_role": 0,
"team_id": 26,
"team_name": "mousesports",
"team_tag": "mouz",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198053214822",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5d/5dc8833c7a89ee76e832b9382b30750264aad283.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5d/5dc8833c7a89ee76e832b9382b30750264aad283_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5d/5dc8833c7a89ee76e832b9382b30750264aad283_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198053214822/",
"personaname": "IV/-\\R",
"last_login": "2016-09-05T21:37:59.295Z",
"full_history_time": "2017-02-19T23:03:43.959Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T21:00:12.000Z",
"last_played": 1519030518,
"win": 4,
"games": 5,
"with_win": 0,
"with_games": 1,
"against_win": 4,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 288856114,
"name": "Icysnow",
"country_code": "id",
"fantasy_role": 2,
"team_id": 4287507,
"team_name": "lft",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198249121842",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/4001f8892ae7be1cc5d85f3066a546417f70a5e9.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/4001f8892ae7be1cc5d85f3066a546417f70a5e9_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/4001f8892ae7be1cc5d85f3066a546417f70a5e9_full.jpg",
"profileurl": "https://steamcommunity.com/id/knowyourplace70/",
"personaname": "????",
"last_login": null,
"full_history_time": "2018-02-16T19:37:29.167Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T21:20:07.000Z",
"last_played": 1517821981,
"win": 4,
"games": 5,
"with_win": 3,
"with_games": 4,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86802844,
"name": "Mag",
"country_code": "",
"fantasy_role": 0,
"team_id": 5167588,
"team_name": "Double Dimension",
"team_tag": " ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047068572",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/76/764eff582d4b613783fed8fc4c3de2a1a149126e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/76/764eff582d4b613783fed8fc4c3de2a1a149126e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/76/764eff582d4b613783fed8fc4c3de2a1a149126e_full.jpg",
"profileurl": "https://steamcommunity.com/id/MagDota2/",
"personaname": "Mag 叶修",
"last_login": null,
"full_history_time": "2016-09-17T06:09:53.822Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UA",
"last_match_time": "2018-09-10T10:34:15.000Z",
"last_played": 1508325200,
"win": 4,
"games": 5,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 5,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 95825708,
"name": "Катюша",
"country_code": "",
"fantasy_role": 0,
"team_id": 2647604,
"team_name": "^_-",
"team_tag": "^_-",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198056091436",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d26d2b33825113db96ca6a5afface2870f85c160.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d26d2b33825113db96ca6a5afface2870f85c160_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d2/d26d2b33825113db96ca6a5afface2870f85c160_full.jpg",
"profileurl": "https://steamcommunity.com/id/smuglianka/",
"personaname": "LAB | . OZZYYYYYYYYYYY",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-08T01:27:05.000Z",
"last_played": 1527996693,
"win": 5,
"games": 5,
"with_win": 0,
"with_games": 0,
"against_win": 5,
"against_games": 5,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 75390186,
"name": "Barry ",
"country_code": "sg",
"fantasy_role": 0,
"team_id": 0,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198035655914",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/54/546abbe48ca01b7c556a28877fbd6582fab7b0dd.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/54/546abbe48ca01b7c556a28877fbd6582fab7b0dd_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/54/546abbe48ca01b7c556a28877fbd6582fab7b0dd_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198035655914/",
"personaname": "Ted",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "SG",
"last_match_time": "2018-09-10T12:25:37.000Z",
"last_played": 1475954170,
"win": 4,
"games": 5,
"with_win": 1,
"with_games": 1,
"against_win": 3,
"against_games": 4,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 40209325,
"name": "jonassomfan",
"country_code": "",
"fantasy_role": 0,
"team_id": 5059375,
"team_name": "The Final Tribe",
"team_tag": "TFT",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198000475053",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/87019600f744ba4148562625edb99d8d84b53239.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/87019600f744ba4148562625edb99d8d84b53239_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/87019600f744ba4148562625edb99d8d84b53239_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198000475053/",
"personaname": "monkaS",
"last_login": null,
"full_history_time": "2018-06-08T08:17:24.247Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:04:24.000Z",
"last_played": 1495104095,
"win": 2,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 87063175,
"name": "lelis",
"country_code": "",
"fantasy_role": 0,
"team_id": 5025439,
"team_name": "hjv",
"team_tag": ".",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047328903",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3ac2574f7dac16c2b08ca05601b4c618fbdd6db8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3ac2574f7dac16c2b08ca05601b4c618fbdd6db8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3ac2574f7dac16c2b08ca05601b4c618fbdd6db8_full.jpg",
"profileurl": "https://steamcommunity.com/id/7864e563e54tr5ty/",
"personaname": "carnaval",
"last_login": "2017-04-22T20:08:59.799Z",
"full_history_time": "2018-07-30T18:34:58.693Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T03:52:09.000Z",
"last_played": 1513205743,
"win": 2,
"games": 4,
"with_win": 0,
"with_games": 2,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86741690,
"name": "Lubby",
"country_code": "",
"fantasy_role": 0,
"team_id": 4424013,
"team_name": "Ten Twenty",
"team_tag": "1020",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047007418",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fafebb2bf18d7453d5c9add60583bae15d60bb81.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fafebb2bf18d7453d5c9add60583bae15d60bb81_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fafebb2bf18d7453d5c9add60583bae15d60bb81_full.jpg",
"profileurl": "https://steamcommunity.com/id/lubslubs/",
"personaname": "broken",
"last_login": "2018-08-28T10:02:41.740Z",
"full_history_time": "2017-06-07T07:09:40.609Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SG",
"last_match_time": "2018-09-10T12:38:42.000Z",
"last_played": 1387800811,
"win": 4,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 95430068,
"name": "Madara",
"country_code": "",
"fantasy_role": 0,
"team_id": 5229049,
"team_name": "Mad Lads",
"team_tag": "ML",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198055695796",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fe187b0080ae867ecd096c19896ef67faefe5730.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fe187b0080ae867ecd096c19896ef67faefe5730_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fe187b0080ae867ecd096c19896ef67faefe5730_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198055695796/",
"personaname": "Twitch.tv/madaradota2",
"last_login": null,
"full_history_time": "2018-03-19T01:07:41.163Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "GR",
"last_match_time": "2018-09-10T19:29:09.000Z",
"last_played": 1493134817,
"win": 4,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 38057824,
"name": "KvH",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "Wheel Whreck While Whistling",
"team_tag": "Wheel",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561197998323552",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e4/e4a295899e94d6e37c580122baafa446357a966b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e4/e4a295899e94d6e37c580122baafa446357a966b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e4/e4a295899e94d6e37c580122baafa446357a966b_full.jpg",
"profileurl": "https://steamcommunity.com/id/Khanh_VH/",
"personaname": "KvH",
"last_login": "2016-07-24T15:10:26.642Z",
"full_history_time": "2018-06-04T20:26:47.314Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-09-10T03:47:03.000Z",
"last_played": 1513292866,
"win": 2,
"games": 4,
"with_win": 1,
"with_games": 2,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 111034589,
"name": "adam",
"country_code": "",
"fantasy_role": 0,
"team_id": 2880140,
"team_name": "Fire Dragoon",
"team_tag": "FDG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198071300317",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/49/49c412164c4c2c373f47b75f3b997e911bdec8ca.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/49/49c412164c4c2c373f47b75f3b997e911bdec8ca_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/49/49c412164c4c2c373f47b75f3b997e911bdec8ca_full.jpg",
"profileurl": "https://steamcommunity.com/id/343DotA/",
"personaname": "toxic but honest",
"last_login": null,
"full_history_time": "2018-03-28T17:44:53.442Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "MY",
"last_match_time": "2018-09-08T19:44:41.000Z",
"last_played": 1470444888,
"win": 0,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 104109762,
"name": "xxxzzz",
"country_code": "my",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Team Redemption`",
"team_tag": "Tr",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198064375490",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c3/c31a5c8071b4b97bcb22ad9a87d10e6a9780db6d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c3/c31a5c8071b4b97bcb22ad9a87d10e6a9780db6d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c3/c31a5c8071b4b97bcb22ad9a87d10e6a9780db6d_full.jpg",
"profileurl": "https://steamcommunity.com/id/940810/",
"personaname": "carry1",
"last_login": "2017-02-10T05:42:54.762Z",
"full_history_time": "2018-01-29T08:49:49.113Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-04T10:28:38.000Z",
"last_played": 1405185328,
"win": 3,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 129610677,
"name": "Saber",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Noo Logic Gaming",
"team_tag": "NLG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198089876405",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f15c376bab6d8f9ba718ce87c7c2de8af7b3bf96.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f15c376bab6d8f9ba718ce87c7c2de8af7b3bf96_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f15c376bab6d8f9ba718ce87c7c2de8af7b3bf96_full.jpg",
"profileurl": "https://steamcommunity.com/id/Xcaliba/",
"personaname": "Saber",
"last_login": "2015-09-21T16:08:49.775Z",
"full_history_time": "2017-11-28T06:37:25.542Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1403972433,
"win": 1,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 315657960,
"name": "Larry Appletime",
"country_code": "",
"fantasy_role": 0,
"team_id": 2512249,
"team_name": "123",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198275923688",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c429e43d76fdcfed39168017ba07bd5f13e589e6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c429e43d76fdcfed39168017ba07bd5f13e589e6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c429e43d76fdcfed39168017ba07bd5f13e589e6_full.jpg",
"profileurl": "https://steamcommunity.com/id/749881720435/",
"personaname": ".|.",
"last_login": null,
"full_history_time": "2017-12-06T01:37:36.985Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "JP",
"last_match_time": "2018-07-05T21:21:49.000Z",
"last_played": 1497651220,
"win": 2,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 294933582,
"name": "天",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "VG.Sunrise",
"team_tag": "VG.S",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198255199310",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0d/0d7df43ce9439868c647b446b2add93e42bc6b3a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0d/0d7df43ce9439868c647b446b2add93e42bc6b3a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0d/0d7df43ce9439868c647b446b2add93e42bc6b3a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198255199310/",
"personaname": "Roosevelt",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-03-30T09:18:58.000Z",
"last_played": 1515326673,
"win": 3,
"games": 4,
"with_win": 1,
"with_games": 2,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86794404,
"name": "DoN | XwaN",
"country_code": "id",
"fantasy_role": 1,
"team_id": 1847212,
"team_name": "Gallant Gangsters",
"team_tag": "GG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198047060132",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/35/359eabbc176d927a1659fca7adb2c73abd80041e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/35/359eabbc176d927a1659fca7adb2c73abd80041e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/35/359eabbc176d927a1659fca7adb2c73abd80041e_full.jpg",
"profileurl": "https://steamcommunity.com/id/albertdickludong/",
"personaname": "rider on the storm",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-07-09T16:40:40.000Z",
"last_played": 1374154776,
"win": 4,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 105178768,
"name": "BSJ",
"country_code": "",
"fantasy_role": 0,
"team_id": 5028104,
"team_name": "VGJ Storm",
"team_tag": "VGJ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198065444496",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f9/f965698d1694ac4ae324c9b6849dbf56ceccee61.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f9/f965698d1694ac4ae324c9b6849dbf56ceccee61_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f9/f965698d1694ac4ae324c9b6849dbf56ceccee61_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198065444496/",
"personaname": "BSJ",
"last_login": null,
"full_history_time": "2018-07-10T06:14:53.089Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-08T06:41:38.000Z",
"last_played": 1497494124,
"win": 2,
"games": 4,
"with_win": 1,
"with_games": 1,
"against_win": 1,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 51541746,
"name": "Ysaera",
"country_code": "sg",
"fantasy_role": 1,
"team_id": 463048,
"team_name": "insidiousidol",
"team_tag": "ii",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198011807474",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7d/7d57ca7d7cee2a237ff2f28526beac48ae6aed20.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7d/7d57ca7d7cee2a237ff2f28526beac48ae6aed20_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7d/7d57ca7d7cee2a237ff2f28526beac48ae6aed20_full.jpg",
"profileurl": "https://steamcommunity.com/id/ysaera/",
"personaname": "Ysaera",
"last_login": null,
"full_history_time": "2018-06-26T03:51:26.554Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SG",
"last_match_time": "2018-07-28T13:59:48.000Z",
"last_played": 1399815712,
"win": 4,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 186637294,
"name": "Dys",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 1360078,
"team_name": "Just Nve U",
"team_tag": "JNU",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198146903022",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a1/a17a72ed14e01a84b324e5d76ce0e66d1e8b2be7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a1/a17a72ed14e01a84b324e5d76ce0e66d1e8b2be7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a1/a17a72ed14e01a84b324e5d76ce0e66d1e8b2be7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198146903022/",
"personaname": "Dys",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T18:32:06.000Z",
"last_played": 1510656361,
"win": 4,
"games": 4,
"with_win": 4,
"with_games": 4,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 94364925,
"name": "baiduking",
"country_code": "ca",
"fantasy_role": 0,
"team_id": 0,
"team_name": "chinese purse",
"team_tag": "ehomepurse",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198054630653",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/31/31147e76560b937c3858278fd5096266f6a83106.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/31/31147e76560b937c3858278fd5096266f6a83106_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/31/31147e76560b937c3858278fd5096266f6a83106_full.jpg",
"profileurl": "https://steamcommunity.com/id/fmsjdjjfnrendbfgffhrjdj/",
"personaname": "yawar vs the world",
"last_login": "2018-01-18T02:01:50.579Z",
"full_history_time": "2017-03-23T17:52:21.877Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T08:31:37.000Z",
"last_played": 1470105131,
"win": 3,
"games": 4,
"with_win": 1,
"with_games": 2,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 131380551,
"name": "MozuN、",
"country_code": "",
"fantasy_role": 0,
"team_id": 3260216,
"team_name": "Team HighGround",
"team_tag": "HG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198091646279",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5f/5f552332293ffdf0101de8b10ee846606b5c8b58.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5f/5f552332293ffdf0101de8b10ee846606b5c8b58_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5f/5f552332293ffdf0101de8b10ee846606b5c8b58_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198091646279/",
"personaname": "你不懂我內傷。",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "MY",
"last_match_time": "2018-09-10T08:58:59.000Z",
"last_played": 1405185328,
"win": 3,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 193884241,
"name": "ponlo",
"country_code": "sg",
"fantasy_role": 2,
"team_id": 3018001,
"team_name": " ",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198154149969",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6c064fe6b590f194f40a1fa11ac558b189009d85.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6c064fe6b590f194f40a1fa11ac558b189009d85_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6c064fe6b590f194f40a1fa11ac558b189009d85_full.jpg",
"profileurl": "https://steamcommunity.com/id/ponlodota/",
"personaname": "3/4",
"last_login": "2018-02-20T01:46:23.817Z",
"full_history_time": "2015-11-26T10:58:41.501Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SG",
"last_match_time": "2018-09-09T10:56:42.000Z",
"last_played": 1465671525,
"win": 2,
"games": 4,
"with_win": 2,
"with_games": 3,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 194270488,
"name": "black.z",
"country_code": "",
"fantasy_role": 0,
"team_id": 2626685,
"team_name": "KEEN GAMING",
"team_tag": "KG",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198154536216",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/78/78a45f08592e9cb76d74826a268a30cb44d09c45.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/78/78a45f08592e9cb76d74826a268a30cb44d09c45_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/78/78a45f08592e9cb76d74826a268a30cb44d09c45_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198154536216/",
"personaname": "小毛 ๓",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-01-23T07:54:41.000Z",
"last_played": 1462029983,
"win": 1,
"games": 4,
"with_win": 1,
"with_games": 3,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 132739889,
"name": "Chappie",
"country_code": "",
"fantasy_role": 0,
"team_id": 46,
"team_name": "Team Empire",
"team_tag": "Empire",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198093005617",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/1132e68e74232da887ee7cc670381339338ea290.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/1132e68e74232da887ee7cc670381339338ea290_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/1132e68e74232da887ee7cc670381339338ea290_full.jpg",
"profileurl": "https://steamcommunity.com/id/Chappiedota2/",
"personaname": "Chappie",
"last_login": null,
"full_history_time": "2018-05-06T19:21:41.396Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T17:55:13.000Z",
"last_played": 1491308302,
"win": 1,
"games": 4,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 196546726,
"name": "Iroha",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 5970391,
"team_name": "Eclipse",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198156812454",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/08/08d6fd6afa1de5bae255f4ff8a03cc16667796f9.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/08/08d6fd6afa1de5bae255f4ff8a03cc16667796f9_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/08/08d6fd6afa1de5bae255f4ff8a03cc16667796f9_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198156812454/",
"personaname": "aaaaa",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-07T12:19:56.000Z",
"last_played": 1479545801,
"win": 2,
"games": 4,
"with_win": 1,
"with_games": 1,
"against_win": 1,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 146511635,
"name": "mm",
"country_code": "",
"fantasy_role": 0,
"team_id": 5867395,
"team_name": "竞技宝竞猜",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198106777363",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23acf1af5b5b3dd586f0ec7c89be68de08663add.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23acf1af5b5b3dd586f0ec7c89be68de08663add_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23acf1af5b5b3dd586f0ec7c89be68de08663add_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198106777363/",
"personaname": "Pos4 only",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-09T17:00:32.000Z",
"last_played": 1532094050,
"win": 1,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 142139318,
"name": "` vtFαded -",
"country_code": "",
"fantasy_role": 0,
"team_id": 5036221,
"team_name": "Sun Gaming",
"team_tag": "Sun",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198102405046",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/96/96d6b412ecf59f18bee67d4a25ab4a355c3f3ee8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/96/96d6b412ecf59f18bee67d4a25ab4a355c3f3ee8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/96/96d6b412ecf59f18bee67d4a25ab4a355c3f3ee8_full.jpg",
"profileurl": "https://steamcommunity.com/id/jhaovt0731/",
"personaname": "` vtFαded -",
"last_login": null,
"full_history_time": "2018-06-09T01:54:44.641Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "MY",
"last_match_time": "2018-09-08T20:32:33.000Z",
"last_played": 1515403288,
"win": 4,
"games": 4,
"with_win": 2,
"with_games": 2,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 107227595,
"name": "NO_Chanc3",
"country_code": "",
"fantasy_role": 0,
"team_id": 5138280,
"team_name": "Signify",
"team_tag": "Signify",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198067493323",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9f/9f781f5a8df73e200a9ff98994313e46224910b5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9f/9f781f5a8df73e200a9ff98994313e46224910b5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9f/9f781f5a8df73e200a9ff98994313e46224910b5_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198067493323/",
"personaname": "NO_Chanc3~♪KarenDaiDai♪",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "IN",
"last_match_time": "2018-09-10T18:32:45.000Z",
"last_played": 1465671525,
"win": 3,
"games": 4,
"with_win": 1,
"with_games": 1,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 103894687,
"name": "ZeuS",
"country_code": "",
"fantasy_role": 2,
"team_id": 4,
"team_name": "EHOME",
"team_tag": "EHOME",
"is_locked": false,
"is_pro": false,
"locked_until": 0,
"steamid": "76561198064160415",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/972ee38ea2dbcdeac1eb7ba88506a819c54c74ac.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/972ee38ea2dbcdeac1eb7ba88506a819c54c74ac_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/972ee38ea2dbcdeac1eb7ba88506a819c54c74ac_full.jpg",
"profileurl": "https://steamcommunity.com/id/112059793/",
"personaname": "TYTY",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2017-12-15T07:52:00.000Z",
"last_played": 1491487970,
"win": 1,
"games": 4,
"with_win": 1,
"with_games": 3,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 118073569,
"name": "SmAsH",
"country_code": "pe",
"fantasy_role": 1,
"team_id": 5767798,
"team_name": "Los Inbaneables",
"team_tag": "INBA",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198078339297",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/4033de73bd64e16e24dd946467cca67bc610ef71.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/4033de73bd64e16e24dd946467cca67bc610ef71_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/4033de73bd64e16e24dd946467cca67bc610ef71_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198078339297/",
"personaname": "PMA MODE",
"last_login": null,
"full_history_time": "2018-09-10T02:07:20.367Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "PE",
"last_match_time": "2018-09-10T20:46:06.000Z",
"last_played": 1513133025,
"win": 3,
"games": 4,
"with_win": 1,
"with_games": 1,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89137399,
"name": "Goblak",
"country_code": "ua",
"fantasy_role": 2,
"team_id": 2621843,
"team_name": "Team. Spirit",
"team_tag": "TSpirit",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198049403127",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23a2b448fdfc06e6cf2db9e6be15fc81fce7e18b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23a2b448fdfc06e6cf2db9e6be15fc81fce7e18b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23a2b448fdfc06e6cf2db9e6be15fc81fce7e18b_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049403127/",
"personaname": "Goblak",
"last_login": null,
"full_history_time": "2018-08-29T08:52:07.894Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-08-08T20:25:56.000Z",
"last_played": 1456476566,
"win": 2,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 221651179,
"name": "Jixing",
"country_code": "",
"fantasy_role": 0,
"team_id": 3331948,
"team_name": "LGD.Forever Young",
"team_tag": "LFY",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198181916907",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5e/5eb39186cc2b873890ce9eefd00036c95a7800fa.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5e/5eb39186cc2b873890ce9eefd00036c95a7800fa_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5e/5eb39186cc2b873890ce9eefd00036c95a7800fa_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198181916907/",
"personaname": "blackeyed",
"last_login": null,
"full_history_time": "2016-10-25T09:22:00.736Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1483278412,
"win": 2,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 81481903,
"name": "tnt",
"country_code": "th",
"fantasy_role": 2,
"team_id": 5030979,
"team_name": "ALPHA Blue",
"team_tag": "aB",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198041747631",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/df/df47dda7d499f941ae62c081bdcd5f0f5f280ebc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/df/df47dda7d499f941ae62c081bdcd5f0f5f280ebc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/df/df47dda7d499f941ae62c081bdcd5f0f5f280ebc_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198041747631/",
"personaname": "susano",
"last_login": "2017-10-18T08:31:46.506Z",
"full_history_time": "2018-07-02T07:35:54.825Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T10:58:53.000Z",
"last_played": 1521024975,
"win": 3,
"games": 4,
"with_win": 1,
"with_games": 1,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86785083,
"name": "AfterLife",
"country_code": "",
"fantasy_role": 0,
"team_id": 3332295,
"team_name": "Friends",
"team_tag": "Friends",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047050811",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/83/83afdddb2375d0216bb55431e68536fcd27b92d8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/83/83afdddb2375d0216bb55431e68536fcd27b92d8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/83/83afdddb2375d0216bb55431e68536fcd27b92d8_full.jpg",
"profileurl": "https://steamcommunity.com/id/56463462546665/",
"personaname": "AKyJlbi4",
"last_login": "2016-09-25T16:03:58.225Z",
"full_history_time": "2018-04-15T14:24:21.683Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "UA",
"last_match_time": "2018-09-10T18:11:06.000Z",
"last_played": 1465053795,
"win": 2,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 93670407,
"name": "Ice",
"country_code": "",
"fantasy_role": 1,
"team_id": 2789395,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198053936135",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/771267828e93ec0c49460ec97564d024f0dbc9c8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/771267828e93ec0c49460ec97564d024f0dbc9c8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/771267828e93ec0c49460ec97564d024f0dbc9c8_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198053936135/",
"personaname": "Fly",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1379936860,
"win": 4,
"games": 4,
"with_win": 0,
"with_games": 0,
"against_win": 4,
"against_games": 4,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 85937380,
"name": "4dr ♥Déia",
"country_code": "",
"fantasy_role": 0,
"team_id": 3715574,
"team_name": "SG e-sports team",
"team_tag": "SG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198046203108",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/1135a286ee1c57097eb3482fac945c49e7a6709e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/1135a286ee1c57097eb3482fac945c49e7a6709e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/11/1135a286ee1c57097eb3482fac945c49e7a6709e_full.jpg",
"profileurl": "https://steamcommunity.com/id/2345634563452453/",
"personaname": "Dr. Enéas Carneiro",
"last_login": "2015-09-01T18:13:47.678Z",
"full_history_time": "2018-06-30T20:08:27.470Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-06-23T23:18:55.000Z",
"last_played": 1497555401,
"win": 0,
"games": 3,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 226340817,
"name": "R7",
"country_code": "id",
"fantasy_role": 1,
"team_id": 5231224,
"team_name": "Rex Regum Qeon",
"team_tag": "RR.QEON",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198186606545",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/65/65eaadd0d7528d1d2c6394ade77f60ef0508644a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/65/65eaadd0d7528d1d2c6394ade77f60ef0508644a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/65/65eaadd0d7528d1d2c6394ade77f60ef0508644a_full.jpg",
"profileurl": "https://steamcommunity.com/id/rivaldifataah/",
"personaname": "R7",
"last_login": null,
"full_history_time": "2018-06-12T17:09:02.468Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "ID",
"last_match_time": "2018-09-10T13:46:31.000Z",
"last_played": 1465555194,
"win": 2,
"games": 3,
"with_win": 1,
"with_games": 1,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89782335,
"name": "Dread",
"country_code": "ru",
"fantasy_role": 1,
"team_id": 2898453,
"team_name": "KBU",
"team_tag": "KBU",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198050048063",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3a43b5fc23ff003224f8baa51adc12014469c56d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3a43b5fc23ff003224f8baa51adc12014469c56d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3a43b5fc23ff003224f8baa51adc12014469c56d_full.jpg",
"profileurl": "https://steamcommunity.com/id/GolubevAV/",
"personaname": "Кипяток",
"last_login": null,
"full_history_time": "2018-07-06T15:16:09.634Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-09T21:39:02.000Z",
"last_played": 1423147242,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 76904792,
"name": "poloson",
"country_code": "sg",
"fantasy_role": 2,
"team_id": 6016776,
"team_name": "Resurgence",
"team_tag": "RSG",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198037170520",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6a/6a31cf0bec8e47649e29dffacb4f931df47f7f52.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6a/6a31cf0bec8e47649e29dffacb4f931df47f7f52_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6a/6a31cf0bec8e47649e29dffacb4f931df47f7f52_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198037170520/",
"personaname": "ahchin",
"last_login": "2018-03-06T00:39:33.445Z",
"full_history_time": "2018-01-25T09:22:35.094Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T12:25:37.000Z",
"last_played": 1387800811,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 238239590,
"name": "Bryle",
"country_code": "",
"fantasy_role": 0,
"team_id": 5196328,
"team_name": "Digital Chaos",
"team_tag": "DC",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198198505318",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bfff13496acbcf2a2a81212c13a04f6b6834616a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bfff13496acbcf2a2a81212c13a04f6b6834616a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bfff13496acbcf2a2a81212c13a04f6b6834616a_full.jpg",
"profileurl": "https://steamcommunity.com/id/112222121212/",
"personaname": "are you real?",
"last_login": "2018-06-02T11:25:53.150Z",
"full_history_time": "2018-03-03T23:26:29.924Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T08:42:57.000Z",
"last_played": 1533854448,
"win": 2,
"games": 3,
"with_win": 1,
"with_games": 1,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 81852496,
"name": "Afoninje",
"country_code": "",
"fantasy_role": 0,
"team_id": 5197722,
"team_name": "Effect",
"team_tag": "Effect",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198042118224",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0_full.jpg",
"profileurl": "https://steamcommunity.com/id/Afoninje/",
"personaname": "meow",
"last_login": null,
"full_history_time": "2018-06-21T14:46:05.485Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T18:11:06.000Z",
"last_played": 1423147242,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 84105632,
"name": "sleisel",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "asdasd",
"team_tag": "FLeSh",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198044371360",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/25d2cba5dc2986255aeebfd21c1588446e71aeba.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/25d2cba5dc2986255aeebfd21c1588446e71aeba_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/25d2cba5dc2986255aeebfd21c1588446e71aeba_full.jpg",
"profileurl": "https://steamcommunity.com/id/lesiels/",
"personaname": "the downward spiral",
"last_login": "2018-07-18T17:09:47.505Z",
"full_history_time": "2018-01-01T01:57:16.292Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-09-10T06:08:05.000Z",
"last_played": 1497496769,
"win": 1,
"games": 3,
"with_win": 0,
"with_games": 1,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 63703276,
"name": "goddam",
"country_code": "kz",
"fantasy_role": 2,
"team_id": 0,
"team_name": "ALGA",
"team_tag": "ALGA",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198023969004",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cc/cc10b3d5187a7d564d0878f76e0b3f7243777183.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cc/cc10b3d5187a7d564d0878f76e0b3f7243777183_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cc/cc10b3d5187a7d564d0878f76e0b3f7243777183_full.jpg",
"profileurl": "https://steamcommunity.com/id/godd4m/",
"personaname": "pdpcps",
"last_login": "2015-09-21T06:59:39.418Z",
"full_history_time": "2018-01-25T06:02:25.566Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "KZ",
"last_match_time": "2018-09-10T20:57:20.000Z",
"last_played": 1423147242,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 211284773,
"name": "7676",
"country_code": "",
"fantasy_role": 0,
"team_id": 5970391,
"team_name": "Eclipse",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198171550501",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ab/ab0d40961de5f164fe4d1c00e7c851e88c1c4a81.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ab/ab0d40961de5f164fe4d1c00e7c851e88c1c4a81_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ab/ab0d40961de5f164fe4d1c00e7c851e88c1c4a81_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198171550501/",
"personaname": "Me",
"last_login": "2015-11-11T08:12:54.570Z",
"full_history_time": "2015-11-14T19:23:44.747Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-07T12:19:56.000Z",
"last_played": 1484299045,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 1,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 85375207,
"name": "ComeWithMe",
"country_code": "ro",
"fantasy_role": 2,
"team_id": 2197847,
"team_name": "Burden United",
"team_tag": "BU",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198045640935",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40a2444e82003fe1e18e283250fc5518a76414a6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40a2444e82003fe1e18e283250fc5518a76414a6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40a2444e82003fe1e18e283250fc5518a76414a6_full.jpg",
"profileurl": "https://steamcommunity.com/id/leceweme/",
"personaname": "ComeWithMe",
"last_login": "2018-04-09T15:05:36.667Z",
"full_history_time": "2018-04-04T20:57:54.630Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RO",
"last_match_time": "2018-09-10T19:58:04.000Z",
"last_played": 1508328620,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 20321748,
"name": "kid",
"country_code": "",
"fantasy_role": 0,
"team_id": 2786652,
"team_name": "Kingdra",
"team_tag": "King",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197980587476",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6f/6fa0eba0bda6c4c3b355d5b443d9e3b399fe6c6b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6f/6fa0eba0bda6c4c3b355d5b443d9e3b399fe6c6b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6f/6fa0eba0bda6c4c3b355d5b443d9e3b399fe6c6b_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197980587476/",
"personaname": "@_@",
"last_login": "2016-11-07T10:10:21.130Z",
"full_history_time": "2018-02-06T01:52:54.853Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "FJ",
"last_match_time": "2018-09-10T17:35:33.000Z",
"last_played": 1534289873,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 1,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 109455705,
"name": "Greedy",
"country_code": "",
"fantasy_role": 0,
"team_id": 3705786,
"team_name": "/////",
"team_tag": "/////",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198069721433",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/248d6fac4f5dac12849951c328ec81e4ef191ccb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/248d6fac4f5dac12849951c328ec81e4ef191ccb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/248d6fac4f5dac12849951c328ec81e4ef191ccb_full.jpg",
"profileurl": "https://steamcommunity.com/id/1235981236127/",
"personaname": "blackreaper",
"last_login": null,
"full_history_time": "2017-09-08T19:45:04.537Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CA",
"last_match_time": "2018-09-10T21:16:13.000Z",
"last_played": 1469983160,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 1,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 118233883,
"name": "`AlaCrity -",
"country_code": "",
"fantasy_role": 0,
"team_id": 2880140,
"team_name": "Fire Dragoon",
"team_tag": "FDG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198078499611",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40344ce4d91574dcb78e464ddaec0817dd43870c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40344ce4d91574dcb78e464ddaec0817dd43870c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40344ce4d91574dcb78e464ddaec0817dd43870c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198078499611/",
"personaname": "Open AI (5v5)",
"last_login": "2017-05-17T15:13:12.567Z",
"full_history_time": "2017-07-07T08:10:29.205Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "MY",
"last_match_time": "2018-09-10T15:44:50.000Z",
"last_played": 1465660820,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 148185527,
"name": "Ragnar",
"country_code": "",
"fantasy_role": 2,
"team_id": 2534605,
"team_name": "1",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198108451255",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a2/a2d817f3e9a7d12d1e41845a0c45fbae362f6d2c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a2/a2d817f3e9a7d12d1e41845a0c45fbae362f6d2c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a2/a2d817f3e9a7d12d1e41845a0c45fbae362f6d2c_full.jpg",
"profileurl": "https://steamcommunity.com/id/148185527/",
"personaname": "Ragnar.",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-04T17:38:55.000Z",
"last_played": 1483116417,
"win": 2,
"games": 3,
"with_win": 1,
"with_games": 2,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 92127891,
"name": "xd",
"country_code": "",
"fantasy_role": 0,
"team_id": 6173529,
"team_name": "hitler",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198052393619",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f7facc7b1660377e3bd70f81e3e26f8296c8af0f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f7facc7b1660377e3bd70f81e3e26f8296c8af0f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f7facc7b1660377e3bd70f81e3e26f8296c8af0f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198052393619/",
"personaname": "no",
"last_login": null,
"full_history_time": "2018-05-28T13:13:35.395Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SG",
"last_match_time": "2018-09-10T08:47:23.000Z",
"last_played": 1367514660,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 96698174,
"name": "SNOW",
"country_code": "my",
"fantasy_role": 1,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": null,
"avatar": null,
"avatarmedium": null,
"avatarfull": null,
"profileurl": null,
"personaname": null,
"last_login": null,
"full_history_time": null,
"cheese": null,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1401099779,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 106014083,
"name": "www1234543",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 2310555,
"team_name": "DrinkingBoys",
"team_tag": "DKB",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198066279811",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23d2d77977905d67aac3f6c2a80f5d9bd163f5b2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23d2d77977905d67aac3f6c2a80f5d9bd163f5b2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23d2d77977905d67aac3f6c2a80f5d9bd163f5b2_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198066279811/",
"personaname": "♥. www",
"last_login": null,
"full_history_time": "2017-04-08T10:09:19.454Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-05-13T07:27:52.000Z",
"last_played": 1393661252,
"win": 1,
"games": 3,
"with_win": 1,
"with_games": 3,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 109512357,
"name": "Biver",
"country_code": "",
"fantasy_role": 0,
"team_id": 2621843,
"team_name": "Team. Spirit",
"team_tag": "TSpirit",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198069778085",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/01/01e6e09f3edd273ba5a43883277022091dc474c4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/01/01e6e09f3edd273ba5a43883277022091dc474c4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/01/01e6e09f3edd273ba5a43883277022091dc474c4_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198069778085/",
"personaname": "biver",
"last_login": null,
"full_history_time": "2017-08-12T15:44:57.548Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T18:42:21.000Z",
"last_played": 1497549931,
"win": 1,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 87442297,
"name": "InsidiousC",
"country_code": "",
"fantasy_role": 0,
"team_id": 4424013,
"team_name": "Ten Twenty",
"team_tag": "1020",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198047708025",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f02e14c6e81419baafa227a108516b9746ed0ccf.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f02e14c6e81419baafa227a108516b9746ed0ccf_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f0/f02e14c6e81419baafa227a108516b9746ed0ccf_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047708025/",
"personaname": "V.",
"last_login": "2018-04-03T07:36:19.456Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "SG",
"last_match_time": "2018-09-10T19:31:27.000Z",
"last_played": 1399815712,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 5448108,
"name": "Fogged",
"country_code": "us",
"fantasy_role": 2,
"team_id": 4562387,
"team_name": "FILLER PICK",
"team_tag": "FP",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561197965713836",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c5b75506e6f65ab41095ed4bc70314e467d74ce0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c5b75506e6f65ab41095ed4bc70314e467d74ce0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c5/c5b75506e6f65ab41095ed4bc70314e467d74ce0_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197965713836/",
"personaname": "F-Dog",
"last_login": null,
"full_history_time": "2017-12-18T09:42:50.290Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-08-16T15:23:11.000Z",
"last_played": 1417674094,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 100598959,
"name": "Erice",
"country_code": "ph",
"fantasy_role": 1,
"team_id": 6075435,
"team_name": "ArkAngel",
"team_tag": "ArkAngel",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198060864687",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/aa/aa244cf1303860590430ba36c3bcc1c730053bf0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/aa/aa244cf1303860590430ba36c3bcc1c730053bf0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/aa/aa244cf1303860590430ba36c3bcc1c730053bf0_full.jpg",
"profileurl": "https://steamcommunity.com/id/EriceGuerra/",
"personaname": "魔鬼",
"last_login": null,
"full_history_time": "2018-02-21T20:32:26.016Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T17:36:46.000Z",
"last_played": 1465658014,
"win": 1,
"games": 3,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 117956848,
"name": "tavo",
"country_code": "",
"fantasy_role": 3,
"team_id": 67,
"team_name": "paiN Gaming",
"team_tag": "paiN",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198078222576",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3af25cf085d78e678d7558c242f5d9a2000afd99.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3af25cf085d78e678d7558c242f5d9a2000afd99_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3af25cf085d78e678d7558c242f5d9a2000afd99_full.jpg",
"profileurl": "https://steamcommunity.com/id/thetavo/",
"personaname": "Who gon' pray for me?",
"last_login": "2016-06-05T23:57:20.643Z",
"full_history_time": "2018-03-09T06:59:01.809Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "BR",
"last_match_time": "2018-09-07T23:58:25.000Z",
"last_played": 1533854448,
"win": 1,
"games": 3,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 87432909,
"name": "pewpew",
"country_code": "ru",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Yellow Submarine !",
"team_tag": "YeS!",
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198047698637",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1d/1d9e317926b450ea448476bbf4a51751040ae667.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1d/1d9e317926b450ea448476bbf4a51751040ae667_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1d/1d9e317926b450ea448476bbf4a51751040ae667_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047698637/",
"personaname": "xbury",
"last_login": "2017-05-02T19:15:35.326Z",
"full_history_time": "2018-03-02T16:25:23.018Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T10:12:09.000Z",
"last_played": 1423147242,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 92551671,
"name": "Kecik Imba",
"country_code": "my",
"fantasy_role": 1,
"team_id": 2662139,
"team_name": "Mineski Malaysia",
"team_tag": "Mski MY",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198052817399",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/48/481a332f755899226fea129c52dc98d77fc5c71e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/48/481a332f755899226fea129c52dc98d77fc5c71e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/48/481a332f755899226fea129c52dc98d77fc5c71e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198052817399/",
"personaname": "m0th3rfuck3r",
"last_login": null,
"full_history_time": "2018-01-11T10:45:31.598Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "GB",
"last_match_time": null,
"last_played": 1434623366,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 101062921,
"name": "Arms",
"country_code": "br",
"fantasy_role": 1,
"team_id": 3477208,
"team_name": "Midas Club ",
"team_tag": "Midas",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198061328649",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f1a1b13d2ef6503c46e7573bb0ba43492bb9bae5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f1a1b13d2ef6503c46e7573bb0ba43492bb9bae5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f1/f1a1b13d2ef6503c46e7573bb0ba43492bb9bae5_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198061328649/",
"personaname": "Arms",
"last_login": "2016-05-16T17:06:21.329Z",
"full_history_time": "2018-06-09T00:15:37.467Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "BR",
"last_match_time": "2018-09-10T21:10:58.000Z",
"last_played": 1497560886,
"win": 2,
"games": 3,
"with_win": 1,
"with_games": 1,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 130095331,
"name": "大明",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5035956,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198090361059",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9c/9ca9aee688b16b6acd0e7f045e1afc2bc2168c13.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9c/9ca9aee688b16b6acd0e7f045e1afc2bc2168c13_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9c/9ca9aee688b16b6acd0e7f045e1afc2bc2168c13_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198090361059/",
"personaname": "大明",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T15:58:29.000Z",
"last_played": 1409740355,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 1,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86811043,
"name": "monkeys-forever",
"country_code": "",
"fantasy_role": 0,
"team_id": 5028104,
"team_name": "VGJ Storm",
"team_tag": "VGJ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047076771",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c4ce05dfab4b55763e5abdc6b4098e383bb6c0d4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c4ce05dfab4b55763e5abdc6b4098e383bb6c0d4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c4/c4ce05dfab4b55763e5abdc6b4098e383bb6c0d4_full.jpg",
"profileurl": "https://steamcommunity.com/id/monkeys-forever/",
"personaname": "Oh Wonder",
"last_login": "2018-08-04T04:59:07.034Z",
"full_history_time": "2018-08-04T05:15:46.342Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T09:29:46.000Z",
"last_played": 1513560686,
"win": 1,
"games": 3,
"with_win": 1,
"with_games": 2,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 162077924,
"name": "Django",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 3786711,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198122343652",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dd3d7edc87e144df732030b9a8ffca30200f59e0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dd3d7edc87e144df732030b9a8ffca30200f59e0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dd3d7edc87e144df732030b9a8ffca30200f59e0_full.jpg",
"profileurl": "https://steamcommunity.com/id/luoyebo/",
"personaname": "绝活白给",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-09T18:11:49.000Z",
"last_played": 1477144248,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 162310729,
"name": "obb",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 1836806,
"team_name": "the wings gaming",
"team_tag": "Wings",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198122576457",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fa5bc62b8a2627aec4e229a5ba98c9a60c7f16d2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fa5bc62b8a2627aec4e229a5ba98c9a60c7f16d2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fa5bc62b8a2627aec4e229a5ba98c9a60c7f16d2_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198122576457/",
"personaname": "obb",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T14:34:00.000Z",
"last_played": 1536590040,
"win": 1,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 96183976,
"name": "Naive-",
"country_code": "kz",
"fantasy_role": 1,
"team_id": 46,
"team_name": "Team Empire",
"team_tag": "Empire",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198056449704",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4bab8ddc52fdb6a6a0d40d378e6c666eb7bf0f7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4bab8ddc52fdb6a6a0d40d378e6c666eb7bf0f7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d4bab8ddc52fdb6a6a0d40d378e6c666eb7bf0f7_full.jpg",
"profileurl": "https://steamcommunity.com/id/ta2000/",
"personaname": "Naive-",
"last_login": null,
"full_history_time": "2018-07-30T16:42:11.238Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "KZ",
"last_match_time": "2018-09-10T20:30:38.000Z",
"last_played": 1525091404,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 124246681,
"name": "H2O",
"country_code": "",
"fantasy_role": 0,
"team_id": 4,
"team_name": "EHOME",
"team_tag": "EHOME",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198084512409",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23ab6509422b3ec2bfa872dd3e255d853146dc17.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23ab6509422b3ec2bfa872dd3e255d853146dc17_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23ab6509422b3ec2bfa872dd3e255d853146dc17_full.jpg",
"profileurl": "https://steamcommunity.com/id/H2OOO/",
"personaname": "报点男孩",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-07-22T10:01:53.000Z",
"last_played": 1482155535,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 91929373,
"name": "FallenHana",
"country_code": "au",
"fantasy_role": 2,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198052195101",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ef/ef31050c1bfc77b01b3b110290a1bac129b8aec1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ef/ef31050c1bfc77b01b3b110290a1bac129b8aec1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ef/ef31050c1bfc77b01b3b110290a1bac129b8aec1_full.jpg",
"profileurl": "https://steamcommunity.com/id/tylerfuk1/",
"personaname": "Tokki",
"last_login": null,
"full_history_time": "2016-12-21T21:33:16.664Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "GB",
"last_match_time": "2018-09-04T16:59:54.000Z",
"last_played": 1361863326,
"win": 1,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86974263,
"name": "Stan King",
"country_code": "",
"fantasy_role": 0,
"team_id": 5028104,
"team_name": "VGJ Storm",
"team_tag": "VGJ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047239991",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
"profileurl": "https://steamcommunity.com/id/stansyang/",
"personaname": "stan king",
"last_login": "2016-02-26T18:11:06.110Z",
"full_history_time": "2016-12-21T21:49:46.354Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "US",
"last_match_time": "2018-09-06T07:50:18.000Z",
"last_played": 1513553105,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 111030315,
"name": "w_Zayac",
"country_code": "",
"fantasy_role": 0,
"team_id": 2006913,
"team_name": "Vega Squadron",
"team_tag": "Vega",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198071296043",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/94/94fa226598204a0589e64ea5f7a741ac68bf8885.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/94/94fa226598204a0589e64ea5f7a741ac68bf8885_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/94/94fa226598204a0589e64ea5f7a741ac68bf8885_full.jpg",
"profileurl": "https://steamcommunity.com/id/996555750308/",
"personaname": "W_Z",
"last_login": null,
"full_history_time": "2018-03-14T07:05:43.341Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "KG",
"last_match_time": "2018-09-10T19:43:21.000Z",
"last_played": 1526273421,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 1,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 126417273,
"name": "AhJit",
"country_code": "",
"fantasy_role": 0,
"team_id": 2880140,
"team_name": "Fire Dragoon",
"team_tag": "FDG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198086683001",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9e/9e7ae7ab31714bd2d9f2bd3d38bbea97f2aa973a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9e/9e7ae7ab31714bd2d9f2bd3d38bbea97f2aa973a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/9e/9e7ae7ab31714bd2d9f2bd3d38bbea97f2aa973a_full.jpg",
"profileurl": "https://steamcommunity.com/id/sarahlover1998/",
"personaname": "AhJit",
"last_login": "2017-02-10T05:41:39.289Z",
"full_history_time": "2018-07-17T16:07:10.024Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "MY",
"last_match_time": "2018-09-10T12:32:11.000Z",
"last_played": 1521022140,
"win": 2,
"games": 3,
"with_win": 0,
"with_games": 1,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 176552562,
"name": "llll",
"country_code": "cn",
"fantasy_role": 0,
"team_id": 5241235,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198136818290",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5a/5acb58eb7682a3a229830cc6d87157e6e5bd1a17.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5a/5acb58eb7682a3a229830cc6d87157e6e5bd1a17_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5a/5acb58eb7682a3a229830cc6d87157e6e5bd1a17_full.jpg",
"profileurl": "https://steamcommunity.com/id/398907849/",
"personaname": "Kurosagi",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:19:27.000Z",
"last_played": 1531486714,
"win": 2,
"games": 3,
"with_win": 2,
"with_games": 2,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 125845797,
"name": "Valqui",
"country_code": "",
"fantasy_role": 0,
"team_id": 5198236,
"team_name": "VWFG",
"team_tag": " ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198086111525",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/33f764e02b905a16be33961e79547b66f020d51a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/33f764e02b905a16be33961e79547b66f020d51a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/33/33f764e02b905a16be33961e79547b66f020d51a_full.jpg",
"profileurl": "https://steamcommunity.com/id/2X9X1X0/",
"personaname": "如果沒有心,就不會覺得虐了吧",
"last_login": "2016-04-17T17:16:22.628Z",
"full_history_time": "2018-07-10T15:22:25.686Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T20:22:38.000Z",
"last_played": 1497489235,
"win": 2,
"games": 3,
"with_win": 1,
"with_games": 1,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 104070670,
"name": "ARTES",
"country_code": "ua",
"fantasy_role": 1,
"team_id": 5107795,
"team_name": "Backpacks Gaming ",
"team_tag": "BpG",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198064336398",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/99/99bde026c33a2a9ca58958975e94daf5999269f9.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/99/99bde026c33a2a9ca58958975e94daf5999269f9_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/99/99bde026c33a2a9ca58958975e94daf5999269f9_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198064336398/",
"personaname": "ARTES",
"last_login": null,
"full_history_time": "2017-07-01T22:37:36.690Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T15:07:37.000Z",
"last_played": 1423147242,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 100841499,
"name": "",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": "OG Dota2",
"team_tag": "OG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198061107227",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/41/410d7bb4fa2ab53a73253a5db80bc49bd616e32f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/41/410d7bb4fa2ab53a73253a5db80bc49bd616e32f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/41/410d7bb4fa2ab53a73253a5db80bc49bd616e32f_full.jpg",
"profileurl": "https://steamcommunity.com/id/echra7/",
"personaname": "隊友呢?隊友呢?隊友呢??",
"last_login": "2018-06-09T13:29:11.962Z",
"full_history_time": "2018-06-09T13:29:32.112Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "US",
"last_match_time": null,
"last_played": 1389236953,
"win": 1,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 101932097,
"name": "♥Ghost♥",
"country_code": "my",
"fantasy_role": 1,
"team_id": 248456,
"team_name": "Invasion eSports",
"team_tag": "Invasion",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": null,
"avatar": null,
"avatarmedium": null,
"avatarfull": null,
"profileurl": null,
"personaname": null,
"last_login": null,
"full_history_time": null,
"cheese": null,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1401099779,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 169025618,
"name": "KheZu",
"country_code": "",
"fantasy_role": 0,
"team_id": 5229049,
"team_name": "Mad Lads",
"team_tag": "ML",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198129291346",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c8/c8d5502eaa3082b34fa5e9c101e922c3958520af.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c8/c8d5502eaa3082b34fa5e9c101e922c3958520af_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c8/c8d5502eaa3082b34fa5e9c101e922c3958520af_full.jpg",
"profileurl": "https://steamcommunity.com/id/2741995/",
"personaname": "OpenAI 69 (Bot)",
"last_login": "2015-12-15T17:07:49.316Z",
"full_history_time": "2018-04-28T22:36:42.973Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:29:09.000Z",
"last_played": 1493019074,
"win": 1,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 41016928,
"name": "StaiN",
"country_code": "",
"fantasy_role": 1,
"team_id": 2736247,
"team_name": "ijhbaseugyhAUYEAUYHISEhuiSa",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198001282656",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c68fd8eb45efc63c0ff43f230bc0f7b6c1bbac35.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c68fd8eb45efc63c0ff43f230bc0f7b6c1bbac35_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c68fd8eb45efc63c0ff43f230bc0f7b6c1bbac35_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198001282656/",
"personaname": "qwer",
"last_login": null,
"full_history_time": "2017-12-11T23:58:08.574Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:43:59.000Z",
"last_played": 1497496769,
"win": 1,
"games": 3,
"with_win": 0,
"with_games": 1,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 66598119,
"name": "Tudi",
"country_code": "sg",
"fantasy_role": 0,
"team_id": 6016776,
"team_name": "Resurgence",
"team_tag": "RSG",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198026863847",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b1/b1825e77be6b8801508c12a65966ffda80d75d22.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b1/b1825e77be6b8801508c12a65966ffda80d75d22_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b1/b1825e77be6b8801508c12a65966ffda80d75d22_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198026863847/",
"personaname": "pewpewpew",
"last_login": "2018-07-17T08:23:37.211Z",
"full_history_time": "2015-09-24T22:59:27.985Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T12:25:37.000Z",
"last_played": 1475920886,
"win": 3,
"games": 3,
"with_win": 0,
"with_games": 0,
"against_win": 3,
"against_games": 3,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 133973515,
"name": "White",
"country_code": "",
"fantasy_role": 0,
"team_id": 1520578,
"team_name": "CDEC ",
"team_tag": "CDEC",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198094239243",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/68/681478cd224bb23c7477b24ebb494cd211515ea7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/68/681478cd224bb23c7477b24ebb494cd211515ea7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/68/681478cd224bb23c7477b24ebb494cd211515ea7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198094239243/",
"personaname": "俊秀的查理斯",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T11:38:00.000Z",
"last_played": 1535509973,
"win": 2,
"games": 2,
"with_win": 2,
"with_games": 2,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 116572078,
"name": "ReBorN.",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5128832,
"team_name": "HD",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198076837806",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4f/4f73dbad3bd5ced0faef16e0489cc4797e561691.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4f/4f73dbad3bd5ced0faef16e0489cc4797e561691_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4f/4f73dbad3bd5ced0faef16e0489cc4797e561691_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198076837806/",
"personaname": "ReBorN.",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-08-30T13:35:59.000Z",
"last_played": 1488212661,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 369751488,
"name": "Speed",
"country_code": "",
"fantasy_role": 0,
"team_id": 3349045,
"team_name": "Σ(っ°Д°;)っ",
"team_tag": "Σ(っ°Д°;)っ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198330017216",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/49/4950db53e135009eeb450814945068aea750f2a0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/49/4950db53e135009eeb450814945068aea750f2a0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/49/4950db53e135009eeb450814945068aea750f2a0_full.jpg",
"profileurl": "https://steamcommunity.com/id/artourxy/",
"personaname": "差不多先生",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-07-26T13:45:11.000Z",
"last_played": 1521881420,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 61284613,
"name": "Nuts",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198021550341",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/61/61b53044b6bf1b3812b750bb91e5cdbebf11c379.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/61/61b53044b6bf1b3812b750bb91e5cdbebf11c379_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/61/61b53044b6bf1b3812b750bb91e5cdbebf11c379_full.jpg",
"profileurl": "https://steamcommunity.com/id/Mynutz/",
"personaname": "Gäjm",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2017-11-27T18:53:16.000Z",
"last_played": 1431267850,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 100175472,
"name": "z.Chels♡",
"country_code": "",
"fantasy_role": 2,
"team_id": 0,
"team_name": "Luccini Gaming",
"team_tag": "Luccini",
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198060441200",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf1f909724337e6ccecedca7246eb9dc2595417e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf1f909724337e6ccecedca7246eb9dc2595417e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf1f909724337e6ccecedca7246eb9dc2595417e_full.jpg",
"profileurl": "https://steamcommunity.com/id/ztokel/",
"personaname": "Ch♡",
"last_login": "2017-02-28T17:02:43.599Z",
"full_history_time": "2017-10-18T03:37:35.653Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "FR",
"last_match_time": "2018-09-06T23:58:07.000Z",
"last_played": 1447413537,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 61061435,
"name": "Chains",
"country_code": "sg",
"fantasy_role": 1,
"team_id": 2413217,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198021327163",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8d/8d49aff8b80d7066186d372b312dfa5a8e6d789f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8d/8d49aff8b80d7066186d372b312dfa5a8e6d789f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8d/8d49aff8b80d7066186d372b312dfa5a8e6d789f_full.jpg",
"profileurl": "https://steamcommunity.com/id/whyyousay/",
"personaname": "FXXK IT",
"last_login": "2016-04-19T06:33:11.576Z",
"full_history_time": "2016-09-13T06:43:41.441Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SG",
"last_match_time": "2017-11-25T11:06:42.000Z",
"last_played": 1477063002,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 90125566,
"name": "Misha",
"country_code": "",
"fantasy_role": 0,
"team_id": 5229438,
"team_name": "Team Loyalty",
"team_tag": "TL",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198050391294",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/32/3239b02c4d211199933ffe1258388fa9bf274d34.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/32/3239b02c4d211199933ffe1258388fa9bf274d34_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/32/3239b02c4d211199933ffe1258388fa9bf274d34_full.jpg",
"profileurl": "https://steamcommunity.com/id/asdpaspdaspd/",
"personaname": "хунвейбин",
"last_login": null,
"full_history_time": "2017-12-13T15:09:28.515Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-07-09T17:38:17.000Z",
"last_played": 1508509957,
"win": 1,
"games": 2,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 123787524,
"name": "Shachlo",
"country_code": "",
"fantasy_role": 0,
"team_id": 1964407,
"team_name": "Comanche",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198084053252",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cd7810405957abc5b41cf09c5fa6b52dad0750e7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cd7810405957abc5b41cf09c5fa6b52dad0750e7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cd7810405957abc5b41cf09c5fa6b52dad0750e7_full.jpg",
"profileurl": "https://steamcommunity.com/id/Shachlos/",
"personaname": "m3m",
"last_login": "2016-01-02T13:01:34.195Z",
"full_history_time": "2018-04-03T13:16:47.043Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T19:43:21.000Z",
"last_played": 1508594553,
"win": 0,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 143385139,
"name": "归来骑黄鹤!",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198103650867",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6c2edcd4a298760561fc014c7dcd79d93f59e429.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6c2edcd4a298760561fc014c7dcd79d93f59e429_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6c2edcd4a298760561fc014c7dcd79d93f59e429_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198103650867/",
"personaname": "Abaddon.",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1398751909,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 116249155,
"name": "nefrit",
"country_code": "ua",
"fantasy_role": 2,
"team_id": 3756982,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198076514883",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23217ea6bdde41da43cc8bf9d503b24584cb9fa3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23217ea6bdde41da43cc8bf9d503b24584cb9fa3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23217ea6bdde41da43cc8bf9d503b24584cb9fa3_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198076514883/",
"personaname": "nefrit",
"last_login": "2017-07-06T11:51:22.857Z",
"full_history_time": "2018-07-05T23:59:15.824Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UA",
"last_match_time": "2018-09-10T13:01:12.000Z",
"last_played": 1521177617,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 10516239,
"name": "cat",
"country_code": "",
"fantasy_role": 0,
"team_id": 4424013,
"team_name": "Ten Twenty",
"team_tag": "1020",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197970781967",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ab/ab4ed9abe125bf97102cea9fdd5ecf98fe792d60.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ab/ab4ed9abe125bf97102cea9fdd5ecf98fe792d60_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ab/ab4ed9abe125bf97102cea9fdd5ecf98fe792d60_full.jpg",
"profileurl": "https://steamcommunity.com/id/catsansansan/",
"personaname": "uu",
"last_login": "2017-03-25T20:49:43.533Z",
"full_history_time": "2017-03-25T20:50:37.689Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SG",
"last_match_time": "2018-08-08T15:33:42.000Z",
"last_played": 1368434154,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 54580962,
"name": "iNSaNiA",
"country_code": "",
"fantasy_role": 0,
"team_id": 111474,
"team_name": "Alliance",
"team_tag": "Alliance",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198014846690",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d1/d17419fca1a419b86ec4b87a643968e4811897e6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d1/d17419fca1a419b86ec4b87a643968e4811897e6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d1/d17419fca1a419b86ec4b87a643968e4811897e6_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198014846690/",
"personaname": "Laurel Green",
"last_login": "2016-11-11T17:31:55.114Z",
"full_history_time": "2018-04-07T15:19:36.133Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SE",
"last_match_time": "2018-09-10T20:54:48.000Z",
"last_played": 1521096213,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86761682,
"name": "keyser",
"country_code": "",
"fantasy_role": 0,
"team_id": 5216274,
"team_name": " Echo.Int",
"team_tag": " ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047027410",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/eb/eb999a8b60b227fcd4d92f0b16d67cbb37cab41d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/eb/eb999a8b60b227fcd4d92f0b16d67cbb37cab41d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/eb/eb999a8b60b227fcd4d92f0b16d67cbb37cab41d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047027410/",
"personaname": "111",
"last_login": "2016-06-28T14:52:37.480Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-06-25T14:27:04.000Z",
"last_played": 1429870255,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 94281932,
"name": "Karl",
"country_code": "",
"fantasy_role": 1,
"team_id": 2581813,
"team_name": "Execration.安博电竞",
"team_tag": "XctN",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198054547660",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/22/22fd1130fa7cff89329b1d0edb295c2fb6c4d4c5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/22/22fd1130fa7cff89329b1d0edb295c2fb6c4d4c5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/22/22fd1130fa7cff89329b1d0edb295c2fb6c4d4c5_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198054547660/",
"personaname": "$hinobi",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T06:54:19.000Z",
"last_played": 1465671525,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 198455581,
"name": "csj",
"country_code": "",
"fantasy_role": 0,
"team_id": 5216146,
"team_name": "Team Ever",
"team_tag": "Ever",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198158721309",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5b/5b5735662364a07667ce23a18523ec386dcbb76e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5b/5b5735662364a07667ce23a18523ec386dcbb76e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5b/5b5735662364a07667ce23a18523ec386dcbb76e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198158721309/",
"personaname": "o_O",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T08:25:58.000Z",
"last_played": 1517887015,
"win": 2,
"games": 2,
"with_win": 1,
"with_games": 1,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 100028335,
"name": "ArsZeeqq",
"country_code": "",
"fantasy_role": 0,
"team_id": 2790766,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198060294063",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e033d4d2d0c59956c8b179a96b48a0ba4403d55f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e033d4d2d0c59956c8b179a96b48a0ba4403d55f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e033d4d2d0c59956c8b179a96b48a0ba4403d55f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198060294063/",
"personaname": "ArsZeeqq",
"last_login": "2016-09-08T13:54:55.438Z",
"full_history_time": "2018-06-09T18:33:14.787Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-05T15:03:04.000Z",
"last_played": 1522481932,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 1,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 53178236,
"name": "Sedoy",
"country_code": "",
"fantasy_role": 0,
"team_id": 2790766,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198013443964",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1c/1c4cd8728374ebfb69fe8d66ca9522cb6a565c79.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1c/1c4cd8728374ebfb69fe8d66ca9522cb6a565c79_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1c/1c4cd8728374ebfb69fe8d66ca9522cb6a565c79_full.jpg",
"profileurl": "https://steamcommunity.com/id/123125455654/",
"personaname": "Sedoy-",
"last_login": null,
"full_history_time": "2018-06-29T13:42:28.164Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T21:20:18.000Z",
"last_played": 1493155705,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 99983413,
"name": "Deth-sama",
"country_code": "",
"fantasy_role": 0,
"team_id": 6142615,
"team_name": "氷",
"team_tag": "氷",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198060249141",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0c/0cfca6d323f5939daa11a686030523ab51716f8a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0c/0cfca6d323f5939daa11a686030523ab51716f8a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0c/0cfca6d323f5939daa11a686030523ab51716f8a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198060249141/",
"personaname": "bada baby.",
"last_login": "2015-09-21T14:56:25.292Z",
"full_history_time": "2018-04-17T07:28:16.717Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SG",
"last_match_time": "2018-09-10T10:36:53.000Z",
"last_played": 1465561490,
"win": 0,
"games": 2,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 3246092,
"name": "inphinity",
"country_code": "us",
"fantasy_role": 1,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561197963511820",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/98/98895b053ff265ebcb8c7e07a2ebce80e578ba85.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/98/98895b053ff265ebcb8c7e07a2ebce80e578ba85_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/98/98895b053ff265ebcb8c7e07a2ebce80e578ba85_full.jpg",
"profileurl": "https://steamcommunity.com/id/inphinity1/",
"personaname": "INPHINITY",
"last_login": "2016-08-13T22:30:40.357Z",
"full_history_time": "2015-11-27T20:23:27.907Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": null,
"last_played": 1405386050,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 85956459,
"name": "Mariachi&am",
"country_code": "ru",
"fantasy_role": 0,
"team_id": 6166915,
"team_name": "TPB",
"team_tag": "TPB",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198046222187",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e5/e5766012d3f93f73595c1571b8f63f9797d6e74f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e5/e5766012d3f93f73595c1571b8f63f9797d6e74f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e5/e5766012d3f93f73595c1571b8f63f9797d6e74f_full.jpg",
"profileurl": "https://steamcommunity.com/id/Mariachidota/",
"personaname": "Mariachi...<3",
"last_login": null,
"full_history_time": "2018-02-22T08:36:54.507Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T17:52:14.000Z",
"last_played": 1508484837,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 125432874,
"name": "DILA !",
"country_code": "id",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Executioners",
"team_tag": "XcN",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198085698602",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e7/e70686802a4bcdbf781c0d8561f63ed1ffd1d736.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e7/e70686802a4bcdbf781c0d8561f63ed1ffd1d736_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e7/e70686802a4bcdbf781c0d8561f63ed1ffd1d736_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198085698602/",
"personaname": "DILA !",
"last_login": null,
"full_history_time": "2018-02-09T09:55:57.473Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "DE",
"last_match_time": "2018-09-10T20:37:25.000Z",
"last_played": 1370215611,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 104888934,
"name": "Nafari",
"country_code": "",
"fantasy_role": 0,
"team_id": 3262512,
"team_name": "The Prime NND",
"team_tag": "TP.NND",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198065154662",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/83/83a406aab768510d7fd341dea847bf095f88c158.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/83/83a406aab768510d7fd341dea847bf095f88c158_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/83/83a406aab768510d7fd341dea847bf095f88c158_full.jpg",
"profileurl": "https://steamcommunity.com/id/Azamilinka_/",
"personaname": "Operation arc light",
"last_login": "2016-05-01T05:03:23.979Z",
"full_history_time": "2016-05-01T05:13:32.947Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "ID",
"last_match_time": "2018-09-10T11:10:20.000Z",
"last_played": 1361863326,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 256269737,
"name": "Julz",
"country_code": "",
"fantasy_role": 0,
"team_id": 2087967,
"team_name": "DeToNator.",
"team_tag": "DTN",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198216535465",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a3/a35ca3999454fbdb232b089564dd8aeb7f2ad39a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a3/a35ca3999454fbdb232b089564dd8aeb7f2ad39a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a3/a35ca3999454fbdb232b089564dd8aeb7f2ad39a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198216535465/",
"personaname": "Jalz*",
"last_login": null,
"full_history_time": "2017-03-10T06:50:40.763Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "PH",
"last_match_time": "2018-07-24T14:03:43.000Z",
"last_played": 1445928537,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 98914820,
"name": "SXOCXS",
"country_code": "sg",
"fantasy_role": 1,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198059180548",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a41c4aa2968e1c73fac8b341c2406d17e28af4d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a41c4aa2968e1c73fac8b341c2406d17e28af4d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a41c4aa2968e1c73fac8b341c2406d17e28af4d_full.jpg",
"profileurl": "https://steamcommunity.com/id/sxocxs/",
"personaname": "BAOZI",
"last_login": null,
"full_history_time": "2017-10-21T09:09:39.254Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-08-22T03:06:34.000Z",
"last_played": 1399815712,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 192914280,
"name": "raging -_-potato",
"country_code": "",
"fantasy_role": 0,
"team_id": 6185402,
"team_name": "asd",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198153180008",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/66/667c96e06e93c61b98998352136069e939bb4773.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/66/667c96e06e93c61b98998352136069e939bb4773_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/66/667c96e06e93c61b98998352136069e939bb4773_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198153180008/",
"personaname": "bi bu bi bu bi bu",
"last_login": null,
"full_history_time": "2017-07-03T21:27:49.815Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T13:27:51.000Z",
"last_played": 1445928537,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 27178898,
"name": "Skylark",
"country_code": "",
"fantasy_role": 0,
"team_id": 3659536,
"team_name": "Clutch Gamers",
"team_tag": "CG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197987444626",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b8/b8c93054b9f2cce5921e5484fee47b8f8486812a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b8/b8c93054b9f2cce5921e5484fee47b8f8486812a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b8/b8c93054b9f2cce5921e5484fee47b8f8486812a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197987444626/",
"personaname": "TITAN",
"last_login": null,
"full_history_time": "2018-03-13T19:21:12.075Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "GR",
"last_match_time": "2018-08-01T18:28:59.000Z",
"last_played": 1493134817,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 237238721,
"name": "Pikachu",
"country_code": "",
"fantasy_role": 0,
"team_id": 4429098,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198197504449",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d1/d10835f4c0dd93f5947d787769131ff7e88e54d8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d1/d10835f4c0dd93f5947d787769131ff7e88e54d8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d1/d10835f4c0dd93f5947d787769131ff7e88e54d8_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198197504449/",
"personaname": "vsem pohui",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "UA",
"last_match_time": "2018-09-10T17:32:48.000Z",
"last_played": 1508594553,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 79875438,
"name": "zai`",
"country_code": "my",
"fantasy_role": 1,
"team_id": 5143279,
"team_name": "",
"team_tag": "Standin",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198040141166",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a6/a6faf2a6a224f3b0225c63d0b656b638500331c6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a6/a6faf2a6a224f3b0225c63d0b656b638500331c6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a6/a6faf2a6a224f3b0225c63d0b656b638500331c6_full.jpg",
"profileurl": "https://steamcommunity.com/id/loveluiiluii/",
"personaname": "zai`",
"last_login": null,
"full_history_time": "2018-07-04T18:08:59.285Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "KR",
"last_match_time": "2018-09-09T13:45:03.000Z",
"last_played": 1465638524,
"win": 1,
"games": 2,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 155332459,
"name": "Matthew~",
"country_code": "",
"fantasy_role": 0,
"team_id": 2672298,
"team_name": "Infamous Gaming",
"team_tag": "Infamous",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198115598187",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/37/37256b0a55d1de281950b9ec74612a9b460b5188.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/37/37256b0a55d1de281950b9ec74612a9b460b5188_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/37/37256b0a55d1de281950b9ec74612a9b460b5188_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198115598187/",
"personaname": "Matthew",
"last_login": null,
"full_history_time": "2018-01-06T12:48:23.872Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "JE",
"last_match_time": "2018-09-06T22:35:21.000Z",
"last_played": 1527996693,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86793739,
"name": "garter",
"country_code": "",
"fantasy_role": 0,
"team_id": 5004103,
"team_name": "tuho",
"team_tag": "tuho",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198047059467",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fa6deb23b2d431a5216dc6850fc56dce65a12366.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fa6deb23b2d431a5216dc6850fc56dce65a12366_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fa/fa6deb23b2d431a5216dc6850fc56dce65a12366_full.jpg",
"profileurl": "https://steamcommunity.com/id/garterdota2/",
"personaname": "garter",
"last_login": "2017-02-04T07:24:23.518Z",
"full_history_time": "2018-09-04T16:17:40.453Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "XK",
"last_match_time": "2018-09-10T19:42:51.000Z",
"last_played": 1493049117,
"win": 2,
"games": 2,
"with_win": 1,
"with_games": 1,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 51747431,
"name": "Crowley",
"country_code": "",
"fantasy_role": 0,
"team_id": 5138280,
"team_name": "Signify",
"team_tag": "Signify",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198012013159",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a8711cd57f30b74344a55e8e2c50c92a210973bd.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a8711cd57f30b74344a55e8e2c50c92a210973bd_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a8711cd57f30b74344a55e8e2c50c92a210973bd_full.jpg",
"profileurl": "https://steamcommunity.com/id/Raunak1/",
"personaname": "1818",
"last_login": "2017-11-24T10:41:19.751Z",
"full_history_time": "2017-08-25T20:18:42.992Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T12:28:32.000Z",
"last_played": 1357756891,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 78937420,
"name": "wuffwuff",
"country_code": "de",
"fantasy_role": 1,
"team_id": 5214653,
"team_name": "Looking for team",
"team_tag": "LFT",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198039203148",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e0da4b0244fd7cae5498821fe71c4f129b606c52.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e0da4b0244fd7cae5498821fe71c4f129b606c52_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e0/e0da4b0244fd7cae5498821fe71c4f129b606c52_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198039203148/",
"personaname": "PerTzo",
"last_login": "2017-10-03T21:51:56.611Z",
"full_history_time": "2017-10-27T11:06:34.003Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "DE",
"last_match_time": "2018-09-04T13:31:18.000Z",
"last_played": 1508325200,
"win": 2,
"games": 2,
"with_win": 1,
"with_games": 1,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 4281729,
"name": "syndereN",
"country_code": "",
"fantasy_role": 0,
"team_id": 5229049,
"team_name": "Mad Lads",
"team_tag": "ML",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561197964547457",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/4014b548d8454d6894eec5e84c7db691b458458c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/4014b548d8454d6894eec5e84c7db691b458458c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/4014b548d8454d6894eec5e84c7db691b458458c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197964547457/",
"personaname": "syndereN",
"last_login": null,
"full_history_time": "2018-08-06T20:57:03.387Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "DK",
"last_match_time": "2018-09-10T19:34:12.000Z",
"last_played": 1508598035,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 1,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 1185644,
"name": "Korok",
"country_code": "us",
"fantasy_role": 1,
"team_id": 680763,
"team_name": "Korok's Girth",
"team_tag": "zoop",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561197961451372",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/79/79e13e2f272d8e21dde94b7ebbbc1ba832ef0d53.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/79/79e13e2f272d8e21dde94b7ebbbc1ba832ef0d53_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/79/79e13e2f272d8e21dde94b7ebbbc1ba832ef0d53_full.jpg",
"profileurl": "https://steamcommunity.com/id/korokodile/",
"personaname": "boris lvl 25 dark willow",
"last_login": "2015-09-21T20:30:38.990Z",
"full_history_time": "2018-08-07T18:32:57.218Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-07T03:34:29.000Z",
"last_played": 1405016453,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 236858633,
"name": "FLee",
"country_code": "",
"fantasy_role": 0,
"team_id": 5028104,
"team_name": "VGJ Storm",
"team_tag": "VGJ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198197124361",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/34ccf5c798e2a2f5781e5e7606a5cbf3e7eb3944.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/34ccf5c798e2a2f5781e5e7606a5cbf3e7eb3944_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/34ccf5c798e2a2f5781e5e7606a5cbf3e7eb3944_full.jpg",
"profileurl": "https://steamcommunity.com/id/FLee23/",
"personaname": "mr chu",
"last_login": null,
"full_history_time": "2017-04-26T18:22:54.993Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "KR",
"last_match_time": "2018-09-10T04:07:14.000Z",
"last_played": 1512790258,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 113995822,
"name": "ILTW",
"country_code": "",
"fantasy_role": 0,
"team_id": 2621843,
"team_name": "Team. Spirit",
"team_tag": "TSpirit",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198074261550",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a8546f6226cd3fac1b04dcce4352f8971420e85a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a8546f6226cd3fac1b04dcce4352f8971420e85a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a8/a8546f6226cd3fac1b04dcce4352f8971420e85a_full.jpg",
"profileurl": "https://steamcommunity.com/id/xiLTWx/",
"personaname": "1-2-3",
"last_login": "2017-01-20T17:11:50.488Z",
"full_history_time": "2018-05-09T11:25:37.285Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T13:07:06.000Z",
"last_played": 1508509957,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 1,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 234699894,
"name": "Blizzy 传说",
"country_code": "kg",
"fantasy_role": 1,
"team_id": 2006913,
"team_name": "Vega Squadron",
"team_tag": "Vega",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198194965622",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198194965622/",
"personaname": "Blizzy 传说",
"last_login": null,
"full_history_time": "2018-05-13T17:55:34.991Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T18:10:30.000Z",
"last_played": 1526273421,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 184445673,
"name": "BaiduKING",
"country_code": "",
"fantasy_role": 1,
"team_id": 3544442,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198144711401",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e1/e1768dd07ede68ab952187f6e81cb875e459d18d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e1/e1768dd07ede68ab952187f6e81cb875e459d18d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e1/e1768dd07ede68ab952187f6e81cb875e459d18d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198144711401/",
"personaname": "Baiduking",
"last_login": null,
"full_history_time": "2018-07-07T22:09:09.833Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-08T00:53:21.000Z",
"last_played": 1513216802,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 96189126,
"name": "tw.tv/ark_dota",
"country_code": "",
"fantasy_role": 0,
"team_id": 1964407,
"team_name": "Comanche",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198056454854",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3f7d2b8b8d00ae2d795d934b4362f3324238be4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3f7d2b8b8d00ae2d795d934b4362f3324238be4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e3/e3f7d2b8b8d00ae2d795d934b4362f3324238be4_full.jpg",
"profileurl": "https://steamcommunity.com/id/daffuqq4/",
"personaname": ".kelen",
"last_login": "2018-07-29T19:59:48.902Z",
"full_history_time": "2018-04-09T15:13:59.088Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T19:58:04.000Z",
"last_played": 1519055337,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 1,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 113372833,
"name": "UnderShock",
"country_code": "",
"fantasy_role": 0,
"team_id": 2006913,
"team_name": "Vega Squadron",
"team_tag": "Vega",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198073638561",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/78/780bcf64ea88069ec3e6d662a422bcd2cf992566.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/78/780bcf64ea88069ec3e6d662a422bcd2cf992566_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/78/780bcf64ea88069ec3e6d662a422bcd2cf992566_full.jpg",
"profileurl": "https://steamcommunity.com/id/mh8h8h8hh8h8/",
"personaname": "ok)",
"last_login": "2017-10-04T13:59:07.246Z",
"full_history_time": "2018-05-29T16:50:11.925Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "AU",
"last_match_time": "2018-09-10T19:58:04.000Z",
"last_played": 1526273421,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 87394977,
"name": "akutatawu",
"country_code": "sg",
"fantasy_role": 1,
"team_id": 0,
"team_name": "White Fries Gaming",
"team_tag": "WF",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198047660705",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/80/8066351f143e2f13508989e3159bc27f76aa87e0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/80/8066351f143e2f13508989e3159bc27f76aa87e0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/80/8066351f143e2f13508989e3159bc27f76aa87e0_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047660705/",
"personaname": "新加坡利亚鹏",
"last_login": null,
"full_history_time": "2018-04-11T08:51:19.540Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2017-05-31T06:55:35.000Z",
"last_played": 1478609382,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 375600147,
"name": "",
"country_code": "",
"fantasy_role": 0,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198335865875",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198335865875/",
"personaname": "Zzzzzzzzzz",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2017-09-30T08:00:58.000Z",
"last_played": 1506747918,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86741304,
"name": "ADTR",
"country_code": "my",
"fantasy_role": 1,
"team_id": 2739242,
"team_name": "#######",
"team_tag": "###",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198047007032",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ce/ce77afcc72d3b6190184463bbf08c1439571ac80.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ce/ce77afcc72d3b6190184463bbf08c1439571ac80_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ce/ce77afcc72d3b6190184463bbf08c1439571ac80_full.jpg",
"profileurl": "https://steamcommunity.com/id/bonebonepow/",
"personaname": "dedicated newborn",
"last_login": null,
"full_history_time": "2017-12-26T21:17:56.993Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-04T14:40:47.000Z",
"last_played": 1401099779,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 105610776,
"name": "Shanks",
"country_code": "",
"fantasy_role": 0,
"team_id": 5001936,
"team_name": "Quid Pro Quo",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198065876504",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17ca4aade20667d1f055c97209f5a063cf124789.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17ca4aade20667d1f055c97209f5a063cf124789_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17ca4aade20667d1f055c97209f5a063cf124789_full.jpg",
"profileurl": "https://steamcommunity.com/id/ranpo01/",
"personaname": "Ranpo",
"last_login": "2018-05-11T09:02:30.747Z",
"full_history_time": "2018-05-11T09:07:44.750Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T13:46:31.000Z",
"last_played": 1464943747,
"win": 1,
"games": 2,
"with_win": 1,
"with_games": 2,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 182439266,
"name": "86",
"country_code": "",
"fantasy_role": 1,
"team_id": 2634810,
"team_name": "KG.Luminous",
"team_tag": "KG.L",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198142704994",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3e/3eb642904b8e8915f571677c317882b0da279691.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3e/3eb642904b8e8915f571677c317882b0da279691_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3e/3eb642904b8e8915f571677c317882b0da279691_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198142704994/",
"personaname": "祥林",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2017-09-24T07:10:06.000Z",
"last_played": 1474651023,
"win": 1,
"games": 2,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 16769223,
"name": "radiobouffon",
"country_code": "fr",
"fantasy_role": 1,
"team_id": 5233630,
"team_name": "Alternance de Puissance",
"team_tag": "AdP",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561197977034951",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ef/efedb4d1bb6e9b84be7842b86b294108faf2d27a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ef/efedb4d1bb6e9b84be7842b86b294108faf2d27a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ef/efedb4d1bb6e9b84be7842b86b294108faf2d27a_full.jpg",
"profileurl": "https://steamcommunity.com/id/radiobouffon/",
"personaname": "★★★",
"last_login": "2015-12-12T12:35:24.001Z",
"full_history_time": "2018-09-03T19:51:19.306Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-08T13:57:05.000Z",
"last_played": 1431267850,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 91191651,
"name": "jingdi",
"country_code": "th",
"fantasy_role": 1,
"team_id": 0,
"team_name": "ALPHA Red",
"team_tag": "ALPHA-Red",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198051457379",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0e/0eb318125c7fc17adf05707ef51efc881509292b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0e/0eb318125c7fc17adf05707ef51efc881509292b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0e/0eb318125c7fc17adf05707ef51efc881509292b_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198051457379/",
"personaname": "idkidc",
"last_login": null,
"full_history_time": "2018-04-17T21:36:36.492Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "TH",
"last_match_time": "2018-09-10T17:46:52.000Z",
"last_played": 1464943747,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 1,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86953414,
"name": "Maybe Next Time",
"country_code": "",
"fantasy_role": 0,
"team_id": 5229049,
"team_name": "Mad Lads",
"team_tag": "ML",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047219142",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ff/ff298ce9c4c1f47e5ebdb79fc07c196aaf7fe7ee.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ff/ff298ce9c4c1f47e5ebdb79fc07c196aaf7fe7ee_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ff/ff298ce9c4c1f47e5ebdb79fc07c196aaf7fe7ee_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047219142/",
"personaname": "Maybe Next Time",
"last_login": "2016-11-07T11:58:11.774Z",
"full_history_time": "2017-05-26T21:06:40.705Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "GR",
"last_match_time": "2018-09-10T19:29:09.000Z",
"last_played": 1493134817,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 122867857,
"name": "Jamesy",
"country_code": "",
"fantasy_role": 0,
"team_id": 6185375,
"team_name": "sda",
"team_tag": "-",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198083133585",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8f/8ffa8b436070af845d8044e83359041c8a3aa14d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8f/8ffa8b436070af845d8044e83359041c8a3aa14d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/8f/8ffa8b436070af845d8044e83359041c8a3aa14d_full.jpg",
"profileurl": "https://steamcommunity.com/id/jamesbumbs/",
"personaname": "Momo",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T15:35:12.000Z",
"last_played": 1521008517,
"win": 0,
"games": 2,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 94786276,
"name": "Nine",
"country_code": "",
"fantasy_role": 0,
"team_id": 3704482,
"team_name": "•",
"team_tag": "•",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198055052004",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/69/696e97e17753152b5a742a6ee89a980f857a58b7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/69/696e97e17753152b5a742a6ee89a980f857a58b7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/69/696e97e17753152b5a742a6ee89a980f857a58b7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198055052004/",
"personaname": "Hero",
"last_login": "2018-01-11T02:24:02.693Z",
"full_history_time": "2017-12-03T02:04:41.730Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T21:02:47.000Z",
"last_played": 1508598035,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 166178728,
"name": "charli",
"country_code": "",
"fantasy_role": 1,
"team_id": 3314592,
"team_name": "Team Solo Mid",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198126444456",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d68519d8679de15b879c6e24db7905e23a52784f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d68519d8679de15b879c6e24db7905e23a52784f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d68519d8679de15b879c6e24db7905e23a52784f_full.jpg",
"profileurl": "https://steamcommunity.com/id/dota2zero/",
"personaname": "ferb",
"last_login": "2016-01-08T12:12:59.382Z",
"full_history_time": "2016-01-08T12:17:03.621Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-09T05:21:59.000Z",
"last_played": 1469987672,
"win": 2,
"games": 2,
"with_win": 2,
"with_games": 2,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 180012313,
"name": "Nando",
"country_code": "",
"fantasy_role": 0,
"team_id": 2581813,
"team_name": "Execration.安博电竞",
"team_tag": "XctN",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198140278041",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cf/cf59bfc3f19f276cc9d812ac83039d686f0ae14a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cf/cf59bfc3f19f276cc9d812ac83039d686f0ae14a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cf/cf59bfc3f19f276cc9d812ac83039d686f0ae14a_full.jpg",
"profileurl": "https://steamcommunity.com/id/ESESESESESESES/",
"personaname": "...",
"last_login": null,
"full_history_time": "2018-09-03T05:20:38.101Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "PH",
"last_match_time": "2018-09-09T16:13:46.000Z",
"last_played": 1465569213,
"win": 0,
"games": 2,
"with_win": 0,
"with_games": 2,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 116881520,
"name": "Palantimos",
"country_code": "by",
"fantasy_role": 1,
"team_id": 2006913,
"team_name": "Vega Squadron",
"team_tag": "Vega",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198077147248",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1e346efb11e803a1e68555a833d07116f53f74ee.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1e346efb11e803a1e68555a833d07116f53f74ee_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1e/1e346efb11e803a1e68555a833d07116f53f74ee_full.jpg",
"profileurl": "https://steamcommunity.com/id/3124532352/",
"personaname": "Пала",
"last_login": null,
"full_history_time": "2018-09-08T17:09:02.755Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "BY",
"last_match_time": "2018-09-10T19:43:21.000Z",
"last_played": 1526273421,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 97676580,
"name": "Neqroman",
"country_code": "tr",
"fantasy_role": 2,
"team_id": 5870608,
"team_name": "asdasdsafqwe",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198057942308",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c939912362c2d8b0e6f65b6b62351f2256136d1d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c939912362c2d8b0e6f65b6b62351f2256136d1d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c939912362c2d8b0e6f65b6b62351f2256136d1d_full.jpg",
"profileurl": "https://steamcommunity.com/id/neqromann/",
"personaname": "(:",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "TR",
"last_match_time": "2018-09-10T17:43:27.000Z",
"last_played": 1431267850,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 34726076,
"name": "Farmer John",
"country_code": "au",
"fantasy_role": 1,
"team_id": 4373363,
"team_name": "LFT",
"team_tag": "LFT",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561197994991804",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ad/ad467cd45bfc617073c7ecdee997b280e1b7c15b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ad/ad467cd45bfc617073c7ecdee997b280e1b7c15b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ad/ad467cd45bfc617073c7ecdee997b280e1b7c15b_full.jpg",
"profileurl": "https://steamcommunity.com/id/GodotAU/",
"personaname": "twitch.tv/Godot",
"last_login": "2016-06-03T18:32:52.559Z",
"full_history_time": "2018-08-29T08:24:42.939Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-09T06:00:17.000Z",
"last_played": 1530859935,
"win": 1,
"games": 2,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 107855479,
"name": "ThuG.",
"country_code": "",
"fantasy_role": 0,
"team_id": 26,
"team_name": "mousesports",
"team_tag": "mouz",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198068121207",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d0/d054d106875be04acb39ffe958c5ddb87a4346d8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d0/d054d106875be04acb39ffe958c5ddb87a4346d8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d0/d054d106875be04acb39ffe958c5ddb87a4346d8_full.jpg",
"profileurl": "https://steamcommunity.com/id/dameeeee/",
"personaname": "----",
"last_login": null,
"full_history_time": "2016-11-11T17:52:33.865Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "GR",
"last_match_time": "2018-06-16T17:59:49.000Z",
"last_played": 1493134817,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 41818582,
"name": "M4lem",
"country_code": "se",
"fantasy_role": 1,
"team_id": 2788336,
"team_name": "4Vikings+Dane",
"team_tag": "4vd",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198002084310",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4c/4cb0d728817150215e120f41b8f15d96bcfdfa14.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4c/4cb0d728817150215e120f41b8f15d96bcfdfa14_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4c/4cb0d728817150215e120f41b8f15d96bcfdfa14_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198002084310/",
"personaname": "broken man",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-17T20:45:49.000Z",
"last_played": 1460582896,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 71286125,
"name": "Sealkid",
"country_code": "se",
"fantasy_role": 2,
"team_id": 0,
"team_name": "S O L I D U D E S ",
"team_tag": "dude",
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198031551853",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cb/cb5b1293658c3b52f6873138fc52efe71d88bab1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cb/cb5b1293658c3b52f6873138fc52efe71d88bab1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cb/cb5b1293658c3b52f6873138fc52efe71d88bab1_full.jpg",
"profileurl": "https://steamcommunity.com/id/sealkid/",
"personaname": "Lay Up",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-08-28T17:26:43.000Z",
"last_played": 1431179936,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 92706637,
"name": "iAnnihilate",
"country_code": "ca",
"fantasy_role": 1,
"team_id": 5766799,
"team_name": "Battery Powered Best Friends",
"team_tag": "VIBE",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198052972365",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7c/7c9d50125f1fc63c16aa483ba215e1251926d7a8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7c/7c9d50125f1fc63c16aa483ba215e1251926d7a8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7c/7c9d50125f1fc63c16aa483ba215e1251926d7a8_full.jpg",
"profileurl": "https://steamcommunity.com/id/iAnnihilate/",
"personaname": "Annihilate",
"last_login": "2018-07-20T17:31:48.080Z",
"full_history_time": "2018-06-05T03:40:13.938Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CA",
"last_match_time": "2018-09-08T01:30:04.000Z",
"last_played": 1513124268,
"win": 0,
"games": 2,
"with_win": 0,
"with_games": 2,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 70673409,
"name": " 623",
"country_code": "ca",
"fantasy_role": 2,
"team_id": 6167612,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198030939137",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c069ca35ac504e9ca9b59935c93d7b3a3e85a31e.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c069ca35ac504e9ca9b59935c93d7b3a3e85a31e_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c069ca35ac504e9ca9b59935c93d7b3a3e85a31e_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198030939137/",
"personaname": "空",
"last_login": "2016-04-11T23:33:35.397Z",
"full_history_time": "2017-04-04T18:39:10.241Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CA",
"last_match_time": "2018-09-07T16:39:28.000Z",
"last_played": 1478083837,
"win": 2,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 2,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 85485252,
"name": "FeiMao",
"country_code": "th",
"fantasy_role": 2,
"team_id": 5030979,
"team_name": "ALPHA Blue",
"team_tag": "aB",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198045750980",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/54/5477f2079a3a923f24f2b0e62233d0282be1a93a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/54/5477f2079a3a923f24f2b0e62233d0282be1a93a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/54/5477f2079a3a923f24f2b0e62233d0282be1a93a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198045750980/",
"personaname": "Maooooooooooo",
"last_login": "2016-07-15T08:49:47.312Z",
"full_history_time": "2016-04-17T13:07:43.847Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "TH",
"last_match_time": "2018-09-10T10:58:53.000Z",
"last_played": 1365861917,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 101525357,
"name": "Kangaroo",
"country_code": "",
"fantasy_role": 0,
"team_id": 2880140,
"team_name": "Fire Dragoon",
"team_tag": "FDG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198061791085",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ad/ad1a609431f501afe570998ea923f21017a6bb26.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ad/ad1a609431f501afe570998ea923f21017a6bb26_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ad/ad1a609431f501afe570998ea923f21017a6bb26_full.jpg",
"profileurl": "https://steamcommunity.com/id/raphael999/",
"personaname": "all is well",
"last_login": null,
"full_history_time": "2016-10-30T22:15:39.875Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "TR",
"last_match_time": "2018-09-10T10:50:30.000Z",
"last_played": 1523283326,
"win": 1,
"games": 2,
"with_win": 1,
"with_games": 2,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 112172688,
"name": "Parsly",
"country_code": "ph",
"fantasy_role": 2,
"team_id": 5241941,
"team_name": "BANG",
"team_tag": "BANG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198072438416",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a8b3cf7a6b4b3c5ebd29d768ca721681abd18f1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a8b3cf7a6b4b3c5ebd29d768ca721681abd18f1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0a/0a8b3cf7a6b4b3c5ebd29d768ca721681abd18f1_full.jpg",
"profileurl": "https://steamcommunity.com/id/ziggyyyyyyyyyy/",
"personaname": "lul",
"last_login": null,
"full_history_time": "2018-01-23T14:13:57.678Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "PH",
"last_match_time": "2018-09-06T12:25:17.000Z",
"last_played": 1365252645,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 128470130,
"name": " ",
"country_code": "",
"fantasy_role": 1,
"team_id": 3963419,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198088735858",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23898dc39d0aa36aa6c347f3e84e9e78b164b052.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23898dc39d0aa36aa6c347f3e84e9e78b164b052_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/23898dc39d0aa36aa6c347f3e84e9e78b164b052_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198088735858/",
"personaname": "MoleculE_ContRroL",
"last_login": null,
"full_history_time": "2017-10-16T01:06:17.213Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-07-19T08:24:03.000Z",
"last_played": 1529158130,
"win": 1,
"games": 2,
"with_win": 1,
"with_games": 2,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 171775246,
"name": "feero",
"country_code": "",
"fantasy_role": 0,
"team_id": 5229438,
"team_name": "Team Loyalty",
"team_tag": "TL",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198132040974",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/13/133e9099a1beb4a818a950a75c5fd803d3b199e0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/13/133e9099a1beb4a818a950a75c5fd803d3b199e0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/13/133e9099a1beb4a818a950a75c5fd803d3b199e0_full.jpg",
"profileurl": "https://steamcommunity.com/id/feerodota/",
"personaname": "hey",
"last_login": null,
"full_history_time": "2018-09-06T19:33:05.918Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T05:47:18.000Z",
"last_played": 1470199309,
"win": 1,
"games": 2,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 118207269,
"name": "Sword♥Amy",
"country_code": "",
"fantasy_role": 1,
"team_id": 5327206,
"team_name": "Thunder Predator",
"team_tag": "ThunderP",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198078472997",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/74/74cf8b49878764bc4d70b11fb4b93e3fc0f739cf.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/74/74cf8b49878764bc4d70b11fb4b93e3fc0f739cf_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/74/74cf8b49878764bc4d70b11fb4b93e3fc0f739cf_full.jpg",
"profileurl": "https://steamcommunity.com/id/6678366783/",
"personaname": "log{15}(58.09475)",
"last_login": "2018-03-17T21:11:55.274Z",
"full_history_time": "2018-04-15T14:16:52.916Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "PE",
"last_match_time": "2018-09-10T20:56:56.000Z",
"last_played": 1534214085,
"win": 1,
"games": 2,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 2,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 90423751,
"name": "Bignum",
"country_code": "",
"fantasy_role": 0,
"team_id": 4425117,
"team_name": "Gambit Esports",
"team_tag": "Gambit",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198050689479",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/34ee637f216182ae26db353efaeb956023f5ac59.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/34ee637f216182ae26db353efaeb956023f5ac59_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/34ee637f216182ae26db353efaeb956023f5ac59_full.jpg",
"profileurl": "https://steamcommunity.com/id/Bignum/",
"personaname": "hhh",
"last_login": null,
"full_history_time": "2017-10-03T20:47:32.108Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:01:03.000Z",
"last_played": 1508492594,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 112127585,
"name": "pandaman",
"country_code": "kr",
"fantasy_role": 1,
"team_id": 5187626,
"team_name": ":)",
"team_tag": "1",
"is_locked": false,
"is_pro": true,
"locked_until": 1457344800,
"steamid": "76561198072393313",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/15/15f111f2c4d598f27914dd7be08ae33c0ef94d95.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/15/15f111f2c4d598f27914dd7be08ae33c0ef94d95_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/15/15f111f2c4d598f27914dd7be08ae33c0ef94d95_full.jpg",
"profileurl": "https://steamcommunity.com/id/qwetasdvsa/",
"personaname": "Red panda",
"last_login": "2018-02-24T19:20:09.618Z",
"full_history_time": "2018-03-29T11:30:59.658Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-09T08:30:40.000Z",
"last_played": 1365184601,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 173476224,
"name": "eyyou",
"country_code": "",
"fantasy_role": 0,
"team_id": 4369633,
"team_name": "Entity Gaming",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198133741952",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a4/a4c94df1a7499b170be1d3aa6def539de9c0e901.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a4/a4c94df1a7499b170be1d3aa6def539de9c0e901_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/a4/a4c94df1a7499b170be1d3aa6def539de9c0e901_full.jpg",
"profileurl": "https://steamcommunity.com/id/asdeeeeeasd/",
"personaname": "Paint Brush Only :)",
"last_login": null,
"full_history_time": "2017-06-20T03:11:31.446Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-09-10T15:07:39.000Z",
"last_played": 1470701768,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 111473138,
"name": "Panda",
"country_code": "",
"fantasy_role": 0,
"team_id": 3262512,
"team_name": "The Prime NND",
"team_tag": "TP.NND",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198071738866",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/31/31c5328395f4fe6b24a0675b12b954e992de591f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/31/31c5328395f4fe6b24a0675b12b954e992de591f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/31/31c5328395f4fe6b24a0675b12b954e992de591f_full.jpg",
"profileurl": "https://steamcommunity.com/id/Pandadotka/",
"personaname": "김 지 원",
"last_login": null,
"full_history_time": "2017-08-07T14:03:43.310Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "ID",
"last_match_time": "2018-09-10T11:10:20.000Z",
"last_played": 1464855716,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 38515149,
"name": "waytosexy",
"country_code": "ca",
"fantasy_role": 2,
"team_id": 1820360,
"team_name": "TEAMERINO TINKERINO",
"team_tag": "TT",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561197998780877",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7ee79175c1f51aed921e67a192a785f779751604.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7ee79175c1f51aed921e67a192a785f779751604_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7ee79175c1f51aed921e67a192a785f779751604_full.jpg",
"profileurl": "https://steamcommunity.com/id/waytosexy/",
"personaname": "mango tofu",
"last_login": "2015-09-26T23:04:49.933Z",
"full_history_time": "2015-09-29T07:07:25.893Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "CA",
"last_match_time": "2018-09-08T01:07:16.000Z",
"last_played": 1405118217,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 173971950,
"name": "Berna",
"country_code": "pe",
"fantasy_role": 1,
"team_id": 6018228,
"team_name": "Berna",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198134237678",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dde91b6121aad04381a70935bb25dec8b5322cfc.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dde91b6121aad04381a70935bb25dec8b5322cfc_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dd/dde91b6121aad04381a70935bb25dec8b5322cfc_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198134237678/",
"personaname": "Berna",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "PE",
"last_match_time": "2018-09-10T20:40:16.000Z",
"last_played": 1513216802,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 168532604,
"name": "Anastacia丶",
"country_code": "ca",
"fantasy_role": 1,
"team_id": 1884355,
"team_name": "Void Boys",
"team_tag": "VB",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198128798332",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/232155e07baefd6669021ed1507553ddca5a876b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/232155e07baefd6669021ed1507553ddca5a876b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/23/232155e07baefd6669021ed1507553ddca5a876b_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198128798332/",
"personaname": "Bon voyage",
"last_login": null,
"full_history_time": "2017-02-09T23:05:18.614Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "VA",
"last_match_time": "2018-01-08T12:55:05.000Z",
"last_played": 1460195262,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 101779337,
"name": "slad1n-",
"country_code": "",
"fantasy_role": 0,
"team_id": 3705786,
"team_name": "/////",
"team_tag": "/////",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198062045065",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6a/6a72afb7a7e52776f51ece099e9c0d9dc83327e7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6a/6a72afb7a7e52776f51ece099e9c0d9dc83327e7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6a/6a72afb7a7e52776f51ece099e9c0d9dc83327e7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198062045065/",
"personaname": "raigor",
"last_login": null,
"full_history_time": "2017-09-28T09:52:12.252Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T21:16:13.000Z",
"last_played": 1469995510,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 87293485,
"name": "zyzzy",
"country_code": "",
"fantasy_role": 1,
"team_id": 0,
"team_name": "5 Turtles",
"team_tag": "5T",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198047559213",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ff/ffc3935bd681c92d3363f8544dafde82a3d3f180.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ff/ffc3935bd681c92d3363f8544dafde82a3d3f180_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ff/ffc3935bd681c92d3363f8544dafde82a3d3f180_full.jpg",
"profileurl": "https://steamcommunity.com/id/zyzzydota/",
"personaname": "El de la mala suerte",
"last_login": null,
"full_history_time": "2017-06-09T10:33:12.549Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "US",
"last_match_time": "2018-08-10T02:22:19.000Z",
"last_played": 1470101038,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 112531417,
"name": "Abeng-",
"country_code": "",
"fantasy_role": 2,
"team_id": 0,
"team_name": "TaskUs TITANS",
"team_tag": "TITANS",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198072797145",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75fcda035a5159eefd397fb8744f4ddfbccc1734.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75fcda035a5159eefd397fb8744f4ddfbccc1734_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/75fcda035a5159eefd397fb8744f4ddfbccc1734_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198072797145/",
"personaname": "BDzdota(smurF)",
"last_login": null,
"full_history_time": "2018-02-01T06:20:39.321Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "ID",
"last_match_time": "2018-09-09T06:25:00.000Z",
"last_played": 1363602906,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 87307430,
"name": "Fex.",
"country_code": "kr",
"fantasy_role": 2,
"team_id": 5198236,
"team_name": "VWFG",
"team_tag": " ",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198047573158",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/77667b72dce5d1bde162e4d864e6b5ff10d46faf.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/77667b72dce5d1bde162e4d864e6b5ff10d46faf_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/77667b72dce5d1bde162e4d864e6b5ff10d46faf_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047573158/",
"personaname": "Fex",
"last_login": null,
"full_history_time": "2018-05-14T00:54:00.263Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-06-17T20:14:39.000Z",
"last_played": 1497467589,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 44232590,
"name": "S1D",
"country_code": "ru",
"fantasy_role": 2,
"team_id": 0,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198004498318",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6d/6dc5bcfb8196bc1fd870ff5ff2017771cdfe043f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6d/6dc5bcfb8196bc1fd870ff5ff2017771cdfe043f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6d/6dc5bcfb8196bc1fd870ff5ff2017771cdfe043f_full.jpg",
"profileurl": "https://steamcommunity.com/id/SIDJkee/",
"personaname": "S1D",
"last_login": "2017-08-29T19:13:33.606Z",
"full_history_time": "2018-05-09T23:14:45.893Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-01T20:32:00.000Z",
"last_played": 1508502927,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 112552914,
"name": "WhatThe",
"country_code": "th",
"fantasy_role": 1,
"team_id": 5030979,
"team_name": "ALPHA Blue",
"team_tag": "aB",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198072818642",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cdb20b86853804e07743e0809bc2b643adbc8e77.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cdb20b86853804e07743e0809bc2b643adbc8e77_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cdb20b86853804e07743e0809bc2b643adbc8e77_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198072818642/",
"personaname": "AB.Newyork",
"last_login": null,
"full_history_time": "2018-08-31T15:50:48.113Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "TH",
"last_match_time": "2018-09-10T18:12:55.000Z",
"last_played": 1446662747,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 167054382,
"name": "CHEEKY",
"country_code": "ca",
"fantasy_role": 0,
"team_id": 6120845,
"team_name": "666",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198127320110",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3b/3b1e78b2606179f93a53d965f6738c4e10a78d17.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3b/3b1e78b2606179f93a53d965f6738c4e10a78d17_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3b/3b1e78b2606179f93a53d965f6738c4e10a78d17_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198127320110/",
"personaname": "end",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CA",
"last_match_time": "2018-08-14T08:26:36.000Z",
"last_played": 1505965166,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86975889,
"name": "Monster",
"country_code": "us",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Team YP",
"team_tag": "TeamYP",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198047241617",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4d/4dae2e50242e036063cf1626dd27428392c741c3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4d/4dae2e50242e036063cf1626dd27428392c741c3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/4d/4dae2e50242e036063cf1626dd27428392c741c3_full.jpg",
"profileurl": "https://steamcommunity.com/id/MonsterDotas/",
"personaname": "Monster",
"last_login": "2018-06-28T10:25:29.678Z",
"full_history_time": "2018-03-12T18:24:36.227Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-09-10T06:08:05.000Z",
"last_played": 1513296936,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 165086162,
"name": "Huppey",
"country_code": "id",
"fantasy_role": 1,
"team_id": 3265632,
"team_name": "PG.Barracx",
"team_tag": "BrX",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198125351890",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ab/ab7189c90a80e0111d51841ab5edc2658e92d2e1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ab/ab7189c90a80e0111d51841ab5edc2658e92d2e1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/ab/ab7189c90a80e0111d51841ab5edc2658e92d2e1_full.jpg",
"profileurl": "https://steamcommunity.com/id/sansanichsan/",
"personaname": "DARARAWET ANJING",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "ID",
"last_match_time": "2018-09-10T20:11:40.000Z",
"last_played": 1465671525,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 181716137,
"name": "inYourdreaM",
"country_code": "",
"fantasy_role": 0,
"team_id": 3262512,
"team_name": "The Prime NND",
"team_tag": "TP.NND",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198141981865",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1b/1bae5e68e8a91c9508d9de5c76a8272c93c26606.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1b/1bae5e68e8a91c9508d9de5c76a8272c93c26606_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/1b/1bae5e68e8a91c9508d9de5c76a8272c93c26606_full.jpg",
"profileurl": "https://steamcommunity.com/id/ASDQWEQWE818/",
"personaname": "Alchemist",
"last_login": null,
"full_history_time": "2018-08-31T08:40:21.638Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "ZW",
"last_match_time": "2018-09-10T12:32:11.000Z",
"last_played": 1465466993,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86940305,
"name": "jobeeEZy",
"country_code": "",
"fantasy_role": 0,
"team_id": 4369633,
"team_name": "Entity Gaming",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047206033",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/16/160651271ffb10544328ddeba6d112f96a7c2961.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/16/160651271ffb10544328ddeba6d112f96a7c2961_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/16/160651271ffb10544328ddeba6d112f96a7c2961_full.jpg",
"profileurl": "https://steamcommunity.com/id/jobjobjob/",
"personaname": "smorc",
"last_login": null,
"full_history_time": "2016-11-11T18:09:18.474Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "IT",
"last_match_time": "2018-09-10T16:37:34.000Z",
"last_played": 1521008517,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 31078647,
"name": "paS",
"country_code": "de",
"fantasy_role": 2,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561197991344375",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/de/de325b7896755327a034134178e8f0bec15d4514.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/de/de325b7896755327a034134178e8f0bec15d4514_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/de/de325b7896755327a034134178e8f0bec15d4514_full.jpg",
"profileurl": "https://steamcommunity.com/id/pees-/",
"personaname": "-----",
"last_login": "2015-07-26T12:48:44.855Z",
"full_history_time": "2015-07-28T22:51:14.740Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "FJ",
"last_match_time": "2018-09-09T17:38:23.000Z",
"last_played": 1404928250,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 163555221,
"name": "Fyms",
"country_code": "",
"fantasy_role": 0,
"team_id": 2626685,
"team_name": "KEEN GAMING",
"team_tag": "KG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198123820949",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf99b36106a8a2ee07ec335949076a2800ea5a96.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf99b36106a8a2ee07ec335949076a2800ea5a96_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf99b36106a8a2ee07ec335949076a2800ea5a96_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198123820949/",
"personaname": "打的蠢喜欢找借口的要点碧莲",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2017-05-19T10:38:43.000Z",
"last_played": 1476299714,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 182492319,
"name": "Ninja",
"country_code": "",
"fantasy_role": 0,
"team_id": 5055770,
"team_name": "Gorillaz-Pride",
"team_tag": "G-pride",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198142758047",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/01/01b3a4c206c3ed33780219d1d4072203a16b1bfe.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/01/01b3a4c206c3ed33780219d1d4072203a16b1bfe_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/01/01b3a4c206c3ed33780219d1d4072203a16b1bfe_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198142758047/",
"personaname": "Ninja",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "PE",
"last_match_time": "2018-09-01T23:25:42.000Z",
"last_played": 1497481756,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86930446,
"name": "Αχιλя",
"country_code": "ru",
"fantasy_role": 1,
"team_id": 5894738,
"team_name": "W.I.T.C.H.",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198047196174",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/db/db2a77951b1993d9162c4dbd9a10dbc6598a318d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/db/db2a77951b1993d9162c4dbd9a10dbc6598a318d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/db/db2a77951b1993d9162c4dbd9a10dbc6598a318d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047196174/",
"personaname": "young ahilles",
"last_login": "2017-09-19T09:20:32.128Z",
"full_history_time": "2018-07-07T19:23:34.963Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T21:03:10.000Z",
"last_played": 1508575122,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86896635,
"name": "Flensis",
"country_code": "",
"fantasy_role": 1,
"team_id": 3152713,
"team_name": "4 protect five",
"team_tag": "4p5",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198047162363",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5a/5aff6875a9bea788ce083b97ea4f12aade1219db.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5a/5aff6875a9bea788ce083b97ea4f12aade1219db_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/5a/5aff6875a9bea788ce083b97ea4f12aade1219db_full.jpg",
"profileurl": "https://steamcommunity.com/id/flensmeister/",
"personaname": "straponboy6",
"last_login": "2016-03-15T08:53:06.984Z",
"full_history_time": "2018-03-17T01:07:23.603Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SE",
"last_match_time": "2018-09-10T20:25:51.000Z",
"last_played": 1447592960,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 110583422,
"name": "Sammyboy",
"country_code": "",
"fantasy_role": 0,
"team_id": 5051765,
"team_name": "Team Leviathan",
"team_tag": "LvT",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198070849150",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/179988b256aef623765cb6191cb2fa9bbd3721be.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/179988b256aef623765cb6191cb2fa9bbd3721be_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/179988b256aef623765cb6191cb2fa9bbd3721be_full.jpg",
"profileurl": "https://steamcommunity.com/id/SammyboyGG/",
"personaname": "sammyboy",
"last_login": "2018-02-07T07:01:02.149Z",
"full_history_time": "2018-08-28T03:44:30.227Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-09-10T21:19:06.000Z",
"last_played": 1497463171,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 185820236,
"name": "cold",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5946828,
"team_name": "Cavalry Gaming Team",
"team_tag": "CG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198146085964",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/90d3b0fd9a2356ea1a0335888480f073df9ead52.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/90d3b0fd9a2356ea1a0335888480f073df9ead52_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/90d3b0fd9a2356ea1a0335888480f073df9ead52_full.jpg",
"profileurl": "https://steamcommunity.com/id/1246783/",
"personaname": "_(:з」∠)_",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T12:05:57.000Z",
"last_played": 1459009983,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 96196828,
"name": "633",
"country_code": "",
"fantasy_role": 0,
"team_id": 4254415,
"team_name": "Spartak Esports",
"team_tag": "Spartak",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198056462556",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cd576dab2f5b5d919e3a509b6f5436f19e59930a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cd576dab2f5b5d919e3a509b6f5436f19e59930a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cd576dab2f5b5d919e3a509b6f5436f19e59930a_full.jpg",
"profileurl": "https://steamcommunity.com/id/BzzIsPerfect/",
"personaname": "633",
"last_login": null,
"full_history_time": "2017-04-15T19:48:37.313Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-08-18T17:18:49.000Z",
"last_played": 1508586826,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 156745021,
"name": "-bty2GD",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 5261295,
"team_name": "-",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198117010749",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dc/dcd39eca2a2785644ffd1ca9c362d71c8774dcc3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dc/dcd39eca2a2785644ffd1ca9c362d71c8774dcc3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/dc/dcd39eca2a2785644ffd1ca9c362d71c8774dcc3_full.jpg",
"profileurl": "https://steamcommunity.com/id/-bty/",
"personaname": "-bty2GD",
"last_login": null,
"full_history_time": "2018-04-03T16:12:40.018Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2018-09-10T14:28:10.000Z",
"last_played": 1423621505,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 186837494,
"name": "Wu ` CY",
"country_code": "",
"fantasy_role": 0,
"team_id": 5030994,
"team_name": "Elite Wolves",
"team_tag": "E.Wolves",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198147103222",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/15/15fc9f8581d8b536f49e59480b5d48e098661dd4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/15/15fc9f8581d8b536f49e59480b5d48e098661dd4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/15/15fc9f8581d8b536f49e59480b5d48e098661dd4_full.jpg",
"profileurl": "https://steamcommunity.com/id/WuDotA/",
"personaname": "Wu",
"last_login": "2017-08-27T23:37:28.711Z",
"full_history_time": "2018-05-08T11:01:51.518Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-04T03:35:43.000Z",
"last_played": 1513296936,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 94439767,
"name": "BliNcc",
"country_code": "ro",
"fantasy_role": 1,
"team_id": 5097652,
"team_name": "Swiss Quality Gaming",
"team_tag": "SQG",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198054705495",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fba35a92239b53863c83a5d14106595bc205dcbb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fba35a92239b53863c83a5d14106595bc205dcbb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fba35a92239b53863c83a5d14106595bc205dcbb_full.jpg",
"profileurl": "https://steamcommunity.com/id/blinc1/",
"personaname": "xxxBliNcc",
"last_login": "2018-08-28T01:19:21.703Z",
"full_history_time": "2018-08-28T19:55:23.012Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RO",
"last_match_time": "2018-09-10T21:11:14.000Z",
"last_played": 1508571617,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 114559048,
"name": "ogrizok11",
"country_code": "",
"fantasy_role": 1,
"team_id": 5907133,
"team_name": "Di.Iks",
"team_tag": "DX",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198074824776",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0_full.jpg",
"profileurl": "https://steamcommunity.com/id/helloaxmo/",
"personaname": "syl",
"last_login": "2017-07-17T19:04:52.920Z",
"full_history_time": "2015-10-21T19:23:51.231Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UA",
"last_match_time": "2018-09-10T20:43:55.000Z",
"last_played": 1508594553,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 109883841,
"name": "master baiter",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 756583,
"team_name": "TEAM WOCAO",
"team_tag": "WOCAO",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198070149569",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/65/65bf193522c29968f248e2ea840bf5e1bf51aa1b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/65/65bf193522c29968f248e2ea840bf5e1bf51aa1b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/65/65bf193522c29968f248e2ea840bf5e1bf51aa1b_full.jpg",
"profileurl": "https://steamcommunity.com/id/blessed902/",
"personaname": "ape",
"last_login": "2015-11-26T04:45:47.498Z",
"full_history_time": "2016-09-02T20:09:17.012Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CA",
"last_match_time": "2018-09-10T17:16:44.000Z",
"last_played": 1534214085,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 188423794,
"name": "珱",
"country_code": "",
"fantasy_role": 0,
"team_id": 5079620,
"team_name": "Qiandao",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198148689522",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/81/8120fcb7f2b3eefe01cfc6aa03a24e125cda685a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/81/8120fcb7f2b3eefe01cfc6aa03a24e125cda685a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/81/8120fcb7f2b3eefe01cfc6aa03a24e125cda685a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198148689522/",
"personaname": "珱",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T17:49:13.000Z",
"last_played": 1531837560,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 153836240,
"name": ":(",
"country_code": "",
"fantasy_role": 0,
"team_id": 5207420,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198114101968",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/25005d597516cbbda4e30f0718fec8d237ad26a7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/25005d597516cbbda4e30f0718fec8d237ad26a7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/25/25005d597516cbbda4e30f0718fec8d237ad26a7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198114101968/",
"personaname": "What is life?",
"last_login": null,
"full_history_time": "2018-03-18T11:59:09.031Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-06T21:35:28.000Z",
"last_played": 1437831120,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 152962063,
"name": "miCKe",
"country_code": "",
"fantasy_role": 0,
"team_id": 111474,
"team_name": "Alliance",
"team_tag": "Alliance",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198113227791",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fb/fb9c36c36e54b8ca5f2e1cbd89c06574d1348af0_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198113227791/",
"personaname": ".",
"last_login": "2018-04-06T22:34:46.575Z",
"full_history_time": "2017-12-09T18:13:00.142Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "VN",
"last_match_time": "2018-09-10T20:39:58.000Z",
"last_played": 1521098647,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 152545459,
"name": "Gabbi",
"country_code": "",
"fantasy_role": 0,
"team_id": 5207190,
"team_name": "admiral",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198112811187",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c6f28bf5212ef938a2fc12da4774179f795b622c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c6f28bf5212ef938a2fc12da4774179f795b622c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c6/c6f28bf5212ef938a2fc12da4774179f795b622c_full.jpg",
"profileurl": "https://steamcommunity.com/id/Gabbidotes/",
"personaname": "uio",
"last_login": null,
"full_history_time": "2017-08-17T14:23:09.156Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "PH",
"last_match_time": "2018-07-20T11:00:59.000Z",
"last_played": 1499322861,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 151835528,
"name": "Vlaicuu",
"country_code": "",
"fantasy_role": 0,
"team_id": 3262331,
"team_name": "Team EVOS",
"team_tag": "EVOS",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198112101256",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
"profileurl": "https://steamcommunity.com/id/recount555/",
"personaname": "2pac",
"last_login": "2016-11-07T18:16:10.575Z",
"full_history_time": "2017-05-03T18:50:11.567Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T13:09:10.000Z",
"last_played": 1465053795,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 114619230,
"name": "Crystallize",
"country_code": "",
"fantasy_role": 0,
"team_id": 36,
"team_name": "Natus Vincere",
"team_tag": "Na`Vi",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198074884958",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/30/30e0a06d7dd24bb7ee8d79eb7ca212079c48273d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/30/30e0a06d7dd24bb7ee8d79eb7ca212079c48273d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/30/30e0a06d7dd24bb7ee8d79eb7ca212079c48273d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198074884958/",
"personaname": "Crystallize",
"last_login": null,
"full_history_time": "2018-08-31T06:57:49.469Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UA",
"last_match_time": "2018-09-10T18:10:30.000Z",
"last_played": 1512710626,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86785102,
"name": "MHwwwwwwk",
"country_code": "",
"fantasy_role": 1,
"team_id": 1773539,
"team_name": "Battle Zone-",
"team_tag": "Bz",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198047050830",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/50/50df752d04f1f92ac147ee2c128ddd2a14e52895.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/50/50df752d04f1f92ac147ee2c128ddd2a14e52895_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/50/50df752d04f1f92ac147ee2c128ddd2a14e52895_full.jpg",
"profileurl": "https://steamcommunity.com/id/MiHwk/",
"personaname": "SB",
"last_login": null,
"full_history_time": "2018-08-16T14:13:16.022Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1417674094,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 151069590,
"name": "Peksu",
"country_code": "fi",
"fantasy_role": 2,
"team_id": 5154470,
"team_name": "5 Anchors No Captain",
"team_tag": "5ANC",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198111335318",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/66/660beee4e1064506ca3aaee70b847c814434fa97.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/66/660beee4e1064506ca3aaee70b847c814434fa97_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/66/660beee4e1064506ca3aaee70b847c814434fa97_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198111335318/",
"personaname": "Peksu",
"last_login": null,
"full_history_time": "2018-03-16T15:29:46.582Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "FI",
"last_match_time": "2018-09-10T21:23:41.000Z",
"last_played": 1508331495,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 194818271,
"name": "vanN",
"country_code": "pe",
"fantasy_role": 1,
"team_id": 4983704,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198155083999",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/64/645a3e9e8fc685eb581a0cfb74310c679056f6ad.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/64/645a3e9e8fc685eb581a0cfb74310c679056f6ad_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/64/645a3e9e8fc685eb581a0cfb74310c679056f6ad_full.jpg",
"profileurl": "https://steamcommunity.com/id/f2dsasds/",
"personaname": "As",
"last_login": null,
"full_history_time": "2018-08-16T14:06:28.322Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T07:29:57.000Z",
"last_played": 1497467589,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 196490133,
"name": "twitch",
"country_code": "gr",
"fantasy_role": 2,
"team_id": 0,
"team_name": "Team Hellas",
"team_tag": "HELLAS",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198156755861",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3a476047082318cd48a0d14137dd0df9fc2a6c45.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3a476047082318cd48a0d14137dd0df9fc2a6c45_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/3a/3a476047082318cd48a0d14137dd0df9fc2a6c45_full.jpg",
"profileurl": "https://steamcommunity.com/id/FocusDota/",
"personaname": "Life <3",
"last_login": "2018-07-19T18:34:07.513Z",
"full_history_time": "2018-01-18T14:45:03.705Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T06:59:25.000Z",
"last_played": 1448042278,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 150419909,
"name": "XaKoH",
"country_code": "",
"fantasy_role": 0,
"team_id": 5226602,
"team_name": "Hunkys From Zavod ",
"team_tag": "HFZ",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198110685637",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/36/364d46c69d9dea202404e47a1ec761abefc7cfb5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/36/364d46c69d9dea202404e47a1ec761abefc7cfb5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/36/364d46c69d9dea202404e47a1ec761abefc7cfb5_full.jpg",
"profileurl": "https://steamcommunity.com/id/cleave_damage/",
"personaname": "XaKoH",
"last_login": "2017-11-09T20:10:20.859Z",
"full_history_time": "2018-06-21T01:18:32.339Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T17:52:14.000Z",
"last_played": 1508484837,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 51836201,
"name": "Sm1Ley",
"country_code": "",
"fantasy_role": 0,
"team_id": 3783455,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198012101929",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cc/cc4c81835abd24850762ffa971ea741746ebdf2d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cc/cc4c81835abd24850762ffa971ea741746ebdf2d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cc/cc4c81835abd24850762ffa971ea741746ebdf2d_full.jpg",
"profileurl": "https://steamcommunity.com/id/AWDSFASD/",
"personaname": "JPEGMAFIA",
"last_login": "2017-08-11T14:40:47.117Z",
"full_history_time": "2017-10-22T20:46:05.776Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "UA",
"last_match_time": "2018-09-10T13:37:45.000Z",
"last_played": 1448037787,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 148053939,
"name": "Francoeur",
"country_code": "",
"fantasy_role": 0,
"team_id": 4282493,
"team_name": "Drago",
"team_tag": "Drago",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198108319667",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/63/637d82cdefbe313cb373d5b1e1062f6e21a3c061.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/63/637d82cdefbe313cb373d5b1e1062f6e21a3c061_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/63/637d82cdefbe313cb373d5b1e1062f6e21a3c061_full.jpg",
"profileurl": "https://steamcommunity.com/id/Francoeur/",
"personaname": "Beloved",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "ID",
"last_match_time": "2018-07-22T08:42:00.000Z",
"last_played": 1465552113,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 115155220,
"name": "Entruv黄连",
"country_code": "id",
"fantasy_role": 1,
"team_id": 4369633,
"team_name": "Entity Gaming",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198075420948",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/902ac6a39b4ca66b896f8dae03f1db62376b6920.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/902ac6a39b4ca66b896f8dae03f1db62376b6920_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/902ac6a39b4ca66b896f8dae03f1db62376b6920_full.jpg",
"profileurl": "https://steamcommunity.com/id/entruv/",
"personaname": "Conor Mcgregor",
"last_login": "2017-01-19T02:02:20.358Z",
"full_history_time": "2018-01-02T03:48:07.892Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "US",
"last_match_time": "2017-07-11T04:34:52.000Z",
"last_played": 1470101038,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 115975133,
"name": "USH!",
"country_code": "us",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Eternity",
"team_tag": "Eternity",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198076240861",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/72/7223d67f5015424c43044e79a77578a5b013ade5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/72/7223d67f5015424c43044e79a77578a5b013ade5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/72/7223d67f5015424c43044e79a77578a5b013ade5_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198076240861/",
"personaname": "ush-.-",
"last_login": null,
"full_history_time": "2018-07-15T23:12:34.668Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T10:01:54.000Z",
"last_played": 1497555401,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 201741490,
"name": "FLYSOLO",
"country_code": "",
"fantasy_role": 0,
"team_id": 4652955,
"team_name": "Neon Esports",
"team_tag": "Neon",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198162007218",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c997722c7d3e1795ad79f6894687a737a544432a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c997722c7d3e1795ad79f6894687a737a544432a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c9/c997722c7d3e1795ad79f6894687a737a544432a_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198162007218/",
"personaname": "FLYSOLO",
"last_login": "2018-05-11T09:10:13.889Z",
"full_history_time": "2018-05-11T09:11:43.027Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T13:39:34.000Z",
"last_played": 1499322861,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 108939324,
"name": "Ben",
"country_code": "my",
"fantasy_role": 1,
"team_id": 0,
"team_name": "C.C.N.C",
"team_tag": "C.C.N.C",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198069205052",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/74/7499ecac6f90b482a8b2b21f16188c84213bb7e0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/74/7499ecac6f90b482a8b2b21f16188c84213bb7e0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/74/7499ecac6f90b482a8b2b21f16188c84213bb7e0_full.jpg",
"profileurl": "https://steamcommunity.com/id/ahbenlim127/",
"personaname": "Snail",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "MY",
"last_match_time": "2018-05-29T13:22:11.000Z",
"last_played": 1353164727,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 21604967,
"name": "Kona Warlock",
"country_code": "us",
"fantasy_role": 2,
"team_id": 1425274,
"team_name": "Weaboos United",
"team_tag": "WEABOO",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561197981870695",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/277785032d304e7d00a510e3110712af287ee101.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/277785032d304e7d00a510e3110712af287ee101_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/277785032d304e7d00a510e3110712af287ee101_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561197981870695/",
"personaname": "`Greed",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "US",
"last_match_time": "2018-07-07T01:14:01.000Z",
"last_played": 1405395815,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 168785654,
"name": "Blu3",
"country_code": "de",
"fantasy_role": 1,
"team_id": 3962017,
"team_name": "Sadfrog Boys",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198129051382",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17a69c104d1736de5a3a4a9589e161abc550ee5d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17a69c104d1736de5a3a4a9589e161abc550ee5d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/17/17a69c104d1736de5a3a4a9589e161abc550ee5d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198129051382/",
"personaname": "blu3",
"last_login": "2018-05-26T21:52:40.803Z",
"full_history_time": "2016-01-06T16:14:01.729Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "DE",
"last_match_time": "2018-09-10T20:39:03.000Z",
"last_played": 1508509957,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 56939869,
"name": "Gorgc",
"country_code": "se",
"fantasy_role": 1,
"team_id": 0,
"team_name": "Horde",
"team_tag": "Horde",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198017205597",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/95e20ac0675bbb5a07a120e1d53f7cead53d44d5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/95e20ac0675bbb5a07a120e1d53f7cead53d44d5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/95/95e20ac0675bbb5a07a120e1d53f7cead53d44d5_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198017205597/",
"personaname": "< blank >",
"last_login": "2017-08-17T03:31:09.157Z",
"full_history_time": "2018-09-09T19:19:20.569Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T19:59:35.000Z",
"last_played": 1520931734,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 59463394,
"name": "DrakeNNNNNNN",
"country_code": "",
"fantasy_role": 0,
"team_id": 6185066,
"team_name": "LABORATORIO",
"team_tag": "LAB",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198019729122",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/87e6247b9cc4e02ecf92fc58003a405c906b4366.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/87e6247b9cc4e02ecf92fc58003a405c906b4366_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/87/87e6247b9cc4e02ecf92fc58003a405c906b4366_full.jpg",
"profileurl": "https://steamcommunity.com/id/jkwOmpPkEKbotz/",
"personaname": "᠌᠌ ᠌᠌᠌᠌᠌᠌᠌᠌᠌᠌᠌",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T16:52:21.000Z",
"last_played": 1470202962,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 89038430,
"name": "brown dog",
"country_code": "se",
"fantasy_role": 1,
"team_id": 5244665,
"team_name": "Cej was right",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198049304158",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/69/69f31bce6180b5f5c88c445926de0859b0cd9c36.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/69/69f31bce6180b5f5c88c445926de0859b0cd9c36_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/69/69f31bce6180b5f5c88c445926de0859b0cd9c36_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198049304158/",
"personaname": "snorman",
"last_login": "2017-05-29T09:54:00.154Z",
"full_history_time": "2016-04-10T09:00:36.917Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "SE",
"last_match_time": "2018-09-10T20:25:51.000Z",
"last_played": 1447526012,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 116525052,
"name": "Duster",
"country_code": "br",
"fantasy_role": 2,
"team_id": 67,
"team_name": "paiN Gaming",
"team_tag": "paiN",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198076790780",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cc/cc4e3e84c5b35206977c7a9eb08beee03412930d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cc/cc4e3e84c5b35206977c7a9eb08beee03412930d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cc/cc4e3e84c5b35206977c7a9eb08beee03412930d_full.jpg",
"profileurl": "https://steamcommunity.com/id/dusterinho/",
"personaname": "death and decay",
"last_login": "2018-07-31T23:09:20.127Z",
"full_history_time": "2018-08-26T22:43:45.720Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "BR",
"last_match_time": "2018-09-10T18:09:33.000Z",
"last_played": 1481696309,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 211531481,
"name": "Alisson",
"country_code": "ph",
"fantasy_role": 1,
"team_id": 6184250,
"team_name": " ",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198171797209",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da225071a6114f4f37f0df50e435adf00eba3cc1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da225071a6114f4f37f0df50e435adf00eba3cc1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/da/da225071a6114f4f37f0df50e435adf00eba3cc1_full.jpg",
"profileurl": "https://steamcommunity.com/id/deshabim/",
"personaname": "Alisson666",
"last_login": "2017-12-17T17:22:41.976Z",
"full_history_time": "2018-06-24T01:20:25.421Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T13:09:10.000Z",
"last_played": 1521008517,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 67601693,
"name": "TC",
"country_code": "ca",
"fantasy_role": 1,
"team_id": 5896521,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1471168800,
"steamid": "76561198027867421",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f2/f28a8d80f4041f8946d75bb6293400aadc4c0b9a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f2/f28a8d80f4041f8946d75bb6293400aadc4c0b9a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f2/f28a8d80f4041f8946d75bb6293400aadc4c0b9a_full.jpg",
"profileurl": "https://steamcommunity.com/id/TC33/",
"personaname": "`TC`",
"last_login": "2016-04-25T00:44:08.970Z",
"full_history_time": "2016-04-25T02:43:42.381Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-06-22T21:11:45.000Z",
"last_played": 1405118217,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 108011225,
"name": "Syuuu",
"country_code": "",
"fantasy_role": 0,
"team_id": 5015830,
"team_name": "Helsinki REDS",
"team_tag": "hREDS",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198068276953",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/3466fc4ca8c4b67fdeba798a121b80f4e2abf0f4.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/3466fc4ca8c4b67fdeba798a121b80f4e2abf0f4_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/34/3466fc4ca8c4b67fdeba798a121b80f4e2abf0f4_full.jpg",
"profileurl": "https://steamcommunity.com/id/LULULULULULULULULUL/",
"personaname": "Syuuu",
"last_login": "2017-03-26T19:56:46.219Z",
"full_history_time": "2018-07-24T23:50:41.804Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "TL",
"last_match_time": "2018-08-09T16:57:41.000Z",
"last_played": 1508322221,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 219239958,
"name": "Mystery.",
"country_code": "",
"fantasy_role": 0,
"team_id": 3346336,
"team_name": "LYG.Gaming",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198179505686",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0c/0c53d55daff639d6a7921f77901d3d8754dc7d6d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0c/0c53d55daff639d6a7921f77901d3d8754dc7d6d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/0c/0c53d55daff639d6a7921f77901d3d8754dc7d6d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198179505686/",
"personaname": "Mystery.",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-02T02:05:24.000Z",
"last_played": 1507906001,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 93844612,
"name": "CherryBlossom",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 3931120,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198054110340",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/57/5780c5da5530c268f65820088e5b5969ba68d2d6.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/57/5780c5da5530c268f65820088e5b5969ba68d2d6_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/57/5780c5da5530c268f65820088e5b5969ba68d2d6_full.jpg",
"profileurl": "https://steamcommunity.com/id/alicekarbdecho/",
"personaname": "過客",
"last_login": "2016-05-17T05:25:37.023Z",
"full_history_time": "2017-11-14T08:53:02.433Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "MY",
"last_match_time": "2018-09-09T08:35:43.000Z",
"last_played": 1366366643,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 116835433,
"name": "Syc",
"country_code": "cn",
"fantasy_role": 1,
"team_id": 3726949,
"team_name": "Team FDL",
"team_tag": "FDL",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198077101161",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d6d983a0937081c4def3e1dfc4c66cf5e82ed8f0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d6d983a0937081c4def3e1dfc4c66cf5e82ed8f0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d6d983a0937081c4def3e1dfc4c66cf5e82ed8f0_full.jpg",
"profileurl": "https://steamcommunity.com/id/Sycdota/",
"personaname": "Syc",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2017-06-15T21:03:55.000Z",
"last_played": 1402890234,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 71603197,
"name": "potatofluff",
"country_code": "",
"fantasy_role": 0,
"team_id": 4424013,
"team_name": "Ten Twenty",
"team_tag": "1020",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198031868925",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/21/2147246eda087b55c3a80805d472adc2f8f5ad5c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/21/2147246eda087b55c3a80805d472adc2f8f5ad5c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/21/2147246eda087b55c3a80805d472adc2f8f5ad5c_full.jpg",
"profileurl": "https://steamcommunity.com/id/potatofluff/",
"personaname": "potatofluff",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "SG",
"last_match_time": "2018-08-04T17:51:21.000Z",
"last_played": 1362854098,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 72156367,
"name": "ufir",
"country_code": "ru",
"fantasy_role": 2,
"team_id": 3339205,
"team_name": "will",
"team_tag": "将",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198032422095",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d48f8fc7cc795a80f056f7184c4399299324584f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d48f8fc7cc795a80f056f7184c4399299324584f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d4/d48f8fc7cc795a80f056f7184c4399299324584f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198032422095/",
"personaname": "2U",
"last_login": null,
"full_history_time": "2017-07-17T19:19:47.008Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T20:45:40.000Z",
"last_played": 1508502927,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 117891932,
"name": "Λcil",
"country_code": "",
"fantasy_role": 0,
"team_id": 1105664,
"team_name": "Rex Regum QEON",
"team_tag": "RR.QEON",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198078157660",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b5417d1010c8864c02d9a4bcc042e41c793c938a.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b5417d1010c8864c02d9a4bcc042e41c793c938a_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b5417d1010c8864c02d9a4bcc042e41c793c938a_full.jpg",
"profileurl": "https://steamcommunity.com/id/aforacel/",
"personaname": "",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "DE",
"last_match_time": "2018-09-10T13:46:31.000Z",
"last_played": 1527863600,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 75438820,
"name": "Storoh",
"country_code": "ru",
"fantasy_role": 2,
"team_id": 3930476,
"team_name": "Whites",
"team_tag": "Whites",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198035704548",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/90a7feced66e19c73ff822d3850214c3f146ea01.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/90a7feced66e19c73ff822d3850214c3f146ea01_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/90/90a7feced66e19c73ff822d3850214c3f146ea01_full.jpg",
"profileurl": "https://steamcommunity.com/id/Storoh/",
"personaname": "Storoh",
"last_login": "2017-08-25T16:30:52.442Z",
"full_history_time": "2018-02-13T21:28:10.896Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T00:12:16.000Z",
"last_played": 1508590933,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 92331184,
"name": "daFa-",
"country_code": "my",
"fantasy_role": 1,
"team_id": 0,
"team_name": "TeamSquirtle",
"team_tag": "TS",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198052596912",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b52e1958c0315c44323bac34df9314d5844f6342.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b52e1958c0315c44323bac34df9314d5844f6342_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b52e1958c0315c44323bac34df9314d5844f6342_full.jpg",
"profileurl": "https://steamcommunity.com/id/ddafa/",
"personaname": "d",
"last_login": "2018-04-03T02:41:49.853Z",
"full_history_time": "2018-05-31T14:08:33.619Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "MY",
"last_match_time": "2018-09-02T10:37:32.000Z",
"last_played": 1364298275,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 98018029,
"name": "Moon",
"country_code": "by",
"fantasy_role": 1,
"team_id": 0,
"team_name": null,
"team_tag": null,
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198058283757",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b59aa225032f8c1c6050f583b6b6b63ea118347b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b59aa225032f8c1c6050f583b6b6b63ea118347b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/b5/b59aa225032f8c1c6050f583b6b6b63ea118347b_full.jpg",
"profileurl": "https://steamcommunity.com/id/moonlight93/",
"personaname": "bad",
"last_login": null,
"full_history_time": "2018-03-29T19:27:35.600Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "BY",
"last_match_time": "2018-09-10T19:15:01.000Z",
"last_played": 1519033832,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 91852305,
"name": "The_apathy",
"country_code": "ru",
"fantasy_role": 1,
"team_id": 0,
"team_name": "PENTA Sports",
"team_tag": "PENTA",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198052118033",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7b/7b48f7a5957f8834fe9e5fdc1434788f446a3c31.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7b/7b48f7a5957f8834fe9e5fdc1434788f446a3c31_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7b/7b48f7a5957f8834fe9e5fdc1434788f446a3c31_full.jpg",
"profileurl": "https://steamcommunity.com/id/The_apathy/",
"personaname": "The_apathy",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T20:11:19.000Z",
"last_played": 1508492594,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 91730177,
"name": "Seleri",
"country_code": "",
"fantasy_role": 0,
"team_id": 5037507,
"team_name": "DotA Mastery",
"team_tag": "DM",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198051995905",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/04/0412fc6ae94c2d34f9a9d186fb133499eef1de81.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/04/0412fc6ae94c2d34f9a9d186fb133499eef1de81_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/04/0412fc6ae94c2d34f9a9d186fb133499eef1de81_full.jpg",
"profileurl": "https://steamcommunity.com/id/Seleri/",
"personaname": "Seleri",
"last_login": "2017-11-12T17:57:27.757Z",
"full_history_time": "2017-01-13T15:25:22.972Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "NL",
"last_match_time": "2018-09-10T20:01:57.000Z",
"last_played": 1448042278,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86761836,
"name": "42",
"country_code": "ca",
"fantasy_role": 2,
"team_id": 0,
"team_name": "ILONKA",
"team_tag": "ILONKA",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198047027564",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e1/e15e5087e1e4c82feaf1e68e34bcb8d94680126c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e1/e15e5087e1e4c82feaf1e68e34bcb8d94680126c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/e1/e15e5087e1e4c82feaf1e68e34bcb8d94680126c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047027564/",
"personaname": "Future",
"last_login": "2017-02-28T16:57:05.780Z",
"full_history_time": "2016-11-19T06:57:57.607Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2017-10-30T01:53:40.000Z",
"last_played": 1417674094,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 135866497,
"name": "ping",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 2860081,
"team_name": "team_ftd_a",
"team_tag": "FTD.a",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198096132225",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/19/1951508d2311c514ca161acb50943fbb9a8c125c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/19/1951508d2311c514ca161acb50943fbb9a8c125c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/19/1951508d2311c514ca161acb50943fbb9a8c125c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198096132225/",
"personaname": "随便玩",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": null,
"last_played": 1381780935,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 84853828,
"name": "Kingrd",
"country_code": "",
"fantasy_role": 2,
"team_id": 67,
"team_name": "paiN Gaming",
"team_tag": "paiN",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198045119556",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/12/12074b326d1db9efee372a35afd294272847afc1.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/12/12074b326d1db9efee372a35afd294272847afc1_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/12/12074b326d1db9efee372a35afd294272847afc1_full.jpg",
"profileurl": "https://steamcommunity.com/id/Kingrd/",
"personaname": "Mr.Kingão",
"last_login": "2017-11-27T13:02:29.420Z",
"full_history_time": "2018-07-21T20:11:09.619Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "BR",
"last_match_time": "2018-09-10T21:10:36.000Z",
"last_played": 1497463171,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 85008179,
"name": "Peco",
"country_code": "",
"fantasy_role": 0,
"team_id": 3715574,
"team_name": "SG e-sports team",
"team_tag": "SG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198045273907",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf336686b4e2b6706e82c389146a7dd2b4a1c9ce.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf336686b4e2b6706e82c389146a7dd2b4a1c9ce_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/bf/bf336686b4e2b6706e82c389146a7dd2b4a1c9ce_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198045273907/",
"personaname": "1372",
"last_login": "2017-02-27T22:00:15.223Z",
"full_history_time": "2017-10-11T01:57:50.627Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-06T16:59:16.000Z",
"last_played": 1534293200,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 102712376,
"name": "CaptainLove",
"country_code": "ua",
"fantasy_role": 2,
"team_id": 2578382,
"team_name": "Yellow Submarine!",
"team_tag": "YeS!",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198062978104",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d69aa94153cb0c020092440fe957032e0bc25306.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d69aa94153cb0c020092440fe957032e0bc25306_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/d6/d69aa94153cb0c020092440fe957032e0bc25306_full.jpg",
"profileurl": "https://steamcommunity.com/id/polet_/",
"personaname": "devastated",
"last_login": "2016-09-22T23:16:38.731Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "UA",
"last_match_time": "2018-08-20T10:36:30.000Z",
"last_played": 1347478933,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 119137163,
"name": "Imba#4",
"country_code": "",
"fantasy_role": 0,
"team_id": 5050733,
"team_name": "MEGA-LADA E-sports",
"team_tag": "MLG",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198079402891",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a94b7ff15612f222998f8ce11bed0821eb84e7b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a94b7ff15612f222998f8ce11bed0821eb84e7b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7a/7a94b7ff15612f222998f8ce11bed0821eb84e7b_full.jpg",
"profileurl": "https://steamcommunity.com/id/imbaach/",
"personaname": "MODE: ttr.EMPIRE(2015)",
"last_login": "2017-11-11T18:40:40.388Z",
"full_history_time": "2017-11-30T04:42:55.172Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T09:13:24.000Z",
"last_played": 1508594553,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86750262,
"name": "Scandal",
"country_code": "ru",
"fantasy_role": 1,
"team_id": 0,
"team_name": "MEGA-LADA E-sports",
"team_tag": "MLG",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198047015990",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6cffe963ecaec9b105ef50a13bc30db509fa0913.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6cffe963ecaec9b105ef50a13bc30db509fa0913_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6c/6cffe963ecaec9b105ef50a13bc30db509fa0913_full.jpg",
"profileurl": "https://steamcommunity.com/id/romanscandal/",
"personaname": "ReapN' It",
"last_login": null,
"full_history_time": "2016-10-27T17:46:53.250Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T19:15:01.000Z",
"last_played": 1465146612,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 100594231,
"name": "skemberlu",
"country_code": "",
"fantasy_role": 0,
"team_id": 3586078,
"team_name": "Geek Fam",
"team_tag": "GeekFam",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198060859959",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/97b64e7e668237e35c08710d632bdab688305077.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/97b64e7e668237e35c08710d632bdab688305077_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/97/97b64e7e668237e35c08710d632bdab688305077_full.jpg",
"profileurl": "https://steamcommunity.com/id/skemberlulu/",
"personaname": "skEEm",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T07:37:02.000Z",
"last_played": 1465576561,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 105470669,
"name": "Ryūjin",
"country_code": "ru",
"fantasy_role": 1,
"team_id": 5527932,
"team_name": "-",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198065736397",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f76eb3658e1ba6ec5cd2b587d4f92c26b76aff58.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f76eb3658e1ba6ec5cd2b587d4f92c26b76aff58_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f7/f76eb3658e1ba6ec5cd2b587d4f92c26b76aff58_full.jpg",
"profileurl": "https://steamcommunity.com/id/penchys/",
"personaname": "ye que",
"last_login": null,
"full_history_time": "2018-04-29T18:28:43.898Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T21:11:14.000Z",
"last_played": 1493155705,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86747351,
"name": "Jason",
"country_code": "",
"fantasy_role": 2,
"team_id": 5992195,
"team_name": "Excellence",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198047013079",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/74/7467d07cb9f6008fdeb0aaa5bf85d79095b84202.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/74/7467d07cb9f6008fdeb0aaa5bf85d79095b84202_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/74/7467d07cb9f6008fdeb0aaa5bf85d79095b84202_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047013079/",
"personaname": "Fun. ~ LEARN",
"last_login": "2018-05-23T21:23:08.393Z",
"full_history_time": "2018-05-10T18:29:11.931Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T04:06:05.000Z",
"last_played": 1513124268,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 131706718,
"name": "sora",
"country_code": "br",
"fantasy_role": 0,
"team_id": 3321220,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198091972446",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f854513e7ef9f49ea770e3c17a47abb4105c23f2.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f854513e7ef9f49ea770e3c17a47abb4105c23f2_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f8/f854513e7ef9f49ea770e3c17a47abb4105c23f2_full.jpg",
"profileurl": "https://steamcommunity.com/id/awesomeasf44k/",
"personaname": "2babee",
"last_login": "2016-09-24T13:54:39.080Z",
"full_history_time": "2018-06-06T17:19:28.373Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": "AQ",
"last_match_time": "2018-09-10T21:22:54.000Z",
"last_played": 1469987672,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 93473848,
"name": "Maden",
"country_code": "",
"fantasy_role": 0,
"team_id": 2790766,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198053739576",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/68/68b6fb0bf364259de3ca535d1f31d17d196cc905.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/68/68b6fb0bf364259de3ca535d1f31d17d196cc905_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/68/68b6fb0bf364259de3ca535d1f31d17d196cc905_full.jpg",
"profileurl": "https://steamcommunity.com/id/madenon/",
"personaname": "Maden",
"last_login": "2016-09-06T15:48:18.537Z",
"full_history_time": "2018-06-18T16:58:10.547Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-10T17:55:13.000Z",
"last_played": 1493113993,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 268546384,
"name": "lft.4/5过去的是现在",
"country_code": "cn",
"fantasy_role": 2,
"team_id": 3963419,
"team_name": "",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198228812112",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/7728dd97701aa6989ecf10a6ad50213ccffda82f.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/7728dd97701aa6989ecf10a6ad50213ccffda82f_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/7728dd97701aa6989ecf10a6ad50213ccffda82f_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198228812112/",
"personaname": "高手",
"last_login": null,
"full_history_time": "2017-11-16T11:12:50.585Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T06:48:05.000Z",
"last_played": 1468393638,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 92411451,
"name": "LucH",
"country_code": "id",
"fantasy_role": 1,
"team_id": 3262331,
"team_name": "Team EVOS",
"team_tag": "EVOS",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198052677179",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f2/f2045e8d3eb879a50c22eee6a2087b60ae6d57f8.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f2/f2045e8d3eb879a50c22eee6a2087b60ae6d57f8_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/f2/f2045e8d3eb879a50c22eee6a2087b60ae6d57f8_full.jpg",
"profileurl": "https://steamcommunity.com/id/LLLucH/",
"personaname": "LucH",
"last_login": "2018-04-30T13:08:36.023Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "ID",
"last_match_time": "2018-08-31T17:25:26.000Z",
"last_played": 1356277027,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86576108,
"name": "Ouker",
"country_code": "",
"fantasy_role": 0,
"team_id": 5015830,
"team_name": "Helsinki REDS",
"team_tag": "hREDS",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198046841836",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40ab19c7279f15bcc1242507f5aaf47f3e1e5e54.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40ab19c7279f15bcc1242507f5aaf47f3e1e5e54_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40ab19c7279f15bcc1242507f5aaf47f3e1e5e54_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198046841836/",
"personaname": "Ouker",
"last_login": "2017-12-01T19:26:51.185Z",
"full_history_time": "2016-12-01T23:10:22.182Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "FI",
"last_match_time": "2018-09-10T18:16:54.000Z",
"last_played": 1508322221,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86743641,
"name": "ryuuboruz",
"country_code": "",
"fantasy_role": 0,
"team_id": 5020794,
"team_name": "BLUE PIKACHU",
"team_tag": "BP",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047009369",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/54/54b19f8fa1175295310f12e653bf69867ddbf4cb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/54/54b19f8fa1175295310f12e653bf69867ddbf4cb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/54/54b19f8fa1175295310f12e653bf69867ddbf4cb_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198047009369/",
"personaname": "twitch.tv/ryuudota",
"last_login": "2017-01-21T21:21:47.362Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T08:22:57.000Z",
"last_played": 1513133025,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 293529846,
"name": "dw",
"country_code": "",
"fantasy_role": 0,
"team_id": 4817847,
"team_name": "SC",
"team_tag": "SC",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198253795574",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274c3d7cf3e1b436747d463bd8df4912579d3402.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274c3d7cf3e1b436747d463bd8df4912579d3402_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/27/274c3d7cf3e1b436747d463bd8df4912579d3402_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198253795574/",
"personaname": "Dw_Deer",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-08T08:41:51.000Z",
"last_played": 1489942034,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 100710185,
"name": "baNhwA",
"country_code": "kr",
"fantasy_role": 1,
"team_id": 992815,
"team_name": "MVP HOTSIX",
"team_tag": "MVP",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198060975913",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c09380638772466148b02aad322216e6e903cd0c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c09380638772466148b02aad322216e6e903cd0c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/c0/c09380638772466148b02aad322216e6e903cd0c_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198060975913/",
"personaname": "another world",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "KR",
"last_match_time": null,
"last_played": 1405402243,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 298726580,
"name": "MaTa",
"country_code": "ua",
"fantasy_role": 2,
"team_id": 5269321,
"team_name": ".",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198258992308",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/777755c48ca808cb7749ce9309743277cb0b63c5.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/777755c48ca808cb7749ce9309743277cb0b63c5_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/77/777755c48ca808cb7749ce9309743277cb0b63c5_full.jpg",
"profileurl": "https://steamcommunity.com/id/i_mata/",
"personaname": "MaTa",
"last_login": "2017-09-11T11:51:45.506Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-03T16:08:19.000Z",
"last_played": 1493040826,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 1522705,
"name": "nihis",
"country_code": "fi",
"fantasy_role": 2,
"team_id": 1055544,
"team_name": "Hehe United",
"team_tag": "hehe",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561197961788433",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/fe/fef49e7fa7e1997310d705b2a6158ff8dc1cdfeb_full.jpg",
"profileurl": "https://steamcommunity.com/id/nihiss/",
"personaname": "nihis",
"last_login": "2016-07-30T09:05:06.341Z",
"full_history_time": "2017-08-24T15:51:03.734Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T20:36:31.000Z",
"last_played": 1519316038,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 91539960,
"name": "wysdm",
"country_code": "",
"fantasy_role": 1,
"team_id": 5002399,
"team_name": " ",
"team_tag": " ",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198051805688",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/04/044783ef0306db706140bf0fe430f0ca4e2eae1c.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/04/044783ef0306db706140bf0fe430f0ca4e2eae1c_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/04/044783ef0306db706140bf0fe430f0ca4e2eae1c_full.jpg",
"profileurl": "https://steamcommunity.com/id/_wysdm_/",
"personaname": "wysdm",
"last_login": "2016-06-15T20:56:04.433Z",
"full_history_time": "2017-02-27T20:59:21.426Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "RU",
"last_match_time": "2018-09-09T11:07:55.000Z",
"last_played": 1519033832,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 103045129,
"name": "Grimzx",
"country_code": "ph",
"fantasy_role": 2,
"team_id": 2581813,
"team_name": "Execration.安博电竞",
"team_tag": "XctN",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198063310857",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/84/84afad205b4acba1c58ca2616b6c65dbc3de61b7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/84/84afad205b4acba1c58ca2616b6c65dbc3de61b7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/84/84afad205b4acba1c58ca2616b6c65dbc3de61b7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198063310857/",
"personaname": "Kacchan",
"last_login": "2017-04-20T15:50:25.609Z",
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-08T20:24:53.000Z",
"last_played": 1464704828,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86715129,
"name": "ixmike88",
"country_code": "us",
"fantasy_role": 1,
"team_id": 5189362,
"team_name": "sdf",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1493683200,
"steamid": "76561198046980857",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6e/6e208699b2cf9433a30a8865a8f70d22cd214fa9.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6e/6e208699b2cf9433a30a8865a8f70d22cd214fa9_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/6e/6e208699b2cf9433a30a8865a8f70d22cd214fa9_full.jpg",
"profileurl": "https://steamcommunity.com/id/ixmike88/",
"personaname": "ixmike88",
"last_login": "2016-09-19T06:43:31.401Z",
"full_history_time": "2018-06-30T19:33:50.290Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T20:15:50.000Z",
"last_played": 1469995510,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 128513043,
"name": "datou",
"country_code": "",
"fantasy_role": 0,
"team_id": 5027210,
"team_name": "VGJ Thunder",
"team_tag": "VGJ.T",
"is_locked": false,
"is_pro": true,
"locked_until": 1533081600,
"steamid": "76561198088778771",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/99/9913921956a546e1a24f3baf5eeb27d9a7d631b3.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/99/9913921956a546e1a24f3baf5eeb27d9a7d631b3_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/99/9913921956a546e1a24f3baf5eeb27d9a7d631b3_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198088778771/",
"personaname": "头、",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-03-26T10:26:44.000Z",
"last_played": 1506504759,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 104611628,
"name": "miyaKo",
"country_code": "",
"fantasy_role": 0,
"team_id": 5152964,
"team_name": "Echo Gaming",
"team_tag": "Echo",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198064877356",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/15/155f2c255a97e722be2967cc9e0de7d581c5a073.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/15/155f2c255a97e722be2967cc9e0de7d581c5a073_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/15/155f2c255a97e722be2967cc9e0de7d581c5a073_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198064877356/",
"personaname": "miyaKoo ^ xbz",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "CN",
"last_match_time": "2018-09-10T08:25:58.000Z",
"last_played": 1376352220,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 127077041,
"name": "Boomy",
"country_code": "",
"fantasy_role": 0,
"team_id": 5207190,
"team_name": "admiral",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198087342769",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40897ca44562ff1a498cc020c0a636f410a1777d.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40897ca44562ff1a498cc020c0a636f410a1777d_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/40/40897ca44562ff1a498cc020c0a636f410a1777d_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198087342769/",
"personaname": "boomy",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": "PH",
"last_match_time": "2018-09-10T13:09:10.000Z",
"last_played": 1499322861,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 126397214,
"name": "TrazaM",
"country_code": "my",
"fantasy_role": 0,
"team_id": 5325055,
"team_name": "BLACKJACK",
"team_tag": "BLACKJACK",
"is_locked": false,
"is_pro": true,
"locked_until": 0,
"steamid": "76561198086662942",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/753560291d1726c7e9e29b43e324800ea06c8fc0.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/753560291d1726c7e9e29b43e324800ea06c8fc0_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/75/753560291d1726c7e9e29b43e324800ea06c8fc0_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198086662942/",
"personaname": "TrazaM",
"last_login": null,
"full_history_time": null,
"cheese": 0,
"fh_unavailable": null,
"loccountrycode": null,
"last_match_time": "2018-09-10T11:04:11.000Z",
"last_played": 1465466993,
"win": 1,
"games": 1,
"with_win": 1,
"with_games": 1,
"against_win": 0,
"against_games": 0,
"with_gpm_sum": null,
"with_xpm_sum": null
},
{
"account_id": 86724433,
"name": " i w o",
"country_code": "pe",
"fantasy_role": 1,
"team_id": 1773539,
"team_name": "Battle Zone-",
"team_tag": "Bz",
"is_locked": false,
"is_pro": true,
"locked_until": 1481500800,
"steamid": "76561198046990161",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/70/703dccfbf1f4ebfbe35e95949be9b9518a0c1fd7.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/70/703dccfbf1f4ebfbe35e95949be9b9518a0c1fd7_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/70/703dccfbf1f4ebfbe35e95949be9b9518a0c1fd7_full.jpg",
"profileurl": "https://steamcommunity.com/profiles/76561198046990161/",
"personaname": "i w o '",
"last_login": null,
"full_history_time": "2018-01-28T04:19:37.856Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": null,
"last_match_time": "2018-09-10T04:51:05.000Z",
"last_played": 1417674094,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 123953528,
"name": "Robo-Z",
"country_code": "",
"fantasy_role": 0,
"team_id": 3705786,
"team_name": "/////",
"team_tag": "/////",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198084219256",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cd7022048a957bf7c953d53b62097deb7dadd17b.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cd7022048a957bf7c953d53b62097deb7dadd17b_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/cd/cd7022048a957bf7c953d53b62097deb7dadd17b_full.jpg",
"profileurl": "https://steamcommunity.com/id/AAnnx/",
"personaname": "Izh acha vo'domosh",
"last_login": null,
"full_history_time": "2018-08-28T08:09:06.137Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "PE",
"last_match_time": "2018-09-10T19:20:00.000Z",
"last_played": 1534289873,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 86738694,
"name": "qojqva",
"country_code": "",
"fantasy_role": 0,
"team_id": 5229049,
"team_name": "Mad Lads",
"team_tag": "ML",
"is_locked": false,
"is_pro": true,
"locked_until": 1535785200,
"steamid": "76561198047004422",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/24b50fbc29fd66bbe940e9c4a47b55444c58f5cf.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/24b50fbc29fd66bbe940e9c4a47b55444c58f5cf_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/24/24b50fbc29fd66bbe940e9c4a47b55444c58f5cf_full.jpg",
"profileurl": "https://steamcommunity.com/id/qojqva1/",
"personaname": "Swanton Bomb",
"last_login": null,
"full_history_time": "2018-07-15T14:06:14.630Z",
"cheese": 0,
"fh_unavailable": true,
"loccountrycode": null,
"last_match_time": "2018-08-26T17:30:32.000Z",
"last_played": 1405118217,
"win": 1,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 1,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
},
{
"account_id": 48782900,
"name": "EdenOrange",
"country_code": "id",
"fantasy_role": 2,
"team_id": 3018001,
"team_name": " ",
"team_tag": "",
"is_locked": false,
"is_pro": true,
"locked_until": 1502694000,
"steamid": "76561198009048628",
"avatar": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7e651815484ed2a757642fa6c5d0660d6e937100.jpg",
"avatarmedium": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7e651815484ed2a757642fa6c5d0660d6e937100_medium.jpg",
"avatarfull": "https://cdn.cloudflare.steamstatic.com/steamcommunity/public/images/avatars/7e/7e651815484ed2a757642fa6c5d0660d6e937100_full.jpg",
"profileurl": "https://steamcommunity.com/id/EdenOrange/",
"personaname": "EdenOrange",
"last_login": "2016-09-27T08:06:27.680Z",
"full_history_time": "2017-05-12T15:07:53.660Z",
"cheese": 0,
"fh_unavailable": false,
"loccountrycode": "ID",
"last_match_time": "2018-09-02T08:46:44.000Z",
"last_played": 1362671285,
"win": 0,
"games": 1,
"with_win": 0,
"with_games": 0,
"against_win": 0,
"against_games": 1,
"with_gpm_sum": 0,
"with_xpm_sum": 0
}
] | odota/web/testcafe/cachedAjax/players_101695162_pros_.json/0 | {
"file_path": "odota/web/testcafe/cachedAjax/players_101695162_pros_.json",
"repo_id": "odota",
"token_count": 349389
} | 277 |
[
{
"match_id": "4098625630",
"start_time": "1535995413",
"hero_id": "11",
"score": "2060"
},
{
"match_id": "4097153300",
"start_time": "1535916397",
"hero_id": "4",
"score": "2051"
},
{
"match_id": "4101918338",
"start_time": "1536165053",
"hero_id": "17",
"score": "1975"
},
{
"match_id": "4105035234",
"start_time": "1536328609",
"hero_id": "73",
"score": "1972"
},
{
"match_id": "4094570225",
"start_time": "1535810763",
"hero_id": "4",
"score": "1959"
},
{
"match_id": "4107759295",
"start_time": "1536445051",
"hero_id": "100",
"score": "1937"
},
{
"match_id": "4108916635",
"start_time": "1536494564",
"hero_id": "73",
"score": "1926"
},
{
"match_id": "4103599371",
"start_time": "1536251619",
"hero_id": "73",
"score": "1926"
},
{
"match_id": "4106312035",
"start_time": "1536390199",
"hero_id": "73",
"score": "1888"
},
{
"match_id": "4097279888",
"start_time": "1535924286",
"hero_id": "97",
"score": "1874"
},
{
"match_id": "4098974954",
"start_time": "1536017988",
"hero_id": "119",
"score": "1816"
},
{
"match_id": "4099197893",
"start_time": "1536036609",
"hero_id": "59",
"score": "1796"
},
{
"match_id": "4098360782",
"start_time": "1535985295",
"hero_id": "114",
"score": "1795"
},
{
"match_id": "4103576976",
"start_time": "1536250727",
"hero_id": "1",
"score": "1790"
},
{
"match_id": "4096120529",
"start_time": "1535880226",
"hero_id": "114",
"score": "1785"
},
{
"match_id": "4105336281",
"start_time": "1536337949",
"hero_id": "17",
"score": "1768"
},
{
"match_id": "4111290510",
"start_time": "1536602571",
"hero_id": "35",
"score": "1767"
},
{
"match_id": "4093386386",
"start_time": "1535760211",
"hero_id": "73",
"score": "1747"
},
{
"match_id": "4101928667",
"start_time": "1536165452",
"hero_id": "42",
"score": "1734"
},
{
"match_id": "4110722591",
"start_time": "1536582623",
"hero_id": "67",
"score": "1729"
},
{
"match_id": "4094067215",
"start_time": "1535794165",
"hero_id": "1",
"score": "1713"
},
{
"match_id": "4095061675",
"start_time": "1535826367",
"hero_id": "73",
"score": "1708"
},
{
"match_id": "4107833148",
"start_time": "1536450814",
"hero_id": "32",
"score": "1700"
},
{
"match_id": "4096848945",
"start_time": "1535903150",
"hero_id": "1",
"score": "1696"
},
{
"match_id": "4111036640",
"start_time": "1536592390",
"hero_id": "4",
"score": "1690"
},
{
"match_id": "4099744616",
"start_time": "1536065133",
"hero_id": "39",
"score": "1690"
},
{
"match_id": "4094935181",
"start_time": "1535821687",
"hero_id": "46",
"score": "1688"
},
{
"match_id": "4106178083",
"start_time": "1536384853",
"hero_id": "17",
"score": "1680"
},
{
"match_id": "4107775657",
"start_time": "1536446221",
"hero_id": "1",
"score": "1671"
},
{
"match_id": "4099181675",
"start_time": "1536035459",
"hero_id": "44",
"score": "1664"
},
{
"match_id": "4096910686",
"start_time": "1535905420",
"hero_id": "35",
"score": "1649"
},
{
"match_id": "4095762435",
"start_time": "1535867178",
"hero_id": "7",
"score": "1646"
},
{
"match_id": "4099084096",
"start_time": "1536027762",
"hero_id": "8",
"score": "1644"
},
{
"match_id": "4108157627",
"start_time": "1536469159",
"hero_id": "17",
"score": "1643"
},
{
"match_id": "4107241703",
"start_time": "1536422631",
"hero_id": "67",
"score": "1639"
},
{
"match_id": "4108898710",
"start_time": "1536494031",
"hero_id": "63",
"score": "1634"
},
{
"match_id": "4105628433",
"start_time": "1536350285",
"hero_id": "76",
"score": "1632"
},
{
"match_id": "4099082613",
"start_time": "1536027611",
"hero_id": "28",
"score": "1632"
},
{
"match_id": "4110629580",
"start_time": "1536579316",
"hero_id": "17",
"score": "1630"
},
{
"match_id": "4103824541",
"start_time": "1536262542",
"hero_id": "36",
"score": "1630"
},
{
"match_id": "4093894593",
"start_time": "1535787743",
"hero_id": "17",
"score": "1625"
},
{
"match_id": "4097700975",
"start_time": "1535957173",
"hero_id": "73",
"score": "1622"
},
{
"match_id": "4103049847",
"start_time": "1536231218",
"hero_id": "17",
"score": "1615"
},
{
"match_id": "4105698893",
"start_time": "1536354357",
"hero_id": "72",
"score": "1611"
},
{
"match_id": "4099765119",
"start_time": "1536065808",
"hero_id": "67",
"score": "1611"
},
{
"match_id": "4110530036",
"start_time": "1536575208",
"hero_id": "12",
"score": "1608"
},
{
"match_id": "4099020907",
"start_time": "1536022257",
"hero_id": "73",
"score": "1606"
},
{
"match_id": "4110858125",
"start_time": "1536586898",
"hero_id": "82",
"score": "1605"
},
{
"match_id": "4104670768",
"start_time": "1536316717",
"hero_id": "67",
"score": "1600"
},
{
"match_id": "4098221533",
"start_time": "1535980907",
"hero_id": "63",
"score": "1599"
},
{
"match_id": "4098966444",
"start_time": "1536017317",
"hero_id": "67",
"score": "1589"
},
{
"match_id": "4111544014",
"start_time": "1536619312",
"hero_id": "67",
"score": "1584"
},
{
"match_id": "4110393510",
"start_time": "1536568798",
"hero_id": "21",
"score": "1583"
},
{
"match_id": "4104050019",
"start_time": "1536281470",
"hero_id": "44",
"score": "1580"
},
{
"match_id": "4095288281",
"start_time": "1535837669",
"hero_id": "106",
"score": "1580"
},
{
"match_id": "4109800880",
"start_time": "1536527677",
"hero_id": "17",
"score": "1577"
},
{
"match_id": "4097243044",
"start_time": "1535921689",
"hero_id": "67",
"score": "1576"
},
{
"match_id": "4109266501",
"start_time": "1536504462",
"hero_id": "8",
"score": "1571"
},
{
"match_id": "4099668593",
"start_time": "1536062393",
"hero_id": "32",
"score": "1566"
},
{
"match_id": "4096228352",
"start_time": "1535883947",
"hero_id": "114",
"score": "1566"
},
{
"match_id": "4094866825",
"start_time": "1535819379",
"hero_id": "93",
"score": "1565"
},
{
"match_id": "4102203449",
"start_time": "1536179165",
"hero_id": "73",
"score": "1562"
},
{
"match_id": "4101108244",
"start_time": "1536137979",
"hero_id": "73",
"score": "1560"
},
{
"match_id": "4098966371",
"start_time": "1536017286",
"hero_id": "36",
"score": "1553"
},
{
"match_id": "4109091225",
"start_time": "1536499500",
"hero_id": "1",
"score": "1550"
},
{
"match_id": "4096166157",
"start_time": "1535881804",
"hero_id": "67",
"score": "1547"
},
{
"match_id": "4097980778",
"start_time": "1535972012",
"hero_id": "44",
"score": "1541"
},
{
"match_id": "4100476334",
"start_time": "1536097208",
"hero_id": "44",
"score": "1536"
},
{
"match_id": "4098635207",
"start_time": "1535995855",
"hero_id": "14",
"score": "1532"
},
{
"match_id": "4098604627",
"start_time": "1535994476",
"hero_id": "56",
"score": "1531"
},
{
"match_id": "4109514312",
"start_time": "1536513064",
"hero_id": "73",
"score": "1530"
},
{
"match_id": "4098581174",
"start_time": "1535993455",
"hero_id": "1",
"score": "1530"
},
{
"match_id": "4099087473",
"start_time": "1536028042",
"hero_id": "32",
"score": "1528"
},
{
"match_id": "4095492943",
"start_time": "1535853036",
"hero_id": "73",
"score": "1528"
},
{
"match_id": "4106089209",
"start_time": "1536380939",
"hero_id": "4",
"score": "1525"
},
{
"match_id": "4094076837",
"start_time": "1535794528",
"hero_id": "17",
"score": "1525"
},
{
"match_id": "4094982030",
"start_time": "1535823364",
"hero_id": "73",
"score": "1523"
},
{
"match_id": "4105059880",
"start_time": "1536329287",
"hero_id": "35",
"score": "1522"
},
{
"match_id": "4093743401",
"start_time": "1535781447",
"hero_id": "73",
"score": "1522"
},
{
"match_id": "4105327541",
"start_time": "1536337660",
"hero_id": "73",
"score": "1520"
},
{
"match_id": "4097222253",
"start_time": "1535920332",
"hero_id": "14",
"score": "1520"
},
{
"match_id": "4094106166",
"start_time": "1535795671",
"hero_id": "73",
"score": "1514"
},
{
"match_id": "4106114643",
"start_time": "1536382156",
"hero_id": "73",
"score": "1513"
},
{
"match_id": "4098965222",
"start_time": "1536017175",
"hero_id": "75",
"score": "1506"
},
{
"match_id": "4106480915",
"start_time": "1536396207",
"hero_id": "70",
"score": "1502"
},
{
"match_id": "4097410167",
"start_time": "1535935994",
"hero_id": "1",
"score": "1502"
},
{
"match_id": "4107799793",
"start_time": "1536448070",
"hero_id": "14",
"score": "1498"
},
{
"match_id": "4106893712",
"start_time": "1536410094",
"hero_id": "59",
"score": "1498"
},
{
"match_id": "4105580542",
"start_time": "1536347828",
"hero_id": "21",
"score": "1498"
},
{
"match_id": "4108722752",
"start_time": "1536488442",
"hero_id": "73",
"score": "1494"
},
{
"match_id": "4109107455",
"start_time": "1536499954",
"hero_id": "73",
"score": "1493"
},
{
"match_id": "4097392666",
"start_time": "1535934353",
"hero_id": "73",
"score": "1492"
},
{
"match_id": "4102349528",
"start_time": "1536192073",
"hero_id": "73",
"score": "1490"
},
{
"match_id": "4096703621",
"start_time": "1535898554",
"hero_id": "99",
"score": "1489"
},
{
"match_id": "4107693954",
"start_time": "1536440925",
"hero_id": "73",
"score": "1488"
},
{
"match_id": "4103646601",
"start_time": "1536253605",
"hero_id": "73",
"score": "1488"
},
{
"match_id": "4100471979",
"start_time": "1536096836",
"hero_id": "32",
"score": "1488"
},
{
"match_id": "4097781395",
"start_time": "1535961881",
"hero_id": "73",
"score": "1488"
},
{
"match_id": "4104595214",
"start_time": "1536313338",
"hero_id": "12",
"score": "1486"
},
{
"match_id": "4094343441",
"start_time": "1535803968",
"hero_id": "101",
"score": "1486"
}
] | odota/web/testcafe/cachedAjax/records_gold_per_min_.json/0 | {
"file_path": "odota/web/testcafe/cachedAjax/records_gold_per_min_.json",
"repo_id": "odota",
"token_count": 5563
} | 278 |
.github
.task
.vscode
data/
docs.bleve/
frontend/node_modules/
frontend/cache/
frontend/build/
frontend/.next/
*.exe
.env
*.db
| openmultiplayer/web/.dockerignore/0 | {
"file_path": "openmultiplayer/web/.dockerignore",
"repo_id": "openmultiplayer",
"token_count": 57
} | 279 |
package pawndex_test
import (
"context"
"fmt"
"os"
"testing"
"github.com/google/go-github/github"
"github.com/joho/godotenv"
"golang.org/x/oauth2"
"github.com/openmultiplayer/web/app/resources/pawndex"
)
func TestGitHubScraper_Scrape(t *testing.T) {
godotenv.Load("../.env") //nolint:errcheck
token := os.Getenv("GITHUB_TOKEN")
if token == "" {
t.Skip("tests need a token to run.")
}
s := pawndex.GitHubScraper{
GitHub: github.NewClient(
oauth2.NewClient(
context.Background(),
oauth2.StaticTokenSource(&oauth2.Token{
AccessToken: token,
}),
)),
}
pkg, err := s.Scrape(context.Background(), "Southclaws/samp-logger")
fmt.Println(err)
fmt.Printf("%#v\n", pkg)
}
| openmultiplayer/web/app/resources/pawndex/scraper_test.go/0 | {
"file_path": "openmultiplayer/web/app/resources/pawndex/scraper_test.go",
"repo_id": "openmultiplayer",
"token_count": 325
} | 280 |
package authentication
import (
"context"
"net/http"
"time"
"github.com/pkg/errors"
"go.uber.org/zap"
"github.com/openmultiplayer/web/internal/web"
)
// Info represents data that is extracted from the path, validated
// against auth and stored in request context.
type Info struct {
Authenticated bool
Cookie Cookie
}
// Cookie represents the data structure that is stored inside the securecookie
// value. It is sent to the client in an encrypted (HMAC) form and decrypted on
// any future requests and propagated to handlers.
type Cookie struct {
UserID string
Admin bool
Created time.Time
}
var contextKey = struct{}{}
const secureCookieName = "openmultiplayer-session"
// WithAuthentication provides middleware for enforcing authentication
func (a *State) WithAuthentication(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
auth := Info{}
if a.doCookieAuth(r, &auth) {
auth.Authenticated = true
// } else if a.doTokenAuth(r, &auth) {
// auth.Authenticated = true
} else {
auth.Authenticated = false
}
// If the request contained a valid cookie, `auth.Authenticated` is now
// true and `auth.Cookie` contains the user information.
// Otherwise, `auth.Authenticated` is false and `auth.Cookie` is empty.
next.ServeHTTP(w, r.WithContext(context.WithValue(
r.Context(),
contextKey,
auth,
)))
})
}
func (a *State) doCookieAuth(r *http.Request, auth *Info) bool {
cookie, err := r.Cookie(secureCookieName)
if err != nil {
return false
}
if err = a.sc.Decode(secureCookieName, cookie.Value, &auth.Cookie); err != nil {
zap.L().Debug("failed to decode auth cookie", zap.Error(err))
return false
}
return true
}
func MustBeAuthenticated(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
auth, ok := GetAuthenticationInfo(w, r)
if !ok {
return
}
if !auth.Authenticated {
web.StatusUnauthorized(w, web.WithSuggestion(
errors.New("user not authenticated"),
"The request did not have any authentication information with it.",
"Ensure you are logged in, try logging out and back in again. If issues persist, please contact us.",
))
return
}
next.ServeHTTP(w, r)
})
}
func (a *State) MustBeAdmin(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
auth, ok := GetAuthenticationInfo(w, r)
if !ok {
return
}
if !auth.Cookie.Admin {
web.StatusUnauthorized(w, errors.New("user is not an administrator"))
return
}
next.ServeHTTP(w, r)
})
}
func (a *State) MustBeAuthenticatedWithAPIKey(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
authKey := r.Header.Get("Authorization")
if authKey != a.authAPIKey {
web.StatusUnauthorized(w, web.WithSuggestion(
errors.New("request is not authenticated"),
"You must provide API auth key to use this endpoint",
"",
))
return
}
next.ServeHTTP(w, r)
})
}
| openmultiplayer/web/app/services/authentication/middleware.go/0 | {
"file_path": "openmultiplayer/web/app/services/authentication/middleware.go",
"repo_id": "openmultiplayer",
"token_count": 1093
} | 281 |
package docs
import (
"net/http"
"github.com/Southclaws/qstring"
"github.com/go-chi/chi"
"go.uber.org/fx"
"github.com/openmultiplayer/web/app/services/docsindex"
"github.com/openmultiplayer/web/internal/web"
)
type service struct {
idx *docsindex.Index
}
func Build() fx.Option {
return fx.Options(
fx.Provide(func(idx *docsindex.Index) *service { return &service{idx} }),
fx.Invoke(func(
r chi.Router,
s *service,
) {
rtr := chi.NewRouter()
r.Mount("/docs", rtr)
fs := http.FileServer(http.Dir("docs/"))
rtr.With(func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Add("Content-Type", "text/markdown")
next.ServeHTTP(w, r)
})
}).Get("/*", http.StripPrefix("/docs/", fs).ServeHTTP)
rtr.Get("/search", s.search)
}),
)
}
type query struct {
Query string `qstring:"q"`
}
func (s *service) search(w http.ResponseWriter, r *http.Request) {
var q query
if err := qstring.Unmarshal(r.URL.Query(), &q); err != nil {
web.StatusBadRequest(w, err)
return
}
results, err := s.idx.Search(q.Query)
if err != nil {
web.StatusBadRequest(w, err)
return
}
//nolint:errcheck
web.Write(w, results)
}
| openmultiplayer/web/app/transports/api/docs/api.go/0 | {
"file_path": "openmultiplayer/web/app/transports/api/docs/api.go",
"repo_id": "openmultiplayer",
"token_count": 536
} | 282 |
package servers
import (
"net/http"
"strconv"
"time"
"github.com/pkg/errors"
"github.com/openmultiplayer/web/app/resources/server"
"github.com/openmultiplayer/web/internal/web"
)
func (s *service) list(w http.ResponseWriter, r *http.Request) {
queries := r.URL.Query()
since, err := strconv.Atoi(queries.Get("activeSince"))
if err != nil {
since = 3
}
// This used to be for getting servers from database directly
// list, err := s.storer.GetAll(r.Context(), time.Duration(-since)*time.Hour)
// Let's use cached servers, instead of getting them directly from database
// This way we can save a lot DB processing
list, err := s.storer.GetAllCached(r.Context(), time.Duration(-since)*time.Hour)
if err != nil {
web.StatusInternalServerError(w, errors.Wrap(err, "failed to get list of servers"))
return
}
essential := []server.Essential{}
for _, item := range list {
essential = append(essential, item.Core)
}
w.Header().Add("Content-Type", "application/json")
web.Write(w, essential)
}
| openmultiplayer/web/app/transports/api/servers/h_list.go/0 | {
"file_path": "openmultiplayer/web/app/transports/api/servers/h_list.go",
"repo_id": "openmultiplayer",
"token_count": 352
} | 283 |
---
title: OnGameModeInit
description: This callback is triggered when the gamemode starts.
tags: []
---
## Description
This callback is triggered when the gamemode starts.
## Examples
```c
public OnGameModeInit()
{
print("Gamemode started!");
return 1;
}
```
## Notes
:::tip
This function can also be used in a filterscript to detect if the gamemode changes with RCON commands like changemode or gmx, as changing the gamemode does not reload a filterscript.
:::
## Related Callbacks
The following callbacks might be useful, as they're related to this callback in one way or another.
- [OnGameModeExit](OnGameModeExit): This callback is called when a gamemode ends.
- [OnFilterScriptInit](OnFilterScriptInit): This callback is called when a filterscript is loaded.
- [OnFilterSciptExit](OnFilterScriptExit): This callback is called when a filterscript is unloaded.
| openmultiplayer/web/docs/scripting/callbacks/OnGameModeInit.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/callbacks/OnGameModeInit.md",
"repo_id": "openmultiplayer",
"token_count": 251
} | 284 |
---
title: OnPlayerClickPlayerTextDraw
description: This callback is called when a player clicks on a player-textdraw.
tags: ["player", "textdraw", "playertextdraw"]
---
## Description
This callback is called when a player clicks on a player-textdraw. It is not called when player cancels the select mode (ESC) - however, OnPlayerClickTextDraw is.
| Name | Description |
| ----------------------- | ------------------------------------------------------- |
| playerid | The ID of the player that selected a textdraw |
| PlayerText:playertextid | The ID of the player-textdraw that the player selected. |
## Returns
It is always called first in filterscripts so returning 1 there also blocks other scripts from seeing it.
## Examples
```c
new PlayerText:gPlayerTextDraw[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
// Create the textdraw
gPlayerTextDraw[playerid] = CreatePlayerTextDraw(playerid, 10.000000, 141.000000, "MyTextDraw");
PlayerTextDrawTextSize(playerid, gPlayerTextDraw[playerid], 60.000000, 20.000000);
PlayerTextDrawAlignment(playerid, gPlayerTextDraw[playerid], TEXT_DRAW_ALIGN_LEFT);
PlayerTextDrawBackgroundColor(playerid, gPlayerTextDraw[playerid], 0x000000FF);
PlayerTextDrawFont(playerid, gPlayerTextDraw[playerid], TEXT_DRAW_FONT_1);
PlayerTextDrawLetterSize(playerid, gPlayerTextDraw[playerid], 0.250000, 1.000000);
PlayerTextDrawColor(playerid, gPlayerTextDraw[playerid], -1);
PlayerTextDrawSetProportional(playerid, gPlayerTextDraw[playerid], true);
PlayerTextDrawSetShadow(playerid, gPlayerTextDraw[playerid], 1);
// Make it selectable
PlayerTextDrawSetSelectable(playerid, gPlayerTextDraw[playerid], true);
// Show it to the player
PlayerTextDrawShow(playerid, gPlayerTextDraw[playerid]);
return 1;
}
public OnPlayerKeyStateChange(playerid, KEY:newkeys, KEY:oldkeys)
{
if (newkeys == KEY_SUBMISSION)
{
SelectTextDraw(playerid, 0xFF4040AA);
}
return 1;
}
public OnPlayerClickPlayerTextDraw(playerid, PlayerText:playertextid)
{
if (playertextid == gPlayerTextDraw[playerid])
{
SendClientMessage(playerid, 0xFFFFFFAA, "You clicked on a player-textdraw.");
CancelSelectTextDraw(playerid);
return 1;
}
return 0;
}
```
## Notes
:::warning
When a player presses ESC to cancel selecting a textdraw, [OnPlayerClickTextDraw](OnPlayerClickTextDraw) is called with a textdraw ID of 'INVALID_TEXT_DRAW'. [OnPlayerClickPlayerTextDraw](OnPlayerClickPlayerTextDraw) won't be called also.
:::
## Related Callbacks
The following callbacks might be useful, as they're related to this callback in one way or another.
- [OnPlayerClickTextDraw](OnPlayerClickTextDraw): This callback is called when a player clicks on a textdraw.
- [OnPlayerClickPlayer](OnPlayerClickPlayer): This callback is called when a player click on another.
## Related Functions
The following functions might be useful, as they're related to this callback in one way or another.
- [PlayerTextDrawSetSelectable](../functions/PlayerTextDrawSetSelectable): Sets whether a player-textdraw is selectable through [SelectTextDraw](../functions/SelectTextDraw)
| openmultiplayer/web/docs/scripting/callbacks/OnPlayerClickPlayerTextDraw.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/callbacks/OnPlayerClickPlayerTextDraw.md",
"repo_id": "openmultiplayer",
"token_count": 1069
} | 285 |
---
title: OnPlayerGiveDamage
description: This callback is called when a player gives damage to another player.
tags: ["player"]
---
## Description
This callback is called when a player gives damage to another player.
| Name | Description |
|-----------------|------------------------------------------------------------|
| playerid | The ID of the player that gave damage. |
| damagedid | The ID of the player that received damage. |
| Float:amount | The amount of health/armour damagedid has lost (combined). |
| WEAPON:weaponid | The reason that caused the damage. |
| bodypart | The [body part](../resources/bodyparts) that was hit. |
## Returns
1 - Callback will not be called in other filterscripts.
0 - Allows this callback to be called in other filterscripts.
It is always called first in filterscripts so returning 1 there blocks other filterscripts from seeing it.
## Examples
```c
public OnPlayerGiveDamage(playerid, damagedid, Float:amount, WEAPON:weaponid, bodypart)
{
new string[128], victim[MAX_PLAYER_NAME], attacker[MAX_PLAYER_NAME];
new weaponname[24];
GetPlayerName(playerid, attacker, sizeof (attacker));
GetPlayerName(damagedid, victim, sizeof (victim));
GetWeaponName(weaponid, weaponname, sizeof (weaponname));
format(string, sizeof(string), "%s has made %.0f damage to %s, weapon: %s, bodypart: %d", attacker, amount, victim, weaponname, bodypart);
SendClientMessageToAll(0xFFFFFFFF, string);
return 1;
}
```
## Notes
:::tip
- Keep in mind this function can be inaccurate in some cases.
- If you want to prevent certain players from damaging eachother, use [SetPlayerTeam](../functions/SetPlayerTeam).
- The weaponid will return 37 (flame thrower) from any fire sources (e.g. molotov, 18)
- The weaponid will return 51 from any weapon that creates an explosion (e.g. RPG, grenade)
- **playerid** is the only one who can call the callback.
- The amount is always the maximum damage the weaponid can do, even when the health left is less than that maximum damage. So when a player has 100.0 health and gets shot with a Desert Eagle which has a damage value of 46.2, it takes 3 shots to kill that player. All 3 shots will show an amount of 46.2, even though when the last shot hits, the player only has 7.6 health left.
:::
## Related Callbacks
The following callbacks might be useful, as they're related to this callback in one way or another.
- [OnPlayerTakeDamage](OnPlayerTakeDamage): This callback is called when a player takes damage.
- [OnPlayerWeaponShot](OnPlayerWeaponShot): This callback is called when a player fires a weapon.
## Related Resources
- [Body Parts](../resources/bodyparts)
| openmultiplayer/web/docs/scripting/callbacks/OnPlayerGiveDamage.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/callbacks/OnPlayerGiveDamage.md",
"repo_id": "openmultiplayer",
"token_count": 883
} | 286 |
---
title: OnPlayerSelectObject
description: This callback is called when a player selects an object after BeginObjectSelecting has been used.
tags: ["player", "object"]
---
## Description
This callback is called when a player selects an object after [BeginObjectSelecting](../functions/BeginObjectSelecting) has been used.
| Name | Description |
|--------------------|---------------------------------------------------------|
| playerid | The ID of the player that selected an object |
| SELECT_OBJECT:type | The [type](../resources/selectobjecttypes) of selection |
| objectid | The ID of the selected object |
| modelid | The model of the selected object |
| Float:fX | The X position of the selected object |
| Float:fY | The Y position of the selected object |
| Float:fZ | The Z position of the selected object |
## Returns
1 - Will prevent other scripts from receiving this callback.
0 - Indicates that this callback will be passed to the next script.
It is always called first in filterscripts.
## Examples
```c
public OnPlayerSelectObject(playerid, SELECT_OBJECT:type, objectid, modelid, Float:fX, Float:fY, Float:fZ)
{
printf("Player %d selected object %d", playerid, objectid);
if (type == SELECT_OBJECT_GLOBAL_OBJECT)
{
BeginObjectEditing(playerid, objectid);
}
else
{
BeginPlayerObjectEditing(playerid, objectid);
}
SendClientMessage(playerid, 0xFFFFFFFF, "You now are able to edit your object!");
return 1;
}
```
## Related Functions
The following functions might be useful, as they're related to this callback in one way or another.
- [BeginObjectSelecting](../functions/BeginObjectSelecting): Select an object.
## Related Resources
- [Select Object Types](../resources/selectobjecttypes)
| openmultiplayer/web/docs/scripting/callbacks/OnPlayerSelectObject.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/callbacks/OnPlayerSelectObject.md",
"repo_id": "openmultiplayer",
"token_count": 739
} | 287 |
---
title: OnVehicleDamageStatusUpdate
description: This callback is called when a vehicle element such as doors, tyres, panels, or lights change their damage status.
tags: ["vehicle"]
---
:::tip
For some useful functions for working with vehicle damage values, see [here](../resources/damagestatus).
:::
## Description
This callback is called when a vehicle element such as doors, tyres, panels, or lights change their damage status.
| Name | Description |
| --------- | ------------------------------------------------------------------------------------------------------ |
| vehicleid | The ID of the vehicle that was changed its damage status. |
| playerid | The ID of the player who synced the change in the damage status (who had the car damaged or repaired). |
## Returns
**1** - Will prevent other filterscripts from receiving this callback.
**0** - Indicates that this callback will be passed to the next filterscript.
It is always called first in filterscripts.
## Examples
```c
public OnVehicleDamageStatusUpdate(vehicleid, playerid)
{
// Get the damage status of all the components
new
VEHICLE_PANEL_STATUS:panels,
VEHICLE_DOOR_STATUS:doors,
VEHICLE_LIGHT_STATUS:lights,
VEHICLE_TYRE_STATUS:tyres;
GetVehicleDamageStatus(vehicleid, panels, doors, lights, tyres);
// Set the tyres to 0, which means none are popped
tyres = VEHICLE_TYRE_STATUS_NONE;
// Update the vehicle's damage status with unpopped tyres
UpdateVehicleDamageStatus(vehicleid, panels, doors, lights, tyres);
return 1;
}
```
## Notes
:::tip
This does not include vehicle health changes.
:::
## Related Functions
The following functions might be useful, as they're related to this callback in one way or another.
- [GetVehicleDamageStatus](../functions/GetVehicleDamageStatus): Get the vehicle damage state for each part individually.
- [UpdateVehicleDamageStatus](../functions/UpdateVehicleDamageStatus): Update the vehicle damage.
| openmultiplayer/web/docs/scripting/callbacks/OnVehicleDamageStatusUpdate.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/callbacks/OnVehicleDamageStatusUpdate.md",
"repo_id": "openmultiplayer",
"token_count": 707
} | 288 |
---
title: AddStaticPickup
description: This function adds a 'static' pickup to the game.
tags: ["pickup"]
---
## Description
This function adds a 'static' pickup to the game. These pickups support weapons, health, armor etc., with the ability to function without scripting them (weapons/health/armor will be given automatically).
| Name | Description |
|----------------------------------|-------------------------------------------------------------------------------------|
| [model](../resources/pickupids) | The model of the pickup. |
| [type](../resources/pickuptypes) | The pickup type. Determines how the pickup responds when picked up. |
| Float:x | The X coordinate to create the pickup at. |
| Float:y | The Y coordinate to create the pickup at. |
| Float:z | The Z coordinate to create the pickup at. |
| virtualWorld | The virtual world ID to put tht pickup in. Use -1 to show the pickup in all worlds. |
## Returns
**1** - if the pickup is successfully created.
**0** - if failed to create.
## Examples
```c
public OnGameModeInit()
{
// Create a pickup for armor
AddStaticPickup(1242, 2, 1503.3359, 1432.3585, 10.1191, 0);
// Create a pickup for some health, right next to the armour
AddStaticPickup(1240, 2, 1506.3359, 1432.3585, 10.1191, 0);
return 1;
}
```
## Notes
:::tip
This function doesn't return a pickup ID that you can use in, for example, OnPlayerPickUpPickup. Use [CreatePickup](CreatePickup) if you'd like to assign IDs.
:::
## Related Functions
- [CreatePickup](CreatePickup): Create a pickup.
- [DestroyPickup](DestroyPickup): Destroy a pickup.
## Related Resources
- [Pickup IDs](../resources/pickupids)
| openmultiplayer/web/docs/scripting/functions/AddStaticPickup.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/AddStaticPickup.md",
"repo_id": "openmultiplayer",
"token_count": 881
} | 289 |
---
title: AttachCameraToObject
description: You can use this function to attach the player camera to objects.
tags: ["player", "object"]
---
## Description
You can use this function to attach the player camera to objects.
| Name | Description |
| -------- | -------------------------------------------------------------------- |
| playerid | The ID of the player which will have your camera attached on object. |
| objectid | The object id which you want to attach the player camera. |
## Returns
This function does not return any specific values.
## Examples
```c
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/attach", false))
{
new objectId = CreateObject(1245, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0);
AttachCameraToObject(playerid, objectId);
SendClientMessage(playerid, 0xFFFFFFAA, "Your camera is attached on object now.");
return 1;
}
return 0;
}
```
## Notes
:::tip
You need to create the object first, before attempting to attach a player camera for that.
:::
## Related Functions
- [AttachCameraToPlayerObject](AttachCameraToPlayerObject): Attaches the player's camera to a player object.
| openmultiplayer/web/docs/scripting/functions/AttachCameraToObject.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/AttachCameraToObject.md",
"repo_id": "openmultiplayer",
"token_count": 428
} | 290 |
---
title: CallRemoteFunction
description: Calls a public function in any script that is loaded.
tags: ["core"]
---
## Description
Calls a public function in any script that is loaded.
| Name | Description |
| -------------------- | ------------------------------------------- |
| const functionName[] | Public function's name. |
| const specifiers[] | Tag/format of each variable |
| OPEN_MP_TAGS:... | 'Indefinite' number of arguments of any tag |
## Returns
The value that the last public function returned.
## Format Specifiers
| **Placeholder** | **Meaning** |
| --------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `a` | Passes an array (the next placeholder should be d or i for the array size, so the function will be aware of it).<br/><br/>**NOTE**: It accepts only one dimension, so a trick like sizeof (array) + sizeof (array) \* sizeof (array[]) for the array size would be needed to pass a 2D array. |
| `c` | Passes a single character. |
| `d`,`i` | Passes an integer (whole) number. |
| `x` | Passes a number in hexadecimal notation. |
| `f` | Passes a floating point number. |
| `s` | Passes a string. |
## Examples
```c
forward CallMe(number, const string[]);
public CallMe(number, const string[])
{
printf("CallMe called. Int: %i String: %s.", number, string);
return 1;
}
// Somewhere... in another file perhaps?
CallRemoteFunction("CallMe", "is", 69, "this is a string");
```
## Notes
:::warning
CallRemoteFunction crashes the server if it's passing an empty string. (Fixed in open.mp)
:::
## Related Functions
- [CallLocalFunction](CallLocalFunction): Call a function in the script.
| openmultiplayer/web/docs/scripting/functions/CallRemoteFunction.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/CallRemoteFunction.md",
"repo_id": "openmultiplayer",
"token_count": 2188
} | 291 |
---
title: CreateExplosionForPlayer
description: Creates an explosion that is only visible to a single player.
tags: ["player"]
---
## Description
Creates an explosion that is only visible to a single player. This can be used to isolate explosions from other players or to make them only appear in specific virtual worlds.
| Name | Description |
| ------------ | -------------------------------------------------------- |
| playerid | The ID of the player to create the explosion for. |
| Float:x | The X coordinate of the explosion. |
| Float:y | The Y coordinate of the explosion. |
| Float:z | The Z coordinate of the explosion. |
| type | The [type](../resources/explosionlist) of the explosion. |
| Float:radius | The radius of the explosion. |
## Returns
This function always returns **true**, even if the function failed to excute (player doesn't exist, invalid radius, or invalid explosion type).
## Examples
```c
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/burnme", true) == 0)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
CreateExplosionForPlayer(playerid, x, y, z, 1, 10.0);
return 1;
}
return 0;
}
```
## Notes
:::tip
There is a limit as to how many explosions can be seen at once by a player. This is roughly 10.
:::
## Related Functions
- [CreateExplosion](CreateExplosion): Create an explosion which is visible for all players.
## See Also
- [Explosion Types](../resources/explosionlist): A list of all the explosion types.
| openmultiplayer/web/docs/scripting/functions/CreateExplosionForPlayer.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/CreateExplosionForPlayer.md",
"repo_id": "openmultiplayer",
"token_count": 641
} | 292 |
---
title: DestroyObject
description: Destroys (removes) an object that was created using CreateObject.
tags: ["object"]
---
## Description
Destroys (removes) an object that was created using CreateObject.
| Name | Description |
| -------- | ---------------------------------------------------------- |
| objectid | The ID of the object to destroy. Returned by CreateObject. |
## Returns
This function does not return any specific values.
## Examples
```c
public OnObjectMoved(objectid)
{
DestroyObject(objectid);
return 1;
}
```
## Related Functions
- [CreateObject](CreateObject): Create an object.
- [IsValidObject](IsValidObject): Checks if a certain object is vaild.
- [MoveObject](MoveObject): Move an object.
- [StopObject](StopObject): Stop an object from moving.
- [SetObjectPos](SetObjectPos): Set the position of an object.
- [SetObjectRot](SetObjectRot): Set the rotation of an object.
- [GetObjectPos](GetObjectPos): Locate an object.
- [GetObjectRot](GetObjectRot): Check the rotation of an object.
- [AttachObjectToPlayer](AttachObjectToPlayer): Attach an object to a player.
- [CreatePlayerObject](CreatePlayerObject): Create an object for only one player.
- [DestroyPlayerObject](DestroyPlayerObject): Destroy a player object.
- [IsValidPlayerObject](IsValidPlayerObject): Checks if a certain player object is vaild.
- [MovePlayerObject](MovePlayerObject): Move a player object.
- [StopPlayerObject](StopPlayerObject): Stop a player object from moving.
- [SetPlayerObjectPos](SetPlayerObjectPos): Set the position of a player object.
- [SetPlayerObjectRot](SetPlayerObjectRot): Set the rotation of a player object.
- [GetPlayerObjectPos](GetPlayerObjectPos): Locate a player object.
- [GetPlayerObjectRot](GetPlayerObjectRot): Check the rotation of a player object.
- [AttachPlayerObjectToPlayer](AttachPlayerObjectToPlayer): Attach a player object to a player.
| openmultiplayer/web/docs/scripting/functions/DestroyObject.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/DestroyObject.md",
"repo_id": "openmultiplayer",
"token_count": 556
} | 293 |
---
title: EditPlayerObject
description: Allows players to edit a player-object (position and rotation) with a GUI and their mouse.
tags: ["player"]
---
## Description
Allows players to edit a player-object (position and rotation) with a GUI and their mouse.
| Name | Description |
| -------- | ------------------------------------------------ |
| playerid | The ID of the player that should edit the object |
| objectid | The object to be edited by the player |
## Returns
1: The function executed successfully.
0: The function failed to execute. Player or object not valid.
## Examples
```c
new object[MAX_PLAYERS];
public OnPlayerSpawn(playerid)
{
object[playerid] = CreatePlayerObject(playerid, 1337, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/edit", true))
{
EditPlayerObject(playerid, object[playerid]);
SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: You now edit your object!");
return 1;
}
return 0;
}
```
## Notes
:::tip
You can move the camera while editing by pressing and holding the spacebar (or W in vehicle) and moving your mouse.
:::
## Related Functions
- [CreateObject](CreateObject): Create an object.
- [DestroyObject](DestroyObject): Destroy an object.
- [MoveObject](MoveObject): Move an object.
- [EditAttachedObject](EditAttachedObject): Edit an attached object.
- [SelectObject](SelectObject): Select an object.
- [CancelEdit](CancelEdit): Cancel the edition of an object.
| openmultiplayer/web/docs/scripting/functions/EditPlayerObject.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/EditPlayerObject.md",
"repo_id": "openmultiplayer",
"token_count": 517
} | 294 |
---
title: GangZoneDestroy
description: Destroy a gangzone.
tags: ["gangzone"]
---
## Description
Destroy a gangzone.
| Name | Description |
| ------ | ------------------------------ |
| zoneid | The ID of the zone to destroy. |
## Returns
1: The function executed successfully.
0: The function failed to execute. The gangzone with the ID specified does not exist.
## Examples
```c
new gangZone;
public OnGameModeInit()
{
gangZone = GangZoneCreate(1248.011, 2072.804, 1439.348, 2204.319);
return 1;
}
public OnGameModeExit()
{
GangZoneDestroy(gangZone);
return 1;
}
```
## Related Functions
- [GangZoneCreate](GangZoneCreate): Create a gangzone.
- [GangZoneShowForPlayer](GangZoneShowForPlayer): Show a gangzone for a player.
- [GangZoneShowForAll](GangZoneShowForAll): Show a gangzone for all players.
- [GangZoneHideForPlayer](GangZoneHideForPlayer): Hide a gangzone for a player.
- [GangZoneHideForAll](GangZoneHideForAll): Hide a gangzone for all players.
- [GangZoneFlashForPlayer](GangZoneFlashForPlayer): Make a gangzone flash for a player.
- [GangZoneFlashForAll](GangZoneFlashForAll): Make a gangzone flash for all players.
- [GangZoneStopFlashForPlayer](GangZoneStopFlashForPlayer): Stop a gangzone flashing for a player.
- [GangZoneStopFlashForAll](GangZoneStopFlashForAll): Stop a gangzone flashing for all players.
| openmultiplayer/web/docs/scripting/functions/GangZoneDestroy.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GangZoneDestroy.md",
"repo_id": "openmultiplayer",
"token_count": 448
} | 295 |
---
title: Get3DTextLabelLOS
description: Gets the 3D text label line-of-sight.
tags: ["3dtextlabel"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Gets the 3D text label line-of-sight.
| Name | Description |
| ------------- | -------------------------------------------------------- |
| Text3D:textid | The ID of the 3D text label to get the line-of-sight of. |
## Returns
Returns the line-of-sight of the 3D text label as boolean (`false`/`true`).
## Examples
```c
new Text3D:gMyLabel;
new bool:testLOS;
gMyLabel = Create3DTextLabel("Hello World!", 0x008080FF, 30.0, 40.0, 50.0, 10.0, 0, true);
testLOS = Get3DTextLabelLOS(gMyLabel);
// testLOS = true
```
## Related Functions
- [Set3DTextLabelLOS](Set3DTextLabelLOS): Sets the 3D text label line-of-sight.
- [GetPlayer3DTextLabelLOS](GetPlayer3DTextLabelLOS): Gets the player 3D text label line-of-sight.
| openmultiplayer/web/docs/scripting/functions/Get3DTextLabelLOS.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/Get3DTextLabelLOS.md",
"repo_id": "openmultiplayer",
"token_count": 363
} | 296 |
---
title: GetConsoleVarAsFloat
description: Get the float value of a console variable.
tags: []
---
## Description
Get the float value of a console variable.
| Name | Description |
| ------------ | --------------------------------------------------- |
| const cvar[] | The name of the float variable to get the value of. |
## Returns
The value of the specified console variable.
0.0 if the specified console variable is not an integer or doesn't exist.
## Examples
```c
new Float:radius = GetConsoleVarAsInt("game.nametag_draw_radius");
printf("Nametag Draw Radius: %i", radius);
```
## Notes
:::tip
Type 'varlist' in the server console to display a list of available console variables and their types.
:::
## Related Functions
- [GetConsoleVarAsInt](GetConsoleVarAsInt): Retreive a server variable as an integer.
- [GetConsoleVarAsString](GetConsoleVarAsString): Retreive a server variable as a string.
- [GetConsoleVarAsBool](GetConsoleVarAsBool): Retreive a server variable as a boolean.
| openmultiplayer/web/docs/scripting/functions/GetConsoleVarAsFloat.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetConsoleVarAsFloat.md",
"repo_id": "openmultiplayer",
"token_count": 328
} | 297 |
---
title: GetMyPos
description: Get position of the NPC
tags: ["npc"]
---
## Description
Get the position of the NPC.
| Name | Description |
| --------- | -------------------------------------------------------|
| &Float:x | A float to save the X coordinate, passed by reference. |
| &Float:y | A float to save the Y coordinate, passed by reference. |
| &Float:z | A float to save the Z coordinate, passed by reference. |
## Returns
This function does not return any specific values.
## Example
```c
new Float:x, Float:y, Float:z;
GetMyPos(x,y,z);
printf("I am currently at %f, %f, %f!",x,y,z);
```
## Related Functions
- [SetMyPos](SetMyPos): Set the NPC's current position.
| openmultiplayer/web/docs/scripting/functions/GetMyPos.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetMyPos.md",
"repo_id": "openmultiplayer",
"token_count": 266
} | 298 |
---
title: GetPVarInt
description: Gets an integer player variable's value.
tags: ["player variable", "pvar"]
---
## Description
Gets an integer player variable's value.
| Name | Description |
| ------------ | ---------------------------------------------------------------------------------------------- |
| playerid | The ID of the player whose player variable to get. |
| const pvar[] | The name of the player variable (case-insensitive).<br />Assigned in [SetPVarInt](SetPVarInt). |
## Returns
The integer value of the specified player variable.
It will still return 0 if the variable is not set, or the player does not exist.
## Examples
```c
public OnPlayerSpawn(playerid)
{
SetPVarInt(playerid, "Level", 20);
return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
printf("Level: %d", GetPVarInt(playerid, "Level")); // get the saved value ('Level')
// will print 'Level: 20'
return 1;
}
```
## Notes
:::tip
Variables aren't reset until after [OnPlayerDisconnect](../callbacks/OnPlayerDisconnect) is called, so the values are still accessible in OnPlayerDisconnect.
:::
## Related Functions
- [SetPVarInt](SetPVarInt): Set an integer for a player variable.
- [SetPVarString](SetPVarString): Set a string for a player variable.
- [GetPVarString](GetPVarString): Get the previously set string from a player variable.
- [SetPVarFloat](SetPVarFloat): Set a float for a player variable.
- [GetPVarFloat](GetPVarFloat): Get the previously set float from a player variable.
- [DeletePVar](DeletePVar): Delete a player variable.
| openmultiplayer/web/docs/scripting/functions/GetPVarInt.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetPVarInt.md",
"repo_id": "openmultiplayer",
"token_count": 592
} | 299 |
---
title: GetPlayer3DTextLabelPos
description: Gets the player's 3D text label position.
tags: ["player", "3dtextlabel"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Gets the player's 3D text label position.
| Name | Description |
| ------------------- | ---------------------------------------------------------------------------- |
| playerid | The ID of the player. |
| PlayerText3D:textid | The ID of the player's 3D text label to get the position of. |
| &Float:x | An float variable into which to store the X coordinate, passed by reference. |
| &Float:y | An float variable into which to store the Y coordinate, passed by reference. |
| &Float:z | An float variable into which to store the Z coordinate, passed by reference. |
## Examples
```c
new PlayerText3D:playerTextId;
new Float:playerX, Float:playerY, Float:playerZ;
GetPlayerPos(playerid, playerX, playerY, playerZ);
playerTextId = CreatePlayer3DTextLabel(playerid, "Hello\nI'm at your position", 0x008080FF, playerX, playerY, playerZ, 40.0);
new Float:x, Float:y, Float:z;
GetPlayer3DTextLabelPos(playerid, playerTextId, x, y, z);
```
## Related Functions
- [Get3DTextLabelPos](Get3DTextLabelPos): Gets the 3D text label position.
| openmultiplayer/web/docs/scripting/functions/GetPlayer3DTextLabelPos.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetPlayer3DTextLabelPos.md",
"repo_id": "openmultiplayer",
"token_count": 565
} | 300 |
---
title: GetPlayerCameraTargetPlayer
description: Allows you to retrieve the ID of the player the playerid is looking at.
tags: ["player", "camera"]
---
<VersionWarn version='SA-MP 0.3.7' />
## Description
Allows you to retrieve the ID of the player the playerid is looking at.
| Name | Description |
| -------- | ----------------------------- |
| playerid | The ID of the player to check |
## Returns
The ID of the player the playerid is looking at
## Examples
```c
new playerTarget = GetPlayerCameraTargetPlayer(playerid);
if (IsPlayerAdmin(playerTarget))
{
GameTextForPlayer(playerid, "Looking at an admin", 3000, 3);
}
```
## Notes
:::warning
Do not confuse this function with GetPlayerTargetPlayer. GetPlayerTargetPlayer returns the ID of the player playerid is aming at (with a weapon). GetPlayerCameraTargetPlayer returns the ID of the player playerid is looking at (reference point is the center of the screen).
:::
## Related Functions
- [GetPlayerCameraTargetActor](GetPlayerCameraTargetActor): Get the ID of the actor (if any) a player is looking at.
- [GetPlayerCameraTargetVehicle](GetPlayerCameraTargetVehicle): Get the ID of the vehicle a player is looking at.
- [GetPlayerCameraTargetObject](GetplayerCameraTargetObject): Get the ID of the object a player is looking at.
- [GetPlayerCameraFrontVector](GetPlayercameraFrontVector): Get the player's camera front vector
| openmultiplayer/web/docs/scripting/functions/GetPlayerCameraTargetPlayer.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetPlayerCameraTargetPlayer.md",
"repo_id": "openmultiplayer",
"token_count": 397
} | 301 |
---
title: GetPlayerGhostMode
description: Get player's ghost mode.
tags: ["player"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Get player's ghost mode.
| Name | Description |
| -------- | ----------------------------------------------------- |
| playerid | The ID of the player to get the ghost mode of. |
## Returns
**true** - Ghost mode is enable.
**false** - Ghost mode is disable.
## Examples
```c
new string[64];
format(string, sizeof(string), "Your ghost mode is %s", GetPlayerGhostMode(playerid) == true ? "enable" : "disable");
SendClientMessage(playerid, -1, string);
```
## Related Functions
- [TogglePlayerGhostMode](TogglePlayerGhostMode): Toggle player's ghost mode.
| openmultiplayer/web/docs/scripting/functions/GetPlayerGhostMode.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetPlayerGhostMode.md",
"repo_id": "openmultiplayer",
"token_count": 256
} | 302 |
---
title: GetPlayerObjectAttachedData
description: Get the attachment data of a player-object.
tags: ["player", "object", "playerobject"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Get the attachment data of a player-object.
| Name | Description |
|----------------|-------------------------------------------------------------------------|
| playerid | The ID of the player |
| objectid | The ID of the player-object to get the attachment data of |
| &parentVehicle | A variable in which to store the parentVehicle ID, passed by reference. |
| &parentObject | A variable in which to store the parentObject ID, passed by reference. |
| &parentPlayer | A variable in which to store the parentPlayer ID, passed by reference. |
## Returns
`true` - The function was executed successfully.
`false` - The function failed to execute. The object specified does not exist.
## Examples
```c
new
parentVehicle,
parentObject,
parentPlayer;
GetPlayerObjectAttachedData(playerid, playerobjectid, parentVehicle, parentObject, parentPlayer);
```
## Related Functions
- [GetPlayerObjectAttachedOffset](GetPlayerObjectAttachedOffset): Get the attachment offset and rotation of a player-object.
- [GetObjectAttachedData](GetObjectAttachedData): Get the attachment data of a player-object.
| openmultiplayer/web/docs/scripting/functions/GetPlayerObjectAttachedData.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetPlayerObjectAttachedData.md",
"repo_id": "openmultiplayer",
"token_count": 496
} | 303 |
---
title: GetPlayerPing
description: Get the ping of a player.
tags: ["player"]
---
## Description
Get the ping of a player. The ping measures the amount of time it takes for the server to 'ping' the client and for the client to send the message back.
| Name | Description |
| -------- | ---------------------------------------- |
| playerid | The ID of the player to get the ping of. |
## Returns
The current ping of the player (expressed in milliseconds).
## Examples
```c
new string[24];
format(string, sizeof(string), "Your ping: %d", GetPlayerPing(playerid));
SendClientMessage(playerid, -1, string);
```
<br />
**Example to kick high ping players:**
```c
// Declare an array of all possible timer identifiers for timers for kicking players with
// generally high ping with default value of 0
new gPlayerPingTimer[MAX_PLAYERS] = {0, ...};
// A constant (nice documentation :))
const MAX_ACCEPTED_PING = 500;
public OnPlayerConnect(playerid)
{
// Initiate the timer and assign the variable the identifier of the timer
gPlayerPingTimer[playerid] = SetTimerEx("Ping_Timer", 3 * 1000, true, "i", playerid);
}
public OnPlayerDisconnect(playerid, reason)
{
// Kill the timer and reset the value to invalid
KillTimer(gPlayerPingTimer[playerid]);
gPlayerPingTimer[playerid] = 0;
}
// A forwarded function (callback)
forward Ping_Timer(playerid);
public Ping_Timer(playerid)
{
// Kick player if their ping is more than the generally accepted high ping
new ping = GetPlayerPing(playerid);
if (ping > MAX_ACCEPTED_PING)
{
new string[128];
format(string, sizeof(string), "You have been kicked from the server. Reason: high ping (%d)", ping);
SendClientMessage(playerid, -1, string);
Kick(playerid);
}
return 1;
}
```
## Notes
:::warning
Player's ping may be 65535 for a while after a player connects
:::
## Related Functions
- [GetPlayerIp](GetPlayerIp): Get a player's IP.
- [GetPlayerName](GetPlayerName): Get a player's name.
- [GetPlayerVersion](GetPlayerVersion): Get a player's client-version.
| openmultiplayer/web/docs/scripting/functions/GetPlayerPing.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetPlayerPing.md",
"repo_id": "openmultiplayer",
"token_count": 697
} | 304 |
---
title: GetPlayerWeather
description: Get a player's weather.
tags: ["player"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Get a player's weather.
| Name | Description |
| -------- | ---------------------------------------- |
| playerid | The ID of the player to get the weather of. |
## Returns
Returns the player's weather.
## Examples
```c
SetPlayerWeather(playerid, 8);
printf("Player weather: %d", GetPlayerWeather(playerid));
// The output will be 'Player weather: 8'
```
## Related Functions
- [SetPlayerWeather](SetPlayerWeather): Set a player's weather.
- [SetWeather](SetWeather): Set the world weather for all players.
## Related Resources
- [Weather IDs](../resources/weatherid)
| openmultiplayer/web/docs/scripting/functions/GetPlayerWeather.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetPlayerWeather.md",
"repo_id": "openmultiplayer",
"token_count": 242
} | 305 |
---
title: GetServerVarAsString
description: Get the string value of a server variable.
tags: []
---
:::warning
This function, as of 0.3.7 R2, is deprecated. Please see GetConsoleVarAsString
:::
## Description
Get the string value of a server variable.
| Name | Description |
| --------------- | ------------------------------------------------------------ |
| const varname[] | The name of the string variable to get the value of. |
| buffer[] | An array into which to store the value, passed by reference. |
| len | The length of the string that should be stored. |
## Returns
The length of the returned string. 0 if the specified server variable is not a string or doesn't exist.
## Examples
```c
public OnGameModeInit()
{
new hostname[64];
GetServerVarAsString("hostname", hostname, sizeof(hostname));
printf("Hostname: %s", hostname);
}
```
## Notes
:::tip
When filterscripts or plugins is specified as the varname, this function only returns the name of the first specified filterscript or plugin. This is a bug.
:::
:::tip
Type 'varlist' in the server console to display a list of available server variables and their types.
:::
:::warning
Using this function on anything other than a string (int, bool or float) or a nonexistent server variable, will crash your server! This is a bug.
:::
## Related Functions
- [GetServerVarAsInt](GetServerVarAsInt): Retreive a server variable as an integer.
- [GetServerVarAsBool](GetServerVarAsBool): Retreive a server variable as a boolean.
| openmultiplayer/web/docs/scripting/functions/GetServerVarAsString.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetServerVarAsString.md",
"repo_id": "openmultiplayer",
"token_count": 525
} | 306 |
---
title: GetVehicleLastDriver
description: Get the last driver of a vehicle.
tags: ["vehicle"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Get the last driver of a vehicle.
## Parameters
| Name | Description |
|-----------|------------------------|
| vehicleid | The ID of the vehicle. |
## Return Values
Returns the last driver ID (player ID).
`INVALID_PLAYER_ID` - The vehicle has no last driver.
## Examples
```c
new g_Vehicle;
public OnGameModeInit()
{
g_Vehicle = CreateVehicle(560, 2096.1917, -1328.5150, 25.1059, 0.0000, 1, 8, 60);
}
public OnGameModeExit()
{
new lastDriver = GetVehicleLastDriver(g_Vehicle);
if (lastDriver != INVALID_PLAYER_ID)
{
printf("Vehicle ID %d last driver: %d", g_Vehicle, lastDriver);
}
else
{
printf("Vehicle ID %d has no last driver.", g_Vehicle);
}
}
```
## Related Functions
- [GetVehicleDriver](GetVehicleDriver): Get the playerid of the person driving the vehicle.
| openmultiplayer/web/docs/scripting/functions/GetVehicleLastDriver.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetVehicleLastDriver.md",
"repo_id": "openmultiplayer",
"token_count": 377
} | 307 |
---
title: GetVehicleRespawnTick
description: Get the respawn tick of a vehicle.
tags: ["vehicle"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Get the respawn tick of a vehicle.
## Parameters
| Name | Description |
|-----------|------------------------|
| vehicleid | The ID of the vehicle. |
## Return Values
Returns respawn tick in milliseconds.
## Examples
```c
public OnGameModeInit()
{
new vehicleid = CreateVehicle(560, 2096.1917, -1328.5150, 25.1059, 0.0000, 1, 8, 60);
new respawnTick = GetVehicleRespawnTick(vehicleid);
printf("Vehicle ID %d respawn tick: %d ms", vehicleid, respawnTick);
return 1;
}
```
## Related Functions
- [SetVehicleRespawnTick](SetVehicleRespawnTick): Set the respawn tick of a vehicle.
| openmultiplayer/web/docs/scripting/functions/GetVehicleRespawnTick.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GetVehicleRespawnTick.md",
"repo_id": "openmultiplayer",
"token_count": 275
} | 308 |
---
title: GivePlayerMoney
description: Give money to or take money from a player.
tags: ["player"]
---
## Description
Give money to or take money from a player.
| Name | Description |
| -------- | ------------------------------------------------------------------------ |
| playerid | The ID of the player to give money to or take money from. |
| money | The amount of money to give the player. Use a minus value to take money. |
## Returns
**1** - The function was executed successfully.
**0** - The function failed to execute. This means the player is not connected.
## Examples
```c
public OnPlayerDeath(playerid, killerid, WEAPON:reason)
{
if (killerid != INVALID_PLAYER_ID)
{
// Award $1000 to the killer
GivePlayerMoney(killerid, 1000);
SendClientMessage(killerid, -1, "You have been awarded $1000 for the kill.");
}
// Take $500 from the player who died.
GivePlayerMoney(playerid, -500);
}
```
## Related Functions
- [ResetPlayerMoney](ResetPlayerMoney): Set the money of a player to \$0.
- [GetPlayerMoney](GetPlayerMoney): Check how much money a player has.
| openmultiplayer/web/docs/scripting/functions/GivePlayerMoney.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/GivePlayerMoney.md",
"repo_id": "openmultiplayer",
"token_count": 418
} | 309 |
---
title: Is3DTextLabelStreamedIn
description: Checks if a 3D text label is streamed in for a player.
tags: ["3dtextlabel"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Checks if a 3D text label is streamed in for a player.
| Name | Description |
| ------------- | ---------------------------- |
| playerid | The ID of the player. |
| Text3D:textid | The ID of the 3D text label. |
## Returns
This function returns **true** if the 3D text label is streamed in for the player, or **false** if it is not.
## Examples
```c
new Text3D:gMyLabel;
public OnGameModeInit()
{
gMyLabel = Create3DTextLabel("I'm at the coordinates:\n30.0, 40.0, 50.0", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0, false);
return 1;
}
public OnPlayerSpawn(playerid)
{
if (Is3DTextLabelStreamedIn(playerid, gMyLabel))
{
// Do something
}
return 1;
}
```
## Related Functions
- [Create3DTextLabel](Create3DTextLabel): Creates a 3D Text Label at a specific location in the world.
- [IsPlayerStreamedIn](IsPlayerStreamedIn): Checks if a player is streamed in for another player.
| openmultiplayer/web/docs/scripting/functions/Is3DTextLabelStreamedIn.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/Is3DTextLabelStreamedIn.md",
"repo_id": "openmultiplayer",
"token_count": 423
} | 310 |
---
title: IsPlayerAttachedObjectSlotUsed
description: Check if a player has an object attached in the specified index (slot).
tags: ["player", "object", "attachment"]
---
## Description
Check if a player has an object attached in the specified index (slot).
| Name | Description |
| -------- | ------------------------------ |
| playerid | The ID of the player to check. |
| index | The index (slot) to check. |
## Returns
**true** - The specified slot is used for an attached object.
**false** - The specified slot is not in use for an attached object.
## Examples
```c
stock CountAttachedObjects(playerid)
{
new count;
for (new i = 0; i < MAX_PLAYER_ATTACHED_OBJECTS; i++)
{
if (IsPlayerAttachedObjectSlotUsed(playerid, i))
{
count++;
}
}
return count;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/count", true))
{
new string[32];
format(string, sizeof(string), "Attached objects: %d", CountAttachedObjects(playerid));
SendClientMessage(playerid, -1, string);
return 1;
}
return 0;
}
```
## Related Functions
- [SetPlayerAttachedObject](SetPlayerAttachedObject): Attach an object to a player
- [RemovePlayerAttachedObject](RemovePlayerAttachedObject): Remove an attached object from a player
- [GetPlayerAttachedObject](GetPlayerAttachedObject): Gets the player attachment object data by index.
| openmultiplayer/web/docs/scripting/functions/IsPlayerAttachedObjectSlotUsed.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/IsPlayerAttachedObjectSlotUsed.md",
"repo_id": "openmultiplayer",
"token_count": 514
} | 311 |
---
title: IsPlayerInVehicle
description: Checks if a player is in a specific vehicle.
tags: ["player", "vehicle"]
---
## Description
Checks if a player is in a specific vehicle.
| Name | Description |
| --------- | ----------------------------------------- |
| playerid | ID of the player. |
| vehicleid | ID of the vehicle. Note: NOT the modelid! |
## Returns
**true** - Player IS in the vehicle.
**false** - Player is NOT in the vehicle.
## Examples
```c
new gSpecialCar;
public OnGameModeInit()
{
gSpecialCar = AddStaticVehicle(411, 0.0, 0.0, 5.0, 0.0, -1, -1);
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/gSpecialCar", true) == 0)
{
if (IsPlayerInVehicle(playerid, gSpecialCar))
{
SendClientMessage(playerid, -1, "You're in the special car!");
}
return 1;
}
return 0;
}
```
## Related Functions
- [IsPlayerInAnyVehicle](IsPlayerInAnyVehicle): Check if a player is in any vehicle.
- [GetPlayerVehicleSeat](GetPlayerVehicleSeat): Check what seat a player is in.
| openmultiplayer/web/docs/scripting/functions/IsPlayerInVehicle.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/IsPlayerInVehicle.md",
"repo_id": "openmultiplayer",
"token_count": 456
} | 312 |
---
title: IsValidActor
description: Checks if an actor ID is valid.
tags: ["actor"]
---
<VersionWarn version='SA-MP 0.3.7' />
## Description
Checks if an actor ID is valid.
| Name | Description |
| ------- | ----------------------------- |
| actorid | The ID of the actor to check. |
## Returns
**true** - The actor is valid.
**false** - The actor is not valid.
## Examples
```c
new gMyActor;
public OnGameModeInit()
{
gMyActor = CreateActor(179, 316.1, -134.0, 999.6, 90.0); // Actor as a salesperson in Ammunation.
if (IsValidActor(gMyActor))
{
SetActorHealth(gMyActor, 100.0);
}
return 1;
}
```
## Related Functions
- [CreateActor](CreateActor): Create an actor.
- [GetActorPoolSize](GetActorPoolSize): Gets the highest actorid created on the server.
- [SetActorHealth](SetActorHealth): Set the health of an actor.
| openmultiplayer/web/docs/scripting/functions/IsValidActor.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/IsValidActor.md",
"repo_id": "openmultiplayer",
"token_count": 323
} | 313 |
---
title: IsValidVehicle
description: Check if a vehicle is created.
tags: ["vehicle"]
---
:::note
This function is not present in the old libraries packaged with the SA-MP server however the [latest versions of the maintained libraries](https://github.com/pawn-lang/samp-stdlib) contain this and other formerly missing declarations.
:::
## Description
Check if a vehicle is created.
## Parameters
| Name | Description |
| --------- | ---------------------------------- |
| vehicleid | The vehicle to check for existance |
## Return Values
**true** if the vehicle exists, otherwise **false**.
## Example Usage
```c
#if !defined IsValidVehicle
native IsValidVehicle(vehicleid);
#endif
// Count vehicles
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/countvehicles", true))
{
new
count,
string[128];
for (new i = 0; i < MAX_VEHICLES; i++)
{
if (IsValidVehicle(i))
{
count++;
}
}
format(string, sizeof(string), "* There are %d valid spawned vehicles on this server.", count);
SendClientMessage(playerid, 0x33CCCCFF, string);
return 1;
}
return 0;
}
```
## Related Functions
- [GetPlayerVehicleID](GetPlayerVehicleID): Get the ID of the vehicle the player is in.
- [GetVehicleModel](GetVehicleModel): Get the model id of a vehicle.
| openmultiplayer/web/docs/scripting/functions/IsValidVehicle.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/IsValidVehicle.md",
"repo_id": "openmultiplayer",
"token_count": 547
} | 314 |
---
title: NetStats_ConnectionStatus
description: Gets the player's current connection status.
tags: ["network monitoring"]
---
## Description
Gets the player's current connection status.
| Name | Description |
| -------- | ----------------------------------------------------- |
| playerid | The ID of the player to get the connection status of. |
## Returns
The player's [connection status](../resources/connectionstatus), as an integer value.
## Examples
```c
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/connectionstatus"))
{
static ConnectionStatuses[9][48] =
{
"No Action",
"Disconnect ASAP",
"Disconnect ASAP Silently",
"Disconnect On No Ack",
"Requested Connection",
"Handling Connection Request",
"Unverified Sender",
"Set Encryption On Multiple 16 Byte Packet",
"Connected"
};
new connectionStatus = NetStats_ConnectionStatus(playerid);
new string[144];
format(string, sizeof(string), "Your current connection status: %s", ConnectionStatuses[connectionStatus]);
SendClientMessage(playerid, -1, string);
}
return 1;
}
```
## Related Functions
- [GetPlayerNetworkStats](GetPlayerNetworkStats): Gets a player's networkstats and saves it into a string.
- [GetNetworkStats](GetNetworkStats): Gets the server's networkstats and saves it into a string.
- [NetStats_GetConnectedTime](NetStats_GetConnectedTime): Get the time that a player has been connected for.
- [NetStats_MessagesReceived](NetStats_MessagesReceived): Get the number of network messages the server has received from the player.
- [NetStats_BytesReceived](NetStats_BytesReceived): Get the amount of information (in bytes) that the server has received from the player.
- [NetStats_MessagesSent](NetStats_MessagesSent): Get the number of network messages the server has sent to the player.
- [NetStats_BytesSent](NetStats_BytesSent): Get the amount of information (in bytes) that the server has sent to the player.
- [NetStats_MessagesRecvPerSecond](NetStats_MessagesRecvPerSecond): Get the number of network messages the server has received from the player in the last second.
- [NetStats_PacketLossPercent](NetStats_PacketLossPercent): Get a player's packet loss percent.
- [NetStats_GetIpPort](NetStats_GetIpPort): Get a player's IP and port.
- [IsPlayerConnected](IsPlayerConnected): Check if a player is connected to the server.
## Related Callbacks
- [OnPlayerConnect](../callbacks/OnPlayerConnect): Called when a player connects to the server.
- [OnPlayerDisconnect](../callbacks/OnPlayerDisconnect): Called when a player leaves the server.
## Related Resources
- [Connection Status](../resources/connectionstatus)
| openmultiplayer/web/docs/scripting/functions/NetStats_ConnectionStatus.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/NetStats_ConnectionStatus.md",
"repo_id": "openmultiplayer",
"token_count": 909
} | 315 |
---
title: PlayerGangZoneShow
description: Show player gangzone in a color
tags: ["player", "gangzone", "playergangzone"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Show player gangzone in a color.
| Name | Description |
| ----------- | ---------------------------------------------------------------- |
| playerid | The ID of the player to whom player gangzone is bound. |
| zoneid | The ID of the player gangzone for shown. |
| colour | The colour by which the player gangzone will be shown. |
## Returns
**1:** The function executed successfully. Success is reported even if the gangzone was show to begin with.
**0:** The function failed to execute. The gangzone specified does not exist.
## Examples
```c
// This variable is used to store the id of the gangzone
// so that we can use it throught the script
new gGangZoneID[MAX_PLAYERS] = {INVALID_GANG_ZONE, ...};
public OnPlayerConnect(playerid)
{
// Create the gangzone
gGangZoneID[playerid] = CreatePlayerGangZone(playerid, 2236.1475, 2424.7266, 2319.1636, 2502.4348);
// Show the gangzone player
PlayerGangZoneShow(playerid, gGangZoneID[playerid], 0xFFFFFFFF);
}
```
## Related Functions
- [CreatePlayerGangZone](CreatePlayerGangZone): Create player gangzone.
- [PlayerGangZoneDestroy](PlayerGangZoneDestroy): Destroy player gangzone.
- [PlayerGangZoneHide](PlayerGangZoneHide): Hide player gangzone.
- [PlayerGangZoneFlash](PlayerGangZoneFlash): Start player gangzone flash.
- [PlayerGangZoneStopFlash](PlayerGangZoneStopFlash): Stop player gangzone flash.
- [PlayerGangZoneGetColour](PlayerGangZoneGetColour): Get the colour of a player gangzone.
- [PlayerGangZoneGetFlashColour](PlayerGangZoneGetFlashColour): Get the flashing colour of a player gangzone.
- [PlayerGangZoneGetPos](PlayerGangZoneGetPos): Get the position of a gangzone, represented by minX, minY, maxX, maxY coordinates.
- [IsValidPlayerGangZone](IsValidPlayerGangZone): Check if the player gangzone valid.
- [IsPlayerInPlayerGangZone](IsPlayerInPlayerGangZone): Check if the player in player gangzone.
- [IsPlayerGangZoneVisible](IsPlayerGangZoneVisible): Check if the player gangzone is visible.
- [IsPlayerGangZoneFlashing](IsPlayerGangZoneFlashing): Check if the player gangzone is flashing.
- [UsePlayerGangZoneCheck](UsePlayerGangZoneCheck): Enables the callback when a player enters/leaves this zone. | openmultiplayer/web/docs/scripting/functions/PlayerGangZoneShow.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/PlayerGangZoneShow.md",
"repo_id": "openmultiplayer",
"token_count": 824
} | 316 |
---
title: PlayerTextDrawGetTextSize
description: Gets the X axis and Y axis of the player-textdraw text size.
tags: ["player", "textdraw", "playertextdraw"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Gets the X axis and Y axis of the player-textdraw text size.
| Name | Description |
| ------------- | ----------------------------------------------------------------- |
| playerid | The ID of the player. |
| Text:textid | The ID of the textdraw to get text size of. |
| &Float:width | A float variable into which to store width, passed by reference. |
| &Float:height | A float variable into which to store height, passed by reference. |
## Returns
This function does not return any specific values.
## Examples
```c
new PlayerText:welcomeText[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
welcomeText[playerid] = CreatePlayerTextDraw(playerid, 320.0, 240.0, "Welcome to my OPEN.MP server");
PlayerTextDrawTextSize(playerid, welcomeText[playerid], 2.0, 3.6);
PlayerTextDrawShow(playerid, welcomeText[playerid]);
new Float:width, Float:height;
PlayerTextDrawGetTextSize(playerid, welcomeText[playerid], width, height);
// width = 2.0
// height = 3.6
return 1;
}
```
## Related Functions
- [PlayerTextDrawCreate](PlayerTextDrawCreate): Create a player-textdraw.
- [PlayerTextDrawDestroy](PlayerTextDrawDestroy): Destroy a player-textdraw.
- [PlayerTextDrawTextSize](PlayerTextDrawTextSize): Set the size of a player-textdraw box (or clickable area for PlayerTextDrawSetSelectable).
- [PlayerTextDrawColor](PlayerTextDrawColor): Set the color of the text in a player-textdraw.
- [PlayerTextDrawBoxColor](PlayerTextDrawBoxColor): Set the color of a player-textdraw's box.
- [PlayerTextDrawBackgroundColor](PlayerTextDrawBackgroundColor): Set the background color of a player-textdraw.
- [PlayerTextDrawAlignment](PlayerTextDrawAlignment): Set the alignment of a player-textdraw.
- [PlayerTextDrawFont](PlayerTextDrawFont): Set the font of a player-textdraw.
- [PlayerTextDrawLetterSize](PlayerTextDrawLetterSize): Set the letter size of the text in a player-textdraw.
- [PlayerTextDrawSetOutline](PlayerTextDrawSetOutline): Toggle the outline on a player-textdraw.
- [PlayerTextDrawSetShadow](PlayerTextDrawSetShadow): Set the shadow on a player-textdraw.
- [PlayerTextDrawSetProportional](PlayerTextDrawSetProportional): Scale the text spacing in a player-textdraw to a proportional ratio.
- [PlayerTextDrawUseBox](PlayerTextDrawUseBox): Toggle the box on a player-textdraw.
- [PlayerTextDrawSetString](PlayerTextDrawSetString): Set the text of a player-textdraw.
- [PlayerTextDrawShow](PlayerTextDrawShow): Show a player-textdraw.
- [PlayerTextDrawHide](PlayerTextDrawHide): Hide a player-textdraw.
- [IsPlayerTextDrawVisible](IsPlayerTextDrawVisible): Checks if a player-textdraw is shown for the player.
- [IsValidPlayerTextDraw](IsValidPlayerTextDraw): Checks if a player-textdraw is valid.
| openmultiplayer/web/docs/scripting/functions/PlayerTextDrawGetTextSize.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/PlayerTextDrawGetTextSize.md",
"repo_id": "openmultiplayer",
"token_count": 988
} | 317 |
---
title: PlayerTextDrawShow
description: Show a player-textdraw to the player it was created for.
tags: ["player", "textdraw", "playertextdraw"]
---
## Description
Show a player-textdraw to the player it was created for
| Name | Description |
| ----------------- | --------------------------------------------- |
| playerid | The ID of the player to show the textdraw for |
| PlayerText:textid | The ID of the textdraw to show |
## Returns
This function does not return any specific values.
## Examples
```c
new PlayerText:welcomeText[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
welcomeText[playerid] = CreatePlayerTextDraw(playerid, 320.0, 240.0, "Welcome to my OPEN.MP server");
PlayerTextDrawShow(playerid, welcomeText[playerid]);
return 1;
}
```
## Notes
:::tip
The player-textdraw is only valid for the player it is created for. This means that you can't show a player-textdraw created for a particular player to another player.
:::
## Related Functions
- [PlayerTextDrawHide](PlayerTextDrawHide): Hide a player-textdraw.
- [CreatePlayerTextDraw](CreatePlayerTextDraw): Create a player-textdraw.
- [PlayerTextDrawDestroy](PlayerTextDrawDestroy): Destroy a player-textdraw.
- [PlayerTextDrawColor](PlayerTextDrawColor): Set the color of the text in a player-textdraw.
- [PlayerTextDrawBoxColor](PlayerTextDrawBoxColor): Set the color of a player-textdraw's box.
- [PlayerTextDrawBackgroundColor](PlayerTextDrawBackgroundColor): Set the background color of a player-textdraw.
- [PlayerTextDrawAlignment](PlayerTextDrawAlignment): Set the alignment of a player-textdraw.
- [PlayerTextDrawFont](PlayerTextDrawFont): Set the font of a player-textdraw.
- [PlayerTextDrawLetterSize](PlayerTextDrawLetterSize): Set the letter size of the text in a player-textdraw.
- [PlayerTextDrawTextSize](PlayerTextDrawTextSize): Set the size of a player-textdraw box (or clickable area for PlayerTextDrawSetSelectable).
- [PlayerTextDrawSetOutline](PlayerTextDrawSetOutline): Toggle the outline on a player-textdraw.
- [PlayerTextDrawSetShadow](PlayerTextDrawSetShadow): Set the shadow on a player-textdraw.
- [PlayerTextDrawSetProportional](PlayerTextDrawSetProportional): Scale the text spacing in a player-textdraw to a proportional ratio.
- [PlayerTextDrawUseBox](PlayerTextDrawUseBox): Toggle the box on a player-textdraw.
- [PlayerTextDrawSetString](PlayerTextDrawSetString): Set the text of a player-textdraw.
| openmultiplayer/web/docs/scripting/functions/PlayerTextDrawShow.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/PlayerTextDrawShow.md",
"repo_id": "openmultiplayer",
"token_count": 746
} | 318 |
---
title: SHA256_PassHash
description: Hashes a password using the SHA-256 hashing algorithm.
tags: ["encryption"]
---
<VersionWarn version='SA-MP 0.3.7 R1' />
:::warning
This function is deprecated in open.mp, Use [samp-bcrypt](https://github.com/Sreyas-Sreelal/samp-bcrypt) plugin for hashing.
:::
## Description
Hashes a password using the SHA-256 hashing algorithm. Includes a salt. The output is always 256 bits in length, or the equivalent of 64 Pawn cells.
| Name | Description |
| ---------------------- | -------------------------------------------------- |
| const password[] | The password to hash. |
| const salt[] | The salt to use in the hash. |
| output[] | The returned hash in uppercase hexadecimal digest. |
| size = sizeof (output) | The returned hash maximum length. |
## Returns
The hash is stored in the specified array.
## Examples
```c
public OnGameModeInit()
{
new MyHash[64 + 1]; // + 1 to account for the required null terminator
SHA256_PassHash("test", "78sdjs86d2h", MyHash, sizeof MyHash);
printf("Returned hash: %s", MyHash); // Returned hash: CD16A1C8BF5792B48142FF6B67C9CB5B1BDC7260D8D11AFBA6BCDE0933A3C0AF
return 1;
}
```
## Notes
:::tip
The returned hash has zero padding (i.e. possible prefix 00ABCD123...).
:::
:::tip
The salt is appended to the end of the password, meaning password 'foo' and salt 'bar' would form 'foobar'. The salt should be random, unique for each player and at least as long as the hashed password. It is to be stored alongside the actual hash in the player's account.
:::
:::warning
This function is not binary-safe. Using binary values on password and salt might give unexpected result.
:::
| openmultiplayer/web/docs/scripting/functions/SHA256_PassHash.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/SHA256_PassHash.md",
"repo_id": "openmultiplayer",
"token_count": 679
} | 319 |
---
title: Set3DTextLabelLOS
description: Sets the 3D text label line-of-sight.
tags: ["3dtextlabel"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Sets the 3D text label line-of-sight.
| Name | Description |
| ------------- | ------------------------------------------------------------------------------ |
| Text3D:textid | The ID of the 3D text label to set the line-of-sight. |
| bool:enable | (false/true) Test the line-of-sight so this text can't be seen through objects |
## Examples
```c
new Text3D:gMyLabel;
gMyLabel = Create3DTextLabel("Hello World!", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0, true);
Set3DTextLabelLOS(gMyLabel, false);
// The line-of-sight changed from 'true' to 'false'
```
## Related Functions
- [Get3DTextLabelLOS](Get3DTextLabelLOS): Gets the 3D text label line-of-sight.
- [SetPlayer3DTextLabelLOS](SetPlayer3DTextLabelLOS): Sets the player 3D text label line-of-sight.
| openmultiplayer/web/docs/scripting/functions/Set3DTextLabelLOS.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/Set3DTextLabelLOS.md",
"repo_id": "openmultiplayer",
"token_count": 412
} | 320 |
---
title: SetNameTagDrawDistance
description: Set the maximum distance to display the names of players.
tags: []
---
## Description
Set the maximum distance to display the names of players.
| Name | Description |
| -------------- | -------------------- |
| Float:distance | The distance to set. |
## Returns
This function does not return any specific values.
## Examples
```c
SetNameTagDrawDistance(20.0);
```
## Notes
:::tip
Default distance is 70.0 SA units
:::
## Related Functions
- [LimitGlobalChatRadius](LimitGlobalChatRadius): Limit the distance between players needed to see their chat.
- [ShowNameTags](ShowNameTags): Set nametags on or off.
- [ShowPlayerNameTagForPlayer](ShowPlayerNameTagForPlayer): Show or hide a nametag for a certain player.
| openmultiplayer/web/docs/scripting/functions/SetNameTagDrawDistance.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/SetNameTagDrawDistance.md",
"repo_id": "openmultiplayer",
"token_count": 235
} | 321 |
---
title: SetPlayerGravity
description: Set a player's gravity.
tags: ["player"]
---
<VersionWarn version='omp v1.1.0.2612' />
## Description
Set a player's gravity.
| Name | Description |
| ------------- | ----------------------------------------------------------------- |
| playerid | The ID of the player to set the gravity. |
| Float:gravity | The value that the gravity should be set to (between -50 and 50). |
## Returns
**true** - The function executed successfully.
**false** - The function failed to execute. The player specified does not exist.
## Examples
```c
public OnPlayerConnect(playerid)
{
// Set moon-like gravity
SetPlayerGravity(playerid, 0.001);
return 1;
}
```
## Notes
:::warning
Default gravity is 0.008.
:::
## Related Functions
- [GetPlayerGravity](GetPlayerGravity): Get a player's gravity.
- [SetGravity](SetGravity): Set the gravity for all players.
- [GetGravity](GetGravity): Get the currently global gravity.
| openmultiplayer/web/docs/scripting/functions/SetPlayerGravity.md/0 | {
"file_path": "openmultiplayer/web/docs/scripting/functions/SetPlayerGravity.md",
"repo_id": "openmultiplayer",
"token_count": 379
} | 322 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.