├── LICENSE ├── README.md ├── RULES.md ├── VMTests ├── VMCodeCompiler │ ├── compiler.py │ └── config.py ├── compile.py ├── other_tests │ ├── addFiveWithLoop.json │ ├── addFiveWithLoop.txt │ ├── fullVMTest.json │ ├── fullVMTest.txt │ ├── moveToSelf.json │ └── moveToSelf.txt ├── test_bot │ ├── cat.json │ ├── cat.txt │ ├── draft_complicated_spectre.txt │ ├── mole_test_ability.json │ ├── mole_test_ability.txt │ ├── mouse.json │ ├── mouse.txt │ ├── move_to_origin.json │ ├── move_to_origin.txt │ ├── random.json │ ├── random.txt │ ├── random_logging.json │ ├── random_logging.txt │ ├── spectre.json │ └── spectre.txt ├── test_bot_push │ ├── Dockerfile │ ├── RPC_adapter.py │ ├── bot.py │ ├── constants.py │ └── push.sh └── testingEnv │ ├── .gitignore │ ├── ICC2023-KOTH.jar │ └── config.json ├── WRITEUP.md ├── backend ├── .gitignore ├── META-INF │ └── MANIFEST.MF ├── build.gradle ├── config.json ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src │ └── main │ └── java │ └── it │ └── cybersecnatlab │ └── koth23 │ ├── Config.java │ ├── GameManager.java │ ├── Main.java │ ├── MapGenerator.java │ ├── VMTest.java │ ├── WebsocketClient.java │ ├── models │ ├── BackgroundTile.java │ ├── Cell.java │ ├── Entity.java │ ├── GameMap.java │ ├── MapWithUpdates.java │ ├── SummonerEntity.java │ ├── Tile.java │ ├── Update.java │ ├── VMEntity.java │ ├── entities │ │ ├── ArmadilloEntity.java │ │ ├── ArrowEntity.java │ │ ├── CatEntity.java │ │ ├── DragonEntity.java │ │ ├── MoleEntity.java │ │ ├── MouseEntity.java │ │ ├── SpectreEntity.java │ │ └── WolfEntity.java │ └── updates │ │ ├── AbilityUpdate.java │ │ ├── BackgroundTileChangeUpdate.java │ │ ├── DamageUpdate.java │ │ ├── LifeRecoveryUpdate.java │ │ ├── ManaRecoveryUpdate.java │ │ ├── ManaUsageUpdate.java │ │ ├── MoveUpdate.java │ │ ├── ScoreboardUpdate.java │ │ ├── SummonerEntityDeadUpdate.java │ │ ├── TickUpdate.java │ │ ├── VMEntityDeathUpdate.java │ │ ├── VMEntitySummonedUpdate.java │ │ └── ZoneReduceUpdate.java │ └── vm │ ├── VMException.java │ ├── VMExecutionEngine.java │ ├── VMInstruction.java │ ├── VMInstructionParam.java │ ├── VMInstructionUtils.java │ ├── VMRegistry.java │ └── instructions │ ├── AddBooleanToArrayInstruction.java │ ├── AddFloatToArrayInstruction.java │ ├── AddInstruction.java │ ├── AddIntegerToArrayInstruction.java │ ├── AddStringToArrayInstruction.java │ ├── AndInstruction.java │ ├── CeilInstruction.java │ ├── CmpInstruction.java │ ├── DivInstruction.java │ ├── DoNothingInstruction.java │ ├── FloorInstruction.java │ ├── GetFromArrayInstruction.java │ ├── GetOwnInformationInstruction.java │ ├── GetTileInformationInstruction.java │ ├── InitBooleanArrayInstruction.java │ ├── InitBooleanInstruction.java │ ├── InitFloatArrayInstruction.java │ ├── InitFloatInstruction.java │ ├── InitIntegerArrayInstruction.java │ ├── InitIntegerInstruction.java │ ├── InitStringArrayInstruction.java │ ├── InitStringInstruction.java │ ├── IsNullInstruction.java │ ├── JmpEQ0Instruction.java │ ├── JmpG0Instruction.java │ ├── JmpInstruction.java │ ├── JmpL0Instruction.java │ ├── JmpNEQ0Instruction.java │ ├── LogInstruction.java │ ├── ModInstruction.java │ ├── MovInstruction.java │ ├── MoveToInstruction.java │ ├── MulInstruction.java │ ├── NegInstruction.java │ ├── NotInstruction.java │ ├── OrInstruction.java │ ├── PowInstruction.java │ ├── RemoveFromArrayInstruction.java │ ├── RndInstruction.java │ ├── RoundInstruction.java │ ├── SarInstruction.java │ ├── SetBooleanToArrayInstruction.java │ ├── SetFloatToArrayInstruction.java │ ├── SetIntegerToArrayInstruction.java │ ├── SetStringToArrayInstruction.java │ ├── ShlInstruction.java │ ├── ShrInstruction.java │ ├── SqrtInstruction.java │ ├── SubInstruction.java │ ├── UseAbilityInstruction.java │ └── XorInstruction.java ├── bots ├── RPC_adapter_dummy.py ├── RPC_adapter_human.py └── bots │ ├── .gitignore │ ├── human_player_bot.py │ ├── player.png │ └── tmw_desert_spacing.png ├── deploy ├── README.md ├── README_NO_HTTPS.md ├── auth │ ├── africa │ │ └── registry.password │ ├── asia │ │ └── registry.password │ ├── canada │ │ └── registry.password │ ├── europe │ │ └── registry.password │ ├── latina │ │ └── registry.password │ ├── oceania │ │ └── registry.password │ └── usa │ │ └── registry.password ├── docker-compose.yml ├── docker_game_manager │ ├── config.json │ ├── docker_images │ │ ├── backend_image │ │ │ ├── Dockerfile │ │ │ └── ICC2023-KOTH.jar │ │ ├── base_player_image │ │ │ ├── Dockerfile │ │ │ ├── RPC_adapter.py │ │ │ ├── bot.py │ │ │ └── constants.py │ │ └── results │ │ │ └── .gitkeep │ └── manager.py ├── generate_passwords.py ├── passwords.json ├── push_basic_bots.py ├── traefik │ ├── docker-compose.yml │ └── letsencrypt │ │ └── .gitkeep └── webservice │ ├── .gitignore │ ├── Dockerfile │ ├── backend │ └── index.js │ ├── frontend │ ├── .gitignore │ ├── .prettierrc │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── cybersecnatlab.svg │ │ ├── icc23.png │ │ ├── index.html │ │ ├── robots.txt │ │ ├── rune.ttf │ │ ├── sprites.json │ │ ├── sprites.png │ │ └── sprites │ │ │ ├── armadillo.png │ │ │ ├── arrow.png │ │ │ ├── bush.png │ │ │ ├── cat.png │ │ │ ├── desert.png │ │ │ ├── dragon.png │ │ │ ├── lava.png │ │ │ ├── mole.png │ │ │ ├── mountain.png │ │ │ ├── poison.png │ │ │ ├── rat.png │ │ │ ├── spectre.png │ │ │ ├── water.png │ │ │ ├── werewolf.png │ │ │ ├── wizard-1.png │ │ │ ├── wizard-2.png │ │ │ ├── wizard-3.png │ │ │ ├── wizard-4.png │ │ │ ├── wizard-5.png │ │ │ ├── wizard-6.png │ │ │ ├── wizard-8.png │ │ │ ├── wizard-blue.png │ │ │ ├── wizard-brown.png │ │ │ ├── wizard-green.png │ │ │ ├── wizard-orange.png │ │ │ ├── wizard-pink.png │ │ │ ├── wizard-purple.png │ │ │ ├── wizard-red.png │ │ │ └── wizard-white.png │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── api.ts │ │ ├── game │ │ │ ├── GameCanvas.tsx │ │ │ ├── GameInterface.css │ │ │ ├── GameInterface.tsx │ │ │ ├── ResizableGameCanvas.tsx │ │ │ ├── map.ts │ │ │ ├── rand.ts │ │ │ └── sprites.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── pages │ │ │ ├── Home.css │ │ │ ├── Home.tsx │ │ │ ├── HomeBackground.png │ │ │ ├── HowTo.css │ │ │ ├── HowTo.tsx │ │ │ ├── LiveGame.tsx │ │ │ ├── Login.css │ │ │ ├── Login.tsx │ │ │ ├── LoginBackground.svg │ │ │ ├── Rules.css │ │ │ ├── Rules.tsx │ │ │ ├── Scoreboard.css │ │ │ ├── Scoreboard.tsx │ │ │ ├── ScoreboardBackground.png │ │ │ ├── TrophyBronze.png │ │ │ ├── TrophyGold.png │ │ │ ├── TrophySilver.png │ │ │ ├── ViewGame.tsx │ │ │ └── ViewUploadedGame.tsx │ │ ├── react-app-env.d.ts │ │ ├── setupProxy.js │ │ └── user.tsx │ └── tsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── tiles.tps │ └── tiles.zip ├── dist ├── Dockerfile ├── ICC2023-KOTH.jar ├── README.md ├── VMCodeCompiler │ ├── .gitignore │ ├── compiler.py │ ├── config.py │ ├── examples │ │ ├── center.json │ │ ├── center.txt │ │ ├── fullVMTest.json │ │ ├── fullVMTest.txt │ │ ├── random_code.json │ │ └── random_code.txt │ └── requirements.txt ├── base_bot │ ├── Dockerfile │ ├── RPC_adapter.py │ ├── bot.py │ ├── constants.py │ └── push.sh ├── config.json ├── docker-compose.yml └── results │ └── .gitkeep ├── img ├── KOTH-rounds.png ├── KOTH-scoreboard.png └── KOTH.png └── results ├── 0 ├── map.json └── scoreboard.json ├── 1 ├── map.json └── scoreboard.json ├── 2 ├── map.json └── scoreboard.json ├── 3 ├── map.json └── scoreboard.json ├── 4 ├── map.json └── scoreboard.json ├── 5 ├── map.json └── scoreboard.json ├── 6 ├── map.json └── scoreboard.json ├── 8 ├── map.json └── scoreboard.json ├── 9 ├── map.json └── scoreboard.json ├── 10 ├── map.json └── scoreboard.json ├── 11 ├── map.json └── scoreboard.json ├── 12 ├── map.json └── scoreboard.json ├── 13 ├── map.json └── scoreboard.json ├── 14 ├── map.json └── scoreboard.json ├── 15 ├── map.json └── scoreboard.json ├── 16 ├── map.json └── scoreboard.json ├── 17 ├── map.json └── scoreboard.json ├── 18 ├── map.json └── scoreboard.json ├── 19 ├── map.json └── scoreboard.json ├── 20 ├── map.json └── scoreboard.json ├── 21 ├── map.json └── scoreboard.json ├── 22 ├── map.json └── scoreboard.json ├── 23 ├── map.json └── scoreboard.json ├── 24 ├── map.json └── scoreboard.json ├── 25 ├── map.json └── scoreboard.json ├── 26 ├── map.json └── scoreboard.json ├── 27 ├── map.json └── scoreboard.json ├── 28 ├── map.json └── scoreboard.json ├── 29 ├── map.json └── scoreboard.json ├── 30 ├── map.json └── scoreboard.json ├── 31 ├── map.json └── scoreboard.json ├── 32 ├── map.json └── scoreboard.json ├── 33 ├── map.json └── scoreboard.json ├── 34 ├── map.json └── scoreboard.json ├── 35 ├── map.json └── scoreboard.json ├── 36 ├── map.json └── scoreboard.json ├── 37 ├── map.json └── scoreboard.json ├── 38 ├── map.json └── scoreboard.json ├── 39 ├── map.json └── scoreboard.json ├── 40 ├── map.json └── scoreboard.json ├── 41 ├── map.json └── scoreboard.json ├── 42 ├── map.json └── scoreboard.json ├── 43 ├── map.json └── scoreboard.json ├── 44 ├── map.json └── scoreboard.json ├── 45 ├── map.json └── scoreboard.json ├── 46 ├── map.json └── scoreboard.json ├── 47 ├── map.json └── scoreboard.json ├── 48 ├── map.json └── scoreboard.json ├── 49 ├── map.json └── scoreboard.json ├── 50 ├── map.json └── scoreboard.json ├── 51 ├── map.json └── scoreboard.json ├── 52 ├── map.json └── scoreboard.json ├── 53 ├── map.json └── scoreboard.json ├── 54 ├── map.json └── scoreboard.json ├── 55 ├── map.json └── scoreboard.json ├── 56 ├── map.json └── scoreboard.json ├── 57 ├── map.json └── scoreboard.json ├── 58 ├── map.json └── scoreboard.json ├── 59 ├── map.json └── scoreboard.json ├── 60 ├── map.json └── scoreboard.json ├── 61 ├── map.json └── scoreboard.json ├── 62 ├── map.json └── scoreboard.json ├── 63 ├── map.json └── scoreboard.json ├── 64 ├── map.json └── scoreboard.json ├── 65 ├── map.json └── scoreboard.json ├── 66 ├── map.json └── scoreboard.json ├── 67 ├── map.json └── scoreboard.json ├── 68 ├── map.json └── scoreboard.json ├── 69 ├── map.json └── scoreboard.json ├── 70 ├── map.json └── scoreboard.json ├── 71 ├── map.json └── scoreboard.json ├── 72 ├── map.json └── scoreboard.json ├── 73 ├── map.json └── scoreboard.json ├── 74 ├── map.json └── scoreboard.json ├── 75 ├── map.json └── scoreboard.json ├── 76 ├── map.json └── scoreboard.json ├── 77 ├── map.json └── scoreboard.json ├── 78 ├── map.json └── scoreboard.json ├── 79 ├── map.json └── scoreboard.json ├── 80 ├── map.json └── scoreboard.json ├── complete_rounds.json └── scoreboard.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/README.md -------------------------------------------------------------------------------- /RULES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/RULES.md -------------------------------------------------------------------------------- /VMTests/VMCodeCompiler/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/VMCodeCompiler/compiler.py -------------------------------------------------------------------------------- /VMTests/VMCodeCompiler/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/VMCodeCompiler/config.py -------------------------------------------------------------------------------- /VMTests/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/compile.py -------------------------------------------------------------------------------- /VMTests/other_tests/addFiveWithLoop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/other_tests/addFiveWithLoop.json -------------------------------------------------------------------------------- /VMTests/other_tests/addFiveWithLoop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/other_tests/addFiveWithLoop.txt -------------------------------------------------------------------------------- /VMTests/other_tests/fullVMTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/other_tests/fullVMTest.json -------------------------------------------------------------------------------- /VMTests/other_tests/fullVMTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/other_tests/fullVMTest.txt -------------------------------------------------------------------------------- /VMTests/other_tests/moveToSelf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/other_tests/moveToSelf.json -------------------------------------------------------------------------------- /VMTests/other_tests/moveToSelf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/other_tests/moveToSelf.txt -------------------------------------------------------------------------------- /VMTests/test_bot/cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/cat.json -------------------------------------------------------------------------------- /VMTests/test_bot/cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/cat.txt -------------------------------------------------------------------------------- /VMTests/test_bot/draft_complicated_spectre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/draft_complicated_spectre.txt -------------------------------------------------------------------------------- /VMTests/test_bot/mole_test_ability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/mole_test_ability.json -------------------------------------------------------------------------------- /VMTests/test_bot/mole_test_ability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/mole_test_ability.txt -------------------------------------------------------------------------------- /VMTests/test_bot/mouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/mouse.json -------------------------------------------------------------------------------- /VMTests/test_bot/mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/mouse.txt -------------------------------------------------------------------------------- /VMTests/test_bot/move_to_origin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/move_to_origin.json -------------------------------------------------------------------------------- /VMTests/test_bot/move_to_origin.txt: -------------------------------------------------------------------------------- 1 | MoveTo #0, #0 -------------------------------------------------------------------------------- /VMTests/test_bot/random.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/random.json -------------------------------------------------------------------------------- /VMTests/test_bot/random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/random.txt -------------------------------------------------------------------------------- /VMTests/test_bot/random_logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/random_logging.json -------------------------------------------------------------------------------- /VMTests/test_bot/random_logging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/random_logging.txt -------------------------------------------------------------------------------- /VMTests/test_bot/spectre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot/spectre.json -------------------------------------------------------------------------------- /VMTests/test_bot/spectre.txt: -------------------------------------------------------------------------------- 1 | MoveTo #1, #1 -------------------------------------------------------------------------------- /VMTests/test_bot_push/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot_push/Dockerfile -------------------------------------------------------------------------------- /VMTests/test_bot_push/RPC_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot_push/RPC_adapter.py -------------------------------------------------------------------------------- /VMTests/test_bot_push/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot_push/bot.py -------------------------------------------------------------------------------- /VMTests/test_bot_push/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot_push/constants.py -------------------------------------------------------------------------------- /VMTests/test_bot_push/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/test_bot_push/push.sh -------------------------------------------------------------------------------- /VMTests/testingEnv/.gitignore: -------------------------------------------------------------------------------- 1 | results/ -------------------------------------------------------------------------------- /VMTests/testingEnv/ICC2023-KOTH.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/testingEnv/ICC2023-KOTH.jar -------------------------------------------------------------------------------- /VMTests/testingEnv/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/VMTests/testingEnv/config.json -------------------------------------------------------------------------------- /WRITEUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/WRITEUP.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /backend/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/build.gradle -------------------------------------------------------------------------------- /backend/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/config.json -------------------------------------------------------------------------------- /backend/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /backend/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /backend/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/gradlew -------------------------------------------------------------------------------- /backend/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/gradlew.bat -------------------------------------------------------------------------------- /backend/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ICC2023-KOTH' 2 | 3 | -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/Config.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/GameManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/GameManager.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/Main.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/MapGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/MapGenerator.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/VMTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/VMTest.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/WebsocketClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/WebsocketClient.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/BackgroundTile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/BackgroundTile.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/Cell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/Cell.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/Entity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/Entity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/GameMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/GameMap.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/MapWithUpdates.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/MapWithUpdates.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/SummonerEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/SummonerEntity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/Tile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/Tile.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/Update.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/Update.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/VMEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/VMEntity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/entities/ArmadilloEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/entities/ArmadilloEntity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/entities/ArrowEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/entities/ArrowEntity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/entities/CatEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/entities/CatEntity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/entities/DragonEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/entities/DragonEntity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/entities/MoleEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/entities/MoleEntity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/entities/MouseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/entities/MouseEntity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/entities/SpectreEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/entities/SpectreEntity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/entities/WolfEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/entities/WolfEntity.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/AbilityUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/AbilityUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/BackgroundTileChangeUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/BackgroundTileChangeUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/DamageUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/DamageUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/LifeRecoveryUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/LifeRecoveryUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/ManaRecoveryUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/ManaRecoveryUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/ManaUsageUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/ManaUsageUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/MoveUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/MoveUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/ScoreboardUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/ScoreboardUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/SummonerEntityDeadUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/SummonerEntityDeadUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/TickUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/TickUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/VMEntityDeathUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/VMEntityDeathUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/VMEntitySummonedUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/VMEntitySummonedUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/models/updates/ZoneReduceUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/models/updates/ZoneReduceUpdate.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/VMException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/VMException.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/VMExecutionEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/VMExecutionEngine.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/VMInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/VMInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/VMInstructionParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/VMInstructionParam.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/VMInstructionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/VMInstructionUtils.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/VMRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/VMRegistry.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AddBooleanToArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AddBooleanToArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AddFloatToArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AddFloatToArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AddInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AddInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AddIntegerToArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AddIntegerToArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AddStringToArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AddStringToArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AndInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/AndInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/CeilInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/CeilInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/CmpInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/CmpInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/DivInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/DivInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/DoNothingInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/DoNothingInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/FloorInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/FloorInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/GetFromArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/GetFromArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/GetOwnInformationInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/GetOwnInformationInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/GetTileInformationInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/GetTileInformationInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitBooleanArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitBooleanArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitBooleanInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitBooleanInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitFloatArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitFloatArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitFloatInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitFloatInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitIntegerArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitIntegerArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitIntegerInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitIntegerInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitStringArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitStringArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitStringInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/InitStringInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/IsNullInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/IsNullInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/JmpEQ0Instruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/JmpEQ0Instruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/JmpG0Instruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/JmpG0Instruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/JmpInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/JmpInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/JmpL0Instruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/JmpL0Instruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/JmpNEQ0Instruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/JmpNEQ0Instruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/LogInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/LogInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/ModInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/ModInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/MovInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/MovInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/MoveToInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/MoveToInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/MulInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/MulInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/NegInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/NegInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/NotInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/NotInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/OrInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/OrInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/PowInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/PowInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/RemoveFromArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/RemoveFromArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/RndInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/RndInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/RoundInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/RoundInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SarInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SarInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SetBooleanToArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SetBooleanToArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SetFloatToArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SetFloatToArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SetIntegerToArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SetIntegerToArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SetStringToArrayInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SetStringToArrayInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/ShlInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/ShlInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/ShrInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/ShrInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SqrtInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SqrtInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SubInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/SubInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/UseAbilityInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/UseAbilityInstruction.java -------------------------------------------------------------------------------- /backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/XorInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/backend/src/main/java/it/cybersecnatlab/koth23/vm/instructions/XorInstruction.java -------------------------------------------------------------------------------- /bots/RPC_adapter_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/bots/RPC_adapter_dummy.py -------------------------------------------------------------------------------- /bots/RPC_adapter_human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/bots/RPC_adapter_human.py -------------------------------------------------------------------------------- /bots/bots/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/* -------------------------------------------------------------------------------- /bots/bots/human_player_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/bots/bots/human_player_bot.py -------------------------------------------------------------------------------- /bots/bots/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/bots/bots/player.png -------------------------------------------------------------------------------- /bots/bots/tmw_desert_spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/bots/bots/tmw_desert_spacing.png -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/README.md -------------------------------------------------------------------------------- /deploy/README_NO_HTTPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/README_NO_HTTPS.md -------------------------------------------------------------------------------- /deploy/auth/africa/registry.password: -------------------------------------------------------------------------------- 1 | africa:$2y$05$FBkRS7zw4QWfQJ7w7ZZoB.LFkGkxaTMenJpkcyUEhHxW/9qALD/AC 2 | -------------------------------------------------------------------------------- /deploy/auth/asia/registry.password: -------------------------------------------------------------------------------- 1 | asia:$2y$05$8m3kiomPbygcwjY0ZFy1juQ.VXXmmwwSkrBvTxKNABLbzOFXhk.mm 2 | -------------------------------------------------------------------------------- /deploy/auth/canada/registry.password: -------------------------------------------------------------------------------- 1 | canada:$2y$05$6h2woTVr/LH4oHyk..FnNOlBUWQ9Nz3eYW2rYGQTsZaHYxqQGb83i 2 | -------------------------------------------------------------------------------- /deploy/auth/europe/registry.password: -------------------------------------------------------------------------------- 1 | europe:$2y$05$S5n3.jXK9OPBXy2nstnKZOrbZX1FEH.9BJgcCijjK1oSsWL2cmlJ6 2 | -------------------------------------------------------------------------------- /deploy/auth/latina/registry.password: -------------------------------------------------------------------------------- 1 | latina:$2y$05$n.1OqwAWyePAzKPRSyqzVuDdXgWtRp7yHkF17tGdufWjGenE/FGwe 2 | -------------------------------------------------------------------------------- /deploy/auth/oceania/registry.password: -------------------------------------------------------------------------------- 1 | oceania:$2y$05$Qnw4GwVTp4WoRjpa3tH14uZmblngHTXs5svz1teeGGzS8l9q.ztqG 2 | -------------------------------------------------------------------------------- /deploy/auth/usa/registry.password: -------------------------------------------------------------------------------- 1 | usa:$2y$05$UVg7Bafv4ujIKVi0cyuI9OqiWlDXMloit6G/cOzU.t9aM2N8BUbCu 2 | -------------------------------------------------------------------------------- /deploy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/docker-compose.yml -------------------------------------------------------------------------------- /deploy/docker_game_manager/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/docker_game_manager/config.json -------------------------------------------------------------------------------- /deploy/docker_game_manager/docker_images/backend_image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/docker_game_manager/docker_images/backend_image/Dockerfile -------------------------------------------------------------------------------- /deploy/docker_game_manager/docker_images/backend_image/ICC2023-KOTH.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/docker_game_manager/docker_images/backend_image/ICC2023-KOTH.jar -------------------------------------------------------------------------------- /deploy/docker_game_manager/docker_images/base_player_image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/docker_game_manager/docker_images/base_player_image/Dockerfile -------------------------------------------------------------------------------- /deploy/docker_game_manager/docker_images/base_player_image/RPC_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/docker_game_manager/docker_images/base_player_image/RPC_adapter.py -------------------------------------------------------------------------------- /deploy/docker_game_manager/docker_images/base_player_image/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/docker_game_manager/docker_images/base_player_image/bot.py -------------------------------------------------------------------------------- /deploy/docker_game_manager/docker_images/base_player_image/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/docker_game_manager/docker_images/base_player_image/constants.py -------------------------------------------------------------------------------- /deploy/docker_game_manager/docker_images/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/docker_game_manager/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/docker_game_manager/manager.py -------------------------------------------------------------------------------- /deploy/generate_passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/generate_passwords.py -------------------------------------------------------------------------------- /deploy/passwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/passwords.json -------------------------------------------------------------------------------- /deploy/push_basic_bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/push_basic_bots.py -------------------------------------------------------------------------------- /deploy/traefik/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/traefik/docker-compose.yml -------------------------------------------------------------------------------- /deploy/traefik/letsencrypt/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/webservice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/.gitignore -------------------------------------------------------------------------------- /deploy/webservice/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/Dockerfile -------------------------------------------------------------------------------- /deploy/webservice/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/backend/index.js -------------------------------------------------------------------------------- /deploy/webservice/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/.gitignore -------------------------------------------------------------------------------- /deploy/webservice/frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/.prettierrc -------------------------------------------------------------------------------- /deploy/webservice/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/package-lock.json -------------------------------------------------------------------------------- /deploy/webservice/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/package.json -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/cybersecnatlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/cybersecnatlab.svg -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/icc23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/icc23.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/index.html -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/rune.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/rune.ttf -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites.json -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/armadillo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/armadillo.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/arrow.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/bush.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/cat.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/desert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/desert.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/dragon.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/lava.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/mole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/mole.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/mountain.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/poison.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/rat.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/spectre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/spectre.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/water.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/werewolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/werewolf.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-1.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-2.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-3.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-4.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-5.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-6.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-8.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-blue.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-brown.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-green.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-orange.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-pink.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-purple.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-red.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/public/sprites/wizard-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/public/sprites/wizard-white.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/App.css -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/App.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/api.ts -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/game/GameCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/game/GameCanvas.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/game/GameInterface.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/game/GameInterface.css -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/game/GameInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/game/GameInterface.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/game/ResizableGameCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/game/ResizableGameCanvas.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/game/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/game/map.ts -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/game/rand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/game/rand.ts -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/game/sprites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/game/sprites.ts -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/index.css -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/index.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/logo.svg -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/Home.css -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/Home.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/HomeBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/HomeBackground.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/HowTo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/HowTo.css -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/HowTo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/HowTo.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/LiveGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/LiveGame.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/Login.css -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/Login.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/LoginBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/LoginBackground.svg -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/Rules.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/Rules.css -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/Rules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/Rules.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/Scoreboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/Scoreboard.css -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/Scoreboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/Scoreboard.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/ScoreboardBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/ScoreboardBackground.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/TrophyBronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/TrophyBronze.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/TrophyGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/TrophyGold.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/TrophySilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/TrophySilver.png -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/ViewGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/ViewGame.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/pages/ViewUploadedGame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/pages/ViewUploadedGame.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/setupProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/setupProxy.js -------------------------------------------------------------------------------- /deploy/webservice/frontend/src/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/src/user.tsx -------------------------------------------------------------------------------- /deploy/webservice/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/frontend/tsconfig.json -------------------------------------------------------------------------------- /deploy/webservice/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/package-lock.json -------------------------------------------------------------------------------- /deploy/webservice/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/package.json -------------------------------------------------------------------------------- /deploy/webservice/tiles.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/tiles.tps -------------------------------------------------------------------------------- /deploy/webservice/tiles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/deploy/webservice/tiles.zip -------------------------------------------------------------------------------- /dist/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/Dockerfile -------------------------------------------------------------------------------- /dist/ICC2023-KOTH.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/ICC2023-KOTH.jar -------------------------------------------------------------------------------- /dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/README.md -------------------------------------------------------------------------------- /dist/VMCodeCompiler/.gitignore: -------------------------------------------------------------------------------- 1 | .venv/* 2 | __pycache__/* -------------------------------------------------------------------------------- /dist/VMCodeCompiler/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/VMCodeCompiler/compiler.py -------------------------------------------------------------------------------- /dist/VMCodeCompiler/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/VMCodeCompiler/config.py -------------------------------------------------------------------------------- /dist/VMCodeCompiler/examples/center.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/VMCodeCompiler/examples/center.json -------------------------------------------------------------------------------- /dist/VMCodeCompiler/examples/center.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/VMCodeCompiler/examples/center.txt -------------------------------------------------------------------------------- /dist/VMCodeCompiler/examples/fullVMTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/VMCodeCompiler/examples/fullVMTest.json -------------------------------------------------------------------------------- /dist/VMCodeCompiler/examples/fullVMTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/VMCodeCompiler/examples/fullVMTest.txt -------------------------------------------------------------------------------- /dist/VMCodeCompiler/examples/random_code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/VMCodeCompiler/examples/random_code.json -------------------------------------------------------------------------------- /dist/VMCodeCompiler/examples/random_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/VMCodeCompiler/examples/random_code.txt -------------------------------------------------------------------------------- /dist/VMCodeCompiler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/VMCodeCompiler/requirements.txt -------------------------------------------------------------------------------- /dist/base_bot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/base_bot/Dockerfile -------------------------------------------------------------------------------- /dist/base_bot/RPC_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/base_bot/RPC_adapter.py -------------------------------------------------------------------------------- /dist/base_bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/base_bot/bot.py -------------------------------------------------------------------------------- /dist/base_bot/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/base_bot/constants.py -------------------------------------------------------------------------------- /dist/base_bot/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/base_bot/push.sh -------------------------------------------------------------------------------- /dist/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/config.json -------------------------------------------------------------------------------- /dist/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/dist/docker-compose.yml -------------------------------------------------------------------------------- /dist/results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/KOTH-rounds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/img/KOTH-rounds.png -------------------------------------------------------------------------------- /img/KOTH-scoreboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/img/KOTH-scoreboard.png -------------------------------------------------------------------------------- /img/KOTH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/img/KOTH.png -------------------------------------------------------------------------------- /results/0/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/0/map.json -------------------------------------------------------------------------------- /results/0/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/0/scoreboard.json -------------------------------------------------------------------------------- /results/1/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/1/map.json -------------------------------------------------------------------------------- /results/1/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/1/scoreboard.json -------------------------------------------------------------------------------- /results/10/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/10/map.json -------------------------------------------------------------------------------- /results/10/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/10/scoreboard.json -------------------------------------------------------------------------------- /results/11/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/11/map.json -------------------------------------------------------------------------------- /results/11/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/11/scoreboard.json -------------------------------------------------------------------------------- /results/12/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/12/map.json -------------------------------------------------------------------------------- /results/12/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/12/scoreboard.json -------------------------------------------------------------------------------- /results/13/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/13/map.json -------------------------------------------------------------------------------- /results/13/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/13/scoreboard.json -------------------------------------------------------------------------------- /results/14/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/14/map.json -------------------------------------------------------------------------------- /results/14/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/14/scoreboard.json -------------------------------------------------------------------------------- /results/15/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/15/map.json -------------------------------------------------------------------------------- /results/15/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/15/scoreboard.json -------------------------------------------------------------------------------- /results/16/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/16/map.json -------------------------------------------------------------------------------- /results/16/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/16/scoreboard.json -------------------------------------------------------------------------------- /results/17/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/17/map.json -------------------------------------------------------------------------------- /results/17/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/17/scoreboard.json -------------------------------------------------------------------------------- /results/18/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/18/map.json -------------------------------------------------------------------------------- /results/18/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/18/scoreboard.json -------------------------------------------------------------------------------- /results/19/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/19/map.json -------------------------------------------------------------------------------- /results/19/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/19/scoreboard.json -------------------------------------------------------------------------------- /results/2/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/2/map.json -------------------------------------------------------------------------------- /results/2/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/2/scoreboard.json -------------------------------------------------------------------------------- /results/20/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/20/map.json -------------------------------------------------------------------------------- /results/20/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/20/scoreboard.json -------------------------------------------------------------------------------- /results/21/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/21/map.json -------------------------------------------------------------------------------- /results/21/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/21/scoreboard.json -------------------------------------------------------------------------------- /results/22/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/22/map.json -------------------------------------------------------------------------------- /results/22/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/22/scoreboard.json -------------------------------------------------------------------------------- /results/23/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/23/map.json -------------------------------------------------------------------------------- /results/23/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/23/scoreboard.json -------------------------------------------------------------------------------- /results/24/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/24/map.json -------------------------------------------------------------------------------- /results/24/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/24/scoreboard.json -------------------------------------------------------------------------------- /results/25/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/25/map.json -------------------------------------------------------------------------------- /results/25/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/25/scoreboard.json -------------------------------------------------------------------------------- /results/26/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/26/map.json -------------------------------------------------------------------------------- /results/26/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/26/scoreboard.json -------------------------------------------------------------------------------- /results/27/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/27/map.json -------------------------------------------------------------------------------- /results/27/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/27/scoreboard.json -------------------------------------------------------------------------------- /results/28/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/28/map.json -------------------------------------------------------------------------------- /results/28/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/28/scoreboard.json -------------------------------------------------------------------------------- /results/29/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/29/map.json -------------------------------------------------------------------------------- /results/29/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/29/scoreboard.json -------------------------------------------------------------------------------- /results/3/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/3/map.json -------------------------------------------------------------------------------- /results/3/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/3/scoreboard.json -------------------------------------------------------------------------------- /results/30/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/30/map.json -------------------------------------------------------------------------------- /results/30/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/30/scoreboard.json -------------------------------------------------------------------------------- /results/31/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/31/map.json -------------------------------------------------------------------------------- /results/31/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/31/scoreboard.json -------------------------------------------------------------------------------- /results/32/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/32/map.json -------------------------------------------------------------------------------- /results/32/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/32/scoreboard.json -------------------------------------------------------------------------------- /results/33/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/33/map.json -------------------------------------------------------------------------------- /results/33/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/33/scoreboard.json -------------------------------------------------------------------------------- /results/34/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/34/map.json -------------------------------------------------------------------------------- /results/34/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/34/scoreboard.json -------------------------------------------------------------------------------- /results/35/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/35/map.json -------------------------------------------------------------------------------- /results/35/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/35/scoreboard.json -------------------------------------------------------------------------------- /results/36/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/36/map.json -------------------------------------------------------------------------------- /results/36/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/36/scoreboard.json -------------------------------------------------------------------------------- /results/37/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/37/map.json -------------------------------------------------------------------------------- /results/37/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/37/scoreboard.json -------------------------------------------------------------------------------- /results/38/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/38/map.json -------------------------------------------------------------------------------- /results/38/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/38/scoreboard.json -------------------------------------------------------------------------------- /results/39/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/39/map.json -------------------------------------------------------------------------------- /results/39/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/39/scoreboard.json -------------------------------------------------------------------------------- /results/4/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/4/map.json -------------------------------------------------------------------------------- /results/4/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/4/scoreboard.json -------------------------------------------------------------------------------- /results/40/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/40/map.json -------------------------------------------------------------------------------- /results/40/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/40/scoreboard.json -------------------------------------------------------------------------------- /results/41/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/41/map.json -------------------------------------------------------------------------------- /results/41/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/41/scoreboard.json -------------------------------------------------------------------------------- /results/42/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/42/map.json -------------------------------------------------------------------------------- /results/42/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/42/scoreboard.json -------------------------------------------------------------------------------- /results/43/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/43/map.json -------------------------------------------------------------------------------- /results/43/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/43/scoreboard.json -------------------------------------------------------------------------------- /results/44/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/44/map.json -------------------------------------------------------------------------------- /results/44/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/44/scoreboard.json -------------------------------------------------------------------------------- /results/45/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/45/map.json -------------------------------------------------------------------------------- /results/45/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/45/scoreboard.json -------------------------------------------------------------------------------- /results/46/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/46/map.json -------------------------------------------------------------------------------- /results/46/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/46/scoreboard.json -------------------------------------------------------------------------------- /results/47/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/47/map.json -------------------------------------------------------------------------------- /results/47/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/47/scoreboard.json -------------------------------------------------------------------------------- /results/48/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/48/map.json -------------------------------------------------------------------------------- /results/48/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/48/scoreboard.json -------------------------------------------------------------------------------- /results/49/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/49/map.json -------------------------------------------------------------------------------- /results/49/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/49/scoreboard.json -------------------------------------------------------------------------------- /results/5/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/5/map.json -------------------------------------------------------------------------------- /results/5/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/5/scoreboard.json -------------------------------------------------------------------------------- /results/50/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/50/map.json -------------------------------------------------------------------------------- /results/50/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/50/scoreboard.json -------------------------------------------------------------------------------- /results/51/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/51/map.json -------------------------------------------------------------------------------- /results/51/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/51/scoreboard.json -------------------------------------------------------------------------------- /results/52/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/52/map.json -------------------------------------------------------------------------------- /results/52/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/52/scoreboard.json -------------------------------------------------------------------------------- /results/53/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/53/map.json -------------------------------------------------------------------------------- /results/53/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/53/scoreboard.json -------------------------------------------------------------------------------- /results/54/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/54/map.json -------------------------------------------------------------------------------- /results/54/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/54/scoreboard.json -------------------------------------------------------------------------------- /results/55/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/55/map.json -------------------------------------------------------------------------------- /results/55/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/55/scoreboard.json -------------------------------------------------------------------------------- /results/56/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/56/map.json -------------------------------------------------------------------------------- /results/56/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/56/scoreboard.json -------------------------------------------------------------------------------- /results/57/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/57/map.json -------------------------------------------------------------------------------- /results/57/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/57/scoreboard.json -------------------------------------------------------------------------------- /results/58/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/58/map.json -------------------------------------------------------------------------------- /results/58/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/58/scoreboard.json -------------------------------------------------------------------------------- /results/59/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/59/map.json -------------------------------------------------------------------------------- /results/59/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/59/scoreboard.json -------------------------------------------------------------------------------- /results/6/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/6/map.json -------------------------------------------------------------------------------- /results/6/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/6/scoreboard.json -------------------------------------------------------------------------------- /results/60/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/60/map.json -------------------------------------------------------------------------------- /results/60/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/60/scoreboard.json -------------------------------------------------------------------------------- /results/61/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/61/map.json -------------------------------------------------------------------------------- /results/61/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/61/scoreboard.json -------------------------------------------------------------------------------- /results/62/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/62/map.json -------------------------------------------------------------------------------- /results/62/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/62/scoreboard.json -------------------------------------------------------------------------------- /results/63/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/63/map.json -------------------------------------------------------------------------------- /results/63/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/63/scoreboard.json -------------------------------------------------------------------------------- /results/64/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/64/map.json -------------------------------------------------------------------------------- /results/64/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/64/scoreboard.json -------------------------------------------------------------------------------- /results/65/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/65/map.json -------------------------------------------------------------------------------- /results/65/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/65/scoreboard.json -------------------------------------------------------------------------------- /results/66/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/66/map.json -------------------------------------------------------------------------------- /results/66/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/66/scoreboard.json -------------------------------------------------------------------------------- /results/67/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/67/map.json -------------------------------------------------------------------------------- /results/67/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/67/scoreboard.json -------------------------------------------------------------------------------- /results/68/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/68/map.json -------------------------------------------------------------------------------- /results/68/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/68/scoreboard.json -------------------------------------------------------------------------------- /results/69/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/69/map.json -------------------------------------------------------------------------------- /results/69/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/69/scoreboard.json -------------------------------------------------------------------------------- /results/70/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/70/map.json -------------------------------------------------------------------------------- /results/70/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/70/scoreboard.json -------------------------------------------------------------------------------- /results/71/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/71/map.json -------------------------------------------------------------------------------- /results/71/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/71/scoreboard.json -------------------------------------------------------------------------------- /results/72/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/72/map.json -------------------------------------------------------------------------------- /results/72/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/72/scoreboard.json -------------------------------------------------------------------------------- /results/73/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/73/map.json -------------------------------------------------------------------------------- /results/73/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/73/scoreboard.json -------------------------------------------------------------------------------- /results/74/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/74/map.json -------------------------------------------------------------------------------- /results/74/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/74/scoreboard.json -------------------------------------------------------------------------------- /results/75/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/75/map.json -------------------------------------------------------------------------------- /results/75/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/75/scoreboard.json -------------------------------------------------------------------------------- /results/76/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/76/map.json -------------------------------------------------------------------------------- /results/76/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/76/scoreboard.json -------------------------------------------------------------------------------- /results/77/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/77/map.json -------------------------------------------------------------------------------- /results/77/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/77/scoreboard.json -------------------------------------------------------------------------------- /results/78/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/78/map.json -------------------------------------------------------------------------------- /results/78/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/78/scoreboard.json -------------------------------------------------------------------------------- /results/79/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/79/map.json -------------------------------------------------------------------------------- /results/79/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/79/scoreboard.json -------------------------------------------------------------------------------- /results/8/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/8/map.json -------------------------------------------------------------------------------- /results/8/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/8/scoreboard.json -------------------------------------------------------------------------------- /results/80/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/80/map.json -------------------------------------------------------------------------------- /results/80/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/80/scoreboard.json -------------------------------------------------------------------------------- /results/9/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/9/map.json -------------------------------------------------------------------------------- /results/9/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/9/scoreboard.json -------------------------------------------------------------------------------- /results/complete_rounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/complete_rounds.json -------------------------------------------------------------------------------- /results/scoreboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CybersecNatLab/ICC2023-KOTH/HEAD/results/scoreboard.json --------------------------------------------------------------------------------