├── .dockerignore ├── .gitignore ├── .nvmrc ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── README.md ├── config-overrides.js ├── data ├── season-1 │ ├── abc177.json │ ├── abc178.json │ ├── abc179.json │ ├── abc180.json │ ├── abc182.json │ ├── abc183.json │ ├── abl.json │ ├── ratings-1.json │ └── users-1.json ├── season-10 │ ├── abc258.json │ ├── abc259.json │ ├── abc260.json │ ├── abc261.json │ ├── abc265.json │ ├── config-10.json │ ├── ratings-10.json │ └── users-10.json ├── season-11 │ ├── abc266.json │ ├── abc272.json │ ├── abc275.json │ ├── abc278.json │ ├── abc281.json │ ├── config-11.json │ ├── ratings-11.json │ └── users-11.json ├── season-12 │ ├── abc284.json │ ├── abc292.json │ ├── abc293.json │ ├── abc294.json │ ├── abc295.json │ ├── config-12.json │ ├── ratings-12.json │ └── users-12.json ├── season-2 │ ├── abc184.json │ ├── abc185.json │ ├── abc187.json │ ├── abc188.json │ ├── abc189.json │ ├── ratings-2.json │ └── users-2.json ├── season-3 │ ├── abc190.json │ ├── abc191.json │ ├── abc194.json │ ├── abc196.json │ ├── abc198.json │ ├── ratings-3.json │ └── users-3.json ├── season-4 │ ├── abc204.json │ ├── abc205.json │ ├── abc207.json │ ├── abc208.json │ ├── abc209.json │ ├── ratings-4.json │ └── users-4.json ├── season-5 │ ├── abc211.json │ ├── abc212.json │ ├── abc213.json │ ├── abc214.json │ ├── abc215.json │ ├── config-5.json │ ├── ratings-5.json │ └── users-5.json ├── season-6 │ ├── abc216.json │ ├── abc217.json │ ├── abc218.json │ ├── abc220.json │ ├── abc221.json │ ├── config-6.json │ ├── ratings-6.json │ └── users-6.json ├── season-7 │ ├── abc224.json │ ├── abc226.json │ ├── abc230.json │ ├── abc233.json │ ├── abc234.json │ ├── config-7.json │ ├── ratings-7.json │ └── users-7.json ├── season-8 │ ├── abc236.json │ ├── abc237.json │ ├── abc240.json │ ├── abc242.json │ ├── abc243.json │ ├── config-8.json │ ├── ratings-8.json │ └── users-8.json └── season-9 │ ├── abc245.json │ ├── abc246.json │ ├── abc247.json │ ├── abc250.json │ ├── abc252.json │ ├── config-9.json │ ├── ratings-9.json │ └── users-9.json ├── docs ├── 52e5eb1b2d656a3feb4e.module.wasm ├── CNAME ├── asset-manifest.json ├── battle_records.json ├── bracket-1.json ├── bracket-10.json ├── bracket-11.json ├── bracket-12.json ├── bracket-2.json ├── bracket-3.json ├── bracket-4.json ├── bracket-5.json ├── bracket-6.json ├── bracket-7.json ├── bracket-8.json ├── bracket-9.json ├── favicon.ico ├── histories.json ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── precache-manifest.96a0826322c9e06e5400de7439157c8f.js ├── ratings.json ├── robots.txt ├── service-worker.js ├── static │ └── js │ │ ├── 2.6159d572.chunk.js │ │ ├── 2.6159d572.chunk.js.LICENSE.txt │ │ ├── 2.6159d572.chunk.js.map │ │ ├── 3.a828d1a7.chunk.js │ │ ├── 3.a828d1a7.chunk.js.map │ │ ├── main.d36ec289.chunk.js │ │ ├── main.d36ec289.chunk.js.map │ │ ├── runtime-main.f6b3ae73.js │ │ └── runtime-main.f6b3ae73.js.map └── tournaments.json ├── package.json ├── public ├── battle_records.json ├── bracket-1.json ├── bracket-10.json ├── bracket-11.json ├── bracket-12.json ├── bracket-2.json ├── bracket-3.json ├── bracket-4.json ├── bracket-5.json ├── bracket-6.json ├── bracket-7.json ├── bracket-8.json ├── bracket-9.json ├── favicon.ico ├── histories.json ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── ratings.json ├── robots.txt └── tournaments.json ├── rating-downloader ├── Cargo.toml └── src │ └── main.rs ├── rules ├── ABCトーナメントルール(第1期).md ├── ABCトーナメントルール(第2期).md ├── ABCトーナメントルール(第3期・第4期).md ├── ABCトーナメントルール(第5期).md ├── ABCトーナメントルール(第6期).md ├── ABCトーナメントルール(第7期).md └── ABCトーナメントルール(第8期〜).md ├── server ├── Cargo.toml ├── db-schema.sql ├── docker-compose.yml └── src │ ├── api.rs │ ├── auth.rs │ ├── db.rs │ ├── lib.rs │ ├── main.rs │ └── scraping.rs ├── src ├── App.tsx ├── components │ ├── GameNode │ │ ├── GameNode.tsx │ │ └── RankedRatingName.tsx │ ├── LeagueTable │ │ └── LeagueTable.tsx │ └── RatingName.tsx ├── index.tsx ├── models │ ├── BattleRecord.ts │ ├── TournamentHistory.ts │ ├── TournamentNode.ts │ └── UserHistory.ts ├── pages │ ├── LoginPage │ │ ├── UsernameInputForm.tsx │ │ ├── VerificationForm.tsx │ │ └── index.tsx │ ├── MyPage │ │ └── index.tsx │ ├── RecordPage.tsx │ ├── Tournament.tsx │ ├── TournamentListPage.tsx │ └── UserHistoryPage.tsx ├── react-app-env.d.ts ├── setupProxy.js ├── utils │ ├── API.ts │ ├── Constants.ts │ └── PrivateAPI.ts └── wasm ├── tournament-tools ├── Cargo.toml └── src │ ├── bin │ ├── consolidate-history.rs │ ├── construct-tournament.rs │ ├── show-next-battle.rs │ └── update-tournament.rs │ ├── bracket.rs │ ├── config.rs │ ├── construct.rs │ ├── io.rs │ ├── league.rs │ ├── lib.rs │ ├── rating.rs │ ├── standings.rs │ └── types.rs ├── tsconfig.json └── wasm ├── Cargo.toml ├── build └── index.js └── src └── lib.rs /.dockerignore: -------------------------------------------------------------------------------- 1 | **/target 2 | **/node_modules 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 16 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/config-overrides.js -------------------------------------------------------------------------------- /data/season-1/abc177.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-1/abc177.json -------------------------------------------------------------------------------- /data/season-1/abc178.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-1/abc178.json -------------------------------------------------------------------------------- /data/season-1/abc179.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-1/abc179.json -------------------------------------------------------------------------------- /data/season-1/abc180.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-1/abc180.json -------------------------------------------------------------------------------- /data/season-1/abc182.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-1/abc182.json -------------------------------------------------------------------------------- /data/season-1/abc183.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-1/abc183.json -------------------------------------------------------------------------------- /data/season-1/abl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-1/abl.json -------------------------------------------------------------------------------- /data/season-1/ratings-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-1/ratings-1.json -------------------------------------------------------------------------------- /data/season-1/users-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-1/users-1.json -------------------------------------------------------------------------------- /data/season-10/abc258.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-10/abc258.json -------------------------------------------------------------------------------- /data/season-10/abc259.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-10/abc259.json -------------------------------------------------------------------------------- /data/season-10/abc260.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-10/abc260.json -------------------------------------------------------------------------------- /data/season-10/abc261.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-10/abc261.json -------------------------------------------------------------------------------- /data/season-10/abc265.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-10/abc265.json -------------------------------------------------------------------------------- /data/season-10/config-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-10/config-10.json -------------------------------------------------------------------------------- /data/season-10/ratings-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-10/ratings-10.json -------------------------------------------------------------------------------- /data/season-10/users-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-10/users-10.json -------------------------------------------------------------------------------- /data/season-11/abc266.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-11/abc266.json -------------------------------------------------------------------------------- /data/season-11/abc272.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-11/abc272.json -------------------------------------------------------------------------------- /data/season-11/abc275.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-11/abc275.json -------------------------------------------------------------------------------- /data/season-11/abc278.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-11/abc278.json -------------------------------------------------------------------------------- /data/season-11/abc281.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-11/abc281.json -------------------------------------------------------------------------------- /data/season-11/config-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-11/config-11.json -------------------------------------------------------------------------------- /data/season-11/ratings-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-11/ratings-11.json -------------------------------------------------------------------------------- /data/season-11/users-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-11/users-11.json -------------------------------------------------------------------------------- /data/season-12/abc284.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-12/abc284.json -------------------------------------------------------------------------------- /data/season-12/abc292.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-12/abc292.json -------------------------------------------------------------------------------- /data/season-12/abc293.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-12/abc293.json -------------------------------------------------------------------------------- /data/season-12/abc294.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-12/abc294.json -------------------------------------------------------------------------------- /data/season-12/abc295.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-12/abc295.json -------------------------------------------------------------------------------- /data/season-12/config-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-12/config-12.json -------------------------------------------------------------------------------- /data/season-12/ratings-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-12/ratings-12.json -------------------------------------------------------------------------------- /data/season-12/users-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-12/users-12.json -------------------------------------------------------------------------------- /data/season-2/abc184.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-2/abc184.json -------------------------------------------------------------------------------- /data/season-2/abc185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-2/abc185.json -------------------------------------------------------------------------------- /data/season-2/abc187.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-2/abc187.json -------------------------------------------------------------------------------- /data/season-2/abc188.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-2/abc188.json -------------------------------------------------------------------------------- /data/season-2/abc189.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-2/abc189.json -------------------------------------------------------------------------------- /data/season-2/ratings-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-2/ratings-2.json -------------------------------------------------------------------------------- /data/season-2/users-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-2/users-2.json -------------------------------------------------------------------------------- /data/season-3/abc190.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-3/abc190.json -------------------------------------------------------------------------------- /data/season-3/abc191.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-3/abc191.json -------------------------------------------------------------------------------- /data/season-3/abc194.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-3/abc194.json -------------------------------------------------------------------------------- /data/season-3/abc196.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-3/abc196.json -------------------------------------------------------------------------------- /data/season-3/abc198.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-3/abc198.json -------------------------------------------------------------------------------- /data/season-3/ratings-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-3/ratings-3.json -------------------------------------------------------------------------------- /data/season-3/users-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-3/users-3.json -------------------------------------------------------------------------------- /data/season-4/abc204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-4/abc204.json -------------------------------------------------------------------------------- /data/season-4/abc205.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-4/abc205.json -------------------------------------------------------------------------------- /data/season-4/abc207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-4/abc207.json -------------------------------------------------------------------------------- /data/season-4/abc208.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-4/abc208.json -------------------------------------------------------------------------------- /data/season-4/abc209.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-4/abc209.json -------------------------------------------------------------------------------- /data/season-4/ratings-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-4/ratings-4.json -------------------------------------------------------------------------------- /data/season-4/users-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-4/users-4.json -------------------------------------------------------------------------------- /data/season-5/abc211.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-5/abc211.json -------------------------------------------------------------------------------- /data/season-5/abc212.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-5/abc212.json -------------------------------------------------------------------------------- /data/season-5/abc213.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-5/abc213.json -------------------------------------------------------------------------------- /data/season-5/abc214.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-5/abc214.json -------------------------------------------------------------------------------- /data/season-5/abc215.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-5/abc215.json -------------------------------------------------------------------------------- /data/season-5/config-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-5/config-5.json -------------------------------------------------------------------------------- /data/season-5/ratings-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-5/ratings-5.json -------------------------------------------------------------------------------- /data/season-5/users-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-5/users-5.json -------------------------------------------------------------------------------- /data/season-6/abc216.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-6/abc216.json -------------------------------------------------------------------------------- /data/season-6/abc217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-6/abc217.json -------------------------------------------------------------------------------- /data/season-6/abc218.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-6/abc218.json -------------------------------------------------------------------------------- /data/season-6/abc220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-6/abc220.json -------------------------------------------------------------------------------- /data/season-6/abc221.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-6/abc221.json -------------------------------------------------------------------------------- /data/season-6/config-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-6/config-6.json -------------------------------------------------------------------------------- /data/season-6/ratings-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-6/ratings-6.json -------------------------------------------------------------------------------- /data/season-6/users-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-6/users-6.json -------------------------------------------------------------------------------- /data/season-7/abc224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-7/abc224.json -------------------------------------------------------------------------------- /data/season-7/abc226.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-7/abc226.json -------------------------------------------------------------------------------- /data/season-7/abc230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-7/abc230.json -------------------------------------------------------------------------------- /data/season-7/abc233.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-7/abc233.json -------------------------------------------------------------------------------- /data/season-7/abc234.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-7/abc234.json -------------------------------------------------------------------------------- /data/season-7/config-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-7/config-7.json -------------------------------------------------------------------------------- /data/season-7/ratings-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-7/ratings-7.json -------------------------------------------------------------------------------- /data/season-7/users-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-7/users-7.json -------------------------------------------------------------------------------- /data/season-8/abc236.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-8/abc236.json -------------------------------------------------------------------------------- /data/season-8/abc237.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-8/abc237.json -------------------------------------------------------------------------------- /data/season-8/abc240.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-8/abc240.json -------------------------------------------------------------------------------- /data/season-8/abc242.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-8/abc242.json -------------------------------------------------------------------------------- /data/season-8/abc243.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-8/abc243.json -------------------------------------------------------------------------------- /data/season-8/config-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-8/config-8.json -------------------------------------------------------------------------------- /data/season-8/ratings-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-8/ratings-8.json -------------------------------------------------------------------------------- /data/season-8/users-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-8/users-8.json -------------------------------------------------------------------------------- /data/season-9/abc245.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-9/abc245.json -------------------------------------------------------------------------------- /data/season-9/abc246.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-9/abc246.json -------------------------------------------------------------------------------- /data/season-9/abc247.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-9/abc247.json -------------------------------------------------------------------------------- /data/season-9/abc250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-9/abc250.json -------------------------------------------------------------------------------- /data/season-9/abc252.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-9/abc252.json -------------------------------------------------------------------------------- /data/season-9/config-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-9/config-9.json -------------------------------------------------------------------------------- /data/season-9/ratings-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-9/ratings-9.json -------------------------------------------------------------------------------- /data/season-9/users-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/data/season-9/users-9.json -------------------------------------------------------------------------------- /docs/52e5eb1b2d656a3feb4e.module.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/52e5eb1b2d656a3feb4e.module.wasm -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | abc.kenkoooo.com 2 | -------------------------------------------------------------------------------- /docs/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/asset-manifest.json -------------------------------------------------------------------------------- /docs/battle_records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/battle_records.json -------------------------------------------------------------------------------- /docs/bracket-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-1.json -------------------------------------------------------------------------------- /docs/bracket-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-10.json -------------------------------------------------------------------------------- /docs/bracket-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-11.json -------------------------------------------------------------------------------- /docs/bracket-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-12.json -------------------------------------------------------------------------------- /docs/bracket-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-2.json -------------------------------------------------------------------------------- /docs/bracket-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-3.json -------------------------------------------------------------------------------- /docs/bracket-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-4.json -------------------------------------------------------------------------------- /docs/bracket-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-5.json -------------------------------------------------------------------------------- /docs/bracket-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-6.json -------------------------------------------------------------------------------- /docs/bracket-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-7.json -------------------------------------------------------------------------------- /docs/bracket-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-8.json -------------------------------------------------------------------------------- /docs/bracket-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/bracket-9.json -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/histories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/histories.json -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/logo192.png -------------------------------------------------------------------------------- /docs/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/logo512.png -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/precache-manifest.96a0826322c9e06e5400de7439157c8f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/precache-manifest.96a0826322c9e06e5400de7439157c8f.js -------------------------------------------------------------------------------- /docs/ratings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/ratings.json -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /docs/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/service-worker.js -------------------------------------------------------------------------------- /docs/static/js/2.6159d572.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/static/js/2.6159d572.chunk.js -------------------------------------------------------------------------------- /docs/static/js/2.6159d572.chunk.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/static/js/2.6159d572.chunk.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/static/js/2.6159d572.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/static/js/2.6159d572.chunk.js.map -------------------------------------------------------------------------------- /docs/static/js/3.a828d1a7.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/static/js/3.a828d1a7.chunk.js -------------------------------------------------------------------------------- /docs/static/js/3.a828d1a7.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/static/js/3.a828d1a7.chunk.js.map -------------------------------------------------------------------------------- /docs/static/js/main.d36ec289.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/static/js/main.d36ec289.chunk.js -------------------------------------------------------------------------------- /docs/static/js/main.d36ec289.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/static/js/main.d36ec289.chunk.js.map -------------------------------------------------------------------------------- /docs/static/js/runtime-main.f6b3ae73.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/static/js/runtime-main.f6b3ae73.js -------------------------------------------------------------------------------- /docs/static/js/runtime-main.f6b3ae73.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/static/js/runtime-main.f6b3ae73.js.map -------------------------------------------------------------------------------- /docs/tournaments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/docs/tournaments.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/package.json -------------------------------------------------------------------------------- /public/battle_records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/battle_records.json -------------------------------------------------------------------------------- /public/bracket-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-1.json -------------------------------------------------------------------------------- /public/bracket-10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-10.json -------------------------------------------------------------------------------- /public/bracket-11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-11.json -------------------------------------------------------------------------------- /public/bracket-12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-12.json -------------------------------------------------------------------------------- /public/bracket-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-2.json -------------------------------------------------------------------------------- /public/bracket-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-3.json -------------------------------------------------------------------------------- /public/bracket-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-4.json -------------------------------------------------------------------------------- /public/bracket-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-5.json -------------------------------------------------------------------------------- /public/bracket-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-6.json -------------------------------------------------------------------------------- /public/bracket-7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-7.json -------------------------------------------------------------------------------- /public/bracket-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-8.json -------------------------------------------------------------------------------- /public/bracket-9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/bracket-9.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/histories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/histories.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/ratings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/ratings.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/tournaments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/public/tournaments.json -------------------------------------------------------------------------------- /rating-downloader/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/rating-downloader/Cargo.toml -------------------------------------------------------------------------------- /rating-downloader/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/rating-downloader/src/main.rs -------------------------------------------------------------------------------- /rules/ABCトーナメントルール(第1期).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/rules/ABCトーナメントルール(第1期).md -------------------------------------------------------------------------------- /rules/ABCトーナメントルール(第2期).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/rules/ABCトーナメントルール(第2期).md -------------------------------------------------------------------------------- /rules/ABCトーナメントルール(第3期・第4期).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/rules/ABCトーナメントルール(第3期・第4期).md -------------------------------------------------------------------------------- /rules/ABCトーナメントルール(第5期).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/rules/ABCトーナメントルール(第5期).md -------------------------------------------------------------------------------- /rules/ABCトーナメントルール(第6期).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/rules/ABCトーナメントルール(第6期).md -------------------------------------------------------------------------------- /rules/ABCトーナメントルール(第7期).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/rules/ABCトーナメントルール(第7期).md -------------------------------------------------------------------------------- /rules/ABCトーナメントルール(第8期〜).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/rules/ABCトーナメントルール(第8期〜).md -------------------------------------------------------------------------------- /server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/server/Cargo.toml -------------------------------------------------------------------------------- /server/db-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/server/db-schema.sql -------------------------------------------------------------------------------- /server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/server/docker-compose.yml -------------------------------------------------------------------------------- /server/src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/server/src/api.rs -------------------------------------------------------------------------------- /server/src/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/server/src/auth.rs -------------------------------------------------------------------------------- /server/src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/server/src/db.rs -------------------------------------------------------------------------------- /server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/server/src/lib.rs -------------------------------------------------------------------------------- /server/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/server/src/main.rs -------------------------------------------------------------------------------- /server/src/scraping.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/server/src/scraping.rs -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/GameNode/GameNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/components/GameNode/GameNode.tsx -------------------------------------------------------------------------------- /src/components/GameNode/RankedRatingName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/components/GameNode/RankedRatingName.tsx -------------------------------------------------------------------------------- /src/components/LeagueTable/LeagueTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/components/LeagueTable/LeagueTable.tsx -------------------------------------------------------------------------------- /src/components/RatingName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/components/RatingName.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/models/BattleRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/models/BattleRecord.ts -------------------------------------------------------------------------------- /src/models/TournamentHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/models/TournamentHistory.ts -------------------------------------------------------------------------------- /src/models/TournamentNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/models/TournamentNode.ts -------------------------------------------------------------------------------- /src/models/UserHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/models/UserHistory.ts -------------------------------------------------------------------------------- /src/pages/LoginPage/UsernameInputForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/pages/LoginPage/UsernameInputForm.tsx -------------------------------------------------------------------------------- /src/pages/LoginPage/VerificationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/pages/LoginPage/VerificationForm.tsx -------------------------------------------------------------------------------- /src/pages/LoginPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/pages/LoginPage/index.tsx -------------------------------------------------------------------------------- /src/pages/MyPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/pages/MyPage/index.tsx -------------------------------------------------------------------------------- /src/pages/RecordPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/pages/RecordPage.tsx -------------------------------------------------------------------------------- /src/pages/Tournament.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/pages/Tournament.tsx -------------------------------------------------------------------------------- /src/pages/TournamentListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/pages/TournamentListPage.tsx -------------------------------------------------------------------------------- /src/pages/UserHistoryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/pages/UserHistoryPage.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/setupProxy.js -------------------------------------------------------------------------------- /src/utils/API.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/utils/API.ts -------------------------------------------------------------------------------- /src/utils/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/utils/Constants.ts -------------------------------------------------------------------------------- /src/utils/PrivateAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/src/utils/PrivateAPI.ts -------------------------------------------------------------------------------- /src/wasm: -------------------------------------------------------------------------------- 1 | ../wasm/ -------------------------------------------------------------------------------- /tournament-tools/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/Cargo.toml -------------------------------------------------------------------------------- /tournament-tools/src/bin/consolidate-history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/bin/consolidate-history.rs -------------------------------------------------------------------------------- /tournament-tools/src/bin/construct-tournament.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/bin/construct-tournament.rs -------------------------------------------------------------------------------- /tournament-tools/src/bin/show-next-battle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/bin/show-next-battle.rs -------------------------------------------------------------------------------- /tournament-tools/src/bin/update-tournament.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/bin/update-tournament.rs -------------------------------------------------------------------------------- /tournament-tools/src/bracket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/bracket.rs -------------------------------------------------------------------------------- /tournament-tools/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/config.rs -------------------------------------------------------------------------------- /tournament-tools/src/construct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/construct.rs -------------------------------------------------------------------------------- /tournament-tools/src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/io.rs -------------------------------------------------------------------------------- /tournament-tools/src/league.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/league.rs -------------------------------------------------------------------------------- /tournament-tools/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/lib.rs -------------------------------------------------------------------------------- /tournament-tools/src/rating.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/rating.rs -------------------------------------------------------------------------------- /tournament-tools/src/standings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/standings.rs -------------------------------------------------------------------------------- /tournament-tools/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tournament-tools/src/types.rs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/wasm/Cargo.toml -------------------------------------------------------------------------------- /wasm/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/wasm/build/index.js -------------------------------------------------------------------------------- /wasm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenkoooo/atcoder-tournament/HEAD/wasm/src/lib.rs --------------------------------------------------------------------------------