From b51be4eb27d15164ffcfe9f85efe38b19e872f76 Mon Sep 17 00:00:00 2001 From: Lumine Date: Wed, 11 Oct 2023 16:47:47 +0700 Subject: [PATCH] feat: arcaea support (#951) Co-authored-by: beerpiss --- client/package.json | 4 +- client/src/components/gpt-utils/GPTUtils.tsx | 1 + .../tables/cells/ArcaeaJudgementCell.tsx | 36 + client/src/lib/game-implementations.tsx | 12 +- client/src/lib/games/arcaea.tsx | 103 + client/src/util/scales.ts | 1 + common/src/config/config.ts | 3 + common/src/config/game-support/arcaea.ts | 136 + common/src/config/game-support/chunithm.ts | 4 +- common/src/config/game-support/maimai-dx.ts | 4 +- common/src/constants/game.ts | 46 +- common/src/constants/grade-boundaries.ts | 10 + database-seeds/collections/charts-arcaea.json | 17522 ++++++++++++++++ database-seeds/collections/folders.json | 156 + database-seeds/collections/songs-arcaea.json | 5437 +++++ database-seeds/collections/tables.json | 23 + .../rerunners/arcaea/merge-songlist.ts | 287 + .../arcaea/wikiwiki-arcaea/_README.md | 159 + .../wikiwiki-arcaea/parse-scraped-data.js | 110 + docs/docs/game-support/games/arcaea-Touch.md | 86 + pnpm-lock.yaml | 12 +- server/package.json | 4 +- .../game-implementations.ts | 2 + .../game-implementations/games/arcaea.test.ts | 240 + .../src/game-implementations/games/arcaea.ts | 117 + .../src/lib/migration/migrations/v3-props.ts | 1 + .../src/lib/migration/migrations/v3-scores.ts | 6 + .../src/test-utils/mock-db/charts-arcaea.json | 16 + .../src/test-utils/mock-db/songs-arcaea.json | 22 + .../test-utils/snapshots/snapshot-data.json | 23 +- server/src/test-utils/test-data.ts | 36 + server/test.conf.json5 | 1 + 32 files changed, 24599 insertions(+), 21 deletions(-) create mode 100644 client/src/components/tables/cells/ArcaeaJudgementCell.tsx create mode 100644 client/src/lib/games/arcaea.tsx create mode 100644 common/src/config/game-support/arcaea.ts create mode 100644 database-seeds/collections/charts-arcaea.json create mode 100644 database-seeds/collections/songs-arcaea.json create mode 100644 database-seeds/scripts/rerunners/arcaea/merge-songlist.ts create mode 100644 database-seeds/scripts/rerunners/arcaea/wikiwiki-arcaea/_README.md create mode 100644 database-seeds/scripts/rerunners/arcaea/wikiwiki-arcaea/parse-scraped-data.js create mode 100644 docs/docs/game-support/games/arcaea-Touch.md create mode 100644 server/src/game-implementations/games/arcaea.test.ts create mode 100644 server/src/game-implementations/games/arcaea.ts create mode 100644 server/src/test-utils/mock-db/charts-arcaea.json create mode 100644 server/src/test-utils/mock-db/songs-arcaea.json diff --git a/client/package.json b/client/package.json index dbd6657a6..4c3329b77 100644 --- a/client/package.json +++ b/client/package.json @@ -70,7 +70,7 @@ "react-router-bootstrap": "^0.25.0", "react-router-dom": "5.1.2", "react-select": "^5.6.1", - "rg-stats": "0.5.2", + "rg-stats": "0.5.4", "sync-fetch": "^0.3.1", "tachi-common": "workspace:../common", "vite-plugin-html": "^3.2.0" @@ -89,4 +89,4 @@ "typescript": "4.9.4", "vite": "^3.0.7" } -} \ No newline at end of file +} diff --git a/client/src/components/gpt-utils/GPTUtils.tsx b/client/src/components/gpt-utils/GPTUtils.tsx index 38398dd17..f50f6c7f3 100644 --- a/client/src/components/gpt-utils/GPTUtils.tsx +++ b/client/src/components/gpt-utils/GPTUtils.tsx @@ -8,6 +8,7 @@ import { BMSSieglindeInfoTool } from "./tools/BMSSieglindeInfoTool"; // What utils does each game support? const GPT_UTILS: Record> = { + "arcaea:Touch": [], "bms:7K": [BMSCustomTablesTool, BMSSieglindeInfoTool], "bms:14K": [BMSCustomTablesTool, BMSSieglindeInfoTool], "chunithm:Single": [], diff --git a/client/src/components/tables/cells/ArcaeaJudgementCell.tsx b/client/src/components/tables/cells/ArcaeaJudgementCell.tsx new file mode 100644 index 000000000..69c142a74 --- /dev/null +++ b/client/src/components/tables/cells/ArcaeaJudgementCell.tsx @@ -0,0 +1,36 @@ +import { IsNullish } from "util/misc"; +import React from "react"; +import { COLOUR_SET, PBScoreDocument, ScoreDocument } from "tachi-common"; + +export default function ArcaeaJudgementCell({ + score, +}: { + score: ScoreDocument<"arcaea:Touch"> | PBScoreDocument<"arcaea:Touch">; +}) { + // even if we dont have judgement data, we know what they got. + if (score.scoreData.lamp === "PURE MEMORY") { + return ( + + + 0- + 0 + + + ); + } + + const judgements = score.scoreData.judgements; + + if (IsNullish(judgements.far) || IsNullish(judgements.lost)) { + return No Data.; + } + + return ( + + + {judgements.far}- + {judgements.lost} + + + ); +} diff --git a/client/src/lib/game-implementations.tsx b/client/src/lib/game-implementations.tsx index 3b9b0adea..fd5aa16d9 100644 --- a/client/src/lib/game-implementations.tsx +++ b/client/src/lib/game-implementations.tsx @@ -17,12 +17,13 @@ import RatingCell from "components/tables/cells/RatingCell"; import ScoreCell from "components/tables/cells/ScoreCell"; import WaccaJudgementCell from "components/tables/cells/WACCAJudgementCell"; import React from "react"; -import { CreateRatingSys, bg, bgc } from "./games/_util"; +import { CreateRatingSys, bgc } from "./games/_util"; import { BMS_14K_IMPL, BMS_7K_IMPL, PMS_IMPL } from "./games/bms-pms"; import { IIDX_DP_IMPL, IIDX_SP_IMPL } from "./games/iidx"; import { GPTClientImplementation } from "./types"; import { SDVX_IMPL, USC_IMPL } from "./games/sdvx-usc"; import { GITADORA_DORA_IMPL, GITADORA_GITA_IMPL } from "./games/gitadora"; +import { ARCAEA_TOUCH_IMPL } from "./games/arcaea"; type GPTClientImplementations = { [GPT in GPTString]: GPTClientImplementation; @@ -389,8 +390,8 @@ export const GPT_CLIENT_IMPLEMENTATIONS: GPTClientImplementations = { background: "linear-gradient(-45deg, #f0788a, #f48fb1, #9174c2, #79bcf2, #70a173, #f7ff99, #faca7d, #ff9d80, #f0788a)", color: "var(--bs-dark)", - } - } + }, + }, }, difficultyColours: { Basic: COLOUR_SET.green, @@ -706,8 +707,8 @@ export const GPT_CLIENT_IMPLEMENTATIONS: GPTClientImplementations = { {chart.data.rankedLevel === null ? "Unranked Chart." : sc.calculatedData.blockRating === null - ? "Failed" - : sc.calculatedData.blockRating} + ? "Failed" + : sc.calculatedData.blockRating} ) : ( @@ -716,6 +717,7 @@ export const GPT_CLIENT_IMPLEMENTATIONS: GPTClientImplementations = { ), }, + "arcaea:Touch": ARCAEA_TOUCH_IMPL, "gitadora:Dora": GITADORA_DORA_IMPL, "gitadora:Gita": GITADORA_GITA_IMPL, "bms:14K": BMS_14K_IMPL, diff --git a/client/src/lib/games/arcaea.tsx b/client/src/lib/games/arcaea.tsx new file mode 100644 index 000000000..802c7d817 --- /dev/null +++ b/client/src/lib/games/arcaea.tsx @@ -0,0 +1,103 @@ +import { NumericSOV } from "util/sorts"; +import { GPTClientImplementation } from "lib/types"; +import { COLOUR_SET, GPTStrings } from "tachi-common"; +import MillionsScoreCell from "components/tables/cells/MillionsScoreCell"; +import { GetEnumColour } from "lib/game-implementations"; +import ArcaeaJudgementCell from "components/tables/cells/ArcaeaJudgementCell"; +import RatingCell from "components/tables/cells/RatingCell"; +import LampCell from "components/tables/cells/LampCell"; +import React from "react"; +import { bgc } from "./_util"; + +const ARCAEA_DIFFICULTY_COLORS: GPTClientImplementation["difficultyColours"] = + { + Past: COLOUR_SET.paleBlue, + Present: COLOUR_SET.paleGreen, + Future: COLOUR_SET.purple, + Beyond: COLOUR_SET.vibrantRed, + }; + +const ARCAEA_ENUM_COLORS: GPTClientImplementation["enumColours"] = { + lamp: { + LOST: COLOUR_SET.red, + "EASY CLEAR": COLOUR_SET.green, + CLEAR: COLOUR_SET.purple, + "HARD CLEAR": COLOUR_SET.vibrantRed, + "FULL RECALL": COLOUR_SET.vibrantPurple, + "PURE MEMORY": COLOUR_SET.vibrantBlue, + }, + grade: { + D: COLOUR_SET.red, + C: COLOUR_SET.maroon, + B: COLOUR_SET.purple, + A: COLOUR_SET.vibrantPurple, + AA: COLOUR_SET.blue, + EX: COLOUR_SET.vibrantBlue, + "EX+": COLOUR_SET.teal, + }, +}; + +const ARCAEA_COLORS: GPTClientImplementation["classColours"] = { + badge: { + BLUE: bgc("midnightblue", "var(--bs-light)"), + GREEN: bgc("darkgreen", "var(--bs-light)"), + ASH_PURPLE: bgc("indigo", "var(--bs-light)"), + PURPLE: bgc("purple", "var(--bs-light)"), + RED: bgc("darkred", "var(--bs-light)"), + ONE_STAR: bgc("crimson", "var(--bs-light)"), + TWO_STARS: bgc("darkmagenta", "var(--bs-light)"), + THREE_STARS: bgc("firebrick", "var(--bs-light)"), + }, + courseBanner: { + PHASE_1: bgc("aliceblue", "var(--bs-dark)"), + PHASE_2: bgc("lightskyblue", "var(--bs-dark)"), + PHASE_3: bgc("lightblue", "var(--bs-dark)"), + PHASE_4: bgc("midnightblue", "var(--bs-light)"), + PHASE_5: bgc("plum", "var(--bs-dark)"), + PHASE_6: bgc("violet", "var(--bs-dark)"), + PHASE_7: bgc("orchid", "var(--bs-dark)"), + PHASE_8: bgc("purple", "var(--bs-light)"), + PHASE_9: bgc("indigo", "var(--bs-light)"), + PHASE_10: bgc("firebrick", "var(--bs-light)"), + PHASE_11: bgc("darkred", "var(--bs-light)"), + }, +}; + +const ARCAEA_SCORE_HEADERS: GPTClientImplementation["scoreHeaders"] = [ + ["Score", "Score", NumericSOV((x) => x.scoreData.score)], + ["Far - Lost", "Far - Lost", NumericSOV((x) => x.scoreData.score)], + ["Lamp", "Lamp", NumericSOV((x) => x.scoreData.enumIndexes.lamp)], +]; + +const ArcaeaCoreCells: GPTClientImplementation["scoreCoreCells"] = ({ + sc, +}) => ( + <> + + + + +); + +const ArcaeaRatingCell: GPTClientImplementation["ratingCell"] = ({ + sc, + rating, +}) => ; + +export const ARCAEA_TOUCH_IMPL: GPTClientImplementation<"arcaea:Touch"> = { + ratingSystems: [], + enumIcons: { + grade: "sort-alpha-up", + lamp: "lightbulb", + }, + enumColours: ARCAEA_ENUM_COLORS, + classColours: ARCAEA_COLORS, + difficultyColours: ARCAEA_DIFFICULTY_COLORS, + scoreHeaders: ARCAEA_SCORE_HEADERS, + scoreCoreCells: ArcaeaCoreCells, + ratingCell: ArcaeaRatingCell, +}; diff --git a/client/src/util/scales.ts b/client/src/util/scales.ts index 92d7b618c..bb126809d 100644 --- a/client/src/util/scales.ts +++ b/client/src/util/scales.ts @@ -15,6 +15,7 @@ const scales: Record = { popn: 4, jubeat: 5, itg: 5, + arcaea: 1, }; export function GetGradeChartExpScale(game: Game) { diff --git a/common/src/config/config.ts b/common/src/config/config.ts index 50c1d5d96..880228c6d 100644 --- a/common/src/config/config.ts +++ b/common/src/config/config.ts @@ -1,5 +1,6 @@ /* eslint-disable lines-around-comment */ +import { ARCAEA_CONF, ARCAEA_TOUCH_CONF } from "./game-support/arcaea"; import { BMS_14K_CONF, BMS_7K_CONF, BMS_CONF } from "./game-support/bms"; import { CHUNITHM_CONF, CHUNITHM_SINGLE_CONF } from "./game-support/chunithm"; import { GITADORA_CONF, GITADORA_DORA_CONF, GITADORA_GITA_CONF } from "./game-support/gitadora"; @@ -46,6 +47,7 @@ export const GAME_CONFIGS = { wacca: WACCA_CONF, pms: PMS_CONF, itg: ITG_CONF, + arcaea: ARCAEA_CONF, } as const satisfies Record; /** @@ -92,6 +94,7 @@ export const GAME_PT_CONFIGS = { "usc:Controller": USC_CONTROLLER_CONF, "usc:Keyboard": USC_KEYBOARD_CONF, "itg:Stamina": ITG_STAMINA_CONF, + "arcaea:Touch": ARCAEA_TOUCH_CONF, } as const satisfies Record; /** diff --git a/common/src/config/game-support/arcaea.ts b/common/src/config/game-support/arcaea.ts new file mode 100644 index 000000000..993e3f968 --- /dev/null +++ b/common/src/config/game-support/arcaea.ts @@ -0,0 +1,136 @@ +import { FAST_SLOW_MAXCOMBO } from "./_common"; +import { FmtNum } from "../../utils/util"; +import { ClassValue, ToDecimalPlaces, zodNonNegativeInt } from "../config-utils"; +import { z } from "zod"; +import type { INTERNAL_GAME_CONFIG, INTERNAL_GAME_PT_CONFIG } from "../../types/internals"; + +export const ARCAEA_CONF = { + name: "Arcaea", + // Potential future controller playtype support? + playtypes: ["Touch"], + songData: z.strictObject({ + displayVersion: z.string(), + songPack: z.string(), + }), +} as const satisfies INTERNAL_GAME_CONFIG; + +const ArcaeaBadges = [ + ClassValue("BLUE", "Blue", "0.00 - 3.49 Potential"), + ClassValue("GREEN", "Green", "3.50 - 6.99 Potential"), + ClassValue("ASH_PURPLE", "Ash Purple", "7.00 - 9.99 Potential"), + ClassValue("PURPLE", "Purple", "10.00 - 10.99 Potential"), + ClassValue("RED", "Red", "11.00 - 11.99 Potential"), + ClassValue("ONE_STAR", "☆", "12.00 - 12.49 Potential"), + ClassValue("TWO_STARS", "☆☆", "12.50 - 12.99 Potential"), + ClassValue("THREE_STARS", "☆☆☆", ">=13.00 Potential"), +]; + +const ArcaeaClasses = [ + ClassValue("PHASE_1", "Phase 1", "First Step in a New World"), + ClassValue("PHASE_2", "Phase 2", "Swept up in a Heartbeat"), + ClassValue("PHASE_3", "Phase 3", "Unceasing Spirit"), + ClassValue("PHASE_4", "Phase 4", "The Eternal Realm of Light"), + ClassValue("PHASE_5", "Phase 5", "The Brutality of Glass"), + ClassValue("PHASE_6", "Phase 6", "In Grief and Great Delight"), + ClassValue("PHASE_7", "Phase 7", "On Fate's Approach"), + ClassValue("PHASE_8", "Phase 8", "The Disfigured Flow of Time"), + ClassValue("PHASE_9", "Phase 9", "Ego's Demise"), + ClassValue("PHASE_10", "Phase 10", "A Torrent of Light and Conflict"), + ClassValue("PHASE_11", "Phase 11", "Radiant Genesis"), +]; + +export const ARCAEA_TOUCH_CONF = { + providedMetrics: { + score: { + type: "INTEGER", + chartDependentMax: true, + formatter: FmtNum, + description: + "The score value. This is between 0 and 10 million, plus bonus points dependent on how many shiny PUREs you get.", + }, + lamp: { + type: "ENUM", + values: ["LOST", "EASY CLEAR", "CLEAR", "HARD CLEAR", "FULL RECALL", "PURE MEMORY"], + minimumRelevantValue: "EASY CLEAR", + description: "The type of clear this was.", + }, + }, + + derivedMetrics: { + grade: { + type: "ENUM", + values: ["D", "C", "B", "A", "AA", "EX", "EX+"], + minimumRelevantValue: "AA", + description: "The grade this score was.", + }, + }, + + defaultMetric: "score", + preferredDefaultEnum: "grade", + + optionalMetrics: FAST_SLOW_MAXCOMBO, + + scoreRatingAlgs: { + potential: { + description: "Potential as it is implemented in Arcaea.", + formatter: ToDecimalPlaces(2), + }, + }, + sessionRatingAlgs: { + naivePotential: { + description: "The average of your best 10 potentials this session.", + formatter: ToDecimalPlaces(2), + }, + }, + profileRatingAlgs: { + naivePotential: { + description: + "The average of your best 30 potential values. This is different to in-game, as it does not take into account your recent scores in any way.", + formatter: ToDecimalPlaces(2), + }, + }, + + defaultScoreRatingAlg: "potential", + defaultSessionRatingAlg: "naivePotential", + defaultProfileRatingAlg: "naivePotential", + + difficulties: { + type: "FIXED", + order: ["Past", "Present", "Future", "Beyond"], + shorthand: { + Past: "PST", + Present: "PRS", + Future: "FTR", + Beyond: "BYD", + }, + default: "Future", + }, + + classes: { + badge: { + type: "DERIVED", + values: ArcaeaBadges, + }, + courseBanner: { + type: "PROVIDED", + values: ArcaeaClasses, + }, + }, + + orderedJudgements: ["pure", "far", "lost"], + + versions: { + mobile: "Mobile", + switch: "Nintendo Switch", + }, + + chartData: z.strictObject({ + inGameID: z.string(), + notecount: zodNonNegativeInt, + }), + + preferences: z.strictObject({}), + scoreMeta: z.strictObject({}), + + supportedMatchTypes: ["songTitle", "tachiSongID"], +} as const satisfies INTERNAL_GAME_PT_CONFIG; diff --git a/common/src/config/game-support/chunithm.ts b/common/src/config/game-support/chunithm.ts index 511bbe404..4c15b4955 100644 --- a/common/src/config/game-support/chunithm.ts +++ b/common/src/config/game-support/chunithm.ts @@ -34,7 +34,7 @@ export const CHUNITHMClasses = [ ClassValue("DAN_IV", "IV", "Class IV"), ClassValue("DAN_V", "V", "Class V"), ClassValue("DAN_INFINITE", "∞", "Infinite Class"), -] +]; export const CHUNITHM_SINGLE_CONF = { providedMetrics: { @@ -133,7 +133,7 @@ export const CHUNITHM_SINGLE_CONF = { emblem: { type: "PROVIDED", values: CHUNITHMClasses, - } + }, }, orderedJudgements: ["jcrit", "justice", "attack", "miss"], diff --git a/common/src/config/game-support/maimai-dx.ts b/common/src/config/game-support/maimai-dx.ts index 719ef1cda..5c538f45b 100644 --- a/common/src/config/game-support/maimai-dx.ts +++ b/common/src/config/game-support/maimai-dx.ts @@ -89,7 +89,7 @@ const MaimaiDXMatchingClasses = [ ClassValue("SSS1", "SSS1"), ClassValue("LEGEND", "Legend"), -] +]; export const MAIMAI_DX_SINGLE_CONF = { providedMetrics: { @@ -203,7 +203,7 @@ export const MAIMAI_DX_SINGLE_CONF = { matchingClass: { type: "PROVIDED", values: MaimaiDXMatchingClasses, - } + }, }, orderedJudgements: ["pcrit", "perfect", "great", "good", "miss"], diff --git a/common/src/constants/game.ts b/common/src/constants/game.ts index 1097f6908..f62d6950c 100644 --- a/common/src/constants/game.ts +++ b/common/src/constants/game.ts @@ -511,4 +511,48 @@ export enum MAIMAIDX_MATCHING_CLASSES { SSS1 = 24, LEGEND = 25, -} \ No newline at end of file +} + +export enum ARCAEA_BADGES { + BLUE = 0, + GREEN = 1, + ASH_PURPLE = 2, + PURPLE = 3, + RED = 4, + ONE_STAR = 5, + TWO_STARS = 6, + THREE_STARS = 7, +} + +export enum ARCAEA_GRADES { + D = 0, + C = 1, + B = 2, + A = 3, + AA = 4, + EX = 5, + EX_PLUS = 6, +} + +export enum ARCAEA_LAMPS { + LOST = 0, + EASY_CLEAR = 1, + CLEAR = 2, + HARD_CLEAR = 3, + FULL_RECALL = 4, + PURE_MEMORY = 5, +} + +export enum ARCAEA_COURSE_BANNERS { + PHASE_1 = 0, + PHASE_2 = 1, + PHASE_3 = 2, + PHASE_4 = 3, + PHASE_5 = 4, + PHASE_6 = 5, + PHASE_7 = 6, + PHASE_8 = 7, + PHASE_9 = 8, + PHASE_10 = 9, + PHASE_11 = 10, +} diff --git a/common/src/constants/grade-boundaries.ts b/common/src/constants/grade-boundaries.ts index b4afb9e46..bc62f12ca 100644 --- a/common/src/constants/grade-boundaries.ts +++ b/common/src/constants/grade-boundaries.ts @@ -197,3 +197,13 @@ export const SDVXLIKE_GBOUNDARIES = MakeGradeBoundaries>({ + D: 0, + C: 8_600_000, + B: 8_900_000, + A: 9_200_000, + AA: 9_500_000, + EX: 9_800_000, + "EX+": 9_900_000, +}); diff --git a/database-seeds/collections/charts-arcaea.json b/database-seeds/collections/charts-arcaea.json new file mode 100644 index 000000000..9ab4d3fbe --- /dev/null +++ b/database-seeds/collections/charts-arcaea.json @@ -0,0 +1,17522 @@ +[ + { + "chartID": "94197cdd2d3a002dbfa0e8e66e700da9e88adef4", + "data": { + "inGameID": "sayonarahatsukoi", + "notecount": 666 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 1, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cb4112524b2299deb500a098dadf8fddb506b164", + "data": { + "inGameID": "sayonarahatsukoi", + "notecount": 205 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1.5, + "playtype": "Touch", + "songID": 1, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9d95f9890664e3b3d5276431316c9ce1f4daa144", + "data": { + "inGameID": "sayonarahatsukoi", + "notecount": 305 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 1, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f0becc8367f0e0131941f6cc6da431b5fcdd0aa3", + "data": { + "inGameID": "lostcivilization", + "notecount": 1061 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 2, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5e2a983c5aefdebef10a51c66225f9c49913c142", + "data": { + "inGameID": "lostcivilization", + "notecount": 986 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 2, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fd9e4423cd0b178d524f25fccb2259c1166b8ef5", + "data": { + "inGameID": "lostcivilization", + "notecount": 462 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 2, + "versions": [ + "mobile" + ] + }, + { + "chartID": "349a0c81b8bf60162e3e9b20e5414165d88cb8da", + "data": { + "inGameID": "lostcivilization", + "notecount": 690 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 2, + "versions": [ + "mobile" + ] + }, + { + "chartID": "292b26b425e26fef07355223476aac9b620b29df", + "data": { + "inGameID": "goodtek", + "notecount": 1103 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 3, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a45b50ff0fbe91d232e051bfd7050a8799586b7e", + "data": { + "inGameID": "goodtek", + "notecount": 968 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 3, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c8be97e5cf2ce25040c18025176074163b473b79", + "data": { + "inGameID": "goodtek", + "notecount": 449 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 3, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d7bcc705c2e91185208384e587c08dd1fc442913", + "data": { + "inGameID": "goodtek", + "notecount": 632 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 3, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5160d836dd58ac4f6b7f5b4782e15e61b9710db6", + "data": { + "inGameID": "viyella", + "notecount": 791 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 4, + "versions": [ + "mobile" + ] + }, + { + "chartID": "284ca5ba8a584a5aa7436bfe9c221a67fe763397", + "data": { + "inGameID": "viyella", + "notecount": 414 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 4, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1eb8852f0d834c718ffb8c922ade59123e433aa5", + "data": { + "inGameID": "viyella", + "notecount": 492 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 4, + "versions": [ + "mobile" + ] + }, + { + "chartID": "29412ffab50654f49d9eb60d76ca1bba05d20930", + "data": { + "inGameID": "rise", + "notecount": 788 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 5, + "versions": [ + "mobile" + ] + }, + { + "chartID": "842ac5f86cd7ca87be1dd69887ba30b5a075ee0a", + "data": { + "inGameID": "rise", + "notecount": 322 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 5, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c0b245f12ea08e8b917db890b5f8c19fb72aa9b8", + "data": { + "inGameID": "rise", + "notecount": 599 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 5, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f0f1d18e2f81dd9df26afe379aac18374f306772", + "data": { + "inGameID": "lucifer", + "notecount": 861 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.2, + "playtype": "Touch", + "songID": 6, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4ed66271cb31b4bc4004acd200f1c991e2fd3dbc", + "data": { + "inGameID": "lucifer", + "notecount": 424 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 6, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2153b680dfaa506c4a69de26cedbd9654563d0cb", + "data": { + "inGameID": "lucifer", + "notecount": 506 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 6, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1f180fdc666a310654658a2a028f66502780e290", + "data": { + "inGameID": "fairytale", + "notecount": 932 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 7, + "versions": [ + "mobile" + ] + }, + { + "chartID": "454461c39ff91127f5dcc8db370a42339577464e", + "data": { + "inGameID": "fairytale", + "notecount": 782 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 7, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b1b157f99905fbb8d184a182683cedc88735a0b3", + "data": { + "inGameID": "fairytale", + "notecount": 336 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "Touch", + "songID": 7, + "versions": [ + "mobile" + ] + }, + { + "chartID": "078d77a9f13669c1196a11f081696a74c6f9e84f", + "data": { + "inGameID": "fairytale", + "notecount": 511 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 7, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c46b7f643dfc445bd86d483072f58f838fd2f360", + "data": { + "inGameID": "hearditsaid", + "notecount": 864 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.1, + "playtype": "Touch", + "songID": 8, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c569757d5e315b66fc547a4b6bda0975612095b5", + "data": { + "inGameID": "hearditsaid", + "notecount": 510 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 8, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f1c79bd5a15748f9006d5d273719ccaa56431546", + "data": { + "inGameID": "hearditsaid", + "notecount": 664 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 8, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1d255efeeb42c598d57ee27b5543c8593ff12fec", + "data": { + "inGameID": "babaroque", + "notecount": 808 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 9, + "versions": [ + "mobile" + ] + }, + { + "chartID": "be71c4269786b46fadf46cd21a896016cbc4d4aa", + "data": { + "inGameID": "babaroque", + "notecount": 402 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 9, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1389daa58fc5e623ab6009c39b83b3960ff470fd", + "data": { + "inGameID": "babaroque", + "notecount": 645 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 9, + "versions": [ + "mobile" + ] + }, + { + "chartID": "85da18fd30d1fe2ae42538571d02dd9f84c7dac6", + "data": { + "inGameID": "memoryfactory", + "notecount": 672 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.9, + "playtype": "Touch", + "songID": 10, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8a0a41253470630ca98db6f6b03bf5f551741511", + "data": { + "inGameID": "memoryfactory", + "notecount": 308 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 10, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d0775db8e9e6e1150d8a3372f471cda95350d618", + "data": { + "inGameID": "memoryfactory", + "notecount": 448 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 10, + "versions": [ + "mobile" + ] + }, + { + "chartID": "afdecb40db294c1243d06d96fd37e65b462cc2a2", + "data": { + "inGameID": "snowwhite", + "notecount": 978 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 11, + "versions": [ + "mobile" + ] + }, + { + "chartID": "277feb3e3ff01fb108a576cf9a0f3648283f0520", + "data": { + "inGameID": "snowwhite", + "notecount": 486 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 11, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6bac95cde243209061f9b47b7589ea9e5b73fdd5", + "data": { + "inGameID": "snowwhite", + "notecount": 672 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 11, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7bbb6eb7363cf3a941148eaad3e3593cd6d6c470", + "data": { + "inGameID": "relentless", + "notecount": 1015 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "Touch", + "songID": 12, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4160394695c73217a1c69ef464d638f87c5be936", + "data": { + "inGameID": "relentless", + "notecount": 607 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 12, + "versions": [ + "mobile" + ] + }, + { + "chartID": "671cc2af317a47f620e917928b7b417f89b71a19", + "data": { + "inGameID": "relentless", + "notecount": 722 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 12, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6de80c703b255d9fcb6cb80106c32dbf1f60e2b6", + "data": { + "inGameID": "shadesoflight", + "notecount": 1042 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "Touch", + "songID": 13, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ca4dc78989a6ee936b85c1bc76ae9d74c3004fb2", + "data": { + "inGameID": "shadesoflight", + "notecount": 1067 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 13, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e43782aa2e47bd5eda475ad416bc1fe2a681654e", + "data": { + "inGameID": "shadesoflight", + "notecount": 517 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 13, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5511d4bd67fbef863e12a8ab7add91b625dfaa26", + "data": { + "inGameID": "shadesoflight", + "notecount": 789 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 13, + "versions": [ + "mobile" + ] + }, + { + "chartID": "59d6e90c392d27c38b6542ca52dee94c684034e6", + "data": { + "inGameID": "vexaria", + "notecount": 785 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 14, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8d168393a549c38b85c7f1b179efa741ec45815b", + "data": { + "inGameID": "vexaria", + "notecount": 734 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 14, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7cec39c1c30ebfd2b934ebb52c139ed1dd559928", + "data": { + "inGameID": "vexaria", + "notecount": 369 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 14, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bbc5ff0d083b80f8c14db084fd756dca3010a342", + "data": { + "inGameID": "vexaria", + "notecount": 534 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 14, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4b34b1d58316a2b1675782247302deb45ba610c8", + "data": { + "inGameID": "essenceoftwilight", + "notecount": 1204 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 15, + "versions": [ + "mobile" + ] + }, + { + "chartID": "37f665b190523723714cc66b546e19860b3600d7", + "data": { + "inGameID": "essenceoftwilight", + "notecount": 556 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 15, + "versions": [ + "mobile" + ] + }, + { + "chartID": "031a313296ace1ec2a85f61e6bb2f753a51003f8", + "data": { + "inGameID": "essenceoftwilight", + "notecount": 767 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 15, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9c369d3219967916316ba46ea734ab07e8c2d708", + "data": { + "inGameID": "qualia", + "notecount": 1288 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 16, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a2dcb987da83c2c19bcee0e02155947807a33824", + "data": { + "inGameID": "qualia", + "notecount": 1022 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 16, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e298d7ecc1b3567c9e057238b3f79c1a805537c4", + "data": { + "inGameID": "qualia", + "notecount": 550 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 16, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ec1f6c82d4d1c9b77a829834d85eecbbd1c0f391", + "data": { + "inGameID": "qualia", + "notecount": 875 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 16, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5d23b1788188746518b3371e3ec2b2bd5ed22ca5", + "data": { + "inGameID": "pragmatism", + "notecount": 942 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.1, + "playtype": "Touch", + "songID": 17, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5741caf08e19d6b0bcf480a2f365b36992671dea", + "data": { + "inGameID": "pragmatism", + "notecount": 476 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 17, + "versions": [ + "mobile" + ] + }, + { + "chartID": "31bc4974f123fde7c8b03c89760105fe694fe9a2", + "data": { + "inGameID": "pragmatism", + "notecount": 855 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.6, + "playtype": "Touch", + "songID": 17, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3bc66e2b592349f623b3cfe695adc3b7cbfaa47b", + "data": { + "inGameID": "pragmatism", + "notecount": 1502 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "Touch", + "songID": 18, + "versions": [ + "mobile" + ] + }, + { + "chartID": "48de13e0be17a282eed6ef97e6e1478eb59bc55e", + "data": { + "inGameID": "sheriruth", + "notecount": 1151 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.1, + "playtype": "Touch", + "songID": 19, + "versions": [ + "mobile" + ] + }, + { + "chartID": "20e34f6605218199b12c32d50357bec3e887ab63", + "data": { + "inGameID": "sheriruth", + "notecount": 611 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 19, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5f76f7d9cb6553d926d2ae28e1ff1f048d8c2a34", + "data": { + "inGameID": "sheriruth", + "notecount": 832 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 19, + "versions": [ + "mobile" + ] + }, + { + "chartID": "04ddfba6bb85192a2892bc4f1498778ddeac2a8c", + "data": { + "inGameID": "lumia", + "notecount": 814 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 20, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b8f23cfe8329394ac70a015c99491e0727c50d65", + "data": { + "inGameID": "lumia", + "notecount": 961 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 20, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e59c8ea268f5999bf1ab4a9b11374e6436991ff8", + "data": { + "inGameID": "lumia", + "notecount": 469 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 20, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6b82d83af776cd9fc42dd168a69475cbfe3b4b09", + "data": { + "inGameID": "lumia", + "notecount": 438 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 20, + "versions": [ + "mobile" + ] + }, + { + "chartID": "768b2924db059ee1e6fc82f0d5b48244c6cce459", + "data": { + "inGameID": "dement", + "notecount": 1040 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 21, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7f5d76c42137cf42b35b0d50acd1f2bbd99b0b85", + "data": { + "inGameID": "dement", + "notecount": 970 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 21, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bf74e2fd01f2290f913509938a97c1b8cf4f0b42", + "data": { + "inGameID": "dement", + "notecount": 548 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 21, + "versions": [ + "mobile" + ] + }, + { + "chartID": "875ed0d9f4f0a20c9a125b62de91a872c56fee21", + "data": { + "inGameID": "dement", + "notecount": 756 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 21, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2654b87a1b178f7b0e354bc40edec9c888d9d694", + "data": { + "inGameID": "dandelion", + "notecount": 921 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 22, + "versions": [ + "mobile" + ] + }, + { + "chartID": "df91261b2a1e0194f12a6dfe112b3c1fb383f47e", + "data": { + "inGameID": "dandelion", + "notecount": 391 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 22, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cb27e5f8df842061d869df9e0e37792baa20cf96", + "data": { + "inGameID": "dandelion", + "notecount": 698 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 22, + "versions": [ + "mobile" + ] + }, + { + "chartID": "98b7f232de1401b8da697318c4b9e29818659a6b", + "data": { + "inGameID": "anokumene", + "notecount": 851 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 23, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0c370a8c37ac07741434669a2b1219a045d782c2", + "data": { + "inGameID": "anokumene", + "notecount": 412 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 23, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ad06a01f2153cf1ccf2d0387ae41d901e69f7dec", + "data": { + "inGameID": "anokumene", + "notecount": 588 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 23, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a6806a8295acb54b2e2a5d90fbd5a1611299e0d8", + "data": { + "inGameID": "infinityheaven", + "notecount": 986 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 24, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a91cb464429a89fb2b9440bbe5f4a24728683868", + "data": { + "inGameID": "infinityheaven", + "notecount": 853 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 24, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f828a3bbc9d0d04e41fd219ba85c166388683907", + "data": { + "inGameID": "infinityheaven", + "notecount": 336 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1.5, + "playtype": "Touch", + "songID": 24, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fc5f877bce6914c72269f418da9a602838987031", + "data": { + "inGameID": "infinityheaven", + "notecount": 545 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 24, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e6e44009a1eab08003ababbe1396d770ec974f05", + "data": { + "inGameID": "partyvinyl", + "notecount": 946 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10", + "levelNum": 10.1, + "playtype": "Touch", + "songID": 25, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c8efa3bc27e7152b8c67f6225513fc5a404bf9eb", + "data": { + "inGameID": "partyvinyl", + "notecount": 800 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 25, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9831a36744b3d932925978fd14212cde4bbc54d7", + "data": { + "inGameID": "partyvinyl", + "notecount": 337 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 25, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2a9a232641cddfbcc9847f24c5be7b900a6f6c49", + "data": { + "inGameID": "partyvinyl", + "notecount": 543 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 25, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d38de7c42b01b434558e96ff89cd02ef1e1ced62", + "data": { + "inGameID": "flashback", + "notecount": 856 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 26, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3156f8cccb5eb7b0e11c49f8c2d5c89b1bfaaab2", + "data": { + "inGameID": "flashback", + "notecount": 356 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 26, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ff4a28e51552e31f4f1564183c98df48f7612f89", + "data": { + "inGameID": "flashback", + "notecount": 488 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 26, + "versions": [ + "mobile" + ] + }, + { + "chartID": "94a3435224ab008e911af22cd7aa581c4b3e5b3d", + "data": { + "inGameID": "flyburg", + "notecount": 930 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "Touch", + "songID": 27, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c529bcf5e0e3d3c17f31dad608723743455e9b15", + "data": { + "inGameID": "flyburg", + "notecount": 413 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 27, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4867e3c1f03b3471765ce73ec5649529e30cad9d", + "data": { + "inGameID": "flyburg", + "notecount": 650 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 27, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ab8450a847f819e192a75e1863e7588f2bd78a9d", + "data": { + "inGameID": "nirvluce", + "notecount": 980 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.3, + "playtype": "Touch", + "songID": 28, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d88f5240bbad33f720c41a5bfa7e1a487025176c", + "data": { + "inGameID": "nirvluce", + "notecount": 297 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 28, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cb866510d1b0cf68081734e42e62eed764d8d7ae", + "data": { + "inGameID": "nirvluce", + "notecount": 547 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 28, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dc04e752082e363028bcf38ea3d12529e13993d4", + "data": { + "inGameID": "paradise", + "notecount": 729 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 29, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2712fb5b9d6145c556a7a15b6afa92197f75a06f", + "data": { + "inGameID": "paradise", + "notecount": 253 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "Touch", + "songID": 29, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3f8f4491617da5f931e25f8c19a917a6fc17882e", + "data": { + "inGameID": "paradise", + "notecount": 349 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 29, + "versions": [ + "mobile" + ] + }, + { + "chartID": "34c13cf63d7cce89afd648a4af4c5fae7bbfb83f", + "data": { + "inGameID": "brandnewworld", + "notecount": 787 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 30, + "versions": [ + "mobile" + ] + }, + { + "chartID": "65d568927d5541bcd3046db110db7a350830e9b4", + "data": { + "inGameID": "brandnewworld", + "notecount": 322 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 30, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8e82341d822f820dc185b46679932b7d28aacfe9", + "data": { + "inGameID": "brandnewworld", + "notecount": 432 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 30, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f04720ab949ac1b4f78b7543f9de64c0cd0da4b8", + "data": { + "inGameID": "dataerror", + "notecount": 955 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 31, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e2aec16ee0838d6867207b4c4135bcf6348fc112", + "data": { + "inGameID": "dataerror", + "notecount": 502 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 31, + "versions": [ + "mobile" + ] + }, + { + "chartID": "09795a1493410d85407540371b04d2c27003fe68", + "data": { + "inGameID": "dataerror", + "notecount": 785 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 31, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6bb9606c87045d5ee08c730df4bb025d618453c1", + "data": { + "inGameID": "crosssoul", + "notecount": 1081 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 32, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9fa8bcfcb1b71af1a1fac5ad39898695d5723be1", + "data": { + "inGameID": "crosssoul", + "notecount": 606 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 32, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d106c63ff401752c892b23e2c9833235abb1547d", + "data": { + "inGameID": "crosssoul", + "notecount": 823 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 32, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b18fa5f185a1022f3a4972a4b6683498eaee54db", + "data": { + "inGameID": "yourvoiceso", + "notecount": 1013 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 33, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9c4f1980aaacaa8e10c8d0ef67d285ae2d72fa41", + "data": { + "inGameID": "yourvoiceso", + "notecount": 469 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 33, + "versions": [ + "mobile" + ] + }, + { + "chartID": "607206b339b7559b9f469e0faa789c53e86d8fb7", + "data": { + "inGameID": "yourvoiceso", + "notecount": 677 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 33, + "versions": [ + "mobile" + ] + }, + { + "chartID": "32aefd4688f91d2ad057c405ae539a0ce546a0b4", + "data": { + "inGameID": "chronostasis", + "notecount": 916 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.9, + "playtype": "Touch", + "songID": 34, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cbc51e3e57112c8fa1395b48d853681913b88a71", + "data": { + "inGameID": "chronostasis", + "notecount": 619 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 34, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8fd2bb4f984078d15e6adf29c191ae6610190602", + "data": { + "inGameID": "chronostasis", + "notecount": 812 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 34, + "versions": [ + "mobile" + ] + }, + { + "chartID": "137f169af3321e9f51f2807b9a646aee9e63fdcc", + "data": { + "inGameID": "kanagawa", + "notecount": 1121 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 35, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2e3861e1ac8c43ad7425d4e48898ba38e69b2df2", + "data": { + "inGameID": "kanagawa", + "notecount": 1111 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "Touch", + "songID": 35, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f61fc5e10ffa901d32ce165137ab065f9ad389ab", + "data": { + "inGameID": "kanagawa", + "notecount": 375 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "Touch", + "songID": 35, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b39f7733f590963e1e1443297808c956db750ea5", + "data": { + "inGameID": "kanagawa", + "notecount": 707 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 35, + "versions": [ + "mobile" + ] + }, + { + "chartID": "99487ab7e99d4a216ec31a1ddfda88c8a2d15b73", + "data": { + "inGameID": "moonlightofsandcastle", + "notecount": 645 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 36, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4dc994f124fa051e3aa37e1a6d2f905dd68b4e81", + "data": { + "inGameID": "moonlightofsandcastle", + "notecount": 418 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1.5, + "playtype": "Touch", + "songID": 36, + "versions": [ + "mobile" + ] + }, + { + "chartID": "344234e122df4f0caac24f8a6c93e7bdb6ce9e5c", + "data": { + "inGameID": "moonlightofsandcastle", + "notecount": 394 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 36, + "versions": [ + "mobile" + ] + }, + { + "chartID": "35bbd3c9cd519048ee21484a6824881d2e458f1b", + "data": { + "inGameID": "reconstruction", + "notecount": 825 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 37, + "versions": [ + "mobile" + ] + }, + { + "chartID": "aa2a489d4f55a26b229cf6e1efb7ca0234817a36", + "data": { + "inGameID": "reconstruction", + "notecount": 347 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 37, + "versions": [ + "mobile" + ] + }, + { + "chartID": "48943c0e77b84a1dbd2c7729114afd7654bf6e89", + "data": { + "inGameID": "reconstruction", + "notecount": 469 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 37, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e33e9d394a5d4f94ad8f568f6c3b8f75b1aa218e", + "data": { + "inGameID": "evoltex", + "notecount": 775 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.9, + "playtype": "Touch", + "songID": 38, + "versions": [ + "mobile" + ] + }, + { + "chartID": "743480a82195f331b0b7c2ac3322a4730fe9ebd0", + "data": { + "inGameID": "evoltex", + "notecount": 297 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 38, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f6ca94db258de118c6b9de206c46b0e721e90d9f", + "data": { + "inGameID": "evoltex", + "notecount": 627 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 38, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dd1938a81a4178e2953ad270729495f8750e99f5", + "data": { + "inGameID": "oracle", + "notecount": 963 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 39, + "versions": [ + "mobile" + ] + }, + { + "chartID": "08679c3fd31db49ade06ba222825dfd8ecaf6528", + "data": { + "inGameID": "oracle", + "notecount": 425 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 39, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f96b437e348dfbbd02e60cb0557da173bad66940", + "data": { + "inGameID": "oracle", + "notecount": 508 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 39, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f7b6256f166b1512ace4094438b4b1b8ff2eb5e3", + "data": { + "inGameID": "aterlbus", + "notecount": 1030 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 40, + "versions": [ + "mobile" + ] + }, + { + "chartID": "76cd369edfda5568c93336e55ce52f5fcb241f4d", + "data": { + "inGameID": "aterlbus", + "notecount": 505 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 40, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ae08f833ab562a9e7159327d3eb08dac195b2da5", + "data": { + "inGameID": "aterlbus", + "notecount": 668 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 40, + "versions": [ + "mobile" + ] + }, + { + "chartID": "18cb8a6db9cbc0ee192b792ffbed82eac5c1249a", + "data": { + "inGameID": "clotho", + "notecount": 1021 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 41, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2315171026fe6f1101d3b22a7f8897297dca8480", + "data": { + "inGameID": "clotho", + "notecount": 519 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 41, + "versions": [ + "mobile" + ] + }, + { + "chartID": "93bf49d65cd99b79a50fceedaceacd06774833b4", + "data": { + "inGameID": "clotho", + "notecount": 745 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 41, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a09cbe4f97b135329aee69504e6198fd217aba06", + "data": { + "inGameID": "impurebird", + "notecount": 805 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 42, + "versions": [ + "mobile" + ] + }, + { + "chartID": "05a96e606a50bbe982e06ae585a319d985614ab7", + "data": { + "inGameID": "impurebird", + "notecount": 350 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 42, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9f9751b846ee38673b9cd5ba1b5cf2d00cad9e31", + "data": { + "inGameID": "impurebird", + "notecount": 518 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 42, + "versions": [ + "mobile" + ] + }, + { + "chartID": "031d8bd681614f60d8fc790d795dddc7f729f20f", + "data": { + "inGameID": "ignotus", + "notecount": 1225 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 43, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fb46f9a0e9f1f9ec43c82b8b628f76ecb3e5998b", + "data": { + "inGameID": "ignotus", + "notecount": 579 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 43, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d10a8f2971db3d3998be3056978974d19763b6a5", + "data": { + "inGameID": "ignotus", + "notecount": 809 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 43, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f79024f4124273f8cc8b9a2f593c2bc883ba84ab", + "data": { + "inGameID": "ignotus", + "notecount": 1077 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 44, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f7b82a496cc661c419ef33e145941e9eedd18f55", + "data": { + "inGameID": "lethaeus", + "notecount": 900 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 45, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a581af034c801ddd457d58ac31848508c2ca4bd8", + "data": { + "inGameID": "lethaeus", + "notecount": 480 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 45, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5ba891f9d38a4b4c420ef2dcf75e02174681fdbf", + "data": { + "inGameID": "lethaeus", + "notecount": 717 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 45, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b47fe31a1cedf38d2957b5e1f3edb51144fb2bf8", + "data": { + "inGameID": "romancewars", + "notecount": 641 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 46, + "versions": [ + "mobile" + ] + }, + { + "chartID": "93bdcc738f818c69a0c4ae5c4c337054856ad4c2", + "data": { + "inGameID": "romancewars", + "notecount": 423 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "Touch", + "songID": 46, + "versions": [ + "mobile" + ] + }, + { + "chartID": "587592ad581fd448e482101ea95b0516f7160afb", + "data": { + "inGameID": "romancewars", + "notecount": 378 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 46, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bee455588bf601595ca4cdb0905f256962dab100", + "data": { + "inGameID": "blossoms", + "notecount": 655 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 47, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0b4fb7178a38454ec6a3fd6705d796fffdffc0ab", + "data": { + "inGameID": "blossoms", + "notecount": 275 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "Touch", + "songID": 47, + "versions": [ + "mobile" + ] + }, + { + "chartID": "023cf74a5c4b5ea79b767e411f0987b60ee10c26", + "data": { + "inGameID": "blossoms", + "notecount": 383 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 47, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4544130aa9531439e690d7bb867277a87be7503c", + "data": { + "inGameID": "moonheart", + "notecount": 1139 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 48, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c988ea5c36dbcad8dc3280b1f415aee007e56a6d", + "data": { + "inGameID": "moonheart", + "notecount": 947 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 48, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4dbfacfdcd97df12f019e03a3ab7f7f934970b98", + "data": { + "inGameID": "moonheart", + "notecount": 449 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 48, + "versions": [ + "mobile" + ] + }, + { + "chartID": "483719eb6239823d5d459e3f68bddcf981109dda", + "data": { + "inGameID": "moonheart", + "notecount": 566 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 48, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9fc130a18f5641ffacfa1821c167021c43974c4e", + "data": { + "inGameID": "genesis", + "notecount": 713 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.2, + "playtype": "Touch", + "songID": 49, + "versions": [ + "mobile" + ] + }, + { + "chartID": "029842ddadff6c66e413a841ecc17fe7dc31f8df", + "data": { + "inGameID": "genesis", + "notecount": 275 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 49, + "versions": [ + "mobile" + ] + }, + { + "chartID": "98339806bb9db91f63586017b92ca3c449ee7b5e", + "data": { + "inGameID": "genesis", + "notecount": 399 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 49, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dc16c97c121e104260d88d5c13b539341bd8d849", + "data": { + "inGameID": "harutopia", + "notecount": 1061 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 50, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8af9f25c81b014f4891cb55f2f2a4b07e5064f66", + "data": { + "inGameID": "harutopia", + "notecount": 444 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "Touch", + "songID": 50, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b4d5128448e73c085215fe2e6ead17a3065d1e5e", + "data": { + "inGameID": "harutopia", + "notecount": 706 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 50, + "versions": [ + "mobile" + ] + }, + { + "chartID": "802f564b632ba2b94f5d3b28ba20df8ae86314fc", + "data": { + "inGameID": "auxesia", + "notecount": 1000 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 51, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9429404e1b4dbc7e4f968918811398d20a210c76", + "data": { + "inGameID": "auxesia", + "notecount": 385 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 51, + "versions": [ + "mobile" + ] + }, + { + "chartID": "abde359b2f32f880348c33c1660482af9e2ea262", + "data": { + "inGameID": "auxesia", + "notecount": 648 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 51, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d78c5f008cdfc744ccbea7d1dfd67f5c58bd0924", + "data": { + "inGameID": "rabbitintheblackroom", + "notecount": 772 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 52, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ac852a1ef180863c6ce581f85497d9e4ca584d0b", + "data": { + "inGameID": "rabbitintheblackroom", + "notecount": 373 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 52, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0c4e21312442075487988550acc254945eb9d160", + "data": { + "inGameID": "rabbitintheblackroom", + "notecount": 467 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 52, + "versions": [ + "mobile" + ] + }, + { + "chartID": "224d6cf87f135f35f4bd1149c34a352bce93e00a", + "data": { + "inGameID": "modelista", + "notecount": 1010 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 53, + "versions": [ + "mobile" + ] + }, + { + "chartID": "939ee689cda4b13c830fc10339b53514f00520ad", + "data": { + "inGameID": "modelista", + "notecount": 418 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 53, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a655059094aa95c7935563160729a4cac0437b34", + "data": { + "inGameID": "modelista", + "notecount": 691 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 53, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c3cf93aa0603222a925c87a4a56b193d39131f7e", + "data": { + "inGameID": "soundwitch", + "notecount": 785 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 54, + "versions": [ + "mobile" + ] + }, + { + "chartID": "50c03f459cfb560984dc6d97abe00365515c9107", + "data": { + "inGameID": "soundwitch", + "notecount": 315 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 54, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b0cbbb592737e3396b1f66ae5e32bdb4158fb1c1", + "data": { + "inGameID": "soundwitch", + "notecount": 488 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 54, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b20150a691b46a3570721343ec26d5b6d42211fc", + "data": { + "inGameID": "trappola", + "notecount": 1086 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10", + "levelNum": 10.5, + "playtype": "Touch", + "songID": 55, + "versions": [ + "mobile" + ] + }, + { + "chartID": "436608368455d840cb49332cef30eb030e72d2ec", + "data": { + "inGameID": "trappola", + "notecount": 1044 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 55, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a273aa857fd0aa02c105234e93eda408c815dd51", + "data": { + "inGameID": "trappola", + "notecount": 415 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 55, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c96767de02cdf5b9ad78dca5b478c5fc6c095854", + "data": { + "inGameID": "trappola", + "notecount": 541 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 55, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bf4385e3069c59ed17d99476254bb274b87a770a", + "data": { + "inGameID": "iconoclast", + "notecount": 795 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 56, + "versions": [ + "mobile" + ] + }, + { + "chartID": "806370b9480fef407a610eb9a4bc9dbe0197638f", + "data": { + "inGameID": "iconoclast", + "notecount": 443 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 56, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4c3dfc0f8da271971016b94b34cd7515f6c63a87", + "data": { + "inGameID": "iconoclast", + "notecount": 593 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 56, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f351d391770f29138243dc47e0c843e00c636c94", + "data": { + "inGameID": "conflict", + "notecount": 1056 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 57, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cb8ef06f447bfc40ad98dbc022db8260121a3d9f", + "data": { + "inGameID": "conflict", + "notecount": 520 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 57, + "versions": [ + "mobile" + ] + }, + { + "chartID": "816f71729b2e178d4e4521134acb0ca2be561fe9", + "data": { + "inGameID": "conflict", + "notecount": 731 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 57, + "versions": [ + "mobile" + ] + }, + { + "chartID": "012e1020fbe7f03e7c36d02e56a15e641cc9b9a4", + "data": { + "inGameID": "axiumcrisis", + "notecount": 1094 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 58, + "versions": [ + "mobile" + ] + }, + { + "chartID": "afee056a3f64ecacdfcd1e25c0c0a51a7abd2693", + "data": { + "inGameID": "axiumcrisis", + "notecount": 685 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 58, + "versions": [ + "mobile" + ] + }, + { + "chartID": "665e312749b2ad1d7ea2ca1a6b08a5e98aceec49", + "data": { + "inGameID": "axiumcrisis", + "notecount": 1065 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 58, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5e7baa2b68395f2590b49fee23f6394aee5f1fbd", + "data": { + "inGameID": "grievouslady", + "notecount": 1450 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "11", + "levelNum": 11.3, + "playtype": "Touch", + "songID": 59, + "versions": [ + "mobile" + ] + }, + { + "chartID": "76f504c828d1dddf639799abaaf189fc8941a911", + "data": { + "inGameID": "grievouslady", + "notecount": 956 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 59, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f46be58a266db97c19cbf9bc08090da0dcd9a6c6", + "data": { + "inGameID": "grievouslady", + "notecount": 1194 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 59, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b5c6d5f4b324bf37e170ee9dab419ac524551d46", + "data": { + "inGameID": "dreaminattraction", + "notecount": 1129 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 60, + "versions": [ + "mobile" + ] + }, + { + "chartID": "be8d425c761c48906b378e723cc2b512093f1e18", + "data": { + "inGameID": "dreaminattraction", + "notecount": 592 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 60, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d441441ea51808efb3646bc4453827f7a6119fda", + "data": { + "inGameID": "dreaminattraction", + "notecount": 785 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 60, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1ff6262d995c4111fee7f32a7b26a42ac185a0a5", + "data": { + "inGameID": "redandblue", + "notecount": 845 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 61, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8b2ae4651acfe001ef3514383e515ddc7464f669", + "data": { + "inGameID": "redandblue", + "notecount": 464 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 61, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6aa11c6da7dad064dc4211f8f6af6f668ab18630", + "data": { + "inGameID": "redandblue", + "notecount": 597 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 61, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e43105d6fc625a5ac90273e07611a242315f4dba", + "data": { + "inGameID": "redandblue", + "notecount": 1194 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 62, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c3086c579aebbe880612aaeb3ccd134661b629d0", + "data": { + "inGameID": "onelastdrive", + "notecount": 885 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.2, + "playtype": "Touch", + "songID": 63, + "versions": [ + "mobile" + ] + }, + { + "chartID": "66fd070a6081b3936426e74e0d69dff6e58aba04", + "data": { + "inGameID": "onelastdrive", + "notecount": 604 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 63, + "versions": [ + "mobile" + ] + }, + { + "chartID": "894cbc65843d696599ad8dbb8c5fe0839ae043f4", + "data": { + "inGameID": "onelastdrive", + "notecount": 564 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 63, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1024d36bb8e302554ac076f6178e77e327cfa8fb", + "data": { + "inGameID": "surrender", + "notecount": 925 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 64, + "versions": [ + "mobile" + ] + }, + { + "chartID": "86e669ca85ff25ee12af0af7154a8703e0cda7bf", + "data": { + "inGameID": "surrender", + "notecount": 550 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 64, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dd5895d657a10269b698e81c00a5f06a3e2f19c8", + "data": { + "inGameID": "surrender", + "notecount": 721 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 64, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3005e40578058d3ab2ee655e2f6902fea733d637", + "data": { + "inGameID": "yozakurafubuki", + "notecount": 931 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 65, + "versions": [ + "mobile" + ] + }, + { + "chartID": "34a144097b7e829e8c3a01b17c84c51c8217d94f", + "data": { + "inGameID": "yozakurafubuki", + "notecount": 416 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 65, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9ec0383da66190f0b8ae9a66a19544859a2ea49d", + "data": { + "inGameID": "yozakurafubuki", + "notecount": 582 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 65, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7167783fadf3a4fa0d0360c46a4fe08750e8328e", + "data": { + "inGameID": "cyanine", + "notecount": 1171 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 66, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c46a7f776f88dff090a7327186b1b3f7776b196f", + "data": { + "inGameID": "cyanine", + "notecount": 661 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 66, + "versions": [ + "mobile" + ] + }, + { + "chartID": "661e5990b15e8d1e4d0cc3366731cff18121a425", + "data": { + "inGameID": "cyanine", + "notecount": 947 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 66, + "versions": [ + "mobile" + ] + }, + { + "chartID": "956e50d9a8a248e0346a3d331f748f4bd90b2053", + "data": { + "inGameID": "dreamgoeson", + "notecount": 719 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 67, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1fe4bcb6537b656b2a7893ac18bb76f1eee4685b", + "data": { + "inGameID": "dreamgoeson", + "notecount": 532 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1.5, + "playtype": "Touch", + "songID": 67, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1cdd1d49b600a8ad72096d0a61d6cbd41f4ada1c", + "data": { + "inGameID": "dreamgoeson", + "notecount": 751 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 67, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f1b4f76cd82c2d1e9a7f9730059123fdde874284", + "data": { + "inGameID": "journey", + "notecount": 997 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 68, + "versions": [ + "mobile" + ] + }, + { + "chartID": "020d6c18d5f900f2ba65fb41eb59a891fc14e7ea", + "data": { + "inGameID": "journey", + "notecount": 551 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 68, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4bf45cc3e9600de9be978ac6ebb22a04aedd777f", + "data": { + "inGameID": "journey", + "notecount": 778 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 68, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5c97bf06e95c0cdc4fd6be4336a7c422f3ce5c83", + "data": { + "inGameID": "specta", + "notecount": 1096 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 69, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9311c3012eed466e99fc4521bf204f59e5d57b33", + "data": { + "inGameID": "specta", + "notecount": 390 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 69, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b59e3367ee8f5d452338f72c3c8c9fe8b4f2aa82", + "data": { + "inGameID": "specta", + "notecount": 706 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 69, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6d709c45ea4b10c3ac1b9e2258379293d1888079", + "data": { + "inGameID": "quon", + "notecount": 991 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 70, + "versions": [ + "mobile" + ] + }, + { + "chartID": "99c044ef72cba0e7724e4fe91301ccd6a7049f3a", + "data": { + "inGameID": "quon", + "notecount": 547 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 70, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9722f24e1b68d12b0a2c0095aaa826999151eb59", + "data": { + "inGameID": "quon", + "notecount": 718 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 70, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b279455709d2a2c291ef9515ff90aa2581e08e3d", + "data": { + "inGameID": "syro", + "notecount": 1150 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 71, + "versions": [ + "mobile" + ] + }, + { + "chartID": "eae1ef50d1ae931cc26f1f4b32621bb374cc730f", + "data": { + "inGameID": "syro", + "notecount": 535 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 71, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0add6d94673f5bd098f93285aa8a3f25aab0a6b2", + "data": { + "inGameID": "syro", + "notecount": 829 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 71, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6e36a6400e3afd46cf9c3a02409de98ab376aa4c", + "data": { + "inGameID": "reinvent", + "notecount": 852 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 72, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0976aaca0c66ac490f7d74781316997bbb1560a6", + "data": { + "inGameID": "reinvent", + "notecount": 570 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 72, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1dba3f61a1d1dcfc2ccc916d5ec7a35dcc82f22a", + "data": { + "inGameID": "reinvent", + "notecount": 703 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 72, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e259c1e43c223ad9f642b94df2640939ebaf654d", + "data": { + "inGameID": "silentrush", + "notecount": 941 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.6, + "playtype": "Touch", + "songID": 73, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3ae4eb5e15245d47b22265fb3aaf983623049145", + "data": { + "inGameID": "silentrush", + "notecount": 416 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 73, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b0424e44e27b32acafd6fd380f693c5de8e6cc9e", + "data": { + "inGameID": "silentrush", + "notecount": 674 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 73, + "versions": [ + "mobile" + ] + }, + { + "chartID": "539dee6eeceb19b3c8ff4e41d2048f9a0d82d4a6", + "data": { + "inGameID": "singularity", + "notecount": 1105 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 74, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3f5d05371c7236fdeace76fa6be01b14c78971c6", + "data": { + "inGameID": "singularity", + "notecount": 534 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 74, + "versions": [ + "mobile" + ] + }, + { + "chartID": "22e80fbe45d3248f471ab1d421d3a29ed6c601a2", + "data": { + "inGameID": "singularity", + "notecount": 678 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 74, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ed5842da92202fd9b3dad248f960b2c7a1f41559", + "data": { + "inGameID": "singularity", + "notecount": 1114 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 75, + "versions": [ + "mobile" + ] + }, + { + "chartID": "71794bc07b0a0e6d07d32bf2f69bf34b46f1f2d9", + "data": { + "inGameID": "memoryforest", + "notecount": 978 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 76, + "versions": [ + "mobile" + ] + }, + { + "chartID": "84c9248044ccf840e0754850b99e2f9f598c755d", + "data": { + "inGameID": "memoryforest", + "notecount": 639 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 76, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0bb4e24938a6a2b8e9b875f9586ad3af26978259", + "data": { + "inGameID": "memoryforest", + "notecount": 726 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 76, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ef902f24c6733edc29008911b9083473912d5e80", + "data": { + "inGameID": "strongholds", + "notecount": 922 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 77, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3bd55bf2c06608824e59a0bc44508b42c037b81f", + "data": { + "inGameID": "strongholds", + "notecount": 570 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 77, + "versions": [ + "mobile" + ] + }, + { + "chartID": "940b684c220f0b95044b549f66fdab871a309b41", + "data": { + "inGameID": "strongholds", + "notecount": 778 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 77, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1efa2677c0b5be9ce35ed6fd2e0f1ac6978ef0df", + "data": { + "inGameID": "nexttoyou", + "notecount": 954 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 78, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e2268eb66929d3caf8cd6afa5aacf028a7aba84a", + "data": { + "inGameID": "nexttoyou", + "notecount": 824 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 78, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ab128cae24c706840c4f7f4b94baeb905bbb44fc", + "data": { + "inGameID": "nexttoyou", + "notecount": 454 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 78, + "versions": [ + "mobile" + ] + }, + { + "chartID": "227f58eace04d2fcb2d2d32e87a9a59ef57e3c90", + "data": { + "inGameID": "nexttoyou", + "notecount": 583 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 78, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4b9d0cceaf9bbe3dc3fd3c90d794ab7af0395258", + "data": { + "inGameID": "metallicpunisher", + "notecount": 1238 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.3, + "playtype": "Touch", + "songID": 79, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a75aaea69f19ebb33e4c500e46ccfdbb35c5b135", + "data": { + "inGameID": "metallicpunisher", + "notecount": 500 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 79, + "versions": [ + "mobile" + ] + }, + { + "chartID": "02c8ecdc562cc448abdd313592c096dd80f14916", + "data": { + "inGameID": "metallicpunisher", + "notecount": 846 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 79, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1dc827919d1cedbc5e6d5a2aa7911d593a8c590a", + "data": { + "inGameID": "blaster", + "notecount": 1002 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 80, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b17b9791823e08df5d74b3a65b0e8d1317a60069", + "data": { + "inGameID": "blaster", + "notecount": 571 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 80, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c7adcc4204352d5758485ea56216323b9085d3b5", + "data": { + "inGameID": "blaster", + "notecount": 635 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 80, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d9bc3c3dc662c3f1ac4cfd1d2fd5eb25181311b5", + "data": { + "inGameID": "guardina", + "notecount": 1120 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 81, + "versions": [ + "mobile" + ] + }, + { + "chartID": "da3c21ef5321f207c3ab9b48ea23b9a8cb37f9c7", + "data": { + "inGameID": "guardina", + "notecount": 507 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 81, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b347db32fbe280f1197751d8c5f493e18549ffd3", + "data": { + "inGameID": "guardina", + "notecount": 678 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 81, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cd4b13b3f6725dc6b349c3f2a5c58a568161f842", + "data": { + "inGameID": "carminescythe", + "notecount": 1164 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 82, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c9e134050ffa21c351fa1c667c01fc7dffc9def2", + "data": { + "inGameID": "carminescythe", + "notecount": 493 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 82, + "versions": [ + "mobile" + ] + }, + { + "chartID": "55e87516635485216f1eadf0756e2dc65520e79d", + "data": { + "inGameID": "carminescythe", + "notecount": 710 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 82, + "versions": [ + "mobile" + ] + }, + { + "chartID": "05273735d20f2cf0ce62abd76c81877bf228f5c6", + "data": { + "inGameID": "bethere", + "notecount": 982 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 83, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a10a2eb6554cc09104b34a317f354e4850d16c4c", + "data": { + "inGameID": "bethere", + "notecount": 592 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 83, + "versions": [ + "mobile" + ] + }, + { + "chartID": "54d250d448376174ecf070930f48b2d9dfc1b50d", + "data": { + "inGameID": "bethere", + "notecount": 792 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 83, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3c4f917b3eae8a40e0274b2323ff080882c490a4", + "data": { + "inGameID": "cyberneciacatharsis", + "notecount": 946 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 84, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e080b5d155d3b5fd39e03988138d5e8fc0a0033a", + "data": { + "inGameID": "cyberneciacatharsis", + "notecount": 377 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 84, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c9fbbc42bb06d39098c9102e6bade3d095c5ed79", + "data": { + "inGameID": "cyberneciacatharsis", + "notecount": 655 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 84, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c58b44e09f1861b3ff63cfd198924ac2215f45e4", + "data": { + "inGameID": "callmyname", + "notecount": 921 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.7, + "playtype": "Touch", + "songID": 85, + "versions": [ + "mobile" + ] + }, + { + "chartID": "db9446d74c091cb761fce19858b5cbd2549419a1", + "data": { + "inGameID": "callmyname", + "notecount": 591 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 85, + "versions": [ + "mobile" + ] + }, + { + "chartID": "da85109aed4c58c22940a5455c9b4e1917655908", + "data": { + "inGameID": "callmyname", + "notecount": 653 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 85, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0a6f8d916176fc340ffc5138e4177a50b6b256a5", + "data": { + "inGameID": "inkarusi", + "notecount": 463 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 86, + "versions": [ + "mobile" + ] + }, + { + "chartID": "69cd32ce7725dd262ce671aa7d21f49c6926a84d", + "data": { + "inGameID": "inkarusi", + "notecount": 276 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 86, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5ea993139d36b7a0b97877933a52983488d5e19b", + "data": { + "inGameID": "inkarusi", + "notecount": 326 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 86, + "versions": [ + "mobile" + ] + }, + { + "chartID": "70eb594419c6ebc2571f281bce04353de5c0a396", + "data": { + "inGameID": "mazenine", + "notecount": 775 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.9, + "playtype": "Touch", + "songID": 87, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a171612fd532235b3b570856f3e627158e7598df", + "data": { + "inGameID": "mazenine", + "notecount": 494 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 87, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c930fc24ea1ba42e7750cb1b932dd50668c45603", + "data": { + "inGameID": "mazenine", + "notecount": 445 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 87, + "versions": [ + "mobile" + ] + }, + { + "chartID": "25989f8b1794b963497984bc9e3306cae101f8a8", + "data": { + "inGameID": "themessage", + "notecount": 992 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 88, + "versions": [ + "mobile" + ] + }, + { + "chartID": "82c2afd4ec6c8fdf53f07555042539f7c9e0b5a6", + "data": { + "inGameID": "themessage", + "notecount": 536 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 88, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1c9097e637211e43457685198b6f52c629dea542", + "data": { + "inGameID": "themessage", + "notecount": 630 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 88, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bddef5e7930b5b396595eef9df6056295b576c05", + "data": { + "inGameID": "sulfur", + "notecount": 1045 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 89, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ca1436fd616c5b099ccbd6dcf5f8d99c9ebfd15e", + "data": { + "inGameID": "sulfur", + "notecount": 458 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 89, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0acbbac04862320d0ef97735d3990e471132200b", + "data": { + "inGameID": "sulfur", + "notecount": 608 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 89, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a08253b94995d63aa6a84582f3d9c642a11da74e", + "data": { + "inGameID": "halcyon", + "notecount": 1227 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 90, + "versions": [ + "mobile" + ] + }, + { + "chartID": "150cbf0ef7dd608a1acefabf701ee02399afa6d3", + "data": { + "inGameID": "halcyon", + "notecount": 662 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 90, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b33467127542f81753e9c7fef142965f76d6bd28", + "data": { + "inGameID": "halcyon", + "notecount": 943 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.2, + "playtype": "Touch", + "songID": 90, + "versions": [ + "mobile" + ] + }, + { + "chartID": "02e9a8e69dd55d0499006a58b4d5be076651245c", + "data": { + "inGameID": "etherstrike", + "notecount": 1170 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.3, + "playtype": "Touch", + "songID": 91, + "versions": [ + "mobile" + ] + }, + { + "chartID": "29b99b2ae86ffc440a8cefeb59a137562ee24273", + "data": { + "inGameID": "etherstrike", + "notecount": 659 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 91, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a7099c1206854a4ef0a8781bfb098428daae1e11", + "data": { + "inGameID": "etherstrike", + "notecount": 837 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 91, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9d3ddec8b98f4b8cd3e55dc91223c14f5b01a405", + "data": { + "inGameID": "fractureray", + "notecount": 1279 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "11", + "levelNum": 11.3, + "playtype": "Touch", + "songID": 92, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dcdd7ec8d9996a5d520645b6cf3004445dc792c7", + "data": { + "inGameID": "fractureray", + "notecount": 983 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 92, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1f6dfcf427e01518c86ba705ae2a057bf7878e26", + "data": { + "inGameID": "fractureray", + "notecount": 1343 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 92, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0e3a9f726ecc56c6b75c0c6305318cd7e9a2c940", + "data": { + "inGameID": "suomi", + "notecount": 818 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 93, + "versions": [ + "mobile" + ] + }, + { + "chartID": "276d296322b66c32784a1e0135e7e5bd23d95ca9", + "data": { + "inGameID": "suomi", + "notecount": 368 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 93, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3cd1ea87a8d9ef76bae7b45ae12ea40b74fe40f1", + "data": { + "inGameID": "suomi", + "notecount": 550 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 93, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5d63271c2cef61a1c0f8c04916986668fc80e325", + "data": { + "inGameID": "bookmaker", + "notecount": 1287 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 94, + "versions": [ + "mobile" + ] + }, + { + "chartID": "78398e4e96987dd0bd29531c320145cc3a5759c3", + "data": { + "inGameID": "bookmaker", + "notecount": 1124 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 94, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6bc7013a7e59726e24c15d1c587ae3c289f0ab75", + "data": { + "inGameID": "bookmaker", + "notecount": 538 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 94, + "versions": [ + "mobile" + ] + }, + { + "chartID": "242aaf5748d2eb339fd7ec2dfd8493db79b949ae", + "data": { + "inGameID": "bookmaker", + "notecount": 728 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 94, + "versions": [ + "mobile" + ] + }, + { + "chartID": "209b67f9d9bab349b2548acb344a09cd39ddde07", + "data": { + "inGameID": "darakunosono", + "notecount": 1061 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 95, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b85681d73440751c712c81a8f8b1550ff82975c7", + "data": { + "inGameID": "darakunosono", + "notecount": 535 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 95, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bcce5047e7322b7ee1498c1177a1168fb8cf1583", + "data": { + "inGameID": "darakunosono", + "notecount": 585 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 95, + "versions": [ + "mobile" + ] + }, + { + "chartID": "02924f2599e05d9779539dd07de5407f5ccf4da1", + "data": { + "inGameID": "dropdead", + "notecount": 823 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 96, + "versions": [ + "mobile" + ] + }, + { + "chartID": "da485f0dab29d6e251b862381ebad1b85dc75758", + "data": { + "inGameID": "dropdead", + "notecount": 44 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1.5, + "playtype": "Touch", + "songID": 96, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cf127338ae628e4446db2782724865af4a88111d", + "data": { + "inGameID": "dropdead", + "notecount": 1323 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 96, + "versions": [ + "mobile" + ] + }, + { + "chartID": "368473d5b5ca14e9381fddb5caac375f7ba07837", + "data": { + "inGameID": "dropdead", + "notecount": 1503 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10", + "levelNum": 10.5, + "playtype": "Touch", + "songID": 97, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b7cbb8c497c28a18a094fc5b7ef292fe7dbfe311", + "data": { + "inGameID": "fallensquare", + "notecount": 703 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 98, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b5953db2c371b14e991e7580da383249839b520d", + "data": { + "inGameID": "fallensquare", + "notecount": 316 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 98, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d947604ebde20ecc0e518154da8cbe846048e517", + "data": { + "inGameID": "fallensquare", + "notecount": 486 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 98, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b48708da2124bf2f88aa61b24bb3e193219506d5", + "data": { + "inGameID": "nhelv", + "notecount": 1108 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 99, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dc1961a4b16e164cf15c6b59c6e0a357ad9a4c89", + "data": { + "inGameID": "nhelv", + "notecount": 647 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 99, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3de02404dc23f9f06406b2f89fee880e50794bc2", + "data": { + "inGameID": "nhelv", + "notecount": 913 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 99, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b2b8c44e4925693b0051308c41051e3f3edf5220", + "data": { + "inGameID": "espebranch", + "notecount": 1058 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 100, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c4b064d2a9712b443e020383b0b4f0ec01093bd0", + "data": { + "inGameID": "espebranch", + "notecount": 624 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 100, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f93343ba950cfa2b1ec22758a5fcf46b1ded4e4a", + "data": { + "inGameID": "espebranch", + "notecount": 757 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 100, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fa55367128605cf5ccc114ed29da9409b0cba241", + "data": { + "inGameID": "purgatorium", + "notecount": 1051 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 101, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5417e563731b7f040d86f812b4d497be3b66b2ce", + "data": { + "inGameID": "purgatorium", + "notecount": 983 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 101, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f2c25248d2c945afa38c67fb6fd32583fd02d228", + "data": { + "inGameID": "purgatorium", + "notecount": 609 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 101, + "versions": [ + "mobile" + ] + }, + { + "chartID": "aa5e0a95d007995b39b62b83255d7ca98d91d681", + "data": { + "inGameID": "purgatorium", + "notecount": 641 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 101, + "versions": [ + "mobile" + ] + }, + { + "chartID": "656922f0a28a7dcbb6c044095db683a6b550f495", + "data": { + "inGameID": "hikari", + "notecount": 684 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.1, + "playtype": "Touch", + "songID": 102, + "versions": [ + "mobile" + ] + }, + { + "chartID": "871860bcda24a38b717853fd944af97dba9d96f3", + "data": { + "inGameID": "hikari", + "notecount": 237 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 102, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9c15b34603a1098d5ab90d338ff6919d397da08a", + "data": { + "inGameID": "hikari", + "notecount": 450 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 102, + "versions": [ + "mobile" + ] + }, + { + "chartID": "57727c2bbb60719dadf2158eb984a6ce1d2bd3dd", + "data": { + "inGameID": "stager", + "notecount": 1004 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 103, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b3a11f0a19b55f7b5f42a22760a12e9c2e090276", + "data": { + "inGameID": "stager", + "notecount": 453 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 103, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4feb0c6aa9aa097e8a3f5c72454af6cd6966da05", + "data": { + "inGameID": "stager", + "notecount": 559 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 103, + "versions": [ + "mobile" + ] + }, + { + "chartID": "abf64986c5333ce2e2523b0b8300889af294f84a", + "data": { + "inGameID": "hallofmirrors", + "notecount": 898 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.2, + "playtype": "Touch", + "songID": 104, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8f4bb18a8b58b1b7077ca976c4882c2e96396527", + "data": { + "inGameID": "hallofmirrors", + "notecount": 535 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 104, + "versions": [ + "mobile" + ] + }, + { + "chartID": "449c532bd280415247ca670d60cb5bc27525a6fe", + "data": { + "inGameID": "hallofmirrors", + "notecount": 553 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 104, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f3ac640b8612fc84ba051932e60c78101cb3d7f5", + "data": { + "inGameID": "linearaccelerator", + "notecount": 905 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 105, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f4423a9bf7df4126f642c1c63f7da81071b8001c", + "data": { + "inGameID": "linearaccelerator", + "notecount": 438 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 105, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9b20930eebdbb7e69f75ebcc08afdcdf6ba1435f", + "data": { + "inGameID": "linearaccelerator", + "notecount": 488 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 105, + "versions": [ + "mobile" + ] + }, + { + "chartID": "96b08f00bc386b024ff842ab1b14ee85f06f794c", + "data": { + "inGameID": "tiferet", + "notecount": 1086 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 106, + "versions": [ + "mobile" + ] + }, + { + "chartID": "15fa5954e7f613aca3b313f7f9d8ca859d13d197", + "data": { + "inGameID": "tiferet", + "notecount": 450 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 106, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fb5f949ca839b0e435b96a1fd7be44e90456f055", + "data": { + "inGameID": "tiferet", + "notecount": 720 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 106, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ca61f68f125df1fac933d0d124e612fc5520c782", + "data": { + "inGameID": "alexandrite", + "notecount": 1040 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 107, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8f8a8d73b2eff8b90758867e473e168cab32fb4e", + "data": { + "inGameID": "alexandrite", + "notecount": 507 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 107, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d660791677b93fc1bea1c8c42d955a0b183f38f5", + "data": { + "inGameID": "alexandrite", + "notecount": 699 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 107, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4b1d1324afed9a7d73d48f911faf3db4f57fdc82", + "data": { + "inGameID": "rugie", + "notecount": 975 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 108, + "versions": [ + "mobile" + ] + }, + { + "chartID": "101759f796b17373a47f56d5326cdce08c13c361", + "data": { + "inGameID": "rugie", + "notecount": 566 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 108, + "versions": [ + "mobile" + ] + }, + { + "chartID": "622f284eb66a0b4e682844b9e83b2dffd5fdd478", + "data": { + "inGameID": "rugie", + "notecount": 754 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 108, + "versions": [ + "mobile" + ] + }, + { + "chartID": "80eb1545f541e6f103058c4b65cc54a28beb9391", + "data": { + "inGameID": "astraltale", + "notecount": 884 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 109, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9f56cd2c74a8525b5516a3d5de1d2a8b5a80e350", + "data": { + "inGameID": "astraltale", + "notecount": 445 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 109, + "versions": [ + "mobile" + ] + }, + { + "chartID": "876c22023b6793cbeef4f0fcb14ea932383e42d5", + "data": { + "inGameID": "astraltale", + "notecount": 642 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 109, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0775cf76375d3c1ddd8790a42ca2f0cf4e3dd279", + "data": { + "inGameID": "phantasia", + "notecount": 952 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 110, + "versions": [ + "mobile" + ] + }, + { + "chartID": "278c7063b6d33d4be074bf1a7d40708bd7e73e71", + "data": { + "inGameID": "phantasia", + "notecount": 544 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 110, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1d57214f1e3d33d9b9b81824637ebb71d871bcf6", + "data": { + "inGameID": "phantasia", + "notecount": 579 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 110, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2d4d43f6fac00ce419f44e07002ec00eece10cec", + "data": { + "inGameID": "empireofwinter", + "notecount": 920 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "Touch", + "songID": 111, + "versions": [ + "mobile" + ] + }, + { + "chartID": "af33552dbf20ee887d3b0cc3a9075ec02114b48a", + "data": { + "inGameID": "empireofwinter", + "notecount": 484 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 111, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c883be945636d343e73a37a39bb1284d088c2525", + "data": { + "inGameID": "empireofwinter", + "notecount": 662 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 111, + "versions": [ + "mobile" + ] + }, + { + "chartID": "47c239d5fb23183f3a33288c431d5fbe384b0af0", + "data": { + "inGameID": "merlin", + "notecount": 881 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 112, + "versions": [ + "mobile" + ] + }, + { + "chartID": "238d818e94980ac72757c4de91ec29883c5016b8", + "data": { + "inGameID": "merlin", + "notecount": 712 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.9, + "playtype": "Touch", + "songID": 112, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b8a6ab6317a743496fd5fbb7f2767d548d896991", + "data": { + "inGameID": "merlin", + "notecount": 315 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 112, + "versions": [ + "mobile" + ] + }, + { + "chartID": "74e5bfc198b9dfd2bc8447936a2decc2fe930cca", + "data": { + "inGameID": "merlin", + "notecount": 428 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 112, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9fdf5f2af4b18a86f2e55a8aa13a289d26e0bf79", + "data": { + "inGameID": "dxfullmetal", + "notecount": 808 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 113, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7313adce7a826fbc0656d9a0371699f790f8a3e8", + "data": { + "inGameID": "dxfullmetal", + "notecount": 327 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 113, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d08edfb73a8f172b6b7133b9fff7a9865e7a5248", + "data": { + "inGameID": "dxfullmetal", + "notecount": 556 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 113, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ad9c19f235ef4ce9372e570fac7eb37c917e4f26", + "data": { + "inGameID": "omakeno", + "notecount": 931 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 114, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cb32a54118838b88e859bf19bb8550bc7778eaa1", + "data": { + "inGameID": "omakeno", + "notecount": 869 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 114, + "versions": [ + "mobile" + ] + }, + { + "chartID": "996a66d40e2938592078096238cd72cd469726a4", + "data": { + "inGameID": "omakeno", + "notecount": 502 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 114, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d263980b97ac9af2cec76de762491296af14fcc0", + "data": { + "inGameID": "omakeno", + "notecount": 616 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 114, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4612d05489d5768eec927d99bf76aa75bb54861d", + "data": { + "inGameID": "scarletlance", + "notecount": 1130 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.1, + "playtype": "Touch", + "songID": 115, + "versions": [ + "mobile" + ] + }, + { + "chartID": "db7cd87af569c0ecfe5e474afd98398a920db0e9", + "data": { + "inGameID": "scarletlance", + "notecount": 517 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 115, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6310d782ff93fff512bc975aed348f52d34ebb1e", + "data": { + "inGameID": "scarletlance", + "notecount": 644 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 115, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e3e82e299f66e7a1f9e6a650a48953abc5182e38", + "data": { + "inGameID": "ouroboros", + "notecount": 1369 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 116, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5ae2d00bc9e37a59e7691d39ea1b942f281d72c9", + "data": { + "inGameID": "ouroboros", + "notecount": 575 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 116, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bfd2ec6bc509bb687a42bfaabd87c5b43df6c668", + "data": { + "inGameID": "ouroboros", + "notecount": 832 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 116, + "versions": [ + "mobile" + ] + }, + { + "chartID": "76ea71e9ad27406df98c433735ca7437fcee8cc1", + "data": { + "inGameID": "libertas", + "notecount": 947 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 117, + "versions": [ + "mobile" + ] + }, + { + "chartID": "74ae268386e13a93a2fb7704978f9af68c0fb1de", + "data": { + "inGameID": "libertas", + "notecount": 476 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 117, + "versions": [ + "mobile" + ] + }, + { + "chartID": "72a689e15551f514c55d1af16ce3b2486fda2a8c", + "data": { + "inGameID": "libertas", + "notecount": 514 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 117, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a64ff677d5b086f722110183fc63d00be494f85c", + "data": { + "inGameID": "solitarydream", + "notecount": 972 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 118, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8403c1269641b08c76b5d41ad0cc1344f5731c1b", + "data": { + "inGameID": "solitarydream", + "notecount": 712 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 118, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9faaec36d1b07f1b003a160c79b746b2f3b5845f", + "data": { + "inGameID": "solitarydream", + "notecount": 854 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 118, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ec10073cf0e09728939db5a203820d6ff09893be", + "data": { + "inGameID": "antithese", + "notecount": 968 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 119, + "versions": [ + "mobile" + ] + }, + { + "chartID": "317de4b2bca681160691c7aa0e15b8db5b68c670", + "data": { + "inGameID": "antithese", + "notecount": 877 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 119, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9fa3298d93d4f55f8d655041077471094ded96c8", + "data": { + "inGameID": "antithese", + "notecount": 845 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 119, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a46c2a7672e8b78e36d0896afd34a3c947ba6d4f", + "data": { + "inGameID": "antithese", + "notecount": 826 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 119, + "versions": [ + "mobile" + ] + }, + { + "chartID": "94148f4c12bcdf50e30edf050cc126b2a2345c5b", + "data": { + "inGameID": "corruption", + "notecount": 1293 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 120, + "versions": [ + "mobile" + ] + }, + { + "chartID": "84cd0d7a38d54dc85d3e09b5d419a1251b4fc352", + "data": { + "inGameID": "corruption", + "notecount": 664 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 120, + "versions": [ + "mobile" + ] + }, + { + "chartID": "da3bb5bd86a6e160a6204fce11b71684af5d9db6", + "data": { + "inGameID": "corruption", + "notecount": 847 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 120, + "versions": [ + "mobile" + ] + }, + { + "chartID": "54fe1e0402d1851d34b2a0fef2293f47b6469c3f", + "data": { + "inGameID": "blackterritory", + "notecount": 1195 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 121, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f21ec7eda10603630d6b349edb551c6fee957ae2", + "data": { + "inGameID": "blackterritory", + "notecount": 627 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 121, + "versions": [ + "mobile" + ] + }, + { + "chartID": "81dfc3cb815c229e266659c792219c402942990c", + "data": { + "inGameID": "blackterritory", + "notecount": 785 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 121, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3b6156d03a5e88aee10017430bf6954c4f8725fa", + "data": { + "inGameID": "viciousheroism", + "notecount": 1150 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 122, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2a45015d6a7a88a9d20f83cd9a17abbb2665c61a", + "data": { + "inGameID": "viciousheroism", + "notecount": 430 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 122, + "versions": [ + "mobile" + ] + }, + { + "chartID": "167f127b0ef906edd2e9675fb72fcd6457374155", + "data": { + "inGameID": "viciousheroism", + "notecount": 756 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 122, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e58e879b0d962b11d17d4d6f346a727e1b926939", + "data": { + "inGameID": "cyaegha", + "notecount": 1368 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 123, + "versions": [ + "mobile" + ] + }, + { + "chartID": "838673bc7977735fc84a925c07ed72193d71af4a", + "data": { + "inGameID": "cyaegha", + "notecount": 760 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 123, + "versions": [ + "mobile" + ] + }, + { + "chartID": "69a162250f0ccc5a6c309516beae2441e0b9fbf7", + "data": { + "inGameID": "cyaegha", + "notecount": 984 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 123, + "versions": [ + "mobile" + ] + }, + { + "chartID": "71b3ecf95d51e839779baa9acd31b61c66f20ab5", + "data": { + "inGameID": "revixy", + "notecount": 1047 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "Touch", + "songID": 124, + "versions": [ + "mobile" + ] + }, + { + "chartID": "80fa7b603c17845760d09b5244d8a8786d13659a", + "data": { + "inGameID": "revixy", + "notecount": 538 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 124, + "versions": [ + "mobile" + ] + }, + { + "chartID": "852fe6e9c89bc672905031bab4efa060ce827453", + "data": { + "inGameID": "revixy", + "notecount": 729 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 124, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a0445813ca8e93cef1ea92cb7d6b6e8046359cca", + "data": { + "inGameID": "grimheart", + "notecount": 959 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.6, + "playtype": "Touch", + "songID": 125, + "versions": [ + "mobile" + ] + }, + { + "chartID": "696c60f034a638916f5ec0047e79c92272c7f6d0", + "data": { + "inGameID": "grimheart", + "notecount": 728 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 125, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0b7af319040bb8254c752a451d1eb3fd9d98e06e", + "data": { + "inGameID": "grimheart", + "notecount": 699 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 125, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8fdc03555e0146190c017576184abfec72e96efe", + "data": { + "inGameID": "vector", + "notecount": 1299 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 126, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f265073eed37717fb0f6f72732c7cc8b24176fb5", + "data": { + "inGameID": "vector", + "notecount": 675 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 126, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6f21123510c7d690664fe0040da76e00d3093dc4", + "data": { + "inGameID": "vector", + "notecount": 1002 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 126, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6ded77406641f532252d00053f14dc92cc0b31d0", + "data": { + "inGameID": "supernova", + "notecount": 1123 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 127, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6387595dc8bbeb82fd7bf0b0638762d3225cecde", + "data": { + "inGameID": "supernova", + "notecount": 664 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 127, + "versions": [ + "mobile" + ] + }, + { + "chartID": "df290f3d7b22d0a63c9557a389bb5ec1f91b2957", + "data": { + "inGameID": "supernova", + "notecount": 564 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 127, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c6bd1534605813801d2a72afa51f4823c1074a0f", + "data": { + "inGameID": "dottodot", + "notecount": 739 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 128, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f3075d0176b91d271e3d0bf688ad73a0fa385fe9", + "data": { + "inGameID": "dottodot", + "notecount": 453 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 128, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4e2202da6409d4ffc499178f5c126f307cde7a37", + "data": { + "inGameID": "dottodot", + "notecount": 522 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 128, + "versions": [ + "mobile" + ] + }, + { + "chartID": "154a819bf9704c45cb33427507a4d373eeaa2f45", + "data": { + "inGameID": "garakuta", + "notecount": 1035 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 129, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b3f5e56c1f86c94a8e7d6163987037a538eb7ac0", + "data": { + "inGameID": "garakuta", + "notecount": 444 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 129, + "versions": [ + "mobile" + ] + }, + { + "chartID": "17ab74498194a4da6241d53224169c60b8e0d339", + "data": { + "inGameID": "garakuta", + "notecount": 572 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 129, + "versions": [ + "mobile" + ] + }, + { + "chartID": "33a3f02e7418064ae02312bd09f00cfe8b12922c", + "data": { + "inGameID": "ikazuchi", + "notecount": 1347 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 130, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ae1cc5755b154b32414d84040876ea38b31907bd", + "data": { + "inGameID": "ikazuchi", + "notecount": 656 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 130, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bf897cfd571f76f64e02488c2e802c67632d7e94", + "data": { + "inGameID": "ikazuchi", + "notecount": 976 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 130, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f4616e4a712e28ab1fc1528508bd1f78cd86ae5c", + "data": { + "inGameID": "worldvanquisher", + "notecount": 1452 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.8, + "playtype": "Touch", + "songID": 131, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5c37d4fb14487178b8618a8de08a0c1d80eb8766", + "data": { + "inGameID": "worldvanquisher", + "notecount": 529 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 131, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4dc3df372ad702cdf804daa501c53dab51e8f912", + "data": { + "inGameID": "worldvanquisher", + "notecount": 759 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 131, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1ac152825571b3686efc7ada68023cc012c44df9", + "data": { + "inGameID": "dreadnought", + "notecount": 1099 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 132, + "versions": [ + "mobile" + ] + }, + { + "chartID": "068cbc72b96585e31e7ae8d0fd5e429791a8493e", + "data": { + "inGameID": "dreadnought", + "notecount": 715 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 132, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1057355ee4f6d3bead8d280f7d6fe37c26ce831f", + "data": { + "inGameID": "dreadnought", + "notecount": 897 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 132, + "versions": [ + "mobile" + ] + }, + { + "chartID": "784daf5fba65c17bf2e3131f452154aa494dd49e", + "data": { + "inGameID": "particlearts", + "notecount": 925 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 133, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f03b8b258d9f86f9136fe768c669bdc9de628126", + "data": { + "inGameID": "particlearts", + "notecount": 529 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 133, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9677d9d8a323fdde50b7bfc5178ec16bd2c78ad6", + "data": { + "inGameID": "particlearts", + "notecount": 637 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 133, + "versions": [ + "mobile" + ] + }, + { + "chartID": "496b326c22b821bcb9574586d8614dfb97b3a86b", + "data": { + "inGameID": "vindication", + "notecount": 1075 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 134, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a1484245d1224de12ec8fcade8ed98aab2c0c519", + "data": { + "inGameID": "vindication", + "notecount": 721 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 134, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5cddc9e9d6f01bb9cf88d79ab6423fda1dfc552a", + "data": { + "inGameID": "vindication", + "notecount": 899 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 134, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e56d54e26c40daeed9c0341a194b107493f1e069", + "data": { + "inGameID": "heavensdoor", + "notecount": 1534 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10+", + "levelNum": 10.8, + "playtype": "Touch", + "songID": 135, + "versions": [ + "mobile" + ] + }, + { + "chartID": "45a2ec7552e1c50bbfc97a959adf3a23de0e4c87", + "data": { + "inGameID": "heavensdoor", + "notecount": 1101 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 135, + "versions": [ + "mobile" + ] + }, + { + "chartID": "72c6e69769ec4b1be72a7eb1346361ef1c6c0fb7", + "data": { + "inGameID": "heavensdoor", + "notecount": 766 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 135, + "versions": [ + "mobile" + ] + }, + { + "chartID": "770580f4daf01c5f6467171c7971362f7a1c7090", + "data": { + "inGameID": "heavensdoor", + "notecount": 869 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 135, + "versions": [ + "mobile" + ] + }, + { + "chartID": "26cacb6c52d0a360d5daf3e3a2709a310ad2afb6", + "data": { + "inGameID": "ringedgenesis", + "notecount": 1146 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.8, + "playtype": "Touch", + "songID": 136, + "versions": [ + "mobile" + ] + }, + { + "chartID": "048e70371a548a44e8a2275d3001279ab1b2ab59", + "data": { + "inGameID": "ringedgenesis", + "notecount": 672 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 136, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f509fb84d1bf92a3143c597a836ca123fd81325d", + "data": { + "inGameID": "ringedgenesis", + "notecount": 860 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 136, + "versions": [ + "mobile" + ] + }, + { + "chartID": "631762ffd303cb7f63a8833a50cf7650d7a1a8fb", + "data": { + "inGameID": "chelsea", + "notecount": 650 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 137, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bcc57e670a5473e689b09d79dd223e8927b4762f", + "data": { + "inGameID": "chelsea", + "notecount": 388 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 137, + "versions": [ + "mobile" + ] + }, + { + "chartID": "da05367d3308bb63feb2a57bde74066d41ee624e", + "data": { + "inGameID": "chelsea", + "notecount": 503 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 137, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3d7b3fdca0c405f3f3314ed23b6de47201ffd0e9", + "data": { + "inGameID": "aiueoon", + "notecount": 989 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 138, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d2548a10f1cd9de06095e64d459a24d986c2d5b9", + "data": { + "inGameID": "aiueoon", + "notecount": 436 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 138, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cec5d7ab87151b75374586ac7b844dd3b773bfe5", + "data": { + "inGameID": "aiueoon", + "notecount": 623 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 138, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c4ffe407da25a89499ebcc6ed8875c41339720ee", + "data": { + "inGameID": "melodyoflove", + "notecount": 931 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 139, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ac66ee2ab2e1f7f5089c843f651f42164b5dd601", + "data": { + "inGameID": "melodyoflove", + "notecount": 422 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 139, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7364f9d7154be820704fdb393729f1866e0ec54d", + "data": { + "inGameID": "melodyoflove", + "notecount": 670 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 139, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ac655e979f49d4d4c895e4e94f4cd7fed74d5d89", + "data": { + "inGameID": "tiemedowngently", + "notecount": 724 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 140, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ea18a7a566cb38f369ae4656ade7b7804744d48d", + "data": { + "inGameID": "tiemedowngently", + "notecount": 581 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 140, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ba88d7113baa2a17682f765ced5be284e04d08e2", + "data": { + "inGameID": "tiemedowngently", + "notecount": 535 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 140, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ad422e58b009455174cf168e00a3ccb9f7dc83e5", + "data": { + "inGameID": "valhallazero", + "notecount": 1173 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 141, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c16b279718454fd8b55cc0e0b5a3df416d82789f", + "data": { + "inGameID": "valhallazero", + "notecount": 624 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 141, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9723fe8693d1f6fb696296c960f9f8d2c4c15884", + "data": { + "inGameID": "valhallazero", + "notecount": 893 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 141, + "versions": [ + "mobile" + ] + }, + { + "chartID": "acfb424b1f0fd166e7c2093343ef44ae11fc0582", + "data": { + "inGameID": "mirzam", + "notecount": 1303 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 142, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d50d6b36e49d32e7867fda17ee4737507472c7da", + "data": { + "inGameID": "mirzam", + "notecount": 662 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 142, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8860dbe7f16dcb76683f17a0de7acda09259ad79", + "data": { + "inGameID": "mirzam", + "notecount": 885 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 142, + "versions": [ + "mobile" + ] + }, + { + "chartID": "367a7ea6a5cd0adace8d7ab5302ba7c0bbec8ad4", + "data": { + "inGameID": "diode", + "notecount": 709 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.1, + "playtype": "Touch", + "songID": 143, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a5b219ec82fb5f9b431afb236bd0836df51d72e6", + "data": { + "inGameID": "diode", + "notecount": 452 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 143, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1cff156ff5da9a424015f9c72c74edf6cbb3749d", + "data": { + "inGameID": "diode", + "notecount": 472 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 143, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c092f2d59e54f3f86c75ec7323233d2b078c8f10", + "data": { + "inGameID": "freefall", + "notecount": 1336 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 144, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f5042ca9f1508ebd130caad7a470a75829f0300e", + "data": { + "inGameID": "freefall", + "notecount": 1023 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.6, + "playtype": "Touch", + "songID": 144, + "versions": [ + "mobile" + ] + }, + { + "chartID": "46799690ce44c12f5f0be100f31f4d3fc03230de", + "data": { + "inGameID": "freefall", + "notecount": 589 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 144, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a2a7d99486d01bad30cbdd819425757bb512552f", + "data": { + "inGameID": "freefall", + "notecount": 782 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 144, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f3ad5a0ba73c1c719ef8f25194aeba8b995a4551", + "data": { + "inGameID": "gloryroad", + "notecount": 1479 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 145, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3f0a31e0983e7a76b632a27f7d4daebbaeaf5db2", + "data": { + "inGameID": "gloryroad", + "notecount": 868 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 145, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fcf2e32a8666134819dcfb701f13d30456ee7571", + "data": { + "inGameID": "gloryroad", + "notecount": 999 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 145, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ed702f01992c8fabcc76a77b40eb0a67ad34ac2c", + "data": { + "inGameID": "monochromeprincess", + "notecount": 974 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 146, + "versions": [ + "mobile" + ] + }, + { + "chartID": "558b28dfdf35fb7adac8037fecc2c0f3d125caae", + "data": { + "inGameID": "monochromeprincess", + "notecount": 621 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 146, + "versions": [ + "mobile" + ] + }, + { + "chartID": "936e54e4c49d65e4fb3122a844011a70d06213e9", + "data": { + "inGameID": "monochromeprincess", + "notecount": 756 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 146, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ec24080e3581978de0ce2d744aabc85f035618aa", + "data": { + "inGameID": "heavenlycaress", + "notecount": 1560 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 147, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bd62a3616da8faceda1061f3ed1beb7902dfbcf6", + "data": { + "inGameID": "heavenlycaress", + "notecount": 855 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 147, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ceda499234e5a70c469e92c8840774709b8cb9d4", + "data": { + "inGameID": "heavenlycaress", + "notecount": 909 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 147, + "versions": [ + "mobile" + ] + }, + { + "chartID": "47391fae612564041d58916c3e04bcf72a68b589", + "data": { + "inGameID": "senkyou", + "notecount": 964 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.7, + "playtype": "Touch", + "songID": 148, + "versions": [ + "mobile" + ] + }, + { + "chartID": "93469fa45cd106601d51f5546a0afebe30849162", + "data": { + "inGameID": "senkyou", + "notecount": 627 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 148, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d0e2de9a9256cb0d9a45e56c9565a2eed3975cdf", + "data": { + "inGameID": "senkyou", + "notecount": 722 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 148, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b90a8af9b429c762a08c5fdddc1dd21e0a35b6af", + "data": { + "inGameID": "filament", + "notecount": 991 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 149, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e8673e5acb1bb04ebfbda283a03fa88647df7268", + "data": { + "inGameID": "filament", + "notecount": 582 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 149, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fe9aaa6a9e759219b2f946da7089ab0a70cbfbf5", + "data": { + "inGameID": "filament", + "notecount": 780 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 149, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6a3ef4a03f92e78440d81eeb7cfc9649a793ea90", + "data": { + "inGameID": "avantraze", + "notecount": 1125 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 150, + "versions": [ + "mobile" + ] + }, + { + "chartID": "21572e92992099b56988bcbe9851b5ddf5f008c7", + "data": { + "inGameID": "avantraze", + "notecount": 580 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 150, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c4366db8a313592152a7c41226e45b235ff93536", + "data": { + "inGameID": "avantraze", + "notecount": 727 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 150, + "versions": [ + "mobile" + ] + }, + { + "chartID": "512a97f5bc8852083b23c290cf4ea6d932474b47", + "data": { + "inGameID": "battlenoone", + "notecount": 1042 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 151, + "versions": [ + "mobile" + ] + }, + { + "chartID": "119f8e6c7fa5f8ae9f25f0eeb4f743beecd23944", + "data": { + "inGameID": "battlenoone", + "notecount": 476 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 151, + "versions": [ + "mobile" + ] + }, + { + "chartID": "efa10096b1f13ec77a9d5d86414af964d3fd7f88", + "data": { + "inGameID": "battlenoone", + "notecount": 677 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 151, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7be03df029bd2f9431831e8cc89debb7cd003a04", + "data": { + "inGameID": "laqryma", + "notecount": 1161 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 152, + "versions": [ + "mobile" + ] + }, + { + "chartID": "053b962751d1a5536253eae270089a13b4a81e5c", + "data": { + "inGameID": "laqryma", + "notecount": 956 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 152, + "versions": [ + "mobile" + ] + }, + { + "chartID": "26132a797eb79b5f35738258ae254b2bf142ef34", + "data": { + "inGameID": "laqryma", + "notecount": 447 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 152, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2d6dc0c8fe835c4acbba694c8dc16554e496a593", + "data": { + "inGameID": "laqryma", + "notecount": 651 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 152, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8e35e716528cb7d089d6b1c5e190542087e795a1", + "data": { + "inGameID": "einherjar", + "notecount": 1159 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 153, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1450b0675d0caabba7ff040c7a53b65c0d241853", + "data": { + "inGameID": "einherjar", + "notecount": 582 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 153, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fbfe7aaf598ebeeff61c616a0d91a29155b2d5e3", + "data": { + "inGameID": "einherjar", + "notecount": 767 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 153, + "versions": [ + "mobile" + ] + }, + { + "chartID": "72f4e4ad679aba1f7232c100283fdc06831e9b43", + "data": { + "inGameID": "izana", + "notecount": 976 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.3, + "playtype": "Touch", + "songID": 154, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e0d91eab458eb56e86c442af5928d2cbcba43cd1", + "data": { + "inGameID": "izana", + "notecount": 609 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 154, + "versions": [ + "mobile" + ] + }, + { + "chartID": "39ee4478c995d06f7e4e3af5f7e92074895a8b30", + "data": { + "inGameID": "izana", + "notecount": 836 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 154, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9badc37b815294332d15fb0689cf84b6209d0f0d", + "data": { + "inGameID": "saikyostronger", + "notecount": 1384 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "11", + "levelNum": 11, + "playtype": "Touch", + "songID": 155, + "versions": [ + "mobile" + ] + }, + { + "chartID": "630e2c18a9722ba5a95e615aa637aa65d5252468", + "data": { + "inGameID": "saikyostronger", + "notecount": 654 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 155, + "versions": [ + "mobile" + ] + }, + { + "chartID": "44755f17564dda603a194d7597de4449915e9e9b", + "data": { + "inGameID": "saikyostronger", + "notecount": 1067 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 155, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6ed573e77057b0a0b51cf8e9af77032414e2f141", + "data": { + "inGameID": "worldexecuteme", + "notecount": 851 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "Touch", + "songID": 156, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ed96506ac79d09620363b56ef7bbf38ba83944c3", + "data": { + "inGameID": "worldexecuteme", + "notecount": 452 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 156, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0ff1d0aeea4f5f08c281f26f69ce61a8337c7d5e", + "data": { + "inGameID": "worldexecuteme", + "notecount": 582 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 156, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7df21f3dfea8f0fd018fc77c1e99a0afe579b150", + "data": { + "inGameID": "blrink", + "notecount": 1015 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 157, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0a3ebf73f3670e667265becddc241c1d1d4fa751", + "data": { + "inGameID": "blrink", + "notecount": 400 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 157, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a3bbd76d3f53099911c71edd50ac28ab65e7a7f4", + "data": { + "inGameID": "blrink", + "notecount": 683 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 157, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a9b45f0f742c9c39ce8ccb3555e8c1b525a75ade", + "data": { + "inGameID": "oblivia", + "notecount": 956 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 158, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1d96fee55dfbb5460229c5a0b52d914f4c9fbfc3", + "data": { + "inGameID": "oblivia", + "notecount": 574 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 158, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ff33b0c4083fb9559f800f56fabdf55679df0110", + "data": { + "inGameID": "oblivia", + "notecount": 517 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 158, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e87ce5b6504c4651ff654f5892e75df040160854", + "data": { + "inGameID": "amygdata", + "notecount": 1199 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 159, + "versions": [ + "mobile" + ] + }, + { + "chartID": "edfbc2053319b07fe4bd385cce69fa1ef600437f", + "data": { + "inGameID": "amygdata", + "notecount": 504 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 159, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9003dbb2296cd13eebf3995c5f42dc2a1a9d60d2", + "data": { + "inGameID": "amygdata", + "notecount": 711 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 159, + "versions": [ + "mobile" + ] + }, + { + "chartID": "278c04e1cc42ff8ac5e421bfe245ac49b72ed5c7", + "data": { + "inGameID": "corpssansorganes", + "notecount": 1077 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 160, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e7dcf4416a95a9c98333d1cf1d2e073d458c147c", + "data": { + "inGameID": "corpssansorganes", + "notecount": 438 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 160, + "versions": [ + "mobile" + ] + }, + { + "chartID": "68db9d644f8114f60bc938dfb9b7b2ae79ff44e5", + "data": { + "inGameID": "corpssansorganes", + "notecount": 615 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 160, + "versions": [ + "mobile" + ] + }, + { + "chartID": "95d8dde8aaecea93e4b98cd25b7e3d590620fdd0", + "data": { + "inGameID": "equilibrium", + "notecount": 951 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 161, + "versions": [ + "mobile" + ] + }, + { + "chartID": "54331c301b575f36082eb41360512b6b8d7bfcc3", + "data": { + "inGameID": "equilibrium", + "notecount": 587 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 161, + "versions": [ + "mobile" + ] + }, + { + "chartID": "885ab9699c6f25bdb707aa40205665de4b9e7a83", + "data": { + "inGameID": "equilibrium", + "notecount": 724 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 161, + "versions": [ + "mobile" + ] + }, + { + "chartID": "90bd946c4866fa855b2ec62b59b7ebb4755d5354", + "data": { + "inGameID": "antagonism", + "notecount": 1142 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 162, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0588c7d3063cccd49663e14c8c00bd43aec9fbaa", + "data": { + "inGameID": "antagonism", + "notecount": 431 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 162, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f02066c5947cc0145aa340e8d389b33d690107a8", + "data": { + "inGameID": "antagonism", + "notecount": 738 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 162, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cfc5a58d649ec43f3e2ef1ac8aaf065131ce9d4f", + "data": { + "inGameID": "lostdesire", + "notecount": 1154 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 163, + "versions": [ + "mobile" + ] + }, + { + "chartID": "25e694ad4f4c3f72525e3792eb713ef02b6de346", + "data": { + "inGameID": "lostdesire", + "notecount": 684 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 163, + "versions": [ + "mobile" + ] + }, + { + "chartID": "836c94e53adbded8b9bda978b5a2d0636d0de490", + "data": { + "inGameID": "lostdesire", + "notecount": 871 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 163, + "versions": [ + "mobile" + ] + }, + { + "chartID": "59066e583562ef0f806e87324a655315e6c7209a", + "data": { + "inGameID": "dantalion", + "notecount": 1476 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.9, + "playtype": "Touch", + "songID": 164, + "versions": [ + "mobile" + ] + }, + { + "chartID": "01a312c416fb55e72acdb5fa808a85b86940c8a4", + "data": { + "inGameID": "dantalion", + "notecount": 731 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 164, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f1f5d7a4c105c508ae1b1a22e4e89588f1b68aac", + "data": { + "inGameID": "dantalion", + "notecount": 843 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.2, + "playtype": "Touch", + "songID": 164, + "versions": [ + "mobile" + ] + }, + { + "chartID": "20ddaeb952085d050608be175d1a98c29a671c5a", + "data": { + "inGameID": "ifi", + "notecount": 1576 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.9, + "playtype": "Touch", + "songID": 165, + "versions": [ + "mobile" + ] + }, + { + "chartID": "201a4e90a17b61e40d249da7368d6122e803d8c9", + "data": { + "inGameID": "ifi", + "notecount": 765 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 165, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cf75a872987028ff581ed8f431ade62b7ea655ad", + "data": { + "inGameID": "ifi", + "notecount": 1144 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 165, + "versions": [ + "mobile" + ] + }, + { + "chartID": "caf89ca328dac1f496d96a9e587b227a6a01736e", + "data": { + "inGameID": "tempestissimo", + "notecount": 1540 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "11", + "levelNum": 11.5, + "playtype": "Touch", + "songID": 166, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0b27112dc35f4643aaa7497492b28c83cde057bd", + "data": { + "inGameID": "tempestissimo", + "notecount": 1254 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 166, + "versions": [ + "mobile" + ] + }, + { + "chartID": "51605780b793f626d028a0350ca15e17419aba75", + "data": { + "inGameID": "tempestissimo", + "notecount": 919 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 166, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fda1567a60004f44941dc3c8710c846fb1dd06f1", + "data": { + "inGameID": "tempestissimo", + "notecount": 1034 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 166, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ded9fcfe1543cfd3066cc15e9a8d40e09b97a11f", + "data": { + "inGameID": "arcahv", + "notecount": 1065 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 167, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4160eef243542f11d9fa14fe5a5993383b8b69b9", + "data": { + "inGameID": "arcahv", + "notecount": 818 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 167, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3dd58ea10ec996783dc0c04bc08ccab47411fac4", + "data": { + "inGameID": "arcahv", + "notecount": 884 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 167, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5c64573005e69a86c99312c01a74f6a71bd00ade", + "data": { + "inGameID": "altale", + "notecount": 690 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 168, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3294343da3de6e722130fc0b7a666e24115fc958", + "data": { + "inGameID": "altale", + "notecount": 357 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 168, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8631efb72998cf0984b9617076d901c9b4133a7c", + "data": { + "inGameID": "altale", + "notecount": 424 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 168, + "versions": [ + "mobile" + ] + }, + { + "chartID": "14785ad4da3b3f8012c2f46d5d66a6a2d86b09f1", + "data": { + "inGameID": "givemeanightmare", + "notecount": 948 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.9, + "playtype": "Touch", + "songID": 169, + "versions": [ + "mobile" + ] + }, + { + "chartID": "687afe40c18426e59bfcf68c48318a41e333aa08", + "data": { + "inGameID": "givemeanightmare", + "notecount": 676 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 169, + "versions": [ + "mobile" + ] + }, + { + "chartID": "59fbcb3b0aa9d5bac74c6ce63ac5ffa51d301d64", + "data": { + "inGameID": "givemeanightmare", + "notecount": 817 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 169, + "versions": [ + "mobile" + ] + }, + { + "chartID": "606c4363ce7a1b45ef6e9902b831ca7e7737abe4", + "data": { + "inGameID": "blacklotus", + "notecount": 965 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 170, + "versions": [ + "mobile" + ] + }, + { + "chartID": "30017017949eb650675864c549efd2c544f1bcfd", + "data": { + "inGameID": "blacklotus", + "notecount": 653 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 170, + "versions": [ + "mobile" + ] + }, + { + "chartID": "77f0a15516616baecbd7fa3f72979d29b5f7b64b", + "data": { + "inGameID": "blacklotus", + "notecount": 687 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 170, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4387fe477cbad0f9603788592c2baba777121616", + "data": { + "inGameID": "gekka", + "notecount": 817 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.6, + "playtype": "Touch", + "songID": 171, + "versions": [ + "mobile" + ] + }, + { + "chartID": "28fe579600b2136e50c56c243c5ea605577b8251", + "data": { + "inGameID": "gekka", + "notecount": 559 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 171, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2fcfd1a79065257f13590c14fe23f9e7e5707a6f", + "data": { + "inGameID": "gekka", + "notecount": 628 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 171, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ee71edfe490aaca91ea411c8313f23dd2fba8c39", + "data": { + "inGameID": "vividtheory", + "notecount": 885 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 172, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7d568117ed6a292e457bb39acd05120fba1288d1", + "data": { + "inGameID": "vividtheory", + "notecount": 447 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 172, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2b3999ea3419d13d4052ef435e77aa7362a19aaa", + "data": { + "inGameID": "vividtheory", + "notecount": 658 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 172, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b31fd627e03a9ad5797a10a80f28513d3742b081", + "data": { + "inGameID": "onefr", + "notecount": 758 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.2, + "playtype": "Touch", + "songID": 173, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f6b477c63cfdc3d86a3359111817709aa6a3751b", + "data": { + "inGameID": "onefr", + "notecount": 411 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 173, + "versions": [ + "mobile" + ] + }, + { + "chartID": "77967ae8d987aeb8e6f9c454a5d9fa562f5fdea6", + "data": { + "inGameID": "onefr", + "notecount": 539 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 173, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f3ccd3f66326f53b3c61e13f5f1f8dc56bb26c59", + "data": { + "inGameID": "scarletcage", + "notecount": 1195 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 174, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b2f7ca890a66a0585c605f33b8c240d6ea0e041d", + "data": { + "inGameID": "scarletcage", + "notecount": 570 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 174, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bbb03d31d178427e0a5702382d4916da39b1458f", + "data": { + "inGameID": "scarletcage", + "notecount": 711 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 174, + "versions": [ + "mobile" + ] + }, + { + "chartID": "85e4fc26fb516b05f73d34f74bb9b0a9805524b6", + "data": { + "inGameID": "faintlight", + "notecount": 809 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 175, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9f1a5664a01b1fe3e45825708f3a1c673427530b", + "data": { + "inGameID": "faintlight", + "notecount": 587 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 175, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d4af937449c8f002ce63499c9bcc3c12dd4467ed", + "data": { + "inGameID": "faintlight", + "notecount": 711 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 175, + "versions": [ + "mobile" + ] + }, + { + "chartID": "14481348017106242148c6f9581def7b4c13dcc6", + "data": { + "inGameID": "feelssoright", + "notecount": 947 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 176, + "versions": [ + "mobile" + ] + }, + { + "chartID": "efc985a84c6f378886dcbe67de84eab6c1856ddd", + "data": { + "inGameID": "feelssoright", + "notecount": 594 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 176, + "versions": [ + "mobile" + ] + }, + { + "chartID": "946914aa8cd9b53a7b34c973e3bf525999aa25c3", + "data": { + "inGameID": "feelssoright", + "notecount": 636 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 176, + "versions": [ + "mobile" + ] + }, + { + "chartID": "09181c22a75049b104564b0b63a8a70de7edd98c", + "data": { + "inGameID": "teriqma", + "notecount": 954 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 177, + "versions": [ + "mobile" + ] + }, + { + "chartID": "71218db0271eff418c6a5cb7b82818cdea5e16cb", + "data": { + "inGameID": "teriqma", + "notecount": 873 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 177, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2c6e358b1f2a1ecc2a5595586d2e8d4d680f290c", + "data": { + "inGameID": "teriqma", + "notecount": 345 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 177, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3aa571d5bd4bb209b64d35fbed2ffbd4d504f8ab", + "data": { + "inGameID": "teriqma", + "notecount": 579 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 177, + "versions": [ + "mobile" + ] + }, + { + "chartID": "93250b77e6ae11fee62294c18aece6e797c36ad6", + "data": { + "inGameID": "mahoroba", + "notecount": 828 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 178, + "versions": [ + "mobile" + ] + }, + { + "chartID": "69d5eb01188ab518f49dcdd85c75858578f5691c", + "data": { + "inGameID": "mahoroba", + "notecount": 422 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 178, + "versions": [ + "mobile" + ] + }, + { + "chartID": "98488e4a85b49fa7bef10af8c674c923412c0162", + "data": { + "inGameID": "mahoroba", + "notecount": 632 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 178, + "versions": [ + "mobile" + ] + }, + { + "chartID": "16d1e078e82276fc748ad6baaa12af6ab1991684", + "data": { + "inGameID": "badtek", + "notecount": 916 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 179, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b3538311c13383f46e7b388a110009b027e8feeb", + "data": { + "inGameID": "badtek", + "notecount": 532 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 179, + "versions": [ + "mobile" + ] + }, + { + "chartID": "918d6d0d62136e2e67159fde8f560aea0fbb75d8", + "data": { + "inGameID": "badtek", + "notecount": 595 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 179, + "versions": [ + "mobile" + ] + }, + { + "chartID": "53a4c353eeb56077702adf279f85159455cdd76a", + "data": { + "inGameID": "maliciousmischance", + "notecount": 1126 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 180, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c2c807aa342d9622989776e39c41c078b313f78f", + "data": { + "inGameID": "maliciousmischance", + "notecount": 510 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 180, + "versions": [ + "mobile" + ] + }, + { + "chartID": "11f43206eb39dd9f6c803213e8332750426555c1", + "data": { + "inGameID": "maliciousmischance", + "notecount": 706 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 180, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b8efba49ae2a3fb6a40c8015999d5e82e021502a", + "data": { + "inGameID": "gothiveofra", + "notecount": 794 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 181, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f4aff2eadb38c7330a5b2055f061bd0dd1f95a9b", + "data": { + "inGameID": "gothiveofra", + "notecount": 322 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 181, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c113e2163ef745346c906cd621dce38e070153c6", + "data": { + "inGameID": "gothiveofra", + "notecount": 509 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 181, + "versions": [ + "mobile" + ] + }, + { + "chartID": "06258ad1fa423750c2b27027b0041713d75fd4c5", + "data": { + "inGameID": "buchigireberserker", + "notecount": 1412 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.9, + "playtype": "Touch", + "songID": 182, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2d309aee0d949099f889fe8b69b3b1cbfb00ca59", + "data": { + "inGameID": "buchigireberserker", + "notecount": 850 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 182, + "versions": [ + "mobile" + ] + }, + { + "chartID": "feabf95983defc614805d85ad22718b7959e00cf", + "data": { + "inGameID": "buchigireberserker", + "notecount": 1046 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.6, + "playtype": "Touch", + "songID": 182, + "versions": [ + "mobile" + ] + }, + { + "chartID": "300298ef2f2b37d969ad3a40cb8b36180bc77005", + "data": { + "inGameID": "galaxyfriends", + "notecount": 1013 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 183, + "versions": [ + "mobile" + ] + }, + { + "chartID": "885158da5e0ee1a452ded222e9638931e1b400e2", + "data": { + "inGameID": "galaxyfriends", + "notecount": 474 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 183, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6444bcd9488ffad61a102858ceab45c51429968c", + "data": { + "inGameID": "galaxyfriends", + "notecount": 572 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 183, + "versions": [ + "mobile" + ] + }, + { + "chartID": "aec7835ba7a84fda1e6a623c3f73710fca7cd121", + "data": { + "inGameID": "crossover", + "notecount": 1094 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 184, + "versions": [ + "mobile" + ] + }, + { + "chartID": "81ee4d0cdda69fa664c3995b8eb97a2d90cbba3f", + "data": { + "inGameID": "crossover", + "notecount": 653 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 184, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a5c2ff603df5706a81cc2e10d866b51ce4b636bc", + "data": { + "inGameID": "crossover", + "notecount": 810 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 184, + "versions": [ + "mobile" + ] + }, + { + "chartID": "df54647af1423a31d07bd451634bf29be23d39c6", + "data": { + "inGameID": "xeraphinite", + "notecount": 1048 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 185, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0cc1f05ef764ffa8da7df0df8d8178fc80eea9b2", + "data": { + "inGameID": "xeraphinite", + "notecount": 383 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 185, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1867ba1a0ca4f44283e4652dd94cec34d1edb440", + "data": { + "inGameID": "xeraphinite", + "notecount": 643 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 185, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5be578b407c5890fbbdf44dd685cef76aac8fac7", + "data": { + "inGameID": "lapis", + "notecount": 920 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 186, + "versions": [ + "mobile" + ] + }, + { + "chartID": "78fb987cdb54d2670b7635c3343dded17dc7cacb", + "data": { + "inGameID": "lapis", + "notecount": 391 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 186, + "versions": [ + "mobile" + ] + }, + { + "chartID": "54dbd4ef29e6802a0e8ba36585d9fae68ee41a3a", + "data": { + "inGameID": "lapis", + "notecount": 520 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 186, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9807d25e433a2a3391b7645ef1aa981f429df3c1", + "data": { + "inGameID": "xanatos", + "notecount": 1232 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 187, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c04a1d4994d2b2b90937b541c0506aeb3166ab7f", + "data": { + "inGameID": "xanatos", + "notecount": 735 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 187, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6aae1bcc25aece568264af8d85a513e762173f1d", + "data": { + "inGameID": "xanatos", + "notecount": 938 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 187, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5d2dab6c6c72e2d0021ac33444e73f01a58bed63", + "data": { + "inGameID": "purpleverse", + "notecount": 1023 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 188, + "versions": [ + "mobile" + ] + }, + { + "chartID": "86c149ae6ec7ab20a043861ee8f266fdf5a4e500", + "data": { + "inGameID": "purpleverse", + "notecount": 558 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 188, + "versions": [ + "mobile" + ] + }, + { + "chartID": "686baed5409043148138219ec415d56dee89224e", + "data": { + "inGameID": "purpleverse", + "notecount": 664 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 188, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9c7e46d0e1bc8e0291435ecd1124fc1e6a83da0e", + "data": { + "inGameID": "alicealamode", + "notecount": 872 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 189, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1c6615999173975319914d18be35e3bbeda6ff78", + "data": { + "inGameID": "alicealamode", + "notecount": 436 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 189, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7e301cbfc8a144a63fcce908d53d96dc0b767b3a", + "data": { + "inGameID": "alicealamode", + "notecount": 618 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 189, + "versions": [ + "mobile" + ] + }, + { + "chartID": "49da1651af39ea1bec6d3c7d3510c079bd8c0b1a", + "data": { + "inGameID": "eccentrictale", + "notecount": 732 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 190, + "versions": [ + "mobile" + ] + }, + { + "chartID": "844cecb61c7261ad0a6debfb0dc09d866b45d056", + "data": { + "inGameID": "eccentrictale", + "notecount": 313 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 190, + "versions": [ + "mobile" + ] + }, + { + "chartID": "752d8965f9d00addba2458204e44a6ac0cdd46db", + "data": { + "inGameID": "eccentrictale", + "notecount": 483 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 190, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d848eb2785c7bb3d199379658575d4900fbcb23b", + "data": { + "inGameID": "alicessuitcase", + "notecount": 999 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 191, + "versions": [ + "mobile" + ] + }, + { + "chartID": "654551ecc412c8ff2e2579b870bd6a0c98d91a21", + "data": { + "inGameID": "alicessuitcase", + "notecount": 644 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 191, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8e2f3124759c67247a98248a6954be4aa3a1f8f9", + "data": { + "inGameID": "alicessuitcase", + "notecount": 660 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 191, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0fed0f75bebf964df9e93d7ed262cb6b928d0651", + "data": { + "inGameID": "jump", + "notecount": 841 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "Touch", + "songID": 192, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c655f62bdfd8bf0dfbdbeef7eb1b013998c9aca0", + "data": { + "inGameID": "jump", + "notecount": 531 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 192, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d3124e87e333e83b2cc072cae7b089967cea6a33", + "data": { + "inGameID": "jump", + "notecount": 622 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 192, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7bc23b19913c872e899fd4923cd96c4d661e649e", + "data": { + "inGameID": "felis", + "notecount": 1153 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 193, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c99c4b96d5159c271d533b4a019bd8f4920663b5", + "data": { + "inGameID": "felis", + "notecount": 463 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 193, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ca86dabc1cdc7d5d942634b1e0ea8c368bb4e283", + "data": { + "inGameID": "felis", + "notecount": 624 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 193, + "versions": [ + "mobile" + ] + }, + { + "chartID": "691f52a74a3377f60f50d25be96dbcc0d5b6e452", + "data": { + "inGameID": "besideyou", + "notecount": 703 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.7, + "playtype": "Touch", + "songID": 194, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ed2b5abc27f81a5d02a82edd8a53f1fc3e4b47f7", + "data": { + "inGameID": "besideyou", + "notecount": 526 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 194, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fa98a6ff893ada7a93836f73379d0d70c7881ea1", + "data": { + "inGameID": "besideyou", + "notecount": 634 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 194, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dbc3f01359cc81c1d78f8ebdad75bedcf28b77f1", + "data": { + "inGameID": "heartjackin", + "notecount": 1112 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 195, + "versions": [ + "mobile" + ] + }, + { + "chartID": "508cc9d4fa959cda721ab916dfbc02e6f1f8aecb", + "data": { + "inGameID": "heartjackin", + "notecount": 506 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 195, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3f500ed2a69b648810c194f06f97a928ade2e7da", + "data": { + "inGameID": "heartjackin", + "notecount": 543 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 195, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6bb6223fd751aba3fba083d4e73493bd89b86c29", + "data": { + "inGameID": "toaliceliddell", + "notecount": 998 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.3, + "playtype": "Touch", + "songID": 196, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dde139237a410ff14849ff8de0ece90ae408c910", + "data": { + "inGameID": "toaliceliddell", + "notecount": 535 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 196, + "versions": [ + "mobile" + ] + }, + { + "chartID": "537e251cf38286201956974f62ce8c994cac7846", + "data": { + "inGameID": "toaliceliddell", + "notecount": 674 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 196, + "versions": [ + "mobile" + ] + }, + { + "chartID": "de1fc9422739322fcce2ec53a4cc4c6576432f3c", + "data": { + "inGameID": "lazyaddiction", + "notecount": 1031 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 197, + "versions": [ + "mobile" + ] + }, + { + "chartID": "349c1c5f16ed9e6aca41fee0dc868969f75b0236", + "data": { + "inGameID": "lazyaddiction", + "notecount": 462 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 197, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2d6c0c2b84c481c427f6838567116bd3d9cd4bb7", + "data": { + "inGameID": "lazyaddiction", + "notecount": 647 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 197, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b2750052500c8749c86f6e4accf9abe8faea4322", + "data": { + "inGameID": "dazzlehop", + "notecount": 1022 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 198, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cd868180d8310dc72d900af59cb52fcaccecc91f", + "data": { + "inGameID": "dazzlehop", + "notecount": 561 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 198, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6143eb12383a98d77dc477b2ca32c8f95b868ea0", + "data": { + "inGameID": "dazzlehop", + "notecount": 571 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 198, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a27879abfe48cc496edec85d79726c86e144bcf4", + "data": { + "inGameID": "viyellastears", + "notecount": 1403 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.3, + "playtype": "Touch", + "songID": 199, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e66f55e356a43570aa8729923ab664159bfee2af", + "data": { + "inGameID": "viyellastears", + "notecount": 716 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 199, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bf2b3a34d4abb8edd179b11cd86e8752bbfb0652", + "data": { + "inGameID": "viyellastears", + "notecount": 942 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 199, + "versions": [ + "mobile" + ] + }, + { + "chartID": "75712ebc8bdbc06dcc2243d291a76bf7db7bf384", + "data": { + "inGameID": "omegafour", + "notecount": 1393 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.8, + "playtype": "Touch", + "songID": 200, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9b6aa819b07fd43e05d03d03b3717aeee881cd48", + "data": { + "inGameID": "omegafour", + "notecount": 816 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 200, + "versions": [ + "mobile" + ] + }, + { + "chartID": "239c6b7c2fa10d3f0d7ba1103760622c87adac08", + "data": { + "inGameID": "omegafour", + "notecount": 943 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 200, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ef163853809ef69a098f128be7328eaaa805d6d0", + "data": { + "inGameID": "aprilshowers", + "notecount": 697 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 201, + "versions": [ + "mobile" + ] + }, + { + "chartID": "23713878648cb94c48c3364e6e595a45ddd2607c", + "data": { + "inGameID": "aprilshowers", + "notecount": 363 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 201, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b83814948099d938621e21b1cc54f6b1dafde9e7", + "data": { + "inGameID": "aprilshowers", + "notecount": 544 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 201, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a9a8b19c73df3ffc43fc1592795a8916c1bcfc41", + "data": { + "inGameID": "seventhsense", + "notecount": 925 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 202, + "versions": [ + "mobile" + ] + }, + { + "chartID": "eea22272c29ee8b55ae6b640015896d3a5d45cea", + "data": { + "inGameID": "seventhsense", + "notecount": 360 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 202, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b38483a75d382849adb1f7cf537e65a24e984f62", + "data": { + "inGameID": "seventhsense", + "notecount": 739 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 202, + "versions": [ + "mobile" + ] + }, + { + "chartID": "69f883c06f11a4d5cff92eb527bbadbf599144d0", + "data": { + "inGameID": "oshamascramble", + "notecount": 1073 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 203, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c0553220b2840e19ae2d4c22c26ac995a34fd81c", + "data": { + "inGameID": "oshamascramble", + "notecount": 508 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 203, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5659cdf0999b9b2036fa9441bc3c4fd1c5c10459", + "data": { + "inGameID": "oshamascramble", + "notecount": 568 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 203, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a8a7974f9a10e9e51f08a41604cb524054a302be", + "data": { + "inGameID": "amazingmightyyyy", + "notecount": 1249 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 204, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f86289955ad6e088f81bf31e4748a6434e9d10b9", + "data": { + "inGameID": "amazingmightyyyy", + "notecount": 624 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 204, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cbf523ff78c76c723bf344e21648cf3a6d11e051", + "data": { + "inGameID": "amazingmightyyyy", + "notecount": 776 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 204, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d782c20aa7ab6cc864463eeb7df962a635eb12ae", + "data": { + "inGameID": "climax", + "notecount": 1367 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 205, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d386793567b5e9c0d344ea1afdd871dc06b5a017", + "data": { + "inGameID": "climax", + "notecount": 773 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 205, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e681c2e8de639a26fb9b04eabf2b117a32078e4c", + "data": { + "inGameID": "climax", + "notecount": 988 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 205, + "versions": [ + "mobile" + ] + }, + { + "chartID": "887f4e22c8d47e209e480a01886611d133997a37", + "data": { + "inGameID": "lastcelebration", + "notecount": 1475 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.5, + "playtype": "Touch", + "songID": 206, + "versions": [ + "mobile" + ] + }, + { + "chartID": "46c89a5fca1576c792d90427e99b52b35103a624", + "data": { + "inGameID": "lastcelebration", + "notecount": 969 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 206, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9922f56fb808b7be130ad301ea73876ad14e3f44", + "data": { + "inGameID": "lastcelebration", + "notecount": 994 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 206, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fcc35c153d759211ecd45b5dbe45f564138ae57d", + "data": { + "inGameID": "gou", + "notecount": 1522 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.9, + "playtype": "Touch", + "songID": 207, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0cc09f06675e0acc91aa10edc4216567c215d4b2", + "data": { + "inGameID": "gou", + "notecount": 814 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 207, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0c577a207683c5928b8f8326ff2072c818a0619c", + "data": { + "inGameID": "gou", + "notecount": 1070 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 207, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ac0646d46925700632ede09ae1296d54d301bbe7", + "data": { + "inGameID": "glow", + "notecount": 916 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 208, + "versions": [ + "mobile" + ] + }, + { + "chartID": "89c7f96b5c1ebdb6557e976904d21b82b98805f8", + "data": { + "inGameID": "glow", + "notecount": 504 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 208, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dd98d347015868a44a2db928f94a86c41c95a888", + "data": { + "inGameID": "glow", + "notecount": 666 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 208, + "versions": [ + "mobile" + ] + }, + { + "chartID": "80563f73602f30c1765d65a82e216f72d27d98cf", + "data": { + "inGameID": "attraqtia", + "notecount": 1433 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 209, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fe503f516f07178606146ef6677c4b5642c22026", + "data": { + "inGameID": "attraqtia", + "notecount": 732 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 209, + "versions": [ + "mobile" + ] + }, + { + "chartID": "93898c33dfbabf084ebb17db9a8e2d308cc110ca", + "data": { + "inGameID": "attraqtia", + "notecount": 1002 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 209, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e043b38fb1ee91a24d35e60e61daa1f2fd6e5d6e", + "data": { + "inGameID": "enchantedlove", + "notecount": 759 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 210, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c866970dba98ce33f9cba8e5fc155eef41987531", + "data": { + "inGameID": "enchantedlove", + "notecount": 436 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 210, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5ab7761497d0f9650d7d8f0a0118fd2b45936702", + "data": { + "inGameID": "enchantedlove", + "notecount": 617 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 210, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7c11200b15282bc9f429a510faeab6fadb23376f", + "data": { + "inGameID": "take", + "notecount": 1050 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 211, + "versions": [ + "mobile" + ] + }, + { + "chartID": "91d1a8dbfb1c3406e6b699af90290f2b6a61a5fa", + "data": { + "inGameID": "take", + "notecount": 499 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 211, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b5c158170a44bb5767000668d05426b84a3674de", + "data": { + "inGameID": "take", + "notecount": 631 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 211, + "versions": [ + "mobile" + ] + }, + { + "chartID": "81cf834a1056d71928646fb0e427f6154254d01a", + "data": { + "inGameID": "gimmedablood", + "notecount": 1093 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 212, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e54ab31d40acb2e0d3cc50ae365338975651b502", + "data": { + "inGameID": "gimmedablood", + "notecount": 582 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 212, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2ff95448c314193cdbefec26be375aa7b8b781e0", + "data": { + "inGameID": "gimmedablood", + "notecount": 737 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 212, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b3c3e37ed41d6592108ca28ef58911d7d9fe8632", + "data": { + "inGameID": "bassline", + "notecount": 861 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 213, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f850ab848deb09dd95c1504f64946b8f769a6f41", + "data": { + "inGameID": "bassline", + "notecount": 415 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 213, + "versions": [ + "mobile" + ] + }, + { + "chartID": "37392e11069a019562bb444a24f36d5e7ff5945b", + "data": { + "inGameID": "bassline", + "notecount": 548 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 213, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2b38cfe273f665dfd1ed541110ca73230a6b00a8", + "data": { + "inGameID": "lifeispiano", + "notecount": 674 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 214, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b9fb81450c616807b0b80a428b532db30c4c304f", + "data": { + "inGameID": "lifeispiano", + "notecount": 398 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 214, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c1e8440fea0ecb4dbcbcee0fc908ba77d9dd99f9", + "data": { + "inGameID": "lifeispiano", + "notecount": 437 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 214, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0466f093667f12d2c885efd92389a63bcbfa0d1f", + "data": { + "inGameID": "paperwitch", + "notecount": 793 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.7, + "playtype": "Touch", + "songID": 215, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c281793fcc7b7120dcae8e5715fdeb412e0e67b7", + "data": { + "inGameID": "paperwitch", + "notecount": 348 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 215, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7c6e6f9cb2ae25d529a3038ebed2fd0bad10d187", + "data": { + "inGameID": "paperwitch", + "notecount": 487 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 215, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e4212621bddba4989348e182b72691fa25622966", + "data": { + "inGameID": "crystalgravity", + "notecount": 872 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 216, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1744aafcf5ca2e62fffc6821817fecba451b11cd", + "data": { + "inGameID": "crystalgravity", + "notecount": 571 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 216, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dc84cf286c46a9304f21b9ae9b8e994fbd13e5ba", + "data": { + "inGameID": "crystalgravity", + "notecount": 653 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 216, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f6fe57e1dfe73dc555b10a4f3e2d48bf2dd399e0", + "data": { + "inGameID": "farawaylight", + "notecount": 1322 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 217, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a96009c303afbe1d4dc1fcd9e0d42c2cc462e509", + "data": { + "inGameID": "farawaylight", + "notecount": 656 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 217, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ad16ac3247d06a6ab31ae1d189b5948e3dfaeb91", + "data": { + "inGameID": "farawaylight", + "notecount": 769 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 217, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e069e3a79c8231d0e0ef20e92635e832b6a5b342", + "data": { + "inGameID": "loschen", + "notecount": 1235 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 218, + "versions": [ + "mobile" + ] + }, + { + "chartID": "11f5b572471e5bc49c709de03c8a5211298bff8a", + "data": { + "inGameID": "loschen", + "notecount": 642 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 218, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b690d8eaa8332216df0f3986c1b23c8ed27e57fd", + "data": { + "inGameID": "loschen", + "notecount": 850 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 218, + "versions": [ + "mobile" + ] + }, + { + "chartID": "436bf3f04adc6e82360c916e9670d6adc9a676b2", + "data": { + "inGameID": "aegleseeker", + "notecount": 1568 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "11", + "levelNum": 11.1, + "playtype": "Touch", + "songID": 219, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bc43a5276055bdd538aa97adb857a713f3ad5203", + "data": { + "inGameID": "aegleseeker", + "notecount": 973 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 219, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fe09ce871d8d35f08972751ca5784703fd1acd32", + "data": { + "inGameID": "aegleseeker", + "notecount": 1235 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "9", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 219, + "versions": [ + "mobile" + ] + }, + { + "chartID": "74c5c96129d18c48bd8df479f29171d92b977afd", + "data": { + "inGameID": "coastalhighway", + "notecount": 732 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 220, + "versions": [ + "mobile" + ] + }, + { + "chartID": "85cd90e55f1543ed50a0de73f88dcb262c4c0f84", + "data": { + "inGameID": "coastalhighway", + "notecount": 355 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 220, + "versions": [ + "mobile" + ] + }, + { + "chartID": "356eff6d0912bd1f6f4d00fd143e0e6ddb46e053", + "data": { + "inGameID": "coastalhighway", + "notecount": 479 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 220, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3fee46f0fde0ffa8e50428e98cb1c352ccb003f5", + "data": { + "inGameID": "odysseia", + "notecount": 1092 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 221, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2e7f269278fd1da6e63258ec50f8887a91d8ee9c", + "data": { + "inGameID": "odysseia", + "notecount": 717 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 221, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8fc4e679a2db819e428e9ceb3a9269dd73db3a93", + "data": { + "inGameID": "odysseia", + "notecount": 909 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 221, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2c285b9bb196fe1765c5e8665b02aea8a48c9897", + "data": { + "inGameID": "overwhelm", + "notecount": 1251 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 222, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9d6ca549360544f4f53f34b3854417c10d35655c", + "data": { + "inGameID": "overwhelm", + "notecount": 854 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 222, + "versions": [ + "mobile" + ] + }, + { + "chartID": "678d3dab4cd1e54b660a79125ede2a06afa674d1", + "data": { + "inGameID": "overwhelm", + "notecount": 1038 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 222, + "versions": [ + "mobile" + ] + }, + { + "chartID": "25743741b4d355a702f3e3e8d97f0e580847e46c", + "data": { + "inGameID": "vandalism", + "notecount": 1087 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 223, + "versions": [ + "mobile" + ] + }, + { + "chartID": "239d41905a27a399e24d963e389756f14d02eab9", + "data": { + "inGameID": "vandalism", + "notecount": 668 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 223, + "versions": [ + "mobile" + ] + }, + { + "chartID": "042f8315f9544d775339880467b6dbf93b09adeb", + "data": { + "inGameID": "vandalism", + "notecount": 685 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 223, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a83ac87c4c11c8b015cecb692e80f2b6873dec32", + "data": { + "inGameID": "turbocharger", + "notecount": 979 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "Touch", + "songID": 224, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4a1b36770b8a9167494e30946e53644fa3f5a0f4", + "data": { + "inGameID": "turbocharger", + "notecount": 419 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 224, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7f0420323cc9e94d8191e6830af56a1e82695cde", + "data": { + "inGameID": "turbocharger", + "notecount": 659 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 224, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0878d94d7c59aeb935a40ca690eeda9566c0466d", + "data": { + "inGameID": "theultimacy", + "notecount": 1304 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 225, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b9d14eb92aac77575b4af64cbd314813e224ba53", + "data": { + "inGameID": "theultimacy", + "notecount": 749 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 225, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cf4a3f0b8caf6d1dd293caf8656060f61eb7874a", + "data": { + "inGameID": "theultimacy", + "notecount": 919 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 225, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f15ab15f2f15008d1bb95e629689b48852d17529", + "data": { + "inGameID": "rekkaresonance", + "notecount": 1212 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 226, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9147ed51e9096b4d52bedfecca134f73db6f89d7", + "data": { + "inGameID": "rekkaresonance", + "notecount": 860 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 226, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f0d6d79d504cf50af11b48fa3020bf2dbda0ffbf", + "data": { + "inGameID": "rekkaresonance", + "notecount": 1051 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 226, + "versions": [ + "mobile" + ] + }, + { + "chartID": "18a0e1aeae8e1d6944ef9b24c1a25f4ec9b814cf", + "data": { + "inGameID": "kyogenkigo", + "notecount": 969 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 227, + "versions": [ + "mobile" + ] + }, + { + "chartID": "90f9520ba0304d31b773ee04742aa7fe59deb307", + "data": { + "inGameID": "kyogenkigo", + "notecount": 576 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 227, + "versions": [ + "mobile" + ] + }, + { + "chartID": "60e7e89a3ed1cc3bf1dc73a33f82422c258f8220", + "data": { + "inGameID": "kyogenkigo", + "notecount": 684 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 227, + "versions": [ + "mobile" + ] + }, + { + "chartID": "25a5a8d3a627a5de834e5aee53b002a5113eb080", + "data": { + "inGameID": "hivemind", + "notecount": 1252 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 228, + "versions": [ + "mobile" + ] + }, + { + "chartID": "18f7f852dbdba037fa62e6bae441a790b4fc0642", + "data": { + "inGameID": "hivemind", + "notecount": 995 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 228, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8bbcb518f249ccbe612e36ef3a0e39ce238c3b08", + "data": { + "inGameID": "hivemind", + "notecount": 988 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 228, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f675b044aedc81d780099b764774713960a6e2d6", + "data": { + "inGameID": "seclusion", + "notecount": 1132 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 229, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6dd7fe7c973ec9d47ce61a755188ac8fac382ee7", + "data": { + "inGameID": "seclusion", + "notecount": 544 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 229, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b55c98db99d927748e380ecff57662f0718b5e73", + "data": { + "inGameID": "seclusion", + "notecount": 762 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 229, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ab7badf3dfc3b0998dfa39986f42f63792fb0f27", + "data": { + "inGameID": "smallcloud", + "notecount": 919 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 230, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a213669fb2fb1e8af59799c38791ba4e55acfbe8", + "data": { + "inGameID": "smallcloud", + "notecount": 548 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 230, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6b5e5440ffe2338ff76c8f38623e9d14e1f1b653", + "data": { + "inGameID": "smallcloud", + "notecount": 727 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 230, + "versions": [ + "mobile" + ] + }, + { + "chartID": "797bf02a399dbcff809743a0bdbb9ac5c5640d8d", + "data": { + "inGameID": "alterale", + "notecount": 1277 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 231, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3730f57af163343d7000e6ea395804c563a5e09a", + "data": { + "inGameID": "alterale", + "notecount": 728 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 231, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ba1868fca0ef9d75b94014223e7f0c084b4e858d", + "data": { + "inGameID": "alterale", + "notecount": 881 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 231, + "versions": [ + "mobile" + ] + }, + { + "chartID": "88b84f687175d4ff58af74d06886de284062e40c", + "data": { + "inGameID": "divinelight", + "notecount": 1021 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.8, + "playtype": "Touch", + "songID": 232, + "versions": [ + "mobile" + ] + }, + { + "chartID": "18f3086fcfffe16d1342c53fb20fd5172e29b79f", + "data": { + "inGameID": "divinelight", + "notecount": 798 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 232, + "versions": [ + "mobile" + ] + }, + { + "chartID": "303aebf771a845a8fdc321f95f5c292f842b52a8", + "data": { + "inGameID": "divinelight", + "notecount": 835 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 232, + "versions": [ + "mobile" + ] + }, + { + "chartID": "18774248e1d9abfe123b85bbcc703397f34e555c", + "data": { + "inGameID": "mazymetroplex", + "notecount": 952 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 233, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f9831ca3f298d54fc4252eae6ba69f8821022a23", + "data": { + "inGameID": "mazymetroplex", + "notecount": 453 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 233, + "versions": [ + "mobile" + ] + }, + { + "chartID": "be2c70f3d7ca12d4cecdf20bfda55eeb65b6c178", + "data": { + "inGameID": "mazymetroplex", + "notecount": 704 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 233, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4eb1e55f7195ccc4d068a46714e9577b5bee56a0", + "data": { + "inGameID": "quonwacca", + "notecount": 1044 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 234, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bb5342de8a740977c1bbd7ca8f66b16eefc974de", + "data": { + "inGameID": "quonwacca", + "notecount": 749 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.7, + "playtype": "Touch", + "songID": 234, + "versions": [ + "mobile" + ] + }, + { + "chartID": "07aff70cc9f38669c7cfe4dc99041d08aac6cf1b", + "data": { + "inGameID": "quonwacca", + "notecount": 425 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 234, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1eb9de344a1225549b3b8ad7dedeee86004c7a6a", + "data": { + "inGameID": "quonwacca", + "notecount": 496 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 234, + "versions": [ + "mobile" + ] + }, + { + "chartID": "18bccfe1fc0d0a24e49f78b7e75a42554d0647cf", + "data": { + "inGameID": "withu", + "notecount": 932 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 235, + "versions": [ + "mobile" + ] + }, + { + "chartID": "595a1126ce239bc788b60a91125481bde0987069", + "data": { + "inGameID": "withu", + "notecount": 448 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 235, + "versions": [ + "mobile" + ] + }, + { + "chartID": "073b87102620470506e86f940aaa92782ad01ecc", + "data": { + "inGameID": "withu", + "notecount": 649 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 235, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f8851952958ae718f84017e1819ea035eb443b18", + "data": { + "inGameID": "genocider", + "notecount": 1483 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 236, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4333887ed017982fb2f48ed7c078cbf063955a83", + "data": { + "inGameID": "genocider", + "notecount": 832 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 236, + "versions": [ + "mobile" + ] + }, + { + "chartID": "472a413af5128525f56b144509ba5e6af4db98b4", + "data": { + "inGameID": "genocider", + "notecount": 1025 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 236, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ba260640ed7627d96405e37ff27c1923b258cc1d", + "data": { + "inGameID": "letyoudivermx", + "notecount": 1049 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 237, + "versions": [ + "mobile" + ] + }, + { + "chartID": "30e2f541b5c2c8d12bcbeb2d8caa9faf65af86c6", + "data": { + "inGameID": "letyoudivermx", + "notecount": 608 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 237, + "versions": [ + "mobile" + ] + }, + { + "chartID": "eb4e69a8694d06b552996bb077400e866c79f3ef", + "data": { + "inGameID": "letyoudivermx", + "notecount": 819 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 237, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1d7697eb60151e6dfc1a31e546a6919163ffe911", + "data": { + "inGameID": "sheriruthrmx", + "notecount": 1134 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 238, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9455c2bb7424c2da70d696e40266e4677dd026cf", + "data": { + "inGameID": "sheriruthrmx", + "notecount": 671 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 238, + "versions": [ + "mobile" + ] + }, + { + "chartID": "674e596025062373a3e4847ad10b5c006a870d12", + "data": { + "inGameID": "sheriruthrmx", + "notecount": 795 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 238, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2dd1f2dff88834afe02ecd3cec79246671f76208", + "data": { + "inGameID": "eveninginscarlet", + "notecount": 922 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 239, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a918d6d56932d5b01cdf6362336cac9b1f534ffb", + "data": { + "inGameID": "eveninginscarlet", + "notecount": 530 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 239, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2e844f71fe8ccaadda80536351d8ccff332d84f0", + "data": { + "inGameID": "eveninginscarlet", + "notecount": 638 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 239, + "versions": [ + "mobile" + ] + }, + { + "chartID": "db71969c07b36595852d36a1025a2012ae62a7af", + "data": { + "inGameID": "bluecomet", + "notecount": 776 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.2, + "playtype": "Touch", + "songID": 240, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a58792173dffb049e72fc4d285398961c615bf89", + "data": { + "inGameID": "bluecomet", + "notecount": 494 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 240, + "versions": [ + "mobile" + ] + }, + { + "chartID": "107a9e21f202f718b90985f9c1b42865a012247e", + "data": { + "inGameID": "bluecomet", + "notecount": 645 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 240, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b940f23bc509a8f3691b7d7054541994546189af", + "data": { + "inGameID": "energysynergymatrix", + "notecount": 922 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 241, + "versions": [ + "mobile" + ] + }, + { + "chartID": "34eb8910bc99698899853f0ba8f6c3429f62ad8f", + "data": { + "inGameID": "energysynergymatrix", + "notecount": 471 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 241, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9af74a6966e786ea2383bd353e73e38d802bcee3", + "data": { + "inGameID": "energysynergymatrix", + "notecount": 608 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 241, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6283d90bf5ead27b28792edc4bcb98e459c247ff", + "data": { + "inGameID": "gengaozo", + "notecount": 1353 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 242, + "versions": [ + "mobile" + ] + }, + { + "chartID": "81daac9db3f5b1ae977be95336b9baac9baba24b", + "data": { + "inGameID": "gengaozo", + "notecount": 580 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 242, + "versions": [ + "mobile" + ] + }, + { + "chartID": "259c5933dd74582bcb6e2022bdf58c777a7aabdb", + "data": { + "inGameID": "gengaozo", + "notecount": 870 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 242, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4389463e54c77a0dab851282242bebc3d1ae3138", + "data": { + "inGameID": "goldenslaughterer", + "notecount": 1326 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 243, + "versions": [ + "mobile" + ] + }, + { + "chartID": "066c05c8e8b3585d2318b4117e53b1789b2d0f18", + "data": { + "inGameID": "goldenslaughterer", + "notecount": 864 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 243, + "versions": [ + "mobile" + ] + }, + { + "chartID": "845634d29901a5e4be3aa76a1a63c081b4f31f88", + "data": { + "inGameID": "goldenslaughterer", + "notecount": 880 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 243, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2fe2544c96b3e7ae433721fb07399d4ede2d9af2", + "data": { + "inGameID": "lastendconductor", + "notecount": 1339 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10", + "levelNum": 10.1, + "playtype": "Touch", + "songID": 244, + "versions": [ + "mobile" + ] + }, + { + "chartID": "44945a93e4a5df634a3e30622e4ed6461ff6c3d7", + "data": { + "inGameID": "lastendconductor", + "notecount": 1209 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 244, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0cd629d30741a3aaf51364f327d3671cd641cabf", + "data": { + "inGameID": "lastendconductor", + "notecount": 726 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 244, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c612c281341d4095442a6ed099b120cc0b63965a", + "data": { + "inGameID": "lastendconductor", + "notecount": 901 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 244, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ee195df719246e213d754f931d841dd79bc125ae", + "data": { + "inGameID": "redolentshape", + "notecount": 1088 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 245, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ef8be8ddab28d132c994153c71c9dd63615fe342", + "data": { + "inGameID": "redolentshape", + "notecount": 570 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 245, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4f034d86940a8c2bc90233bbdd53be4191e00bfb", + "data": { + "inGameID": "redolentshape", + "notecount": 717 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 245, + "versions": [ + "mobile" + ] + }, + { + "chartID": "526c7c52160bb7e5ec2dbda3698b6c64969629be", + "data": { + "inGameID": "cosmica", + "notecount": 773 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 246, + "versions": [ + "mobile" + ] + }, + { + "chartID": "59118362af0bbd3fa39608ca2bebc88a7f4cce15", + "data": { + "inGameID": "cosmica", + "notecount": 428 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 246, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8de46cc1317636422ce47eebdf0bc83b965dfd75", + "data": { + "inGameID": "cosmica", + "notecount": 566 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 246, + "versions": [ + "mobile" + ] + }, + { + "chartID": "55076ef409517473d73ee365f0c37a22140ddd9f", + "data": { + "inGameID": "ascent", + "notecount": 1023 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 247, + "versions": [ + "mobile" + ] + }, + { + "chartID": "68bfc797c4b5a0c733934c721f4141b23c2802b2", + "data": { + "inGameID": "ascent", + "notecount": 455 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 247, + "versions": [ + "mobile" + ] + }, + { + "chartID": "abeed2fe9893cc31e4c19dbcb0693a13decbec13", + "data": { + "inGameID": "ascent", + "notecount": 626 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 247, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6f54609d786ffaa963e466aac5125a4d85dc5a40", + "data": { + "inGameID": "livefastdieyoung", + "notecount": 1292 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 248, + "versions": [ + "mobile" + ] + }, + { + "chartID": "36a980f745f858625fdefc1e4b5711e3bd976f76", + "data": { + "inGameID": "livefastdieyoung", + "notecount": 565 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 248, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3d09fc8bf8b6c05be4442b4e3edf9c58ecaf5bae", + "data": { + "inGameID": "livefastdieyoung", + "notecount": 837 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.1, + "playtype": "Touch", + "songID": 248, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8ef0099e9cce1340bb6413c7f3684ca747a75c17", + "data": { + "inGameID": "summerfireworks", + "notecount": 1088 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 249, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b184a0ce7dbeb3e86f1748c94b9936df1eb14afb", + "data": { + "inGameID": "summerfireworks", + "notecount": 478 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 249, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c085e35bf3a88db2698a6227e7caa9d6ab770adf", + "data": { + "inGameID": "summerfireworks", + "notecount": 641 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 249, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1dc4312cae15863315b72aedbad76a0b5b99f071", + "data": { + "inGameID": "firstsnow", + "notecount": 578 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 250, + "versions": [ + "mobile" + ] + }, + { + "chartID": "39ea1bec773409c491498341f62fa37e1e79e213", + "data": { + "inGameID": "firstsnow", + "notecount": 366 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 250, + "versions": [ + "mobile" + ] + }, + { + "chartID": "78f7d85c3f424b23b0a1f814a569d49bc4e9a3fa", + "data": { + "inGameID": "firstsnow", + "notecount": 442 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 250, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0e8b3d16f4384f6882bb77dd060a65f4908e5689", + "data": { + "inGameID": "bluerose", + "notecount": 955 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.1, + "playtype": "Touch", + "songID": 251, + "versions": [ + "mobile" + ] + }, + { + "chartID": "385d4cdf3b23625890690f8ecb7b9d7252fd02d8", + "data": { + "inGameID": "bluerose", + "notecount": 595 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 251, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ec1ea52407dba2a28fdb754e358e557c1fda0635", + "data": { + "inGameID": "bluerose", + "notecount": 669 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 251, + "versions": [ + "mobile" + ] + }, + { + "chartID": "467fbcb9b730b9046f1545cfc1a10291c9db7bef", + "data": { + "inGameID": "blockedlibrary", + "notecount": 850 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 252, + "versions": [ + "mobile" + ] + }, + { + "chartID": "20447a44a677cc0ec06bbbd23bc060e5508c1bc4", + "data": { + "inGameID": "blockedlibrary", + "notecount": 449 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 252, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c15c0f6ef030603dcec6a2c610fc77b26f80cc6b", + "data": { + "inGameID": "blockedlibrary", + "notecount": 622 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 252, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7ece3fc725ef330fb48ec94256c0beee998c138f", + "data": { + "inGameID": "neokosmo", + "notecount": 979 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 253, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2183e5151add8a9f96aee286ac5759aa24515ff3", + "data": { + "inGameID": "neokosmo", + "notecount": 603 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 253, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7b11323524485b3b0204cf35e93fbd966917f3b8", + "data": { + "inGameID": "neokosmo", + "notecount": 791 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 253, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dcfd6bedf827d2269fb4ec172cd9255677653423", + "data": { + "inGameID": "lightningscrew", + "notecount": 1192 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.5, + "playtype": "Touch", + "songID": 254, + "versions": [ + "mobile" + ] + }, + { + "chartID": "57daa356a90136581589fa121540e26cc078bd7e", + "data": { + "inGameID": "lightningscrew", + "notecount": 611 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 254, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0a558e0df2e4e19ca0938df31c607b8621899ce0", + "data": { + "inGameID": "lightningscrew", + "notecount": 811 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 254, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6f23edc3907e92a3461def445ea8230b5d34688c", + "data": { + "inGameID": "lightsofmuse", + "notecount": 580 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.7, + "playtype": "Touch", + "songID": 255, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5a9adbc48a85b01aa05d4e0f8ed3e302ce14f374", + "data": { + "inGameID": "lightsofmuse", + "notecount": 333 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 255, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b69b635c4c0942b6692cb0ab219f6c0037997a36", + "data": { + "inGameID": "lightsofmuse", + "notecount": 438 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 255, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6735b974f775eab7dd33cdeea29a182dda7946ee", + "data": { + "inGameID": "finalstep", + "notecount": 1056 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 256, + "versions": [ + "mobile" + ] + }, + { + "chartID": "35fd52b159ceb5b88ab392700f8a3a724c9ef1e5", + "data": { + "inGameID": "finalstep", + "notecount": 625 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 256, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8a081c2366433d948c21b9969d15cf74e43bc234", + "data": { + "inGameID": "finalstep", + "notecount": 684 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 256, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f1d15f622ca099689aa90c5668f0d61f0eaa12be", + "data": { + "inGameID": "akinokagerou", + "notecount": 1077 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 257, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d2d42b42eea08910caeef7a8303dedbfeb42bfe8", + "data": { + "inGameID": "akinokagerou", + "notecount": 533 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 257, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b213cbe63460a63dc379cfa20e5711f3ef36be91", + "data": { + "inGameID": "akinokagerou", + "notecount": 733 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 257, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6a674f9454f8ff825032ff61e4139143db39756b", + "data": { + "inGameID": "medusa", + "notecount": 931 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 258, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4cc90674cbdec5af1909197848493db038258027", + "data": { + "inGameID": "medusa", + "notecount": 550 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 258, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e0a84ae67b20bfb0a03e2c9a29e33388a51485df", + "data": { + "inGameID": "medusa", + "notecount": 645 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 258, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7b52f88872d86e2866fba9866a59bd564368d6f7", + "data": { + "inGameID": "init", + "notecount": 1204 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 259, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4c44b14683fdd1337688bb64a8420febc6f04b2c", + "data": { + "inGameID": "init", + "notecount": 713 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 259, + "versions": [ + "mobile" + ] + }, + { + "chartID": "92565ec7924a9140fd19297f65b60c5f76870f08", + "data": { + "inGameID": "init", + "notecount": 957 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 259, + "versions": [ + "mobile" + ] + }, + { + "chartID": "00b7a1d04d3ccd995e2ef49fb9fd9bb2c86cc5f0", + "data": { + "inGameID": "internetoverdose", + "notecount": 657 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 260, + "versions": [ + "mobile" + ] + }, + { + "chartID": "427a8d8588d8618e61957a1d513d6e17bad1802f", + "data": { + "inGameID": "internetoverdose", + "notecount": 430 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 260, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8b54b31715e9413cb5fda8e2eb1b2ded460a0e8d", + "data": { + "inGameID": "internetoverdose", + "notecount": 578 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 260, + "versions": [ + "mobile" + ] + }, + { + "chartID": "45c3ab551003430d5c9cf9f7d610eda33d82770a", + "data": { + "inGameID": "sakurafubuki", + "notecount": 837 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 261, + "versions": [ + "mobile" + ] + }, + { + "chartID": "874efdf1a3366f53746da969a9bd2b921491601e", + "data": { + "inGameID": "sakurafubuki", + "notecount": 526 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 261, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1b707081e543d6618e45708d5c74128698742951", + "data": { + "inGameID": "sakurafubuki", + "notecount": 571 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 261, + "versions": [ + "mobile" + ] + }, + { + "chartID": "42d742f1addc7f714cfe36bd7bf44ef5dff2e45d", + "data": { + "inGameID": "nulctrl", + "notecount": 715 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 262, + "versions": [ + "mobile" + ] + }, + { + "chartID": "686bd56fa8e37d98cceb8bdace1b385c58fb8cf7", + "data": { + "inGameID": "nulctrl", + "notecount": 407 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 262, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6412519986c784dc86a5372bc93eb196fe35f415", + "data": { + "inGameID": "nulctrl", + "notecount": 410 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 262, + "versions": [ + "mobile" + ] + }, + { + "chartID": "131f0b22826d1b9fae2c06dce0b9548b28b00e9d", + "data": { + "inGameID": "macromod", + "notecount": 1117 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 263, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0d60771bfc4a03217546add66eaff13ed351d7d3", + "data": { + "inGameID": "macromod", + "notecount": 608 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 263, + "versions": [ + "mobile" + ] + }, + { + "chartID": "71a7c8061bc41b9b576cf5011403203f98fc5b4e", + "data": { + "inGameID": "macromod", + "notecount": 794 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 263, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7a5aca338a7f07d10d02f7b0b7d93bd655fa93f5", + "data": { + "inGameID": "neowings", + "notecount": 1328 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 264, + "versions": [ + "mobile" + ] + }, + { + "chartID": "51e16702c12aa6052123a9c1b7654f255f01ff3c", + "data": { + "inGameID": "neowings", + "notecount": 591 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 264, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f4f4e714fec39ca2b82c2b6e364ac6e3e8b9833c", + "data": { + "inGameID": "neowings", + "notecount": 840 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 264, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ab4848eaa6cc86bb9166c070594f413c6c7a7b46", + "data": { + "inGameID": "kissinglucifer", + "notecount": 1183 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 265, + "versions": [ + "mobile" + ] + }, + { + "chartID": "79e6e164b97e5c40d0eafc1ed7009f2c4813e7fe", + "data": { + "inGameID": "kissinglucifer", + "notecount": 639 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 265, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5bff81145147b4a9c7c389dd091422e6b4359468", + "data": { + "inGameID": "kissinglucifer", + "notecount": 770 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 265, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7a6bad91ae19e99a9bf66c806e4f6cac25066d6b", + "data": { + "inGameID": "avril", + "notecount": 851 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 266, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6c9c8df938d9d55ae05508ef8ded496161486563", + "data": { + "inGameID": "avril", + "notecount": 459 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 266, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1f55a29b1935ef5a07fa0a1ed36499c25882e43d", + "data": { + "inGameID": "avril", + "notecount": 607 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 266, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6eaddeea7785e39e94cc73eb4cbe8894abc77b00", + "data": { + "inGameID": "aurgelmir", + "notecount": 1100 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.5, + "playtype": "Touch", + "songID": 267, + "versions": [ + "mobile" + ] + }, + { + "chartID": "72ee50bdf927ea9babd3f86af4d7cf2d59d99cd8", + "data": { + "inGameID": "aurgelmir", + "notecount": 540 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 267, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d10f82ebfcac32cf17fd111e3e69251b3f6b2b1f", + "data": { + "inGameID": "aurgelmir", + "notecount": 765 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 267, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4835b228350ee2658ae191e839f97da8e0ef4650", + "data": { + "inGameID": "headbonkache", + "notecount": 1061 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 268, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1195b764930c533816c964847203c136328c0eb5", + "data": { + "inGameID": "headbonkache", + "notecount": 570 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 268, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c132347e09ca816eae2f50177454f1fb7ee61e53", + "data": { + "inGameID": "headbonkache", + "notecount": 725 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 268, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fbc65111314a3dcd33b3065a8fc42a817ed9befd", + "data": { + "inGameID": "ddd", + "notecount": 653 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 269, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c9fada9172d90a3f2505987ffe0f72570fa90339", + "data": { + "inGameID": "ddd", + "notecount": 363 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 269, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b3acf6b09fe35b8179a823deedf59817c910ab8e", + "data": { + "inGameID": "ddd", + "notecount": 484 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 269, + "versions": [ + "mobile" + ] + }, + { + "chartID": "803a774a4d313f812d193d086246b9de4091590b", + "data": { + "inGameID": "prism", + "notecount": 785 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "Touch", + "songID": 270, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ad2df53476d5342e348f53429ab34f1abc88effd", + "data": { + "inGameID": "prism", + "notecount": 476 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 270, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a99bb20888cfefdf6ebdf65db3e314c95c248176", + "data": { + "inGameID": "prism", + "notecount": 544 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 270, + "versions": [ + "mobile" + ] + }, + { + "chartID": "86c2db9a0e35d8cbab79d60ea6404615fec2e549", + "data": { + "inGameID": "protoflicker", + "notecount": 1042 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 271, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9809ac5f99edb25f351eab0bdb7b65ce6b7c8718", + "data": { + "inGameID": "protoflicker", + "notecount": 510 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 271, + "versions": [ + "mobile" + ] + }, + { + "chartID": "901c4359439c19bcb924dc672136f5907afbaeeb", + "data": { + "inGameID": "protoflicker", + "notecount": 633 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 271, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1b991aa03bbd35439976e509acc6f34dad9188be", + "data": { + "inGameID": "stasis", + "notecount": 1521 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 272, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cd66ddb33073a32c22f89ac69feb8c9d5d290baa", + "data": { + "inGameID": "stasis", + "notecount": 848 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 272, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1b013b098694623f6e91ac8ba3d4d64fb38858b0", + "data": { + "inGameID": "stasis", + "notecount": 935 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 272, + "versions": [ + "mobile" + ] + }, + { + "chartID": "105b97efd6e172d6f80ab0d6abbb2ddc2138663b", + "data": { + "inGameID": "picopicotranslation", + "notecount": 1049 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 273, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f455a34d92771b71f5157535625be1451792df5f", + "data": { + "inGameID": "picopicotranslation", + "notecount": 543 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 273, + "versions": [ + "mobile" + ] + }, + { + "chartID": "daf08b0b40794bc01dff1db04f2c3bd38a1b8f9c", + "data": { + "inGameID": "picopicotranslation", + "notecount": 723 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 273, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7c2ddd2caabc57c3b8629c869619519b18812cd0", + "data": { + "inGameID": "nekonote", + "notecount": 891 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 274, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e566274738b32561e0998361a995140cc87146cd", + "data": { + "inGameID": "nekonote", + "notecount": 417 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 274, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7e9dc15424c3fc8774b2beac6241f897afdc8fd1", + "data": { + "inGameID": "nekonote", + "notecount": 593 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 274, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6a485834aecbfef9200c89ef6d8f568bcef4ad4c", + "data": { + "inGameID": "mu", + "notecount": 1256 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 275, + "versions": [ + "mobile" + ] + }, + { + "chartID": "86d9ccb44e1f573c286a3ce72d90742d128a1658", + "data": { + "inGameID": "mu", + "notecount": 825 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 275, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f1f2ff1a24a1ca6a5ea6cd344ff56a11192002b5", + "data": { + "inGameID": "mu", + "notecount": 986 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 275, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ca69b6d3b1643ff017790b263d8a820c46fb285e", + "data": { + "inGameID": "sanskia", + "notecount": 1046 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 276, + "versions": [ + "mobile" + ] + }, + { + "chartID": "aab3f30f3e068c2b45aa961c516599857ebf6bfe", + "data": { + "inGameID": "sanskia", + "notecount": 670 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 276, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5e8b4da3f318f123a29e6eacf6c161e7f5ad2cee", + "data": { + "inGameID": "sanskia", + "notecount": 783 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 276, + "versions": [ + "mobile" + ] + }, + { + "chartID": "12ea52e66aa2c7162e0cc6c33939cbaf9d093666", + "data": { + "inGameID": "altair", + "notecount": 830 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 277, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1b213b89eb3857175bc56c99ef729da8d3695933", + "data": { + "inGameID": "altair", + "notecount": 670 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 277, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bdeaaa38de40a242a70216de32649c84f956f763", + "data": { + "inGameID": "altair", + "notecount": 828 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 277, + "versions": [ + "mobile" + ] + }, + { + "chartID": "863b0eb03f13e904990efaf62de1f6f353e4c0e0", + "data": { + "inGameID": "mukishitsu", + "notecount": 886 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 278, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e73f7afb625626f0d38c1375c2a507627633fef6", + "data": { + "inGameID": "mukishitsu", + "notecount": 568 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 278, + "versions": [ + "mobile" + ] + }, + { + "chartID": "331320a9cc5e98e4b4e2bad035703a80ffcd8e50", + "data": { + "inGameID": "mukishitsu", + "notecount": 680 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 278, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0ba71fc9c24c8e096082da373eb03a69449beb4e", + "data": { + "inGameID": "trapcrow", + "notecount": 1074 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 279, + "versions": [ + "mobile" + ] + }, + { + "chartID": "832df549dcf3e8f495581b95e76246c8b76a4ad4", + "data": { + "inGameID": "trapcrow", + "notecount": 876 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 279, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7fa4a7b14487f9b8e9a898c7c56c0fe31e71619a", + "data": { + "inGameID": "trapcrow", + "notecount": 898 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 279, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8105ab6a4b4b3673d00171a9139a30945a77e700", + "data": { + "inGameID": "pupa", + "notecount": 1099 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 280, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dccd71b7fd3ac5ea60be6342dace7ffcf732679b", + "data": { + "inGameID": "pupa", + "notecount": 374 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 280, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0f882f15f911690d33b8a8db28c22c20d9cb8db3", + "data": { + "inGameID": "pupa", + "notecount": 684 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 280, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9fac724408b1930c74debeddaa719660628e3fbe", + "data": { + "inGameID": "defection", + "notecount": 1141 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 281, + "versions": [ + "mobile" + ] + }, + { + "chartID": "45e2ef8151e78a7d672648a6585f176e2c7ea5b7", + "data": { + "inGameID": "defection", + "notecount": 588 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 281, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b8d67541234cb44f95c870adb3fdea8d9e2d5902", + "data": { + "inGameID": "defection", + "notecount": 800 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 281, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e093d41973f562c5cde40619227f70d0ad12aba3", + "data": { + "inGameID": "infinitestrife", + "notecount": 1633 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10+", + "levelNum": 10.9, + "playtype": "Touch", + "songID": 282, + "versions": [ + "mobile" + ] + }, + { + "chartID": "21a0fd98feb369b077f82fd3a907b0ca89a738c4", + "data": { + "inGameID": "infinitestrife", + "notecount": 1511 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 282, + "versions": [ + "mobile" + ] + }, + { + "chartID": "13cb067f9f3c52c7235fe031186975f8d6f87faa", + "data": { + "inGameID": "infinitestrife", + "notecount": 888 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 282, + "versions": [ + "mobile" + ] + }, + { + "chartID": "23ff8550a45c05eabd712223387db3b22c926767", + "data": { + "inGameID": "infinitestrife", + "notecount": 1081 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 282, + "versions": [ + "mobile" + ] + }, + { + "chartID": "22d02e197046fa43f4011633b8414118c4f6c816", + "data": { + "inGameID": "worldender", + "notecount": 1661 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "11", + "levelNum": 11.2, + "playtype": "Touch", + "songID": 283, + "versions": [ + "mobile" + ] + }, + { + "chartID": "151cf04ca64ba0d69285799de1935dab968a9ff4", + "data": { + "inGameID": "worldender", + "notecount": 1225 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 283, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d525bc360e6036884d439272f2122a2770512dbe", + "data": { + "inGameID": "worldender", + "notecount": 616 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 283, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4cfd31761eed6beaaa5fd30b36205b7badd70683", + "data": { + "inGameID": "worldender", + "notecount": 850 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 283, + "versions": [ + "mobile" + ] + }, + { + "chartID": "da372c5cd1a527d25126b996bfbc66fae4bc1c68", + "data": { + "inGameID": "pentiment", + "notecount": 1741 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "11", + "levelNum": 11.4, + "playtype": "Touch", + "songID": 284, + "versions": [ + "mobile" + ] + }, + { + "chartID": "25508b93bccc10a404bfeca12de99e450057370c", + "data": { + "inGameID": "pentiment", + "notecount": 1345 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.3, + "playtype": "Touch", + "songID": 284, + "versions": [ + "mobile" + ] + }, + { + "chartID": "25406f8dc70f19193970b1f05c239690eb1e5c2a", + "data": { + "inGameID": "pentiment", + "notecount": 911 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 284, + "versions": [ + "mobile" + ] + }, + { + "chartID": "497eb3fbf59ee992f2add5d4c8a7fd8ff8387e17", + "data": { + "inGameID": "pentiment", + "notecount": 1055 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 284, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bc17fb16a9cb95e6a95291d7993bf00427ed2b2a", + "data": { + "inGameID": "arcanaeden", + "notecount": 2134 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "11", + "levelNum": 11.4, + "playtype": "Touch", + "songID": 285, + "versions": [ + "mobile" + ] + }, + { + "chartID": "43bcc557e89019ca2ffa6e9e5e68cfdc8bd1f8f3", + "data": { + "inGameID": "arcanaeden", + "notecount": 1792 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.5, + "playtype": "Touch", + "songID": 285, + "versions": [ + "mobile" + ] + }, + { + "chartID": "88bf4ca3d4831ac250a18577ea256b3a12e0a090", + "data": { + "inGameID": "arcanaeden", + "notecount": 1097 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 285, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3a1c0beb28cef567d497e37e0082a102a9b23e66", + "data": { + "inGameID": "arcanaeden", + "notecount": 1310 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.7, + "playtype": "Touch", + "songID": 285, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2052e86e358f83df39608d31224f4b9a43376bb5", + "data": { + "inGameID": "testify", + "notecount": 2221 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "12", + "levelNum": 12, + "playtype": "Touch", + "songID": 286, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f0fcaaacdcf2055dbbe7dbca09666d0c8358ecd4", + "data": { + "inGameID": "testify", + "notecount": 1766 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.8, + "playtype": "Touch", + "songID": 286, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ffabdfa34c79b739fb5e566dd76cc0a9d1f41c22", + "data": { + "inGameID": "testify", + "notecount": 1001 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 286, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0ce240d9233d76927b101b7b74a57212d9a6a5d4", + "data": { + "inGameID": "testify", + "notecount": 1225 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 286, + "versions": [ + "mobile" + ] + }, + { + "chartID": "311cb20e3079c748521b0f614fdb6b27c21a100b", + "data": { + "inGameID": "lovelessdress", + "notecount": 850 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 287, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7c644eccfea88a66067b64c4f9f8424796812895", + "data": { + "inGameID": "lovelessdress", + "notecount": 537 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 287, + "versions": [ + "mobile" + ] + }, + { + "chartID": "33462a38262a8698eea088ffa80e91efa4b838b0", + "data": { + "inGameID": "lovelessdress", + "notecount": 630 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 287, + "versions": [ + "mobile" + ] + }, + { + "chartID": "325d0c3fd2c59e8866599bdaf01ada9e84ada896", + "data": { + "inGameID": "last", + "notecount": 831 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "Touch", + "songID": 288, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d0b40faaea1600c0f1517763c98006ba5093c687", + "data": { + "inGameID": "last", + "notecount": 680 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 288, + "versions": [ + "mobile" + ] + }, + { + "chartID": "087d2cbffb0d76886f51d2a0b053f129665bc497", + "data": { + "inGameID": "last", + "notecount": 781 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 288, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5b010cb0c3af735e7b9e4c61cdf82e0dd0beee3e", + "data": { + "inGameID": "last", + "notecount": 888 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 289, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5557c5fb0293a60daa3527960c97ad7b6a04afe1", + "data": { + "inGameID": "lasteternity", + "notecount": 790 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 290, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b0edea3adb8d3a83553f994f6f726b696e83fd72", + "data": { + "inGameID": "callimakarma", + "notecount": 1222 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 291, + "versions": [ + "mobile" + ] + }, + { + "chartID": "85d534cef633d420e8ae5dcbd56020163bf7b91c", + "data": { + "inGameID": "callimakarma", + "notecount": 1024 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 291, + "versions": [ + "mobile" + ] + }, + { + "chartID": "06f3a72762ba0563bc89f96272aa04c1ca88d58c", + "data": { + "inGameID": "callimakarma", + "notecount": 989 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 291, + "versions": [ + "mobile" + ] + }, + { + "chartID": "79106c976c7eb488837e8b8b4cd7856aa3d74d55", + "data": { + "inGameID": "kokoro", + "notecount": 872 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 292, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b1e95f81e4660ad651556b6e4a1a6fc2484de3e5", + "data": { + "inGameID": "kokoro", + "notecount": 428 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "1", + "levelNum": 1, + "playtype": "Touch", + "songID": 292, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e10231fbb6b014622c9202a1d83b8dc2fbba0823", + "data": { + "inGameID": "kokoro", + "notecount": 575 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 292, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4b20d66bc5f54478a0f8c2d6fe456ba2594b11be", + "data": { + "inGameID": "aidrew", + "notecount": 1066 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 293, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4e23bfffd4020e2c77446bf445eedbb4308d7348", + "data": { + "inGameID": "aidrew", + "notecount": 694 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 293, + "versions": [ + "mobile" + ] + }, + { + "chartID": "750f6565d33d987937c623e2bd0d50ae161302c1", + "data": { + "inGameID": "aidrew", + "notecount": 732 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 293, + "versions": [ + "mobile" + ] + }, + { + "chartID": "284cb474cb4af2487b7a28832ffa4a829d0cdb88", + "data": { + "inGameID": "fluffyflash", + "notecount": 1329 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 294, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5e348fbd6b2621bcf590b8b0051da0b7ac24b0a2", + "data": { + "inGameID": "fluffyflash", + "notecount": 787 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 294, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9e2642c21c3c5dc644d292e664771a232cca84f1", + "data": { + "inGameID": "fluffyflash", + "notecount": 946 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 294, + "versions": [ + "mobile" + ] + }, + { + "chartID": "58bb12dc3ca044ae47a773a1e47f326f88bd93bb", + "data": { + "inGameID": "goodbyemerry", + "notecount": 1084 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.5, + "playtype": "Touch", + "songID": 295, + "versions": [ + "mobile" + ] + }, + { + "chartID": "eff921bb2b1ffd4f57b21da98b538e731bae73fa", + "data": { + "inGameID": "goodbyemerry", + "notecount": 679 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 295, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8bf822428f2dfe230e4df4cd6f991befb4c213b4", + "data": { + "inGameID": "goodbyemerry", + "notecount": 696 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 295, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a9b91c2a89e49dc54ff2c280b4242b9dee4fa32e", + "data": { + "inGameID": "lamia", + "notecount": 1385 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.9, + "playtype": "Touch", + "songID": 296, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d661032b648dabdb913b2fd603e54961d768875d", + "data": { + "inGameID": "lamia", + "notecount": 826 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 296, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9b02238c5c231feb458f7cd522a4b1aedb24af29", + "data": { + "inGameID": "lamia", + "notecount": 885 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 296, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4d76a6d7e2c0111f6184e6b00d4fac3678dcc88a", + "data": { + "inGameID": "freemyself", + "notecount": 1132 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10, + "playtype": "Touch", + "songID": 297, + "versions": [ + "mobile" + ] + }, + { + "chartID": "66b73d2ff08619c328949de57082b41842ce4eb0", + "data": { + "inGameID": "freemyself", + "notecount": 662 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 297, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b01f095ef8382695e319196f3f2df3f04a1bf78d", + "data": { + "inGameID": "freemyself", + "notecount": 785 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 297, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c768e3e5d362973fb55a029004005645a7568416", + "data": { + "inGameID": "cocorocosmetic", + "notecount": 1025 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 298, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9468110eaa17e16c49ef0e9546006360b97b78f0", + "data": { + "inGameID": "cocorocosmetic", + "notecount": 525 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 298, + "versions": [ + "mobile" + ] + }, + { + "chartID": "eabb7a0f709485bc2ff2caadbbcd6e00e8fcee05", + "data": { + "inGameID": "cocorocosmetic", + "notecount": 687 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 298, + "versions": [ + "mobile" + ] + }, + { + "chartID": "943d501afbf9ee14b6f62127c558d950c92de5a9", + "data": { + "inGameID": "capella", + "notecount": 1159 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 299, + "versions": [ + "mobile" + ] + }, + { + "chartID": "03888986f6379d7e79885b5b178519a8096e2eac", + "data": { + "inGameID": "capella", + "notecount": 884 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 299, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d8a2860e47cdc4ea94330d5573fca421cc0196dd", + "data": { + "inGameID": "capella", + "notecount": 904 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 299, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0acf2b1d82e9e559f156890ef17c17e6bdba9014", + "data": { + "inGameID": "dialnote", + "notecount": 684 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.1, + "playtype": "Touch", + "songID": 300, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7c726041b118025c93392a9846f56fca3d9da0c2", + "data": { + "inGameID": "dialnote", + "notecount": 393 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 300, + "versions": [ + "mobile" + ] + }, + { + "chartID": "85b39fcb4f620f954cf7e22e2e5fe3656b1175c5", + "data": { + "inGameID": "dialnote", + "notecount": 548 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 300, + "versions": [ + "mobile" + ] + }, + { + "chartID": "37175f52f54158f1be8069c6e303720650aa12af", + "data": { + "inGameID": "tsukinimurakumo", + "notecount": 740 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 301, + "versions": [ + "mobile" + ] + }, + { + "chartID": "441e72670c64586c14a26959b29f9638cb285ec6", + "data": { + "inGameID": "tsukinimurakumo", + "notecount": 468 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 301, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7083cc5691cfda2375dd4ee164521dc03e2699fe", + "data": { + "inGameID": "tsukinimurakumo", + "notecount": 610 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 301, + "versions": [ + "mobile" + ] + }, + { + "chartID": "516fca5729bf19f6fd5dd63d5920ea4d9466a79e", + "data": { + "inGameID": "mantis", + "notecount": 1014 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 302, + "versions": [ + "mobile" + ] + }, + { + "chartID": "37b2b136af9d0b2cde37a371faa8d72d5e7fde11", + "data": { + "inGameID": "mantis", + "notecount": 575 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 302, + "versions": [ + "mobile" + ] + }, + { + "chartID": "afe599dd10d688b126808250b4f5b0aa889f7839", + "data": { + "inGameID": "mantis", + "notecount": 760 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 302, + "versions": [ + "mobile" + ] + }, + { + "chartID": "91faedf155042a6f12509e0fba50615b7d5f75f7", + "data": { + "inGameID": "worldfragments", + "notecount": 1387 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 303, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f1a693b0aa160dc16154aae3f4060b0b78b53fc1", + "data": { + "inGameID": "worldfragments", + "notecount": 777 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 303, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e2089498a19906b2260cfd013327f84ce575fac0", + "data": { + "inGameID": "worldfragments", + "notecount": 999 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 303, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d1ca3251562f261db3ceb4ac19992a95aaae3b20", + "data": { + "inGameID": "astrawalkthrough", + "notecount": 1191 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 304, + "versions": [ + "mobile" + ] + }, + { + "chartID": "23e894f819e9ee3dfa22df9d2cbf845579823a98", + "data": { + "inGameID": "astrawalkthrough", + "notecount": 769 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 304, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cad5628fd21e6d030be4c59967b61a648ccdcbb4", + "data": { + "inGameID": "astrawalkthrough", + "notecount": 886 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 304, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3f90f0b2e37e3210d9375ec2e29dc35da90a66c4", + "data": { + "inGameID": "chronicle", + "notecount": 1264 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 305, + "versions": [ + "mobile" + ] + }, + { + "chartID": "73bf1ca06de2e105e38128ab0ecf5bdb82da4844", + "data": { + "inGameID": "chronicle", + "notecount": 928 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 305, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8c11fcc1b3f5567115d3d45030069298ea1daa4b", + "data": { + "inGameID": "chronicle", + "notecount": 1077 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 305, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d4ccdebdeea81ffcb6b17785bd43a0daadb8b250", + "data": { + "inGameID": "nullapophenia", + "notecount": 1299 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 306, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5098883ed96734bf941ad3331fc373454350f2a0", + "data": { + "inGameID": "nullapophenia", + "notecount": 990 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 306, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9d87891cc17d249e2f50f23d268d180a6c6cb513", + "data": { + "inGameID": "nullapophenia", + "notecount": 1098 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 306, + "versions": [ + "mobile" + ] + }, + { + "chartID": "447a2bb4f31faa82f9347b850b23870286ed4ba1", + "data": { + "inGameID": "crimsonthrone", + "notecount": 1313 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 307, + "versions": [ + "mobile" + ] + }, + { + "chartID": "21a49165924a4bb7da53cfdc91ccce6e2d69b1d0", + "data": { + "inGameID": "crimsonthrone", + "notecount": 727 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 307, + "versions": [ + "mobile" + ] + }, + { + "chartID": "58c742e1b21b1e9dc708750df9fdebb4ab79a1c8", + "data": { + "inGameID": "crimsonthrone", + "notecount": 1079 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8, + "playtype": "Touch", + "songID": 307, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f3703b1fe7bafe84be79882a4e35e7f466b2098f", + "data": { + "inGameID": "manicjeer", + "notecount": 1286 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 308, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c1feea30c665e422ebe9ac4c7ab7b011f9eb5831", + "data": { + "inGameID": "manicjeer", + "notecount": 698 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 308, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f5460df49ea9163b24bc507c940795e77e5015fb", + "data": { + "inGameID": "manicjeer", + "notecount": 875 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 308, + "versions": [ + "mobile" + ] + }, + { + "chartID": "74311611ea56f44759b55e5d14dcd0b1b678b6d8", + "data": { + "inGameID": "hiirogekka", + "notecount": 1126 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.3, + "playtype": "Touch", + "songID": 309, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c5f462edb29721c65154889ee5739b8c9c540356", + "data": { + "inGameID": "hiirogekka", + "notecount": 719 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 309, + "versions": [ + "mobile" + ] + }, + { + "chartID": "171e3456d723354d5020b423551a218718234fd7", + "data": { + "inGameID": "hiirogekka", + "notecount": 709 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 309, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1fb1dfe6c12d8b62ee5e3e85e0573f2409d625e4", + "data": { + "inGameID": "letsrock", + "notecount": 1177 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 310, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e21e415c122ba67c4fe3ce91286cf73e9d901a5f", + "data": { + "inGameID": "letsrock", + "notecount": 541 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 310, + "versions": [ + "mobile" + ] + }, + { + "chartID": "271abe7f103291618da1c56ba9a819a9e53cdd0e", + "data": { + "inGameID": "letsrock", + "notecount": 963 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 310, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6b21c62ff692a78a621fa754dfeb43e7a0b77d5e", + "data": { + "inGameID": "cycles", + "notecount": 695 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 311, + "versions": [ + "mobile" + ] + }, + { + "chartID": "15e6cf4baad3bac50ae30c41d83be05ea2ad8451", + "data": { + "inGameID": "cycles", + "notecount": 389 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 311, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c90d185d14faae9073be5f79a87fffcbe15115c8", + "data": { + "inGameID": "cycles", + "notecount": 430 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 311, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e4957916690090f8c2b0b572083a38f0bcc7d34f", + "data": { + "inGameID": "maxrage", + "notecount": 1184 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 312, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d3a905423a5a4ebc6439e7a27335b5c17d1ac911", + "data": { + "inGameID": "maxrage", + "notecount": 696 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 312, + "versions": [ + "mobile" + ] + }, + { + "chartID": "13b9ec94b9c8059aaf9f3d45c515a36ca0824b62", + "data": { + "inGameID": "maxrage", + "notecount": 760 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 312, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ee4eb892a9449f2e25fd7efc27f6294d3f93af6c", + "data": { + "inGameID": "infinity", + "notecount": 1190 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 313, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1de5d5977c75f8e3e692b77acfbd7e5d58316770", + "data": { + "inGameID": "infinity", + "notecount": 594 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 313, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ec03cd272672a2add729aa269284df7af3acac5d", + "data": { + "inGameID": "infinity", + "notecount": 782 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 313, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fc6d042c9a7b710a33dd62d0d4f7e3310afeea1e", + "data": { + "inGameID": "temptation", + "notecount": 1099 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.9, + "playtype": "Touch", + "songID": 314, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c343961521ad8ed02b1ecc4ab86bb13c931105dc", + "data": { + "inGameID": "temptation", + "notecount": 627 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 314, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9d7eed16de72db39ba5fafb4face2d48ca72f66f", + "data": { + "inGameID": "temptation", + "notecount": 768 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.2, + "playtype": "Touch", + "songID": 314, + "versions": [ + "mobile" + ] + }, + { + "chartID": "137ab3202588a8f8eb4ac594f45539d640942fa6", + "data": { + "inGameID": "primitivelights", + "notecount": 1524 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.7, + "playtype": "Touch", + "songID": 315, + "versions": [ + "mobile" + ] + }, + { + "chartID": "418dbfdc877221b9457259bf442a41fdfa008b0b", + "data": { + "inGameID": "primitivelights", + "notecount": 785 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 315, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8e7bd9b6252b7930de7bbf7f1d8424db43393b18", + "data": { + "inGameID": "primitivelights", + "notecount": 1073 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 315, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a3575b8196764a660b0df4bd3ef1e82140f9361f", + "data": { + "inGameID": "cosmopop", + "notecount": 809 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.8, + "playtype": "Touch", + "songID": 316, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e8443683090b74e834b13456221023aa71a4402b", + "data": { + "inGameID": "cosmopop", + "notecount": 352 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 316, + "versions": [ + "mobile" + ] + }, + { + "chartID": "500799db61de27844cbd7592952e7fccbc63c6f5", + "data": { + "inGameID": "cosmopop", + "notecount": 591 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 316, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e0d3a77536c9d646eec6985bdf386c3e2ebb84f5", + "data": { + "inGameID": "impact", + "notecount": 1392 + }, + "difficulty": "Beyond", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 317, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4eb6da92a3b889528dd20e55810b425dbc5da7f6", + "data": { + "inGameID": "impact", + "notecount": 1231 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.6, + "playtype": "Touch", + "songID": 317, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5a3d0ce5a2261bd87ba26c7613c8d966172dee87", + "data": { + "inGameID": "impact", + "notecount": 723 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 317, + "versions": [ + "mobile" + ] + }, + { + "chartID": "aa34ae1bf6f441c6d5a1fb83c86c1a5f8aff6dcc", + "data": { + "inGameID": "impact", + "notecount": 913 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 317, + "versions": [ + "mobile" + ] + }, + { + "chartID": "38f71daca5e94d0295f83302923b43c8a46143da", + "data": { + "inGameID": "genesischunithm", + "notecount": 867 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 318, + "versions": [ + "mobile" + ] + }, + { + "chartID": "62668c8a9b9da88fb74f487222e9efa5835b9653", + "data": { + "inGameID": "genesischunithm", + "notecount": 587 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 318, + "versions": [ + "mobile" + ] + }, + { + "chartID": "311092fb6c24c8cc85d76e308926ef718d7d9fa7", + "data": { + "inGameID": "genesischunithm", + "notecount": 838 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 318, + "versions": [ + "mobile" + ] + }, + { + "chartID": "008132b3e5a3c203c04e34b8477acfd1cf4f4ec4", + "data": { + "inGameID": "trrricksters", + "notecount": 1183 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.1, + "playtype": "Touch", + "songID": 319, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d094b356af14196aa16a73993f5265cfd5ef35da", + "data": { + "inGameID": "trrricksters", + "notecount": 561 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 319, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0001967a4f712232b6931966e81749ef10ba7616", + "data": { + "inGameID": "trrricksters", + "notecount": 784 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 319, + "versions": [ + "mobile" + ] + }, + { + "chartID": "1b52d18c8f05948b4dab92e08d5ca94e2a65e553", + "data": { + "inGameID": "spidersthread", + "notecount": 1203 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.8, + "playtype": "Touch", + "songID": 320, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fdcca2d34939b708040d6f04b706194ea212bd06", + "data": { + "inGameID": "spidersthread", + "notecount": 794 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 320, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cc28d1b405d6d7ba3acc5ad3f25f50729d3f5e31", + "data": { + "inGameID": "spidersthread", + "notecount": 764 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 320, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7a6369497d7c05e6ef15f5098fe1d50f0bf5316a", + "data": { + "inGameID": "lostemotion", + "notecount": 1123 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.3, + "playtype": "Touch", + "songID": 321, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a940bd588702eaf88af80d78d2617169223d6e72", + "data": { + "inGameID": "lostemotion", + "notecount": 602 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 321, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9fbd511e4f0255e62f347d5e5278f3164028f3f3", + "data": { + "inGameID": "lostemotion", + "notecount": 780 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 321, + "versions": [ + "mobile" + ] + }, + { + "chartID": "756fc962a518e0cf912540341ad18bd831fa4854", + "data": { + "inGameID": "gimmick", + "notecount": 733 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 322, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fba0b7dd45841bf1c371c136595857d0275423d2", + "data": { + "inGameID": "gimmick", + "notecount": 421 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 322, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6f3b167716888329e3ddfce9c4a25c1b03e2b251", + "data": { + "inGameID": "gimmick", + "notecount": 598 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 322, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6de0e7d40adfe3fd8f4d8630e9fdb20644d4aac5", + "data": { + "inGameID": "thesurvivor", + "notecount": 1100 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 323, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8136dbb7c1806bcd604170ae8fd860c2c4268540", + "data": { + "inGameID": "thesurvivor", + "notecount": 817 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 323, + "versions": [ + "mobile" + ] + }, + { + "chartID": "779da1721d51579d2883ada41dc34f227ace85e7", + "data": { + "inGameID": "thesurvivor", + "notecount": 750 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 323, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e0d86ae0d904ae039fd743075579c709822228f0", + "data": { + "inGameID": "newyorkbackraise", + "notecount": 1091 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 324, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0d8a6b0644abb2c098343f2c32199458a5f41892", + "data": { + "inGameID": "newyorkbackraise", + "notecount": 762 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 324, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b694f7eebf2516af97e2b00ed43f50f91371e1cb", + "data": { + "inGameID": "newyorkbackraise", + "notecount": 803 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 324, + "versions": [ + "mobile" + ] + }, + { + "chartID": "07b30ca4a57c64cc0f199546013684c3aba1acc9", + "data": { + "inGameID": "galacticlove", + "notecount": 813 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "Touch", + "songID": 325, + "versions": [ + "mobile" + ] + }, + { + "chartID": "abd94b1cdc37432ce116dcb08f0a7b4512900cfa", + "data": { + "inGameID": "galacticlove", + "notecount": 513 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 325, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e6700b6d9a1f4017972571144ad7c11c33cf29ea", + "data": { + "inGameID": "galacticlove", + "notecount": 694 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 325, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d01bb96c295572a48e372684b19b989e16cc4e13", + "data": { + "inGameID": "lawlesspoint", + "notecount": 838 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.9, + "playtype": "Touch", + "songID": 326, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8f8f25afd7457bfbfabc8e37893d094d9a23f5f8", + "data": { + "inGameID": "lawlesspoint", + "notecount": 476 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 326, + "versions": [ + "mobile" + ] + }, + { + "chartID": "01421df2884b567f1c6395b956aee231fc316b88", + "data": { + "inGameID": "lawlesspoint", + "notecount": 630 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 326, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ae8be30b84e687de3aa090e64a0054c51b08fdac", + "data": { + "inGameID": "lostintheabyss", + "notecount": 1179 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 327, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b4a66963eb05699b36bbe35dd4bf07478ee44bba", + "data": { + "inGameID": "lostintheabyss", + "notecount": 907 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 327, + "versions": [ + "mobile" + ] + }, + { + "chartID": "db6370daed516ddf2701f16842590d64ce7e379a", + "data": { + "inGameID": "lostintheabyss", + "notecount": 908 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 327, + "versions": [ + "mobile" + ] + }, + { + "chartID": "25de7673c828a7cfdf67163789551ce2282b4b8e", + "data": { + "inGameID": "hybris", + "notecount": 1196 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 328, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dba1d1d3fd899bc2b08a85cec6fd35a128058db6", + "data": { + "inGameID": "hybris", + "notecount": 757 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 328, + "versions": [ + "mobile" + ] + }, + { + "chartID": "96921e2319fdaceddb874f9fa1430fb6e4598788", + "data": { + "inGameID": "hybris", + "notecount": 973 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 328, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fa60d74688c45b6d6feb8c03976a445d04169e31", + "data": { + "inGameID": "tothemilkyway", + "notecount": 1392 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.5, + "playtype": "Touch", + "songID": 329, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2e5fe3175e0f2cf918a7784760c0392db09d0f5f", + "data": { + "inGameID": "tothemilkyway", + "notecount": 928 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 329, + "versions": [ + "mobile" + ] + }, + { + "chartID": "82707b3bfdb18931c6568e4de123388938fa6d3d", + "data": { + "inGameID": "tothemilkyway", + "notecount": 1154 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.7, + "playtype": "Touch", + "songID": 329, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c7d7f290e2c8f1b4a2b99039d968dbdee5af2515", + "data": { + "inGameID": "internetyamero", + "notecount": 1222 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 330, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8d1314041bc84e6ef613dbc59ef103bae614d22a", + "data": { + "inGameID": "internetyamero", + "notecount": 677 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 330, + "versions": [ + "mobile" + ] + }, + { + "chartID": "18e00019cca55bd4d95485424b4b2ca492eaa36e", + "data": { + "inGameID": "internetyamero", + "notecount": 987 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 330, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e3acd0acec5797fbeb669ab671205695dc2b7424", + "data": { + "inGameID": "bulletwaiting", + "notecount": 701 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.1, + "playtype": "Touch", + "songID": 331, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b02d483d425d3742b3585f08f5fca495c49e1baa", + "data": { + "inGameID": "bulletwaiting", + "notecount": 325 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 331, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2f23d32490da6f7284185385826b54b6cca04b1b", + "data": { + "inGameID": "bulletwaiting", + "notecount": 390 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 331, + "versions": [ + "mobile" + ] + }, + { + "chartID": "26fce5d81e7dc0f926ffff5cb205826d31878e1d", + "data": { + "inGameID": "devillicsphere", + "notecount": 1129 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 332, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ded93fa66436f7edca4f0a09599c947decaa8221", + "data": { + "inGameID": "devillicsphere", + "notecount": 490 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 332, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4b5273cd735649944a46b93747cf4a64bb7041ac", + "data": { + "inGameID": "devillicsphere", + "notecount": 692 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 332, + "versions": [ + "mobile" + ] + }, + { + "chartID": "49f1ca38a139e824c4e5e79bef82d6ea929561d6", + "data": { + "inGameID": "lucidtraveler", + "notecount": 1341 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 333, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ecc0b5977f386e7663082650874ded35df36c4de", + "data": { + "inGameID": "lucidtraveler", + "notecount": 634 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 333, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c7c41d9798b0f1f71a647dcf824c43683c8a4ca2", + "data": { + "inGameID": "lucidtraveler", + "notecount": 1006 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.3, + "playtype": "Touch", + "songID": 333, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3b160feb054ca91168c3300ec076b214cc14859b", + "data": { + "inGameID": "chaos", + "notecount": 1369 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.9, + "playtype": "Touch", + "songID": 334, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0076bcb0257e6f83ee0573d084582360df21d88d", + "data": { + "inGameID": "chaos", + "notecount": 646 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 334, + "versions": [ + "mobile" + ] + }, + { + "chartID": "965c97abb9dafd3ee73a784c9d443abaeb078a7d", + "data": { + "inGameID": "chaos", + "notecount": 848 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 334, + "versions": [ + "mobile" + ] + }, + { + "chartID": "422eab1698fddcdb71805b0807ad18b7b03d2cdb", + "data": { + "inGameID": "usedtobe", + "notecount": 799 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.2, + "playtype": "Touch", + "songID": 335, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d033dcd6f0f1cac90a66bb23d3ce67bafc5573f3", + "data": { + "inGameID": "usedtobe", + "notecount": 537 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 4, + "playtype": "Touch", + "songID": 335, + "versions": [ + "mobile" + ] + }, + { + "chartID": "88e0b5fff54900407a17c2444c35ad1fcacd9403", + "data": { + "inGameID": "usedtobe", + "notecount": 675 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 335, + "versions": [ + "mobile" + ] + }, + { + "chartID": "101f460a312bc1f872111c1682cf652f1b02e8ae", + "data": { + "inGameID": "ultimatetaste", + "notecount": 1405 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 336, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4a14a6d31852d633747351994e242473a9ad903b", + "data": { + "inGameID": "ultimatetaste", + "notecount": 828 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 336, + "versions": [ + "mobile" + ] + }, + { + "chartID": "074c874568a9a76402f2ce1ec4a99f1ace1d5318", + "data": { + "inGameID": "ultimatetaste", + "notecount": 1008 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 336, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b1ea95514f83d9481dd3ef9b0b38efc9da1a8224", + "data": { + "inGameID": "syuten", + "notecount": 592 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.5, + "playtype": "Touch", + "songID": 337, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d43fb20bfb9b6099be1a683302d14fdc808032c0", + "data": { + "inGameID": "syuten", + "notecount": 395 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2, + "playtype": "Touch", + "songID": 337, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9113886bfe82d433104fed36bc780a5d736039da", + "data": { + "inGameID": "syuten", + "notecount": 446 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 337, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5fdd6809df78810d28435bfacb98a265b007bd39", + "data": { + "inGameID": "drg", + "notecount": 892 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 338, + "versions": [ + "mobile" + ] + }, + { + "chartID": "8864a83a03082d622ce8d936d0b939b66ec5afec", + "data": { + "inGameID": "drg", + "notecount": 380 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 338, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c40fc60758c83dd777070d5fb1efbbde109fa3ca", + "data": { + "inGameID": "drg", + "notecount": 624 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 338, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c14be516bd759f7dfb759f4e8a8d4ffef78e7e25", + "data": { + "inGameID": "nnglooms", + "notecount": 1294 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.3, + "playtype": "Touch", + "songID": 339, + "versions": [ + "mobile" + ] + }, + { + "chartID": "df44cb07921a6e2d9e0707c006b7257006d76a99", + "data": { + "inGameID": "nnglooms", + "notecount": 637 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 339, + "versions": [ + "mobile" + ] + }, + { + "chartID": "64fce263366f047ccdffdd1bd4de14ac69df5eae", + "data": { + "inGameID": "nnglooms", + "notecount": 774 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 339, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c7fea67cdab48ad7fdc3598a38dce9c9b9c53bf7", + "data": { + "inGameID": "ii", + "notecount": 1051 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10+", + "levelNum": 10.8, + "playtype": "Touch", + "songID": 340, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9b310ef733f0258823c785caa7585b90060274dd", + "data": { + "inGameID": "ii", + "notecount": 690 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 340, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e59849e910a41ba849e5aea772fdc72d43951c71", + "data": { + "inGameID": "ii", + "notecount": 816 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 340, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d8b6e47fcc07691f3107d199a114d40669298528", + "data": { + "inGameID": "magnolia", + "notecount": 895 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.2, + "playtype": "Touch", + "songID": 341, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6aba7df4944fe46a289bfa885f115c390783916c", + "data": { + "inGameID": "magnolia", + "notecount": 625 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 341, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ac14f5dfbac218db2073b0d4e3977e5ecccc9d51", + "data": { + "inGameID": "magnolia", + "notecount": 726 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 341, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6faff9237578f1c6018de001a617524e58146ee1", + "data": { + "inGameID": "sacrifice", + "notecount": 958 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 342, + "versions": [ + "mobile" + ] + }, + { + "chartID": "492798a76aa2a1eb56ce16ec02c372568f412856", + "data": { + "inGameID": "sacrifice", + "notecount": 548 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3.5, + "playtype": "Touch", + "songID": 342, + "versions": [ + "mobile" + ] + }, + { + "chartID": "41702b4e625976d51cbd6810f0b2312cdbfcddf8", + "data": { + "inGameID": "sacrifice", + "notecount": 779 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 342, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b777e7d0ba49943b2f16e2b45f49c7aa9c661c7e", + "data": { + "inGameID": "rgb", + "notecount": 1131 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 343, + "versions": [ + "mobile" + ] + }, + { + "chartID": "439a42d4fd1423d0a1d6b4673eef9d2fab6d3a28", + "data": { + "inGameID": "rgb", + "notecount": 652 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 343, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e93f850fd0cea2de962c098308f25c8d7a4db97e", + "data": { + "inGameID": "rgb", + "notecount": 803 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 343, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4a0054d768b3f3ce6742eb6579b1a0f91750ff37", + "data": { + "inGameID": "waitfordawn", + "notecount": 861 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "8", + "levelNum": 8.7, + "playtype": "Touch", + "songID": 344, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2a036100109a574c1fe19d865b2708c2c9f0a25f", + "data": { + "inGameID": "waitfordawn", + "notecount": 596 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "2", + "levelNum": 2.5, + "playtype": "Touch", + "songID": 344, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f74fa4279bf38eb3e342a263e2f6b2ffec90a4e0", + "data": { + "inGameID": "waitfordawn", + "notecount": 636 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 344, + "versions": [ + "mobile" + ] + }, + { + "chartID": "ac6b314bb59185cd824962a63c78a27ea4235ae4", + "data": { + "inGameID": "ravenspride", + "notecount": 1030 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 345, + "versions": [ + "mobile" + ] + }, + { + "chartID": "32ffa721a2a1e9fad12bf6437f5a2d4a1c35a192", + "data": { + "inGameID": "ravenspride", + "notecount": 697 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 345, + "versions": [ + "mobile" + ] + }, + { + "chartID": "40c1171c4e04d7b57fec86e823cadcb05b6dfdb9", + "data": { + "inGameID": "ravenspride", + "notecount": 797 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 345, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4f42ee77ed92d24a5956dc9fdc041a3a5cb15d59", + "data": { + "inGameID": "riseoftheworld", + "notecount": 1176 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.4, + "playtype": "Touch", + "songID": 346, + "versions": [ + "mobile" + ] + }, + { + "chartID": "d72d64176b14c9a8186d0c1ef0ee5681393eb66b", + "data": { + "inGameID": "riseoftheworld", + "notecount": 722 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4.5, + "playtype": "Touch", + "songID": 346, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e98bec9f020959b2db539e5f73425695a3278011", + "data": { + "inGameID": "riseoftheworld", + "notecount": 843 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 346, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e4c01b2e9afc8524c041870c1ed4c87216fac933", + "data": { + "inGameID": "unknownlevels", + "notecount": 1149 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.6, + "playtype": "Touch", + "songID": 347, + "versions": [ + "mobile" + ] + }, + { + "chartID": "34664c57218a6e41b5c4fa706ef0acee2e3d40f8", + "data": { + "inGameID": "unknownlevels", + "notecount": 591 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 347, + "versions": [ + "mobile" + ] + }, + { + "chartID": "23a41b793c38de28b5e468197c1eeefa2d718cd4", + "data": { + "inGameID": "unknownlevels", + "notecount": 771 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 347, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6a877f46d9457650ef239601a81427d9bc01f41d", + "data": { + "inGameID": "abstrusedilemma", + "notecount": 1467 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "11", + "levelNum": 11.1, + "playtype": "Touch", + "songID": 348, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e01c185c712db314a78c63e9a25f82b67fbc67de", + "data": { + "inGameID": "abstrusedilemma", + "notecount": 983 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5.5, + "playtype": "Touch", + "songID": 348, + "versions": [ + "mobile" + ] + }, + { + "chartID": "952465cf983ebc862751c6c5979f88488d8a7d36", + "data": { + "inGameID": "abstrusedilemma", + "notecount": 1127 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.4, + "playtype": "Touch", + "songID": 348, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f7bee2f27dbac9f9dd1b61d2f9b09d62d0039730", + "data": { + "inGameID": "matenrou", + "notecount": 1294 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 349, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b29bbc938397e915f8e4b7f62039690d1e0394d0", + "data": { + "inGameID": "matenrou", + "notecount": 736 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 349, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7a32dd82749ad2903fa3ea9b98d5a30a794d7fc2", + "data": { + "inGameID": "matenrou", + "notecount": 929 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 349, + "versions": [ + "mobile" + ] + }, + { + "chartID": "3e18bf752d2d725f703b9b301fa6de98ba22d3f9", + "data": { + "inGameID": "tothefurthestdream", + "notecount": 1102 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 350, + "versions": [ + "mobile" + ] + }, + { + "chartID": "4ca6164c75764334355a28c252447c7e17362777", + "data": { + "inGameID": "tothefurthestdream", + "notecount": 836 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 350, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2b15a06ce955a338002e94e642523875891496c8", + "data": { + "inGameID": "tothefurthestdream", + "notecount": 994 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 350, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b930db4525f13fd072d13a25ae6454c9cdf5b53f", + "data": { + "inGameID": "remindthesouls", + "notecount": 945 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 351, + "versions": [ + "mobile" + ] + }, + { + "chartID": "a7631da12bdc136d7d2ec19d0f8275a1659cce3e", + "data": { + "inGameID": "remindthesouls", + "notecount": 561 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 351, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6244c1a105e735d0e8444c375b0e7d4d334ff19d", + "data": { + "inGameID": "remindthesouls", + "notecount": 756 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 351, + "versions": [ + "mobile" + ] + }, + { + "chartID": "fcbc438957219968011a68c13af676e7611661a7", + "data": { + "inGameID": "dynitikos", + "notecount": 986 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9.5, + "playtype": "Touch", + "songID": 352, + "versions": [ + "mobile" + ] + }, + { + "chartID": "9d4d28849034ceebcb17f6736d5554b13610d0a3", + "data": { + "inGameID": "dynitikos", + "notecount": 683 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 352, + "versions": [ + "mobile" + ] + }, + { + "chartID": "75ec60439a1d40f0b217b769a51e692033b08bf2", + "data": { + "inGameID": "dynitikos", + "notecount": 894 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6.5, + "playtype": "Touch", + "songID": 352, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f47d197a7dc990c663277a497c148764735a8fe4", + "data": { + "inGameID": "amekagura", + "notecount": 1076 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.9, + "playtype": "Touch", + "songID": 353, + "versions": [ + "mobile" + ] + }, + { + "chartID": "76232e6b252fbfa45cf647043580a638dc236c58", + "data": { + "inGameID": "amekagura", + "notecount": 741 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 353, + "versions": [ + "mobile" + ] + }, + { + "chartID": "f6fa17a7e4ef02efb2f105af4d0f900a88346b4a", + "data": { + "inGameID": "amekagura", + "notecount": 851 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7.5, + "playtype": "Touch", + "songID": 353, + "versions": [ + "mobile" + ] + }, + { + "chartID": "18587325d7a0ba069b5b5264062c4f1e0c091a14", + "data": { + "inGameID": "bbkkbkk", + "notecount": 976 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.7, + "playtype": "Touch", + "songID": 354, + "versions": [ + "mobile" + ] + }, + { + "chartID": "5ea66342997f62fabc88ac7ac17c89ccfa988e6e", + "data": { + "inGameID": "bbkkbkk", + "notecount": 669 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 354, + "versions": [ + "mobile" + ] + }, + { + "chartID": "6ba49a1238a654e12b7bbe312120beda7e20fed1", + "data": { + "inGameID": "bbkkbkk", + "notecount": 708 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 354, + "versions": [ + "mobile" + ] + }, + { + "chartID": "deae076418474cca094df668633ad034e37aa9f6", + "data": { + "inGameID": "primevaltexture", + "notecount": 810 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9", + "levelNum": 9, + "playtype": "Touch", + "songID": 355, + "versions": [ + "mobile" + ] + }, + { + "chartID": "c7be6951ee48b3aa5e5499f128d854baafa3a20c", + "data": { + "inGameID": "primevaltexture", + "notecount": 387 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 355, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0adc4622c09328ce7e1fb7158ce9f02cb754a1ab", + "data": { + "inGameID": "primevaltexture", + "notecount": 525 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 355, + "versions": [ + "mobile" + ] + }, + { + "chartID": "59ec26fb84646b9b36b4e8d30a724b9594344ce3", + "data": { + "inGameID": "technicolour", + "notecount": 1140 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "9+", + "levelNum": 9.8, + "playtype": "Touch", + "songID": 356, + "versions": [ + "mobile" + ] + }, + { + "chartID": "19d152f882341a6bb5d56a97312b1da8a3f7053c", + "data": { + "inGameID": "technicolour", + "notecount": 644 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "3", + "levelNum": 3, + "playtype": "Touch", + "songID": 356, + "versions": [ + "mobile" + ] + }, + { + "chartID": "bf6b3516c62dbea12d978cf7243b63371605cc96", + "data": { + "inGameID": "technicolour", + "notecount": 812 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 356, + "versions": [ + "mobile" + ] + }, + { + "chartID": "0b1b1a7f8f4e2a7e84e5175977a9c2691702db55", + "data": { + "inGameID": "logos", + "notecount": 1040 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.1, + "playtype": "Touch", + "songID": 357, + "versions": [ + "mobile" + ] + }, + { + "chartID": "2dd557c07af3391fee206fb830158992a7b5ac4f", + "data": { + "inGameID": "logos", + "notecount": 697 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "4", + "levelNum": 4, + "playtype": "Touch", + "songID": 357, + "versions": [ + "mobile" + ] + }, + { + "chartID": "cb14bb3b844e352ec8e0e6035ba4004781cbafb6", + "data": { + "inGameID": "logos", + "notecount": 798 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "7", + "levelNum": 7, + "playtype": "Touch", + "songID": 357, + "versions": [ + "mobile" + ] + }, + { + "chartID": "69fa9693c8447a5dc5eed3fc261c0c66a4cb9031", + "data": { + "inGameID": "egoeimi", + "notecount": 1223 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.5, + "playtype": "Touch", + "songID": 358, + "versions": [ + "mobile" + ] + }, + { + "chartID": "dc9826e3b744134b09b96f4e346bc5541434d612", + "data": { + "inGameID": "egoeimi", + "notecount": 801 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "5", + "levelNum": 5, + "playtype": "Touch", + "songID": 358, + "versions": [ + "mobile" + ] + }, + { + "chartID": "e64f0a3b63f8882c6b2cb49fbd0bf10c699d75fc", + "data": { + "inGameID": "egoeimi", + "notecount": 937 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "8", + "levelNum": 8.6, + "playtype": "Touch", + "songID": 358, + "versions": [ + "mobile" + ] + }, + { + "chartID": "847b857a208da8a647a58e71c9a45f579faface6", + "data": { + "inGameID": "arghena", + "notecount": 1444 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "11", + "levelNum": 11.3, + "playtype": "Touch", + "songID": 359, + "versions": [ + "mobile" + ] + }, + { + "chartID": "7bc99b59208c727798e2835ee40eed958028d673", + "data": { + "inGameID": "arghena", + "notecount": 883 + }, + "difficulty": "Past", + "isPrimary": true, + "level": "6", + "levelNum": 6, + "playtype": "Touch", + "songID": 359, + "versions": [ + "mobile" + ] + }, + { + "chartID": "b50ae6359f4c8aa16f4989a7bc353300a18948ac", + "data": { + "inGameID": "arghena", + "notecount": 1082 + }, + "difficulty": "Present", + "isPrimary": true, + "level": "9", + "levelNum": 9.4, + "playtype": "Touch", + "songID": 359, + "versions": [ + "mobile" + ] + } +] \ No newline at end of file diff --git a/database-seeds/collections/folders.json b/database-seeds/collections/folders.json index f5f84cd1c..202142cec 100644 --- a/database-seeds/collections/folders.json +++ b/database-seeds/collections/folders.json @@ -1,4 +1,160 @@ [ + { + "data": { + "level": 1, + "versions": "mobile" + }, + "folderID": "Fbe24c81ba6102221920a15d43e6cf41acea82857b23c359138a78664b1e61727", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 1 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 10, + "versions": "mobile" + }, + "folderID": "Fe96acf41f6bad54ee6aca61cfa61b4f85b98f274e5df342f49fa25521fffd3da", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 10 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 11, + "versions": "mobile" + }, + "folderID": "F23797fd78b2145ae24906c48b4b2e03c7ce37576e52ccc5c65f5b8c401ed509b", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 11 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 12, + "versions": "mobile" + }, + "folderID": "F42f0a164213224606916df3c10e852f4f33e51d0ac1552fe778e534acd3d6bde", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 12 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 2, + "versions": "mobile" + }, + "folderID": "F8076adf186b084c678707526d865783057bedea0b7458ed8441cb4c856d67b26", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 2 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 3, + "versions": "mobile" + }, + "folderID": "F8d35343478dace4e952d797bf711677d88127929e2768070292d48a630059aa0", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 3 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 4, + "versions": "mobile" + }, + "folderID": "F46f600f7e276daa5cedf27b364e82c2e6c6a68e96154e6023883f8f030b6a386", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 4 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 5, + "versions": "mobile" + }, + "folderID": "Fc5004fde5d91cf9f679cf0280909aef0512032d3d00f676d6fbdc924570e74e4", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 5 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 6, + "versions": "mobile" + }, + "folderID": "Fd39ebc8f92dc2725d1c584eaa51cc3e53d66714837499f1ae1e330a64b2fdda8", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 6 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 7, + "versions": "mobile" + }, + "folderID": "F506462b3e11cf7926aa951284f63721c97a523ee4ba8fe0c8fea2fbec47171b5", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 7 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 8, + "versions": "mobile" + }, + "folderID": "F4cb43c30b535a3d55643a92c7ab622b9c354781dcc5d3b8c17e0f8aa63debdaf", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 8 (Mobile)", + "type": "charts" + }, + { + "data": { + "level": 9, + "versions": "mobile" + }, + "folderID": "F22a38f5c458fb0be22bc078864bbabc0522589a95930799b5e3409b1666ba33d", + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "searchTerms": [], + "title": "Level 9 (Mobile)", + "type": "charts" + }, { "data": { "data¬tableFolders": { diff --git a/database-seeds/collections/songs-arcaea.json b/database-seeds/collections/songs-arcaea.json new file mode 100644 index 000000000..d8dc202dc --- /dev/null +++ b/database-seeds/collections/songs-arcaea.json @@ -0,0 +1,5437 @@ +[ + { + "altTitles": [], + "artist": "REDSHiFT", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 1, + "searchTerms": [ + "さよならはつこい", + "사요나라 하츠코이" + ], + "title": "Sayonara Hatsukoi" + }, + { + "altTitles": [], + "artist": "Laur vs CK", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 2, + "searchTerms": [ + "ろすとしびらいぜーしょん", + "ろすとしゔぃらいぜーしょん", + "로스트 시빌리제이션" + ], + "title": "Lost Civilization" + }, + { + "altTitles": [], + "artist": "EBIMAYO", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 3, + "searchTerms": [ + "ぐっどてっく", + "굿텍" + ], + "title": "GOODTEK (Arcaea Edit)" + }, + { + "altTitles": [], + "artist": "Laur", + "data": { + "displayVersion": "1.0", + "songPack": "Eternal Core" + }, + "id": 4, + "searchTerms": [ + "くらいおぶゔぃえら", + "크라이 오브 비엘라" + ], + "title": "cry of viyella" + }, + { + "altTitles": [], + "artist": "Combatplayer", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 5, + "searchTerms": [ + "らいず", + "라이즈" + ], + "title": "Rise" + }, + { + "altTitles": [], + "artist": "chitose", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 6, + "searchTerms": [ + "るしふぁー", + "루시퍼" + ], + "title": "Lucifer" + }, + { + "altTitles": [], + "artist": "chitose", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 7, + "searchTerms": [ + "ふぇありーている", + "페어리테일" + ], + "title": "Fairytale" + }, + { + "altTitles": [], + "artist": "Combatplayer", + "data": { + "displayVersion": "1.0", + "songPack": "Eternal Core" + }, + "id": 8, + "searchTerms": [ + "あいゔはーどいっとせいど", + "あいぶはーどいっとせいど", + "아이브 허드 잇 셋", + "아입 허드 잇 셋" + ], + "title": "I've heard it said" + }, + { + "altTitles": [], + "artist": "cYsmix", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 9, + "searchTerms": [ + "ばばろっく", + "바바로크" + ], + "title": "Babaroque" + }, + { + "altTitles": [], + "artist": "Frums", + "data": { + "displayVersion": "1.0", + "songPack": "Eternal Core" + }, + "id": 10, + "searchTerms": [ + "めもりーふぁくとりー", + "메모리팩토리.이즈" + ], + "title": "memoryfactory.lzh" + }, + { + "altTitles": [], + "artist": "Puru", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 11, + "searchTerms": [ + "すのーほわいと", + "すのうほわいと", + "스노우 화이트" + ], + "title": "Snow White" + }, + { + "altTitles": [], + "artist": "Akira Complex", + "data": { + "displayVersion": "1.0", + "songPack": "Eternal Core" + }, + "id": 12, + "searchTerms": [ + "りれんとれす", + "릴렌트리스" + ], + "title": "Relentless" + }, + { + "altTitles": [], + "artist": "ak+q", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 13, + "searchTerms": [ + "しぇーずおぶらいといんあとらんせんだんとれるむ", + "しぇいずおぶらいといんあとらんせんだんとれるむ", + "셰이드 오브 라이트 인 어 트랜센던트 렐름", + "셰이즈 오브 라이트 인 어 트랜센던트 렐름" + ], + "title": "Shades of Light in a Transcendent Realm" + }, + { + "altTitles": [], + "artist": "ak+q", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 14, + "searchTerms": [ + "うぇくさりあ", + "ゔぇくさりあ", + "벡자리아", + "벡사리아" + ], + "title": "Vexaria" + }, + { + "altTitles": [], + "artist": "ak+q", + "data": { + "displayVersion": "1.0", + "songPack": "Eternal Core" + }, + "id": 15, + "searchTerms": [ + "えっせんすおぶとわいらいと", + "에센스 오브 트와일라잇", + "엣센스 오브 트와일라잇" + ], + "title": "Essence of Twilight" + }, + { + "altTitles": [], + "artist": "nitro", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 16, + "searchTerms": [ + "くおりあ", + "퀄리아 아이디에테지아", + "콸리아 아이디에테지아" + ], + "title": "qualia -ideaesthesia-" + }, + { + "altTitles": [], + "artist": "Laur", + "data": { + "displayVersion": "1.0", + "songPack": "Eternal Core" + }, + "id": 17, + "searchTerms": [ + "ぷらぐまてぃずむ", + "프라그마티즘", + "프래그마티즘" + ], + "title": "PRAGMATISM" + }, + { + "altTitles": [], + "artist": "Laur", + "data": { + "displayVersion": "3.10", + "songPack": "Eternal Core" + }, + "id": 18, + "searchTerms": [ + "ぷらぐまてぃずむ", + "프라그마티즘", + "프래그마티즘" + ], + "title": "PRAGMATISM -RESURRECTION-" + }, + { + "altTitles": [], + "artist": "Team Grimoire", + "data": { + "displayVersion": "1.0", + "songPack": "Eternal Core" + }, + "id": 19, + "searchTerms": [ + "しぇりだー", + "しぇりるす", + "셰리다", + "셰리루스", + "셰리루트", + "셰루트", + "셰루스", + "셰리더" + ], + "title": "Sheriruth" + }, + { + "altTitles": [], + "artist": "sky_delta", + "data": { + "displayVersion": "1.0", + "songPack": "Eternal Core" + }, + "id": 20, + "searchTerms": [ + "るみあ", + "루미아" + ], + "title": "Lumia" + }, + { + "altTitles": [], + "artist": "Cosmograph", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 21, + "searchTerms": [ + "でめんとあふたーれじぇんど", + "디멘트 애프터 레전드" + ], + "title": "Dement ~after legend~" + }, + { + "altTitles": [], + "artist": "Farhan", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 22, + "searchTerms": [ + "だんでらいおん", + "단델라이온" + ], + "title": "Dandelion" + }, + { + "altTitles": [ + "Anokumene" + ], + "artist": "Jun Kuroda", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 23, + "searchTerms": [ + "anokumene", + "あねくめーね", + "あねくめね", + "아네쿠메네" + ], + "title": "Anökumene" + }, + { + "altTitles": [], + "artist": "HyuN", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 24, + "searchTerms": [ + "いんふぃにてぃへぶん", + "いんふぃにてぃーへぶん", + "いんふぃにてぃへゔん", + "いんふぃにてぃーへゔん", + "인피니티 헤븐" + ], + "title": "Infinity Heaven" + }, + { + "altTitles": [], + "artist": "モリモリあつし", + "data": { + "displayVersion": "1.0", + "songPack": "Crimson Solace" + }, + "id": 25, + "searchTerms": [ + "ぱーてぃゔぁいなる", + "ぱーてぃーゔぁいなる", + "파티 비닐", + "파티 바이닐" + ], + "title": "Party Vinyl" + }, + { + "altTitles": [], + "artist": "ARForest", + "data": { + "displayVersion": "1.0", + "songPack": "Crimson Solace" + }, + "id": 26, + "searchTerms": [ + "ふらっしゅばっく", + "플래시백" + ], + "title": "Flashback" + }, + { + "altTitles": [ + "フライブルクとエンドロウル" + ], + "artist": "アリスシャッハと魔法の楽団", + "data": { + "displayVersion": "1.0", + "songPack": "Crimson Solace" + }, + "id": 27, + "searchTerms": [ + "플라이부르크 앤 엔드롤", + "프라이부르크토 엔도로루", + "플라이부르크와 엔드롤" + ], + "title": "Flyburg and Endroll" + }, + { + "altTitles": [], + "artist": "しーけー", + "data": { + "displayVersion": "1.0", + "songPack": "Crimson Solace" + }, + "id": 28, + "searchTerms": [ + "にるゔるーちぇ", + "너브루체" + ], + "title": "Nirv lucE" + }, + { + "altTitles": [], + "artist": "Sound Souler", + "data": { + "displayVersion": "1.0", + "songPack": "Crimson Solace" + }, + "id": 29, + "searchTerms": [ + "ぱらだいす", + "파라다이스" + ], + "title": "Paradise" + }, + { + "altTitles": [], + "artist": "U-ske", + "data": { + "displayVersion": "1.0", + "songPack": "Arcaea" + }, + "id": 30, + "searchTerms": [ + "ぶらんどにゅーわーるど", + "ぶらんにゅーわーるど", + "브랜드 뉴 월드" + ], + "title": "Brand new world" + }, + { + "altTitles": [], + "artist": "Cosmograph", + "data": { + "displayVersion": "1.1", + "songPack": "Memory Archive" + }, + "id": 31, + "searchTerms": [ + "dataerror", + "でーたえらー", + "데이타 에러", + "데이터 에러" + ], + "title": "DataErr0r" + }, + { + "altTitles": [], + "artist": "HyuN feat. Syepias", + "data": { + "displayVersion": "1.1", + "songPack": "Memory Archive" + }, + "id": 32, + "searchTerms": [ + "くろすそうる", + "크로스 소울" + ], + "title": "CROSS†SOUL" + }, + { + "altTitles": [], + "artist": "PSYQUI", + "data": { + "displayVersion": "1.1", + "songPack": "Memory Archive" + }, + "id": 33, + "searchTerms": [ + "ゆあぼいすそー", + "유어 보이스 이즈 소" + ], + "title": "Your voice so... feat. Such" + }, + { + "altTitles": [], + "artist": "黒皇帝", + "data": { + "displayVersion": "1.1", + "songPack": "Arcaea" + }, + "id": 34, + "searchTerms": [ + "くろのすたしす", + "くろのすていしす", + "크로노스테이시스" + ], + "title": "Chronostasis" + }, + { + "altTitles": [ + "神奈川電脳暗渠" + ], + "artist": "南ゆに", + "data": { + "displayVersion": "1.1", + "songPack": "Arcaea" + }, + "id": 35, + "searchTerms": [ + "かながわでんのうあんきょ", + "카나가와 사이버 커버트", + "카나가와 덴노우 안쿄", + "카나가와 전뇌 암거" + ], + "title": "Kanagawa Cyber Culvert" + }, + { + "altTitles": [], + "artist": "旅人E", + "data": { + "displayVersion": "1.1", + "songPack": "Dynamix" + }, + "id": 36, + "searchTerms": [ + "むーんらいとおぶさんどきゃっする", + "문라이트 오브 샌드 캐슬" + ], + "title": "Moonlight of Sand Castle" + }, + { + "altTitles": [], + "artist": "Ryazan", + "data": { + "displayVersion": "1.1", + "songPack": "Dynamix" + }, + "id": 37, + "searchTerms": [ + "りこんすとらくしょん", + "리컨스트럭션" + ], + "title": "REconstruction" + }, + { + "altTitles": [], + "artist": "Arch vs n3pu", + "data": { + "displayVersion": "1.1", + "songPack": "Dynamix" + }, + "id": 38, + "searchTerms": [ + "えぼるてっくすぽっぴんみっくす", + "えゔぉるてっくすぽっぴんみっくす", + "이볼텍스 팝핀 믹스", + "에볼텍스 팝핀 믹스" + ], + "title": "Evoltex (poppi'n mix)" + }, + { + "altTitles": [], + "artist": "TQ☆", + "data": { + "displayVersion": "1.1", + "songPack": "Dynamix" + }, + "id": 39, + "searchTerms": [ + "おらくる", + "오라클" + ], + "title": "Oracle" + }, + { + "altTitles": [ + "aterlbus" + ], + "artist": "Aoi", + "data": { + "displayVersion": "1.1", + "songPack": "Dynamix" + }, + "id": 40, + "searchTerms": [ + "aterlbus", + "あーてるばす", + "아텔버스", + "아텔부스", + "아테르버스", + "아테르부스" + ], + "title": "αterlβus" + }, + { + "altTitles": [ + "クロートーと星の観測者" + ], + "artist": "しーけー", + "data": { + "displayVersion": "1.1", + "songPack": "Arcaea" + }, + "id": 41, + "searchTerms": [ + "くろーとーとほしのかんそくしゃ", + "클로토 앤 더 스타게이저", + "클로쏘 앤 더 스타게이저", + "크로토토 호시노 칸소쿠샤", + "클로트와 별 관측자" + ], + "title": "Clotho and the stargazer" + }, + { + "altTitles": [ + "不浄な白い鳥" + ], + "artist": "MIssionary", + "data": { + "displayVersion": "1.1", + "songPack": "Memory Archive" + }, + "id": 42, + "searchTerms": [ + "ふじょうなしろいとり", + "임퓨어 버드", + "후죠나 시로이 토리", + "부정한 하얀 새" + ], + "title": "Impure Bird" + }, + { + "altTitles": [], + "artist": "ak+q", + "data": { + "displayVersion": "1.1", + "songPack": "Arcaea" + }, + "id": 43, + "searchTerms": [ + "いぐのたす", + "いぐのーたす", + "いのーたす", + "いぐのたすあふたーばーん", + "いぐのーたすあふたーばーん", + "いのーたすあふたーばーん", + "이그노투스", + "이그노터스" + ], + "title": "Ignotus" + }, + { + "altTitles": [], + "artist": "Arcaea Sound Team", + "data": { + "displayVersion": "3.12", + "songPack": "Arcaea" + }, + "id": 44, + "searchTerms": [ + "いぐのたす", + "いぐのーたす", + "いのーたす", + "いぐのたすあふたーばーん", + "いぐのーたすあふたーばーん", + "いのーたすあふたーばーん", + "이그노투스", + "이그노터스" + ], + "title": "Ignotus Afterburn" + }, + { + "altTitles": [], + "artist": "Silentroom", + "data": { + "displayVersion": "1.1", + "songPack": "Ambivalent Vision" + }, + "id": 45, + "searchTerms": [ + "れーてうす", + "레테우스" + ], + "title": "Lethaeus" + }, + { + "altTitles": [ + "vsキミ戦争" + ], + "artist": "U-ske (feat. lueur)", + "data": { + "displayVersion": "1.1", + "songPack": "Ambivalent Vision" + }, + "id": 46, + "searchTerms": [ + "ばーさすきみせんそう", + "로맨스 워즈", + "바사스 키미 센소", + "버서스 너 전쟁" + ], + "title": "Romance Wars" + }, + { + "altTitles": [], + "artist": "T2Kazuya", + "data": { + "displayVersion": "1.1", + "songPack": "Ambivalent Vision" + }, + "id": 47, + "searchTerms": [ + "ぶろっさむず", + "ぶらっさむず", + "블로섬" + ], + "title": "Blossoms" + }, + { + "altTitles": [], + "artist": "翡乃イスカ", + "data": { + "displayVersion": "1.1", + "songPack": "Ambivalent Vision" + }, + "id": 48, + "searchTerms": [ + "むーんはーと", + "문하트" + ], + "title": "Moonheart" + }, + { + "altTitles": [], + "artist": "Iris", + "data": { + "displayVersion": "1.1", + "songPack": "Ambivalent Vision" + }, + "id": 49, + "searchTerms": [ + "じぇねしす", + "제네시스" + ], + "title": "Genesis" + }, + { + "altTitles": [ + "ハルトピア ~Utopia of Spring~" + ], + "artist": "A-zu-ra", + "data": { + "displayVersion": "1.1", + "songPack": "Arcaea" + }, + "id": 50, + "searchTerms": [ + "はるとぴあゆーとぴあおぶすぷりんぐ", + "하루토피아 유토피아 오브 스프링" + ], + "title": "Harutopia ~Utopia of Spring~" + }, + { + "altTitles": [], + "artist": "ginkiha", + "data": { + "displayVersion": "1.1", + "songPack": "Memory Archive" + }, + "id": 51, + "searchTerms": [ + "あうくせしあ", + "억세시아", + "악세시아", + "아크세시아", + "어크세시아", + "억제지아", + "악제지아", + "아크제지아", + "어크제지아" + ], + "title": "Auxesia" + }, + { + "altTitles": [], + "artist": "Rabbit House", + "data": { + "displayVersion": "1.1", + "songPack": "Arcaea" + }, + "id": 52, + "searchTerms": [ + "らびっといんざぶらっくるーむ", + "래빗 인 더 블랙 룸" + ], + "title": "Rabbit In The Black Room" + }, + { + "altTitles": [], + "artist": "HiTECH NINJA", + "data": { + "displayVersion": "1.1", + "songPack": "Memory Archive" + }, + "id": 53, + "searchTerms": [ + "もでりすた", + "모델리스타" + ], + "title": "Modelista" + }, + { + "altTitles": [], + "artist": "HATE", + "data": { + "displayVersion": "1.5", + "songPack": "Vicious Labyrinth" + }, + "id": 54, + "searchTerms": [ + "さうんどうぃっち", + "사운드위치" + ], + "title": "SOUNDWiTCH" + }, + { + "altTitles": [ + "妖艶魔女 -trappola bewitching-" + ], + "artist": "gmtn.", + "data": { + "displayVersion": "1.5", + "songPack": "Vicious Labyrinth" + }, + "id": 55, + "searchTerms": [ + "ようえんまじょとらっぽらびーうぃっちんぐ", + "트래폴라 비윗칭", + "트라폴라 비윗칭", + "요엔마죠 토랏포라 비윗칭구", + "요염마녀 트래폴라 비윗칭", + "요염마녀 트라폴라 비윗칭" + ], + "title": "trappola bewitching" + }, + { + "altTitles": [], + "artist": "Yamajet", + "data": { + "displayVersion": "1.5", + "songPack": "Vicious Labyrinth" + }, + "id": 56, + "searchTerms": [ + "いこのくらすと", + "あいこのくらすと", + "아이코노클래스트", + "아이코노클라스트" + ], + "title": "Iconoclast" + }, + { + "altTitles": [], + "artist": "siromaru + cranky", + "data": { + "displayVersion": "1.5", + "songPack": "Vicious Labyrinth" + }, + "id": 57, + "searchTerms": [ + "こんふりくと", + "컨플릭트" + ], + "title": "conflict" + }, + { + "altTitles": [], + "artist": "ak+q", + "data": { + "displayVersion": "1.5", + "songPack": "Vicious Labyrinth" + }, + "id": 58, + "searchTerms": [ + "あくしうむくらいしす", + "억시움 크라이시스", + "악시움 크라이시스", + "액시움 크라이시스" + ], + "title": "Axium Crisis" + }, + { + "altTitles": [], + "artist": "Team Grimoire vs Laur", + "data": { + "displayVersion": "1.5", + "songPack": "Vicious Labyrinth" + }, + "id": 59, + "searchTerms": [ + "ぐりーゔぁすでれぃー", + "ぐりーばすれでぃー", + "그리버스 레이디" + ], + "title": "Grievous Lady" + }, + { + "altTitles": [], + "artist": "翡乃イスカ", + "data": { + "displayVersion": "1.5", + "songPack": "Arcaea" + }, + "id": 60, + "searchTerms": [ + "どりーみんあとらくしょん", + "드리밍 어트랙션" + ], + "title": "Dreamin' Attraction!!" + }, + { + "altTitles": [], + "artist": "Silentroom", + "data": { + "displayVersion": "1.5", + "songPack": "Arcaea" + }, + "id": 61, + "searchTerms": [ + "れっどあんどぶるー", + "れっどあんどぶるーあんどぐりーん", + "레드 앤 블루" + ], + "title": "Red and Blue" + }, + { + "altTitles": [], + "artist": "fn(ArcaeaSoundTeam)", + "data": { + "displayVersion": "3.12", + "songPack": "Arcaea" + }, + "id": 62, + "searchTerms": [ + "れっどあんどぶるー", + "れっどあんどぶるーあんどぐりーん", + "레드 앤 블루" + ], + "title": "Red and Blue and Green" + }, + { + "altTitles": [], + "artist": "REDSHiFT", + "data": { + "displayVersion": "1.5", + "songPack": "Arcaea" + }, + "id": 63, + "searchTerms": [ + "わんらすとどらいぶ", + "원 라스트 드라이브" + ], + "title": "One Last Drive" + }, + { + "altTitles": [], + "artist": "void", + "data": { + "displayVersion": "1.5", + "songPack": "Memory Archive" + }, + "id": 64, + "searchTerms": [ + "されんだー", + "서렌더" + ], + "title": "Surrender" + }, + { + "altTitles": [ + "夜桜吹雪" + ], + "artist": "A.SAKA", + "data": { + "displayVersion": "1.5", + "songPack": "Memory Archive" + }, + "id": 65, + "searchTerms": [ + "よざくらふぶき", + "요자쿠라 후부키" + ], + "title": "Yosakura Fubuki" + }, + { + "altTitles": [], + "artist": "jioyi", + "data": { + "displayVersion": "1.5", + "songPack": "Lanota" + }, + "id": 66, + "searchTerms": [ + "しあにん", + "시아닌" + ], + "title": "cyanine" + }, + { + "altTitles": [], + "artist": "Tiny Minim", + "data": { + "displayVersion": "1.5", + "songPack": "Lanota" + }, + "id": 67, + "searchTerms": [ + "どりーむごーずおん", + "드림 고즈 온", + "드림 고스 온" + ], + "title": "Dream goes on" + }, + { + "altTitles": [], + "artist": "ARForest", + "data": { + "displayVersion": "1.5", + "songPack": "Lanota" + }, + "id": 68, + "searchTerms": [ + "じゃーにー", + "저니", + "져니" + ], + "title": "Journey" + }, + { + "altTitles": [], + "artist": "Junk", + "data": { + "displayVersion": "1.5", + "songPack": "Lanota" + }, + "id": 69, + "searchTerms": [ + "すぺくた", + "스펙타" + ], + "title": "Specta" + }, + { + "altTitles": [], + "artist": "Feryquitous", + "data": { + "displayVersion": "1.5", + "songPack": "Lanota" + }, + "id": 70, + "searchTerms": [ + "くおん", + "쿠온" + ], + "title": "Quon" + }, + { + "altTitles": [], + "artist": "Mitomoro", + "data": { + "displayVersion": "1.5", + "songPack": "Arcaea" + }, + "id": 71, + "searchTerms": [ + "さいろ", + "사이로" + ], + "title": "Syro" + }, + { + "altTitles": [], + "artist": "Sound Souler", + "data": { + "displayVersion": "1.5", + "songPack": "Arcaea" + }, + "id": 72, + "searchTerms": [ + "りいんべんと", + "리인벤트" + ], + "title": "Reinvent" + }, + { + "altTitles": [], + "artist": "Soleily", + "data": { + "displayVersion": "1.6", + "songPack": "Binary Enfold" + }, + "id": 73, + "searchTerms": [ + "さいれんとらっしゅ", + "사일런트 러시", + "사일런트 러쉬" + ], + "title": "Silent Rush" + }, + { + "altTitles": [], + "artist": "ETIA.", + "data": { + "displayVersion": "1.6", + "songPack": "Binary Enfold" + }, + "id": 74, + "searchTerms": [ + "しんぎゅらりてぃ", + "싱귤래리티" + ], + "title": "Singularity" + }, + { + "altTitles": [], + "artist": "Arcaea Sound Team against. ETIA.", + "data": { + "displayVersion": "3.12", + "songPack": "Binary Enfold" + }, + "id": 75, + "searchTerms": [ + "しんぎゅらりてぃ", + "싱귤래리티" + ], + "title": "Singularity VVVIP" + }, + { + "altTitles": [], + "artist": "ETIA.", + "data": { + "displayVersion": "1.6", + "songPack": "Binary Enfold" + }, + "id": 76, + "searchTerms": [ + "めもりーふぉれすと", + "메모리 포레스트" + ], + "title": "Memory Forest" + }, + { + "altTitles": [], + "artist": "Yooh", + "data": { + "displayVersion": "1.6", + "songPack": "Binary Enfold" + }, + "id": 77, + "searchTerms": [ + "すとろんぐほーるず", + "스트롱홀드", + "스트롱홀즈" + ], + "title": "Strongholds" + }, + { + "altTitles": [], + "artist": "uma feat. 橘花音", + "data": { + "displayVersion": "1.6", + "songPack": "Binary Enfold" + }, + "id": 78, + "searchTerms": [ + "ねくすととぅーゆー", + "넥스트 투 유" + ], + "title": "next to you" + }, + { + "altTitles": [], + "artist": "INNOCENT NOIZE", + "data": { + "displayVersion": "1.5", + "songPack": "Memory Archive" + }, + "id": 79, + "searchTerms": [ + "めたりっくぱにっしゃー", + "메탈릭 퍼니셔" + ], + "title": "Metallic Punisher" + }, + { + "altTitles": [], + "artist": "Massive New Krew", + "data": { + "displayVersion": "1.5", + "songPack": "Arcaea" + }, + "id": 80, + "searchTerms": [ + "ぶらすたー", + "블라스터" + ], + "title": "Blaster" + }, + { + "altTitles": [ + "guardina" + ], + "artist": "Aoi", + "data": { + "displayVersion": "1.6", + "songPack": "Memory Archive" + }, + "id": 81, + "searchTerms": [ + "guardina", + "がーでぃな", + "가디나", + "가르디나" + ], + "title": "γuarδina" + }, + { + "altTitles": [], + "artist": "かゆき", + "data": { + "displayVersion": "1.6", + "songPack": "Memory Archive" + }, + "id": 82, + "searchTerms": [ + "かーまいんさいず", + "카마인 사이즈", + "카마인 사이스" + ], + "title": "carmine:scythe" + }, + { + "altTitles": [], + "artist": "PSYQUI", + "data": { + "displayVersion": "1.6", + "songPack": "Memory Archive" + }, + "id": 83, + "searchTerms": [ + "びーぜあ", + "비 데어" + ], + "title": "Be There" + }, + { + "altTitles": [], + "artist": "Tanchiky", + "data": { + "displayVersion": "1.6", + "songPack": "Arcaea" + }, + "id": 84, + "searchTerms": [ + "さいばーねしあかたるしす", + "さいばねしあかたるしす", + "사이버네시아 카타르시스" + ], + "title": "Cybernecia Catharsis" + }, + { + "altTitles": [], + "artist": "Mameyudoufu", + "data": { + "displayVersion": "1.6", + "songPack": "Memory Archive" + }, + "id": 85, + "searchTerms": [ + "こーるまいねーむ", + "콜 마이 네임" + ], + "title": "Call My Name feat. Yukacco" + }, + { + "altTitles": [], + "artist": "DIA", + "data": { + "displayVersion": "1.6", + "songPack": "Arcaea" + }, + "id": 86, + "searchTerms": [ + "いんかるし", + "인카루시" + ], + "title": "inkar-usi" + }, + { + "altTitles": [ + "九番目の迷路" + ], + "artist": "アリスシャッハと魔法の楽団", + "data": { + "displayVersion": "1.7", + "songPack": "Luminous Sky" + }, + "id": 87, + "searchTerms": [ + "きゅうばんめのめいろ", + "메이즈 넘버 나인", + "큐반메노 메이로", + "아홉번째 미로" + ], + "title": "Maze No.9" + }, + { + "altTitles": [], + "artist": "Jun Kuroda", + "data": { + "displayVersion": "1.7", + "songPack": "Luminous Sky" + }, + "id": 88, + "searchTerms": [ + "ざめっせーじ", + "더 메세지" + ], + "title": "The Message" + }, + { + "altTitles": [], + "artist": "ぺのれり", + "data": { + "displayVersion": "1.7", + "songPack": "Luminous Sky" + }, + "id": 89, + "searchTerms": [ + "さるふぁー", + "설퍼" + ], + "title": "Sulfur" + }, + { + "altTitles": [], + "artist": "xi", + "data": { + "displayVersion": "1.7", + "songPack": "Luminous Sky" + }, + "id": 90, + "searchTerms": [ + "はるしおん", + "할시온" + ], + "title": "Halcyon" + }, + { + "altTitles": [], + "artist": "Akira Complex", + "data": { + "displayVersion": "1.7", + "songPack": "Luminous Sky" + }, + "id": 91, + "searchTerms": [ + "えーてるすとらいく", + "에테르 스트라이크" + ], + "title": "Ether Strike" + }, + { + "altTitles": [], + "artist": "Sakuzyo", + "data": { + "displayVersion": "1.7", + "songPack": "Luminous Sky" + }, + "id": 92, + "searchTerms": [ + "ふらくちゃーれい", + "프랙쳐 레이" + ], + "title": "Fracture Ray" + }, + { + "altTitles": [], + "artist": "Aire", + "data": { + "displayVersion": "1.7", + "songPack": "Arcaea" + }, + "id": 93, + "searchTerms": [ + "すおみ", + "수오미" + ], + "title": "Suomi" + }, + { + "altTitles": [], + "artist": "Kobaryo", + "data": { + "displayVersion": "1.7", + "songPack": "Arcaea" + }, + "id": 94, + "searchTerms": [ + "ぶっくめーかーつーでぃーばーじょん", + "북메이커 투디 버전", + "북메이커 2D 버전", + "북메이커 투디 버전" + ], + "title": "Bookmaker (2D Version)" + }, + { + "altTitles": [ + "堕楽の園" + ], + "artist": "gmtn. (witch's slave)", + "data": { + "displayVersion": "1.7", + "songPack": "Arcaea" + }, + "id": 95, + "searchTerms": [ + "だらくのその", + "일리걸 파라다이스", + "일리갈 파라다이스", + "타락의 정원" + ], + "title": "Illegal Paradise" + }, + { + "altTitles": [], + "artist": "Frums", + "data": { + "displayVersion": "1.7", + "songPack": "Memory Archive" + }, + "id": 96, + "searchTerms": [ + "どろっぷでっど", + "おーばーでっど", + "드롭데드", + "드랍데드" + ], + "title": "dropdead" + }, + { + "altTitles": [], + "artist": "fn", + "data": { + "displayVersion": "3.12", + "songPack": "Memory Archive" + }, + "id": 97, + "searchTerms": [ + "どろっぷでっど", + "おーばーでっど", + "드롭데드", + "드랍데드" + ], + "title": "overdead." + }, + { + "altTitles": [], + "artist": "Silentroom", + "data": { + "displayVersion": "1.7", + "songPack": "Memory Archive" + }, + "id": 98, + "searchTerms": [ + "ふぉーるんすくえあ", + "폴른스퀘어" + ], + "title": "Fallensquare" + }, + { + "altTitles": [], + "artist": "Silentroom", + "data": { + "displayVersion": "1.7", + "songPack": "Arcaea" + }, + "id": 99, + "searchTerms": [ + "ねるふ", + "네르프" + ], + "title": "Nhelv" + }, + { + "altTitles": [ + "白道、多希望羊と信じありく。" + ], + "artist": "Apo11o program ft. 大瀬良あい", + "data": { + "displayVersion": "1.7", + "songPack": "Arcaea" + }, + "id": 100, + "searchTerms": [ + "びゃくどうたきぼうようとしんじありく", + "루나오빗 빌리브 인 더 에스페브랜치 로드", + "뱌쿠도우타 키보우요토신지아리쿠", + "백도 다희망양으로 믿는다" + ], + "title": "LunarOrbit -believe in the Espebranch road-" + }, + { + "altTitles": [], + "artist": "お月さま交響曲", + "data": { + "displayVersion": "1.7", + "songPack": "Arcaea" + }, + "id": 101, + "searchTerms": [ + "ぷるがとりうむ", + "퍼가토리움" + ], + "title": "Purgatorium" + }, + { + "altTitles": [ + "光" + ], + "artist": "THB", + "data": { + "displayVersion": "1.8", + "songPack": "Tone Sphere" + }, + "id": 102, + "searchTerms": [ + "ひかり", + "히카리" + ], + "title": "Hikari" + }, + { + "altTitles": [], + "artist": "Ras", + "data": { + "displayVersion": "1.8", + "songPack": "Tone Sphere" + }, + "id": 103, + "searchTerms": [ + "すてーじゃーおーるすてーじくりあー", + "스테이저 올 스테이지 클리어" + ], + "title": "STAGER (ALL STAGE CLEAR)" + }, + { + "altTitles": [], + "artist": "Sta", + "data": { + "displayVersion": "1.8", + "songPack": "Tone Sphere" + }, + "id": 104, + "searchTerms": [ + "ほーるおぶみらーず", + "홀 오브 미러즈", + "홀 오브 미러스" + ], + "title": "Hall of Mirrors" + }, + { + "altTitles": [], + "artist": "THE SHAFT", + "data": { + "displayVersion": "1.8", + "songPack": "Tone Sphere" + }, + "id": 105, + "searchTerms": [ + "りにああくせれれーたー", + "りにあーあくせれれーたー", + "리니어 엑셀러레이터" + ], + "title": "Linear Accelerator" + }, + { + "altTitles": [], + "artist": "xi + Sta", + "data": { + "displayVersion": "1.8", + "songPack": "Tone Sphere" + }, + "id": 106, + "searchTerms": [ + "てぃふぁれと", + "티페리트" + ], + "title": "Tiferet" + }, + { + "altTitles": [], + "artist": "WAiKURO", + "data": { + "displayVersion": "1.7", + "songPack": "Memory Archive" + }, + "id": 107, + "searchTerms": [ + "あれくさんどらいと", + "알렉산드라이트" + ], + "title": "Alexandrite" + }, + { + "altTitles": [], + "artist": "Feryquitous feat.Sennzai", + "data": { + "displayVersion": "1.8", + "songPack": "Arcaea" + }, + "id": 108, + "searchTerms": [ + "るぎあ", + "루기아" + ], + "title": "Rugie" + }, + { + "altTitles": [], + "artist": "Noah", + "data": { + "displayVersion": "1.8", + "songPack": "Memory Archive" + }, + "id": 109, + "searchTerms": [ + "あすとらるてーる", + "あすとらるている", + "아스트랄 테일" + ], + "title": "Astral tale" + }, + { + "altTitles": [], + "artist": "Yunosuke", + "data": { + "displayVersion": "1.8", + "songPack": "Memory Archive" + }, + "id": 110, + "searchTerms": [ + "ふぁんたじあ", + "판타지아" + ], + "title": "Phantasia" + }, + { + "altTitles": [], + "artist": "Street", + "data": { + "displayVersion": "1.8", + "songPack": "Memory Archive" + }, + "id": 111, + "searchTerms": [ + "えんぱいあおぶうぃんたー", + "えんぱいあーおぶうぃんたー", + "엠파이어 오브 윈터" + ], + "title": "Empire of Winter" + }, + { + "altTitles": [], + "artist": "REDALiCE", + "data": { + "displayVersion": "1.9", + "songPack": "Groove Coaster" + }, + "id": 112, + "searchTerms": [ + "まーりん", + "메를린", + "마린" + ], + "title": "MERLIN" + }, + { + "altTitles": [ + "DX超性能フルメタル少女" + ], + "artist": "IOSYS TRAX (uno with.ちよこ)", + "data": { + "displayVersion": "1.9", + "songPack": "Groove Coaster" + }, + "id": 113, + "searchTerms": [ + "でらっくすちょうせいのうふるめたるしょうじょ", + "디엑스 초세이노우 풀 메탈 쇼죠", + "DX 초성능 풀 메탈 소녀", + "디엑스 초성능 풀 메탈 소녀" + ], + "title": "DX Choseinou Full Metal Shojo" + }, + { + "altTitles": [], + "artist": "t+pazolite", + "data": { + "displayVersion": "1.9", + "songPack": "Groove Coaster" + }, + "id": 114, + "searchTerms": [ + "おまけのすとろーく", + "오마케노 스트로크" + ], + "title": "OMAKENO Stroke" + }, + { + "altTitles": [], + "artist": "MASAKI (ZUNTATA)", + "data": { + "displayVersion": "1.9", + "songPack": "Groove Coaster" + }, + "id": 115, + "searchTerms": [ + "すかーれっとらんす", + "스칼렛 랜스" + ], + "title": "Scarlet Lance" + }, + { + "altTitles": [], + "artist": "Cranky VS MASAKI", + "data": { + "displayVersion": "1.9", + "songPack": "Groove Coaster" + }, + "id": 116, + "searchTerms": [ + "うろぼろすついんすとろーくおぶじえんど", + "우로보로스 트윈 스트로크 오브 디 엔드" + ], + "title": "ouroboros -twin stroke of the end-" + }, + { + "altTitles": [], + "artist": "Zekk", + "data": { + "displayVersion": "1.9", + "songPack": "Memory Archive" + }, + "id": 117, + "searchTerms": [ + "りべるたす", + "리베르타스" + ], + "title": "Libertas" + }, + { + "altTitles": [ + "虚空の夢" + ], + "artist": "ak+q feat. Sennzai", + "data": { + "displayVersion": "1.9", + "songPack": "Eternal Core" + }, + "id": 118, + "searchTerms": [ + "こくうのゆめ", + "솔리타리 드림", + "솔리터리 드림", + "코쿠우노 유메", + "공허의 꿈" + ], + "title": "Solitary Dream" + }, + { + "altTitles": [], + "artist": "Blacklolita", + "data": { + "displayVersion": "2.0", + "songPack": "Absolute Reason" + }, + "id": 119, + "searchTerms": [ + "あんちてーぜ", + "안티테제" + ], + "title": "Antithese" + }, + { + "altTitles": [], + "artist": "3R2", + "data": { + "displayVersion": "2.0", + "songPack": "Absolute Reason" + }, + "id": 120, + "searchTerms": [ + "こらぷしょん", + "커럽션" + ], + "title": "Corruption" + }, + { + "altTitles": [], + "artist": "DJ Myosuke", + "data": { + "displayVersion": "2.0", + "songPack": "Absolute Reason" + }, + "id": 121, + "searchTerms": [ + "ぶらっくてりとりー", + "블랙 테러토리", + "블랙 테리토리" + ], + "title": "Black Territory" + }, + { + "altTitles": [], + "artist": "Kobaryo", + "data": { + "displayVersion": "2.0", + "songPack": "Absolute Reason" + }, + "id": 122, + "searchTerms": [ + "ゔぃしゃすひろいずむ", + "びしゃすひろいずむ", + "비셔스 히로이즘" + ], + "title": "Vicious Heroism" + }, + { + "altTitles": [], + "artist": "USAO", + "data": { + "displayVersion": "2.0", + "songPack": "Absolute Reason" + }, + "id": 123, + "searchTerms": [ + "しあえが", + "시아이가", + "시에가" + ], + "title": "Cyaegha" + }, + { + "altTitles": [], + "artist": "ikaruga_nex", + "data": { + "displayVersion": "2.0", + "songPack": "Arcaea" + }, + "id": 124, + "searchTerms": [ + "りびじー", + "りゔぃじー", + "레비지", + "래비지" + ], + "title": "ReviXy" + }, + { + "altTitles": [], + "artist": "Puru", + "data": { + "displayVersion": "2.0", + "songPack": "Arcaea" + }, + "id": 125, + "searchTerms": [ + "ぐりむはーと", + "그림하트" + ], + "title": "Grimheart" + }, + { + "altTitles": [], + "artist": "WHITEFISTS", + "data": { + "displayVersion": "2.0", + "songPack": "Arcaea" + }, + "id": 126, + "searchTerms": [ + "vector", + "べくたー", + "ゔぇくたー", + "벡터" + ], + "title": "VECTOЯ" + }, + { + "altTitles": [], + "artist": "BACO", + "data": { + "displayVersion": "2.0", + "songPack": "Arcaea" + }, + "id": 127, + "searchTerms": [ + "すーぱーのゔぁ", + "すーぱーのば", + "수퍼노바", + "슈퍼노바" + ], + "title": "SUPERNOVA" + }, + { + "altTitles": [], + "artist": "Mameyudoufu", + "data": { + "displayVersion": "2.0", + "songPack": "Memory Archive" + }, + "id": 128, + "searchTerms": [ + "どっととぅーどっと", + "닷 투 닷", + "도트 투 도트" + ], + "title": "Dot to Dot feat. shully" + }, + { + "altTitles": [], + "artist": "t+pazolite", + "data": { + "displayVersion": "2.1", + "songPack": "CHUNITHM" + }, + "id": 129, + "searchTerms": [ + "がらくたどーるぷれい", + "がらくたどーるぷれー", + "가라쿠타 돌 플레이" + ], + "title": "Garakuta Doll Play" + }, + { + "altTitles": [ + "怒槌" + ], + "artist": "光吉猛修", + "data": { + "displayVersion": "2.1", + "songPack": "CHUNITHM" + }, + "id": 130, + "searchTerms": [ + "いかずち", + "いかづち", + "이카즈치", + "분노의 망치" + ], + "title": "Ikazuchi" + }, + { + "altTitles": [], + "artist": "void (Mournfinale)", + "data": { + "displayVersion": "2.1", + "songPack": "CHUNITHM" + }, + "id": 131, + "searchTerms": [ + "わーるどばんきっしゃー", + "わーるどゔぁんきっしゃー", + "월드 뱅퀴셔" + ], + "title": "World Vanquisher" + }, + { + "altTitles": [], + "artist": "Mastermind (xi + nora2r)", + "data": { + "displayVersion": "2.2", + "songPack": "Memory Archive" + }, + "id": 132, + "searchTerms": [ + "どれっどのーと", + "드레드노트", + "드레드넛" + ], + "title": "Dreadnought" + }, + { + "altTitles": [], + "artist": "Virtual Self", + "data": { + "displayVersion": "2.2", + "songPack": "Adverse Prelude" + }, + "id": 133, + "searchTerms": [ + "ぱーてぃくるあーつ", + "파티클 아츠" + ], + "title": "Particle Arts" + }, + { + "altTitles": [], + "artist": "Laur", + "data": { + "displayVersion": "2.2", + "songPack": "Adverse Prelude" + }, + "id": 134, + "searchTerms": [ + "ゔぃんでぃけーしょん", + "빈디케이션" + ], + "title": "Vindication" + }, + { + "altTitles": [], + "artist": "LeaF", + "data": { + "displayVersion": "2.2", + "songPack": "Adverse Prelude" + }, + "id": 135, + "searchTerms": [ + "へぶんずどあー", + "へゔんずどあー", + "헤븐즈도어" + ], + "title": "Heavensdoor" + }, + { + "altTitles": [], + "artist": "Edelritter", + "data": { + "displayVersion": "2.2", + "songPack": "Adverse Prelude" + }, + "id": 136, + "searchTerms": [ + "りんぐどじぇねしす", + "링드 제네시스" + ], + "title": "Ringed Genesis" + }, + { + "altTitles": [], + "artist": "7mai", + "data": { + "displayVersion": "2.3", + "songPack": "Sunset Radiance" + }, + "id": 137, + "searchTerms": [ + "ちぇるしー", + "첼시" + ], + "title": "Chelsea" + }, + { + "altTitles": [], + "artist": "MYUKKE.", + "data": { + "displayVersion": "2.3", + "songPack": "Sunset Radiance" + }, + "id": 138, + "searchTerms": [ + "あいうえおーん", + "아이우에온" + ], + "title": "AI[UE]OON" + }, + { + "altTitles": [ + "迷える音色は恋の唄" + ], + "artist": "からとPαnchii少年 feat.はるの", + "data": { + "displayVersion": "2.3", + "songPack": "Sunset Radiance" + }, + "id": 139, + "searchTerms": [ + "まよえるねいろはこいのうた", + "어 원더링 멜로디 오브 러브", + "마요에루 이로와 코이노우타", + "망설이는 음색은 사랑의 노래" + ], + "title": "A Wandering Melody of Love" + }, + { + "altTitles": [], + "artist": "溝口ゆうま feat. 大瀬良あい", + "data": { + "displayVersion": "2.3", + "songPack": "Sunset Radiance" + }, + "id": 140, + "searchTerms": [ + "たいみーだうんじぇんとりー", + "타이 미 다운 젠틀리" + ], + "title": "Tie me down gently" + }, + { + "altTitles": [], + "artist": "Juggernaut.", + "data": { + "displayVersion": "2.3", + "songPack": "Sunset Radiance" + }, + "id": 141, + "searchTerms": [ + "ばるはらぜろ", + "ゔぁるはらぜろ", + "발할라 제로" + ], + "title": "Valhalla:0" + }, + { + "altTitles": [], + "artist": "Aoi vs. siqlo", + "data": { + "displayVersion": "2.3", + "songPack": "Memory Archive" + }, + "id": 142, + "searchTerms": [ + "みるざむ", + "미르잠" + ], + "title": "Mirzam" + }, + { + "altTitles": [], + "artist": "Kolaa", + "data": { + "displayVersion": "2.4", + "songPack": "Arcaea" + }, + "id": 143, + "searchTerms": [ + "だいおーど", + "다이오드" + ], + "title": "Diode" + }, + { + "altTitles": [], + "artist": "YUKIYANAGI", + "data": { + "displayVersion": "2.4", + "songPack": "Arcaea" + }, + "id": 144, + "searchTerms": [ + "freefall", + "ふりーふぉーる", + "프리폴" + ], + "title": "FREEF4LL" + }, + { + "altTitles": [], + "artist": "uma vs. モリモリあつし", + "data": { + "displayVersion": "2.4", + "songPack": "Crimson Solace" + }, + "id": 145, + "searchTerms": [ + "ぐろーりーろーど", + "글로리 로드" + ], + "title": "GLORY:ROAD" + }, + { + "altTitles": [], + "artist": "polysha", + "data": { + "displayVersion": "2.4", + "songPack": "Arcaea" + }, + "id": 146, + "searchTerms": [ + "ものくろーむぷりんせす", + "모노크롬 프린세스" + ], + "title": "Monochrome Princess" + }, + { + "altTitles": [], + "artist": "Noah", + "data": { + "displayVersion": "2.4", + "songPack": "Memory Archive" + }, + "id": 147, + "searchTerms": [ + "へぶんりーかれす", + "へゔんりーかれす", + "헤븐리 카레스", + "헤븐리 커레스" + ], + "title": "Heavenly caress" + }, + { + "altTitles": [], + "artist": "MYTK", + "data": { + "displayVersion": "2.4", + "songPack": "Arcaea" + }, + "id": 148, + "searchTerms": [ + "せんきょう", + "센큐", + "센큐우" + ], + "title": "Senkyou" + }, + { + "altTitles": [], + "artist": "Puru", + "data": { + "displayVersion": "2.4", + "songPack": "Memory Archive" + }, + "id": 149, + "searchTerms": [ + "ふぃらめんと", + "필라멘트" + ], + "title": "Filament" + }, + { + "altTitles": [], + "artist": "Sampling Masters MEGA", + "data": { + "displayVersion": "2.4", + "songPack": "Memory Archive" + }, + "id": 150, + "searchTerms": [ + "あばんとれいず", + "あゔぁんとれいず", + "あばんとれーず", + "あゔぁんとれーず", + "아반트 레이즈" + ], + "title": "Avant Raze" + }, + { + "altTitles": [], + "artist": "TANO*C Sound Team", + "data": { + "displayVersion": "2.4", + "songPack": "Memory Archive" + }, + "id": 151, + "searchTerms": [ + "ばとるなんばーわん", + "배틀 넘버 원" + ], + "title": "BATTLE NO.1" + }, + { + "altTitles": [], + "artist": "DJ Noriken", + "data": { + "displayVersion": "2.5", + "songPack": "Memory Archive" + }, + "id": 152, + "searchTerms": [ + "らくりまおぶじうぇいすとらんど", + "라크리마 오브 더 웨이스트랜드" + ], + "title": "La'qryma of the Wasteland" + }, + { + "altTitles": [], + "artist": "DJ Genki vs Gram", + "data": { + "displayVersion": "2.5", + "songPack": "Memory Archive" + }, + "id": 153, + "searchTerms": [ + "えいんへりやるじょーかー", + "えいんへりゃるじょーかー", + "에인헤야르 조커" + ], + "title": "Einherjar Joker" + }, + { + "altTitles": [], + "artist": "t+pazolite vs P*Light", + "data": { + "displayVersion": "2.5", + "songPack": "Memory Archive" + }, + "id": 154, + "searchTerms": [ + "いざな", + "이자나" + ], + "title": "IZANA" + }, + { + "altTitles": [ + "最強STRONGER" + ], + "artist": "REDALiCE vs USAO", + "data": { + "displayVersion": "2.5", + "songPack": "Memory Archive" + }, + "id": 155, + "searchTerms": [ + "さいきょうすとろんがー", + "사이쿄 스트롱거", + "최강 스트롱거" + ], + "title": "SAIKYO STRONGER" + }, + { + "altTitles": [], + "artist": "Mili", + "data": { + "displayVersion": "2.5", + "songPack": "Arcaea" + }, + "id": 156, + "searchTerms": [ + "わーるどえくぜきゅーとみー", + "월드 엑스큐트 미" + ], + "title": "world.execute(me);" + }, + { + "altTitles": [], + "artist": "Sta", + "data": { + "displayVersion": "2.5", + "songPack": "Adverse Prelude" + }, + "id": 157, + "searchTerms": [ + "ぶりんくぶりんく", + "블링크" + ], + "title": "BLRINK" + }, + { + "altTitles": [], + "artist": "Saiph", + "data": { + "displayVersion": "2.6", + "songPack": "Arcaea" + }, + "id": 158, + "searchTerms": [ + "おぶりびあ", + "おぶりゔぃあ", + "오블리비아" + ], + "title": "Oblivia" + }, + { + "altTitles": [], + "artist": "nitro", + "data": { + "displayVersion": "2.6", + "songPack": "Memory Archive" + }, + "id": 159, + "searchTerms": [ + "あみぐでーた", + "아미그다타", + "아미그데이타" + ], + "title": "amygdata" + }, + { + "altTitles": [], + "artist": "cybermiso", + "data": { + "displayVersion": "2.6", + "songPack": "Ambivalent Vision" + }, + "id": 160, + "searchTerms": [ + "こーぷすさんずおーぎゃんず", + "콥스 샌즈 오르가네스", + "코프스 샌즈 오르가네스" + ], + "title": "corps-sans-organes" + }, + { + "altTitles": [], + "artist": "Maozon", + "data": { + "displayVersion": "3.0", + "songPack": "Black Fate" + }, + "id": 161, + "searchTerms": [ + "えくりぶりうむ", + "이퀼리브리움" + ], + "title": "Equilibrium" + }, + { + "altTitles": [], + "artist": "Yooh vs. siromaru", + "data": { + "displayVersion": "3.0", + "songPack": "Black Fate" + }, + "id": 162, + "searchTerms": [ + "あんたごにずむ", + "안타고니즘" + ], + "title": "Antagonism" + }, + { + "altTitles": [], + "artist": "Powerless feat. Sennzai", + "data": { + "displayVersion": "3.0", + "songPack": "Black Fate" + }, + "id": 163, + "searchTerms": [ + "ろすとでざいあ", + "로스트 디자이어" + ], + "title": "Lost Desire" + }, + { + "altTitles": [], + "artist": "Team Grimoire", + "data": { + "displayVersion": "3.0", + "songPack": "Black Fate" + }, + "id": 164, + "searchTerms": [ + "だんたりおん", + "단탈리온", + "단탈라이온" + ], + "title": "Dantalion" + }, + { + "altTitles": [], + "artist": "かめりあ(EDP)", + "data": { + "displayVersion": "3.0", + "songPack": "Black Fate" + }, + "id": 165, + "searchTerms": [], + "title": "#1f1e33" + }, + { + "altTitles": [], + "artist": "t+pazolite", + "data": { + "displayVersion": "3.0", + "songPack": "Black Fate" + }, + "id": 166, + "searchTerms": [ + "てんぺすてぃっしも", + "템페스티시모" + ], + "title": "Tempestissimo" + }, + { + "altTitles": [], + "artist": "Feryquitous", + "data": { + "displayVersion": "3.0", + "songPack": "Black Fate" + }, + "id": 167, + "searchTerms": [ + "あーかゔ", + "아카브" + ], + "title": "Arcahv" + }, + { + "altTitles": [], + "artist": "Sakuzyo", + "data": { + "displayVersion": "3.0", + "songPack": "Memory Archive" + }, + "id": 168, + "searchTerms": [ + "あるてーる", + "알테일" + ], + "title": "Altale" + }, + { + "altTitles": [], + "artist": "アリスシャッハと魔法の楽団", + "data": { + "displayVersion": "3.0", + "songPack": "Extend Archive" + }, + "id": 169, + "searchTerms": [ + "ぎぶみーあないとめあ", + "기브 미 어 나이트메어", + "깁 미 어 나이트메어" + ], + "title": "Give Me a Nightmare" + }, + { + "altTitles": [], + "artist": "wa.", + "data": { + "displayVersion": "3.0", + "songPack": "Extend Archive" + }, + "id": 170, + "searchTerms": [ + "ぶらっくろーたす", + "블랙 로터스" + ], + "title": "Black Lotus" + }, + { + "altTitles": [], + "artist": "Nhato", + "data": { + "displayVersion": "3.0", + "songPack": "Extend Archive" + }, + "id": 171, + "searchTerms": [ + "げっか", + "겍카", + "겟카" + ], + "title": "Gekka (Short Version)" + }, + { + "altTitles": [], + "artist": "ak+q", + "data": { + "displayVersion": "3.0", + "songPack": "Extend Archive" + }, + "id": 172, + "searchTerms": [ + "びびっどせおりー", + "ゔぃゔぃっどせおりー", + "비비드 씨어리", + "비비드 시어리" + ], + "title": "Vivid Theory" + }, + { + "altTitles": [], + "artist": "WHITEFISTS", + "data": { + "displayVersion": "3.0", + "songPack": "Extend Archive" + }, + "id": 173, + "searchTerms": [ + "いふるーと", + "이프 루트" + ], + "title": "1F√" + }, + { + "altTitles": [], + "artist": "Daisuke Kurosawa", + "data": { + "displayVersion": "3.0", + "songPack": "Memory Archive" + }, + "id": 174, + "searchTerms": [ + "すかーれっとけーじ", + "스칼렛 케이지" + ], + "title": "Scarlet Cage" + }, + { + "altTitles": [], + "artist": "Taishi", + "data": { + "displayVersion": "3.0", + "songPack": "Extend Archive" + }, + "id": 175, + "searchTerms": [ + "ふぇいんとらいと", + "페인트 라이트", + "페인트 라잇" + ], + "title": "Faint Light (Arcaea Edit)" + }, + { + "altTitles": [], + "artist": "Mysteka", + "data": { + "displayVersion": "3.0", + "songPack": "Memory Archive" + }, + "id": 176, + "searchTerms": [ + "ふぃーるずそーらいと", + "필즈 소 라잇" + ], + "title": "Feels So Right feat. Renko" + }, + { + "altTitles": [], + "artist": "owl*tree", + "data": { + "displayVersion": "3.0", + "songPack": "Memory Archive" + }, + "id": 177, + "searchTerms": [ + "てりくま", + "테리크마" + ], + "title": "Teriqma" + }, + { + "altTitles": [], + "artist": "Zekk", + "data": { + "displayVersion": "3.0", + "songPack": "Memory Archive" + }, + "id": 178, + "searchTerms": [ + "まほろば", + "마호로바" + ], + "title": "MAHOROBA" + }, + { + "altTitles": [], + "artist": "EBIMAYO", + "data": { + "displayVersion": "3.1", + "songPack": "Memory Archive" + }, + "id": 179, + "searchTerms": [ + "ばっどてっく", + "배드텍", + "배드테크" + ], + "title": "BADTEK" + }, + { + "altTitles": [], + "artist": "s-don", + "data": { + "displayVersion": "3.1", + "songPack": "Memory Archive" + }, + "id": 180, + "searchTerms": [ + "まりしゃすみすちゃんす", + "말리셔스 미스챈스", + "말리셔스 미스찬스" + ], + "title": "Malicious Mischance" + }, + { + "altTitles": [], + "artist": "E.G.G.", + "data": { + "displayVersion": "3.2", + "songPack": "Groove Coaster" + }, + "id": 181, + "searchTerms": [ + "ごっとはいぶおぶらー", + "ごっとはいゔおぶらー", + "갓 하이브 오브 라" + ], + "title": "Got hive of Ra" + }, + { + "altTitles": [], + "artist": "REDALiCE vs MASAKI", + "data": { + "displayVersion": "3.2", + "songPack": "Memory Archive" + }, + "id": 182, + "searchTerms": [ + "ぶちぎればーさーかー", + "부치기레 버서커" + ], + "title": "BUCHiGiRE Berserker" + }, + { + "altTitles": [], + "artist": "Kobaryo", + "data": { + "displayVersion": "3.2", + "songPack": "Memory Archive" + }, + "id": 183, + "searchTerms": [ + "ぎゃらくしーふれんず", + "갤럭시 프렌즈" + ], + "title": "Galaxy Friends" + }, + { + "altTitles": [], + "artist": "HyuN feat. LyuU", + "data": { + "displayVersion": "3.2", + "songPack": "Extend Archive" + }, + "id": 184, + "searchTerms": [ + "くろすおーばー", + "くろすおーゔぁー", + "크로스오버" + ], + "title": "CROSS†OVER" + }, + { + "altTitles": [], + "artist": "BlackY", + "data": { + "displayVersion": "3.2", + "songPack": "Memory Archive" + }, + "id": 185, + "searchTerms": [ + "せらふぃないと", + "제라파이나이트", + "세라파이나이트" + ], + "title": "Xeraphinite" + }, + { + "altTitles": [], + "artist": "SHIKI", + "data": { + "displayVersion": "3.2", + "songPack": "Extend Archive" + }, + "id": 186, + "searchTerms": [ + "らぴす", + "라피스" + ], + "title": "Lapis" + }, + { + "altTitles": [], + "artist": "Tatsh", + "data": { + "displayVersion": "3.2", + "songPack": "Memory Archive" + }, + "id": 187, + "searchTerms": [ + "ざなとす", + "자나토스" + ], + "title": "Xanatos" + }, + { + "altTitles": [], + "artist": "Hommarju", + "data": { + "displayVersion": "3.3", + "songPack": "Extend Archive" + }, + "id": 188, + "searchTerms": [ + "ぱーぷるばーす", + "ぱーぷるゔぁーす", + "퍼플 버스" + ], + "title": "Purple Verse" + }, + { + "altTitles": [ + "Alice a la mode" + ], + "artist": "Masanori Akita", + "data": { + "displayVersion": "3.3", + "songPack": "Ephemeral Page" + }, + "id": 189, + "searchTerms": [ + "alice a la mode", + "ありすあらもーど", + "앨리스 아 라 모드" + ], + "title": "Alice à la mode" + }, + { + "altTitles": [], + "artist": "Yamajet", + "data": { + "displayVersion": "3.3", + "songPack": "Ephemeral Page" + }, + "id": 190, + "searchTerms": [ + "えきせんとりっくてーる", + "えきせんとりっくている", + "에센트릭 테일" + ], + "title": "Eccentric Tale" + }, + { + "altTitles": [], + "artist": "Endorfin.", + "data": { + "displayVersion": "3.3", + "songPack": "Ephemeral Page" + }, + "id": 191, + "searchTerms": [ + "ありすずすーつけーす", + "앨리스즈 수트케이스", + "앨리스 수트케이스" + ], + "title": "Alice's Suitcase" + }, + { + "altTitles": [], + "artist": "Rasmus Faber", + "data": { + "displayVersion": "3.3", + "songPack": "Ephemeral Page" + }, + "id": 192, + "searchTerms": [ + "じゃんぷ", + "점프" + ], + "title": "Jump" + }, + { + "altTitles": [], + "artist": "M2U", + "data": { + "displayVersion": "3.3", + "songPack": "Ephemeral Page" + }, + "id": 193, + "searchTerms": [ + "ふぇりす", + "펠리스" + ], + "title": "Felis" + }, + { + "altTitles": [], + "artist": "江口孝宏", + "data": { + "displayVersion": "3.3", + "songPack": "The Journey Onwards (Ephemeral Page)" + }, + "id": 194, + "searchTerms": [ + "びさいどゆー", + "びさいじゅー", + "비사이드 유" + ], + "title": "Beside You" + }, + { + "altTitles": [], + "artist": "Yu_Asahina", + "data": { + "displayVersion": "3.3", + "songPack": "The Journey Onwards (Ephemeral Page)" + }, + "id": 195, + "searchTerms": [ + "はーとじゃっきん", + "하트 잭킹", + "하트 잭킨" + ], + "title": "Heart Jackin'" + }, + { + "altTitles": [ + "アリス・リデルに捧ぐ" + ], + "artist": "モリモリあつし", + "data": { + "displayVersion": "3.3", + "songPack": "The Journey Onwards (Ephemeral Page)" + }, + "id": 196, + "searchTerms": [ + "ありすりでるにささぐ", + "투 엘리스 리들", + "아리스리데루니 사사구", + "앨리스 리들에게 바침" + ], + "title": "To: Alice Liddell" + }, + { + "altTitles": [], + "artist": "sky_delta", + "data": { + "displayVersion": "3.4", + "songPack": "O.N.G.E.K.I." + }, + "id": 197, + "searchTerms": [ + "れいじーあでぃくしょん", + "레이지 애딕션", + "레이지 에딕션" + ], + "title": "Lazy Addiction" + }, + { + "altTitles": [], + "artist": "Sampling Masters MEGA", + "data": { + "displayVersion": "3.4", + "songPack": "O.N.G.E.K.I." + }, + "id": 198, + "searchTerms": [ + "だずるほっぷ", + "대즐 합", + "대즐 홉" + ], + "title": "Dazzle hop" + }, + { + "altTitles": [], + "artist": "Laur", + "data": { + "displayVersion": "3.4", + "songPack": "O.N.G.E.K.I." + }, + "id": 199, + "searchTerms": [ + "ゔぃえらずてぃあーず", + "비엘라스 티어스", + "비엘라즈 티어스", + "비엘라스 티어즈", + "비엘라즈 티어즈" + ], + "title": "Viyella's Tears" + }, + { + "altTitles": [ + "w4" + ], + "artist": "穴山大輔 VS 光吉猛修 VS Kai", + "data": { + "displayVersion": "3.4", + "songPack": "O.N.G.E.K.I." + }, + "id": 200, + "searchTerms": [ + "omega four", + "omega4", + "おめがふぉー", + "오메가 포" + ], + "title": "ω4" + }, + { + "altTitles": [ + "四月の雨" + ], + "artist": "cubesato", + "data": { + "displayVersion": "3.4", + "songPack": "maimai" + }, + "id": 201, + "searchTerms": [ + "しがつのあめ", + "에이프릴 샤워즈", + "시가츠노 아메", + "4월의 비", + "사월의 비" + ], + "title": "April showers" + }, + { + "altTitles": [], + "artist": "削除", + "data": { + "displayVersion": "3.4", + "songPack": "maimai" + }, + "id": 202, + "searchTerms": [ + "せぶんすせんす", + "세븐스 센스", + "세븐 센스" + ], + "title": "7thSense" + }, + { + "altTitles": [], + "artist": "t+pazolite", + "data": { + "displayVersion": "3.4", + "songPack": "maimai" + }, + "id": 203, + "searchTerms": [ + "おしゃますくらんぶる", + "오샤마 스크램블!" + ], + "title": "Oshama Scramble!" + }, + { + "altTitles": [], + "artist": "WAiKURO", + "data": { + "displayVersion": "3.4", + "songPack": "maimai" + }, + "id": 204, + "searchTerms": [ + "あめいじんぐまいてぃぃいい", + "あめーじんぐまいてぃぃいい", + "어메이징 마이티이이이이" + ], + "title": "AMAZING MIGHTYYYY!!!!" + }, + { + "altTitles": [], + "artist": "USAO", + "data": { + "displayVersion": "3.5", + "songPack": "Collaboration Chapter 2 (CHUNITHM)" + }, + "id": 205, + "searchTerms": [ + "くらいまっくす", + "클라이맥스" + ], + "title": "Climax" + }, + { + "altTitles": [], + "artist": "Laur vs CK", + "data": { + "displayVersion": "3.5", + "songPack": "Collaboration Chapter 2 (CHUNITHM)" + }, + "id": 206, + "searchTerms": [ + "らすとせれぶれーしょん", + "라스트 셀레브레이션" + ], + "title": "Last Celebration" + }, + { + "altTitles": [ + "業 -善なる神とこの世の悪について-" + ], + "artist": "光吉猛修 VS 穴山大輔", + "data": { + "displayVersion": "3.5", + "songPack": "Collaboration Chapter 2 (CHUNITHM)" + }, + "id": 207, + "searchTerms": [ + "ごうぜんなるかみとこのよのあくについて", + "미스디드 라 봉뜨 드 듀 엣 로히진 듀 마", + "고우젠나루 카미토 코노요노 아쿠니 츠이테", + "업 선한 신과 이 세상의 악에 관하여" + ], + "title": "Misdeed -la bonté de Dieu et l'origine du mal-" + }, + { + "altTitles": [], + "artist": "SPACELECTRO", + "data": { + "displayVersion": "3.5", + "songPack": "Extend Archive" + }, + "id": 208, + "searchTerms": [ + "ぐろー", + "ぐろう", + "글로우" + ], + "title": "Glow" + }, + { + "altTitles": [], + "artist": "かめりあ", + "data": { + "displayVersion": "3.5", + "songPack": "Memory Archive" + }, + "id": 209, + "searchTerms": [ + "あとらくてぃあ", + "어트랙티아" + ], + "title": "AttraqtiA" + }, + { + "altTitles": [], + "artist": "linear ring", + "data": { + "displayVersion": "3.5", + "songPack": "Extend Archive" + }, + "id": 210, + "searchTerms": [ + "えんちゃんてっどらぶ", + "인챈티드 러브" + ], + "title": "enchanted love" + }, + { + "altTitles": [ + "竹" + ], + "artist": "立秋 feat.ちょこ", + "data": { + "displayVersion": "3.5", + "songPack": "Extend Archive" + }, + "id": 211, + "searchTerms": [ + "たけ", + "뱀부", + "밤부", + "타케", + "대나무" + ], + "title": "Bamboo" + }, + { + "altTitles": [], + "artist": "C-Show", + "data": { + "displayVersion": "3.5", + "songPack": "Memory Archive" + }, + "id": 212, + "searchTerms": [ + "ぎみだぶらっど", + "ぎみーだぶらっど", + "김미 다 블러드", + "김미 더 블러드" + ], + "title": "GIMME DA BLOOD" + }, + { + "altTitles": [ + "ベースラインやってる?w" + ], + "artist": "かめりあ feat. ななひら", + "data": { + "displayVersion": "3.5", + "songPack": "Memory Archive" + }, + "id": 213, + "searchTerms": [ + "캔 아이 프렌드 유 온 베이스북 롤", + "베이스라인 얏떼루", + "베이스라인 하고있니", + "베이스라인 하니" + ], + "title": "Can I Friend You on Bassbook? Lol" + }, + { + "altTitles": [], + "artist": "Junk", + "data": { + "displayVersion": "3.5", + "songPack": "Extend Archive" + }, + "id": 214, + "searchTerms": [ + "らいふいずぴあの", + "라이프 이즈 피아노" + ], + "title": "Life is PIANO" + }, + { + "altTitles": [], + "artist": "Yu-dachi", + "data": { + "displayVersion": "3.6", + "songPack": "Esoteric Order" + }, + "id": 215, + "searchTerms": [ + "ぺーぱーうぃっち", + "페이퍼 윗치", + "페이퍼 위치" + ], + "title": "Paper Witch" + }, + { + "altTitles": [], + "artist": "Tanchiky vs. siromaru", + "data": { + "displayVersion": "3.6", + "songPack": "Esoteric Order" + }, + "id": 216, + "searchTerms": [ + "くりすたるぐらびてぃ", + "크리스탈 그래비티" + ], + "title": "Crystal Gravity" + }, + { + "altTitles": [], + "artist": "technoplanet feat. はるの & 黒沢ダイスケ", + "data": { + "displayVersion": "3.6", + "songPack": "Esoteric Order" + }, + "id": 217, + "searchTerms": [ + "ふぁーあうぇいらいと", + "ふぁーらうぇいらいと", + "파 어웨이 라이트", + "파 어웨이 라잇" + ], + "title": "Far Away Light" + }, + { + "altTitles": [], + "artist": "BlackY feat. Risa Yuzuki", + "data": { + "displayVersion": "3.6", + "songPack": "Esoteric Order" + }, + "id": 218, + "searchTerms": [ + "loschen", + "れっしぇん", + "뢰셴", + "뢰센", + "레셴", + "레센" + ], + "title": "Löschen" + }, + { + "altTitles": [], + "artist": "Silentroom vs Frums", + "data": { + "displayVersion": "3.6", + "songPack": "Esoteric Order" + }, + "id": 219, + "searchTerms": [ + "あいぐれしーかー", + "아이글시커", + "에이글시커" + ], + "title": "Aegleseeker" + }, + { + "altTitles": [], + "artist": "Glitch Droids", + "data": { + "displayVersion": "3.6", + "songPack": "Pale Tapestry (Esoteric Order)" + }, + "id": 220, + "searchTerms": [ + "こーすたるはいうぇい", + "코스탈 하이웨이" + ], + "title": "Coastal Highway" + }, + { + "altTitles": [], + "artist": "Sober Bear", + "data": { + "displayVersion": "3.6", + "songPack": "Pale Tapestry (Esoteric Order)" + }, + "id": 221, + "searchTerms": [ + "odysseia", + "おでゅっせいあ", + "오딧세이아", + "오디세이아" + ], + "title": "ΟΔΥΣΣΕΙΑ" + }, + { + "altTitles": [], + "artist": "xi", + "data": { + "displayVersion": "3.6", + "songPack": "Pale Tapestry (Esoteric Order)" + }, + "id": 222, + "searchTerms": [ + "おーばーうぇるむ", + "오버웸", + "오버웰름" + ], + "title": "Overwhelm" + }, + { + "altTitles": [], + "artist": "Ashrount", + "data": { + "displayVersion": "3.6", + "songPack": "Extend Archive" + }, + "id": 223, + "searchTerms": [ + "ばんだりずむ", + "ゔぁんだりずむ", + "반달리즘" + ], + "title": "Vandalism" + }, + { + "altTitles": [], + "artist": "A/I", + "data": { + "displayVersion": "3.6", + "songPack": "Extend Archive" + }, + "id": 224, + "searchTerms": [ + "たーぼちゃーじゃー", + "터보차저", + "터보챠저" + ], + "title": "Turbocharger" + }, + { + "altTitles": [], + "artist": "aran vs Massive New Krew", + "data": { + "displayVersion": "3.6", + "songPack": "Memory Archive" + }, + "id": 225, + "searchTerms": [ + "じうるてぃましー", + "じあるてぃましー", + "더 울티머시", + "더 울티마시" + ], + "title": "THE ULTIMACY" + }, + { + "altTitles": [ + "烈華RESONANCE" + ], + "artist": "REDALiCE vs Kobaryo", + "data": { + "displayVersion": "3.6", + "songPack": "Memory Archive" + }, + "id": 226, + "searchTerms": [ + "れっかれぞなんす", + "렉카 레조넌스", + "렛카 레조넌스", + "열화 레조넌스" + ], + "title": "REKKA RESONANCE" + }, + { + "altTitles": [ + "狂言綺語" + ], + "artist": "影虎。 & ikaruga_nex", + "data": { + "displayVersion": "3.7", + "songPack": "Extend Archive" + }, + "id": 227, + "searchTerms": [ + "きょうげんきご", + "폴스 임벨리시먼트", + "쿄겐키고", + "광언기어" + ], + "title": "False Embellishment" + }, + { + "altTitles": [], + "artist": "かたぎり", + "data": { + "displayVersion": "3.7", + "songPack": "Extend Archive" + }, + "id": 228, + "searchTerms": [ + "はいぶまいんど", + "はいゔまいんど", + "하이브마인드" + ], + "title": "HIVEMIND" + }, + { + "altTitles": [], + "artist": "Laur feat. Sennzai", + "data": { + "displayVersion": "3.7", + "songPack": "Esoteric Order" + }, + "id": 229, + "searchTerms": [ + "せくりゅーじょん", + "세클루전", + "서클루전" + ], + "title": "Seclusion" + }, + { + "altTitles": [], + "artist": "テヅカ x Aoi feat.桃雛なの", + "data": { + "displayVersion": "3.7", + "songPack": "Light of Salvation (Esoteric Order)" + }, + "id": 230, + "searchTerms": [ + "すもーるくらうどしゅがーきゃんでぃ", + "스몰 클라우드 슈가 캔디" + ], + "title": "Small Cloud Sugar Candy" + }, + { + "altTitles": [], + "artist": "Arik Kau Delay (アラ&かゆき&でり)", + "data": { + "displayVersion": "3.7", + "songPack": "Light of Salvation (Esoteric Order)" + }, + "id": 231, + "searchTerms": [ + "あるたーえーる", + "알터에일", + "얼터에일" + ], + "title": "AlterAle" + }, + { + "altTitles": [ + "光速神授説 - Divine Light of Myriad -" + ], + "artist": "yoho", + "data": { + "displayVersion": "3.7", + "songPack": "Light of Salvation (Esoteric Order)" + }, + "id": 232, + "searchTerms": [ + "こうそくしんじゅせつでぃばいんらいとおぶみりあど", + "광속신수설", + "디바인 라이트 오브 미리아드" + ], + "title": "Divine Light of Myriad" + }, + { + "altTitles": [], + "artist": "aran", + "data": { + "displayVersion": "3.8", + "songPack": "WACCA" + }, + "id": 233, + "searchTerms": [ + "めいじーめとろぷれくす", + "めいじーめとろぷれっくす", + "めーじーめとろぷれくす", + "めーじーめとろぷれっくす", + "메이지 메트로플렉스" + ], + "title": "Mazy Metroplex" + }, + { + "altTitles": [], + "artist": "DJ Noriken", + "data": { + "displayVersion": "3.8", + "songPack": "WACCA" + }, + "id": 234, + "searchTerms": [ + "くおん", + "쿠온" + ], + "title": "Quon" + }, + { + "altTitles": [], + "artist": "t+pazolite & Massive New Krew feat. リリィ(CV:青木志貴)", + "data": { + "displayVersion": "3.8", + "songPack": "WACCA" + }, + "id": 235, + "searchTerms": [ + "うぃずゆー", + "윗 유", + "위드 유" + ], + "title": "with U" + }, + { + "altTitles": [], + "artist": "DJ Myosuke", + "data": { + "displayVersion": "3.8", + "songPack": "WACCA" + }, + "id": 236, + "searchTerms": [ + "じぇのさいだー", + "제노사이더" + ], + "title": "GENOCIDER" + }, + { + "altTitles": [], + "artist": "nitro (lowiro)", + "data": { + "displayVersion": "3.8", + "songPack": "WACCA" + }, + "id": 237, + "searchTerms": [ + "れっとゆーだいぶないとろりみっくす", + "れっちゅーだいぶないとろりみっくす", + "れっとゆーだいぶにとろりみっくす", + "れっちゅーだいぶにとろりみっくす", + "렛 유 다이브 니트로 믹스" + ], + "title": "Let you DIVE! (nitro rmx)" + }, + { + "altTitles": [], + "artist": "Laur", + "data": { + "displayVersion": "3.8", + "songPack": "Memory Archive" + }, + "id": 238, + "searchTerms": [ + "しぇりだーらうるりみっくす", + "しぇりるすらうるりみっくす", + "셰리다 라우르 리믹스", + "셰리루스 라우르 리믹스", + "셰리루트 라우르 리믹스", + "셰루트 라우르 리믹스", + "셰루스 라우르 리믹스" + ], + "title": "Sheriruth (Laur Remix)" + }, + { + "altTitles": [ + "緋纏いの宵" + ], + "artist": "Freezer feat.妃苺", + "data": { + "displayVersion": "3.8", + "songPack": "Memory Archive" + }, + "id": 239, + "searchTerms": [ + "ひまといのよい", + "이브닝 인 스칼렛", + "히마토이노 요이", + "주홍을 두른 밤" + ], + "title": "Evening in Scarlet" + }, + { + "altTitles": [], + "artist": "ああああ", + "data": { + "displayVersion": "3.8", + "songPack": "Extend Archive" + }, + "id": 240, + "searchTerms": [ + "ぶるーこめっと", + "블루 코멧" + ], + "title": "blue comet" + }, + { + "altTitles": [], + "artist": "Tanchiky", + "data": { + "displayVersion": "3.8", + "songPack": "Extend Archive" + }, + "id": 241, + "searchTerms": [ + "えなじーしなじーまとりくす", + "えなじーしなじーまとりっくす", + "에너지 시너지 매트릭스" + ], + "title": "ENERGY SYNERGY MATRIX" + }, + { + "altTitles": [], + "artist": "-45", + "data": { + "displayVersion": "3.8", + "songPack": "Extend Archive" + }, + "id": 242, + "searchTerms": [ + "げんがおぞ", + "겐가오조" + ], + "title": "G e n g a o z o" + }, + { + "altTitles": [], + "artist": "zts", + "data": { + "displayVersion": "3.8", + "songPack": "Memory Archive" + }, + "id": 243, + "searchTerms": [ + "ごーるでんすろーたらー", + "골든슬러터러" + ], + "title": "goldenslaughterer" + }, + { + "altTitles": [], + "artist": "zts", + "data": { + "displayVersion": "3.8", + "songPack": "Memory Archive" + }, + "id": 244, + "searchTerms": [ + "らすとえんどこんだくたー", + "라스트엔드컨덕터" + ], + "title": "lastendconductor" + }, + { + "altTitles": [], + "artist": "Sanaas", + "data": { + "displayVersion": "3.8", + "songPack": "Memory Archive" + }, + "id": 245, + "searchTerms": [ + "れどれんとしぇいぷ", + "레돌렌트 셰이프", + "레돌렌트 쉐이프" + ], + "title": "Redolent Shape" + }, + { + "altTitles": [], + "artist": "Nhato", + "data": { + "displayVersion": "3.9", + "songPack": "Shared Time (Binary Enfold)" + }, + "id": 246, + "searchTerms": [ + "こすみか", + "こずみか", + "코스미카", + "코즈미카" + ], + "title": "Cosmica" + }, + { + "altTitles": [], + "artist": "TANUKI", + "data": { + "displayVersion": "3.9", + "songPack": "Shared Time (Binary Enfold)" + }, + "id": 247, + "searchTerms": [ + "あせんと", + "어센트" + ], + "title": "Ascent" + }, + { + "altTitles": [], + "artist": "anubasu-anubasu", + "data": { + "displayVersion": "3.9", + "songPack": "Shared Time (Binary Enfold)" + }, + "id": 248, + "searchTerms": [ + "りぶふぁすとだいやんぐ", + "리브 패스트 다이 영" + ], + "title": "Live Fast Die Young" + }, + { + "altTitles": [ + "彩る夏の恋花火" + ], + "artist": "karatoPαnchii feat.はるの", + "data": { + "displayVersion": "3.9", + "songPack": "Memory Archive" + }, + "id": 249, + "searchTerms": [ + "いろどるなつのこいはなび", + "서머 파이어웍스 오브 러브", + "섬머 파이어웍스 오브 러브", + "섬머 파이어워크스 오브 러브", + "서머 파이어워크스 오브 러브", + "이로도루 나츠노 코이하나비", + "수놓아지는 여름의 사랑 불꽃놀이" + ], + "title": "Summer Fireworks of Love" + }, + { + "altTitles": [], + "artist": "黒魔", + "data": { + "displayVersion": "3.10", + "songPack": "Divided Heart" + }, + "id": 250, + "searchTerms": [ + "ふぁーすとすのう", + "ふぁーすとすのー", + "퍼스트 스노우" + ], + "title": "First Snow" + }, + { + "altTitles": [], + "artist": "Cosmograph", + "data": { + "displayVersion": "3.10", + "songPack": "Divided Heart" + }, + "id": 251, + "searchTerms": [ + "ぶるーろーず", + "블루 로즈" + ], + "title": "Blue Rose" + }, + { + "altTitles": [], + "artist": "影虎。", + "data": { + "displayVersion": "3.10", + "songPack": "Divided Heart" + }, + "id": 252, + "searchTerms": [ + "ぶろっくどらいぶらりー", + "블록드 라이브러리", + "블락드 라이브러리" + ], + "title": "Blocked Library" + }, + { + "altTitles": [ + "neo kosmo" + ], + "artist": "ak+q × Street", + "data": { + "displayVersion": "3.10", + "songPack": "Divided Heart" + }, + "id": 253, + "searchTerms": [ + "neo kosmo", + "ねおこすも", + "네오 코스모", + "네오 코즈모" + ], + "title": "nέο κόsmo" + }, + { + "altTitles": [], + "artist": "HiTECH NINJA", + "data": { + "displayVersion": "3.10", + "songPack": "Divided Heart" + }, + "id": 254, + "searchTerms": [ + "らいとにんぐすくりゅー", + "라이트닝 스크류" + ], + "title": "Lightning Screw" + }, + { + "altTitles": [], + "artist": "Ayatsugu_Otowa", + "data": { + "displayVersion": "3.11", + "songPack": "Muse Dash" + }, + "id": 255, + "searchTerms": [ + "らいとおぶみゅーず", + "라이츠 오브 뮤즈", + "라이트 오브 뮤즈" + ], + "title": "Lights of Muse" + }, + { + "altTitles": [], + "artist": "Lime", + "data": { + "displayVersion": "3.11", + "songPack": "Muse Dash" + }, + "id": 256, + "searchTerms": [ + "ふぁいなるすてっぷ", + "파이널 스텝" + ], + "title": "Final Step!" + }, + { + "altTitles": [ + "秋の陽炎" + ], + "artist": "karatoPαnchii feat.はるの", + "data": { + "displayVersion": "3.11", + "songPack": "Muse Dash" + }, + "id": 257, + "searchTerms": [ + "あきのかげろう", + "헤이즈 오브 어텀", + "아키노 카게로우", + "가을의 아지랑이" + ], + "title": "Haze of Autumn" + }, + { + "altTitles": [], + "artist": "HiTECH NINJA", + "data": { + "displayVersion": "3.11", + "songPack": "Muse Dash" + }, + "id": 258, + "searchTerms": [ + "めでゅーさ", + "메두사" + ], + "title": "Medusa" + }, + { + "altTitles": [], + "artist": "kamome sano", + "data": { + "displayVersion": "3.11", + "songPack": "Memory Archive" + }, + "id": 259, + "searchTerms": [ + "いにっと", + "이닛" + ], + "title": "init()" + }, + { + "altTitles": [], + "artist": "Aiobahn feat. KOTOKO", + "data": { + "displayVersion": "3.12", + "songPack": "Memory Archive" + }, + "id": 260, + "searchTerms": [ + "いんたーねっとおーばーどーず", + "인터넷 오버도즈" + ], + "title": "INTERNET OVERDOSE" + }, + { + "altTitles": [], + "artist": "Street", + "data": { + "displayVersion": "3.12", + "songPack": "Arcaea" + }, + "id": 261, + "searchTerms": [ + "さくらふぶき", + "사쿠라 후부키" + ], + "title": "Sakura Fubuki" + }, + { + "altTitles": [], + "artist": "Silentroom", + "data": { + "displayVersion": "3.12", + "songPack": "Arcaea" + }, + "id": 262, + "searchTerms": [ + "ぬるこんとろーる", + "널컨트롤" + ], + "title": "NULCTRL" + }, + { + "altTitles": [], + "artist": "JAKAZiD", + "data": { + "displayVersion": "3.12", + "songPack": "Memory Archive" + }, + "id": 263, + "searchTerms": [ + "まくろこずみっくもじゅれーしょん", + "まくろこすみっくもじゅれーしょん", + "매크로코스믹 모듈레이션" + ], + "title": "Macrocosmic Modulation" + }, + { + "altTitles": [], + "artist": "SOUND HOLIC feat. Nana Takahashi", + "data": { + "displayVersion": "3.12", + "songPack": "Memory Archive" + }, + "id": 264, + "searchTerms": [ + "ねおうぃんぐす", + "ねおういんぐす", + "네오 윙즈", + "네오 윙스" + ], + "title": "NEO WINGS" + }, + { + "altTitles": [], + "artist": "ETIA.", + "data": { + "displayVersion": "3.12", + "songPack": "Memory Archive" + }, + "id": 265, + "searchTerms": [ + "きっしんぐるしふぁー", + "키싱 루시퍼" + ], + "title": "Kissing Lucifer" + }, + { + "altTitles": [], + "artist": "Rigël Theatre", + "data": { + "displayVersion": "3.12", + "songPack": "Arcaea" + }, + "id": 266, + "searchTerms": [ + "avril", + "アエヴリルフリッカイクランス", + "アヴリルフリッカイクランス", + "아에브릴 플릭카 이 크란스", + "아브릴 플릭카 이 크란스" + ], + "title": "Ävril -Flicka i krans-" + }, + { + "altTitles": [], + "artist": "溝口ゆうま feat. 大瀬良あい", + "data": { + "displayVersion": "3.12", + "songPack": "Memory Archive" + }, + "id": 267, + "searchTerms": [ + "あうるげるみる", + "아울겔미르", + "아우겔미르", + "아우르겔미르" + ], + "title": "Aurgelmir" + }, + { + "altTitles": [], + "artist": "saaa ft. MC iwata Bros.", + "data": { + "displayVersion": "3.12", + "songPack": "Memory Archive" + }, + "id": 268, + "searchTerms": [ + "へっどぼんくえいく", + "へっどぼんくえーく", + "헤드 북 봉크 에이크" + ], + "title": "Head BONK ache" + }, + { + "altTitles": [], + "artist": "はがね", + "data": { + "displayVersion": "3.12", + "songPack": "Arcaea" + }, + "id": 269, + "searchTerms": [ + "でぃーでぃーでぃー", + "디디디" + ], + "title": "DDD" + }, + { + "altTitles": [], + "artist": "bermei.inazawa ft. Chata", + "data": { + "displayVersion": "3.12", + "songPack": "Collaboration Chapter 2 (Lanota)" + }, + "id": 270, + "searchTerms": [ + "ぷりずむ", + "프리즘" + ], + "title": "Prism" + }, + { + "altTitles": [], + "artist": "Silentroom", + "data": { + "displayVersion": "3.12", + "songPack": "Collaboration Chapter 2 (Lanota)" + }, + "id": 271, + "searchTerms": [ + "ぷろとふりっかー", + "프로토플리커" + ], + "title": "Protoflicker" + }, + { + "altTitles": [], + "artist": "Maozon", + "data": { + "displayVersion": "3.12", + "songPack": "Collaboration Chapter 2 (Lanota)" + }, + "id": 272, + "searchTerms": [ + "すていしす", + "스태이시스" + ], + "title": "Stasis" + }, + { + "altTitles": [ + "ピコPico*とらんすれーしょんっ!" + ], + "artist": "t+pazolite,ななひら,Cranky,Pico*", + "data": { + "displayVersion": "3.12", + "songPack": "Memory Archive" + }, + "id": 273, + "searchTerms": [ + "ぴこぴことらんすれーしょんっ", + "피코 피코 트랜슬레이션" + ], + "title": "PICO-Pico-Translation!" + }, + { + "altTitles": [ + "ネコノテ・カリタガール" + ], + "artist": "Ino(chronoize)", + "data": { + "displayVersion": "3.12", + "songPack": "Arcaea" + }, + "id": 274, + "searchTerms": [ + "댄싱 온 어 캣츠 포", + "네코노테 카리타가루", + "고양이 손 빌리고싶어걸" + ], + "title": "Dancin' on a Cat's Paw" + }, + { + "altTitles": [], + "artist": "Frums", + "data": { + "displayVersion": "3.12", + "songPack": "Memory Archive" + }, + "id": 275, + "searchTerms": [ + "mu", + "みゅー", + "뮤" + ], + "title": "μ" + }, + { + "altTitles": [], + "artist": "ユアミトス", + "data": { + "displayVersion": "3.12", + "songPack": "Arcaea" + }, + "id": 276, + "searchTerms": [ + "さんすきあ", + "산 스키아" + ], + "title": "san skia" + }, + { + "altTitles": [], + "artist": "kamome sano & you", + "data": { + "displayVersion": "4.0", + "songPack": "Arcaea" + }, + "id": 277, + "searchTerms": [ + "あるたいる", + "알타이르", + "알테어" + ], + "title": "Altair (feat. *spiLa*)" + }, + { + "altTitles": [ + "無機質世界に彩を" + ], + "artist": "MisomyL", + "data": { + "displayVersion": "4.0", + "songPack": "Arcaea" + }, + "id": 278, + "searchTerms": [ + "むきしつせかいにいろどりを", + "리드로우 더 컬러리스 월드", + "무키시츠세카이니 이로오", + "무기질 세계에 색채를" + ], + "title": "Redraw the Colorless World" + }, + { + "altTitles": [], + "artist": "Puru", + "data": { + "displayVersion": "4.0", + "songPack": "Arcaea" + }, + "id": 279, + "searchTerms": [ + "とらっぷくろー", + "とらっぷくろう", + "트랩 크로우" + ], + "title": "Trap Crow" + }, + { + "altTitles": [], + "artist": "モリモリあつし", + "data": { + "displayVersion": "4.0", + "songPack": "Memory Archive" + }, + "id": 280, + "searchTerms": [ + "ぴゅーぱ", + "퓨파" + ], + "title": "PUPA" + }, + { + "altTitles": [], + "artist": "TeddyLoid feat. DELTA", + "data": { + "displayVersion": "4.0", + "songPack": "Final Verdict" + }, + "id": 281, + "searchTerms": [ + "でぃふぇくしょん", + "디펙션" + ], + "title": "Defection" + }, + { + "altTitles": [], + "artist": "BlackYooh vs. siromaru", + "data": { + "displayVersion": "4.0", + "songPack": "Final Verdict" + }, + "id": 282, + "searchTerms": [ + "いんふぃにっとすとらいふ", + "인피니트 스트라이프" + ], + "title": "Infinite Strife," + }, + { + "altTitles": [ + "魔王" + ], + "artist": "sasakure.UK × TJ.hangneil", + "data": { + "displayVersion": "4.0", + "songPack": "Final Verdict" + }, + "id": 283, + "searchTerms": [ + "まおう", + "월드 엔더", + "마오", + "마왕" + ], + "title": "World Ender" + }, + { + "altTitles": [], + "artist": "Nothing But Requiem with Museo", + "data": { + "displayVersion": "4.0", + "songPack": "Final Verdict" + }, + "id": 284, + "searchTerms": [ + "ぺんてぃめんと", + "펜티먼트" + ], + "title": "Pentiment" + }, + { + "altTitles": [], + "artist": "Team Grimoire vs Sakuzyo vs Laur", + "data": { + "displayVersion": "4.0", + "songPack": "Final Verdict" + }, + "id": 285, + "searchTerms": [ + "あるかなえでん", + "아르카나 에덴" + ], + "title": "Arcana Eden" + }, + { + "altTitles": [], + "artist": "void (Mournfinale) feat. 星熊南巫", + "data": { + "displayVersion": "4.0", + "songPack": "Final Verdict" + }, + "id": 286, + "searchTerms": [ + "てすてぃふぁい", + "테스티파이" + ], + "title": "Testify" + }, + { + "altTitles": [], + "artist": "かねこちはる", + "data": { + "displayVersion": "4.0", + "songPack": "Silent Answer (Final Verdict)" + }, + "id": 287, + "searchTerms": [ + "らぶれすどれす", + "러브리스 드레스" + ], + "title": "Loveless Dress" + }, + { + "altTitles": [], + "artist": "onoken", + "data": { + "displayVersion": "4.0", + "songPack": "Silent Answer (Final Verdict)" + }, + "id": 288, + "searchTerms": [ + "らすと", + "らすともーめんと", + "라스트" + ], + "title": "Last" + }, + { + "altTitles": [], + "artist": "onoken", + "data": { + "displayVersion": "4.0", + "songPack": "Silent Answer (Final Verdict)" + }, + "id": 289, + "searchTerms": [ + "らすと", + "らすともーめんと", + "라스트" + ], + "title": "Last | Moment" + }, + { + "altTitles": [], + "artist": "onoken", + "data": { + "displayVersion": "4.0", + "songPack": "Silent Answer (Final Verdict)" + }, + "id": 290, + "searchTerms": [ + "らすとえたにてぃー", + "라스트 이터니티" + ], + "title": "Last | Eternity" + }, + { + "altTitles": [], + "artist": "t+pazolite vs Feryquitous", + "data": { + "displayVersion": "4.0", + "songPack": "Silent Answer (Final Verdict)" + }, + "id": 291, + "searchTerms": [ + "かりまかるま", + "かりーまかるま", + "칼리마 카르마" + ], + "title": "Callima Karma" + }, + { + "altTitles": [ + "心" + ], + "artist": "削除 (Violin : Katali)", + "data": { + "displayVersion": "4.1", + "songPack": "Collaboration Chapter 2 (O.N.G.E.K.I.)" + }, + "id": 292, + "searchTerms": [ + "こころ", + "하트", + "코코로", + "마음" + ], + "title": "Heart" + }, + { + "altTitles": [], + "artist": "Feryquitous", + "data": { + "displayVersion": "4.1", + "songPack": "Collaboration Chapter 2 (O.N.G.E.K.I.)" + }, + "id": 293, + "searchTerms": [ + "あいでゅれい", + "아이 드루", + "아이 드류" + ], + "title": "Ai Drew" + }, + { + "altTitles": [], + "artist": "Kobaryo", + "data": { + "displayVersion": "4.1", + "songPack": "Collaboration Chapter 2 (O.N.G.E.K.I.)" + }, + "id": 294, + "searchTerms": [ + "ふらっふぃーふらっしゅ", + "플러피 플래시", + "플러피 플래쉬" + ], + "title": "FLUFFY FLASH" + }, + { + "altTitles": [], + "artist": "Yooh", + "data": { + "displayVersion": "4.1", + "songPack": "Collaboration Chapter 2 (O.N.G.E.K.I.)" + }, + "id": 295, + "searchTerms": [ + "ぐっどばいめりーごーらんど", + "ぐっどばいめりーごーらうんど", + "ぐっばいめりーごーらんど", + "ぐっばいめりーごーらうんど", + "굿바이 메리 고 라운드" + ], + "title": "Good bye, Merry-Go-Round." + }, + { + "altTitles": [], + "artist": "BlackY", + "data": { + "displayVersion": "4.1", + "songPack": "Collaboration Chapter 2 (O.N.G.E.K.I.)" + }, + "id": 296, + "searchTerms": [ + "らみあ", + "라미아" + ], + "title": "LAMIA" + }, + { + "altTitles": [], + "artist": "lapix feat. mami", + "data": { + "displayVersion": "4.1", + "songPack": "Memory Archive" + }, + "id": 297, + "searchTerms": [ + "ふりーまいせるふ", + "프리 마이셀프" + ], + "title": "Free Myself" + }, + { + "altTitles": [], + "artist": "KOTONOHOUSE", + "data": { + "displayVersion": "4.1", + "songPack": "Memory Archive" + }, + "id": 298, + "searchTerms": [ + "こころこすめてぃっく", + "코코로 코스메틱" + ], + "title": "cocoro*cosmetic" + }, + { + "altTitles": [], + "artist": "ARForest", + "data": { + "displayVersion": "4.1", + "songPack": "Memory Archive" + }, + "id": 299, + "searchTerms": [ + "かぺら", + "카펠라" + ], + "title": "Capella" + }, + { + "altTitles": [ + "だいあるのーと" + ], + "artist": "七草くりむ", + "data": { + "displayVersion": "4.1", + "songPack": "Arcaea" + }, + "id": 300, + "searchTerms": [ + "다이얼노트", + "다이아루노토" + ], + "title": "Dialnote" + }, + { + "altTitles": [ + "月に叢雲華に風" + ], + "artist": "幽閉サテライト", + "data": { + "displayVersion": "4.2", + "songPack": "World Extend" + }, + "id": 301, + "searchTerms": [ + "つきにむらくもはなにかぜ", + "츠키니 무라쿠모 하나니 카제", + "달에 구름 꽃에 바람" + ], + "title": "Tsuki ni Murakumo, Hana ni Kaze" + }, + { + "altTitles": [], + "artist": "Akira Complex feat. kiraku", + "data": { + "displayVersion": "4.2", + "songPack": "World Extend" + }, + "id": 302, + "searchTerms": [ + "まんてぃす", + "맨티스", + "만티스" + ], + "title": "MANTIS (Arcaea Ultra-Bloodrush VIP)" + }, + { + "altTitles": [], + "artist": "xi", + "data": { + "displayVersion": "4.2", + "songPack": "World Extend" + }, + "id": 303, + "searchTerms": [ + "わーるどふらぐめんつすりー", + "월드 프래그먼트 쓰리", + "월드 프래그먼츠 스리" + ], + "title": "World Fragments III(radio edit)" + }, + { + "altTitles": [], + "artist": "paraoka", + "data": { + "displayVersion": "4.2", + "songPack": "World Extend" + }, + "id": 304, + "searchTerms": [ + "あすとらうぉーくするー", + "아스트라 워크스루" + ], + "title": "Astra walkthrough" + }, + { + "altTitles": [], + "artist": "Lime", + "data": { + "displayVersion": "4.2", + "songPack": "World Extend" + }, + "id": 305, + "searchTerms": [ + "くろにくる", + "크로니클" + ], + "title": "Chronicle" + }, + { + "altTitles": [], + "artist": "N²", + "data": { + "displayVersion": "4.2", + "songPack": "Memory Archive" + }, + "id": 306, + "searchTerms": [ + "ぬるあぽふぇにあ", + "널 아포페니아", + "눌 아포페니아" + ], + "title": "NULL APOPHENIA" + }, + { + "altTitles": [], + "artist": "Dimier√Lisb", + "data": { + "displayVersion": "4.3", + "songPack": "Memory Archive" + }, + "id": 307, + "searchTerms": [ + "くりむぞんすろーん", + "크림슨 스론", + "크림슨 쓰론" + ], + "title": "Crimson Throne" + }, + { + "altTitles": [], + "artist": "ルゼ", + "data": { + "displayVersion": "4.3", + "songPack": "Memory Archive" + }, + "id": 308, + "searchTerms": [ + "まにっくじあー", + "매닉 지어", + "마닉 지어" + ], + "title": "Manic Jeer" + }, + { + "altTitles": [ + "緋色月下、狂咲ノ絶 (nayuta 2017 ver.)" + ], + "artist": "nayuta x 黒鳥(EastNewSound)", + "data": { + "displayVersion": "4.3", + "songPack": "Memory Archive" + }, + "id": 309, + "searchTerms": [ + "ひいろげっかきょうしょうのぜつ", + "히이로 겍카 쿄슈노 제츠", + "비색월하 광소의 절" + ], + "title": "Hiiro Gekka, Kyoushou no Zetsu (nayuta 2017 ver.)" + }, + { + "altTitles": [], + "artist": "ikaruga_nex vs FALCHiON", + "data": { + "displayVersion": "4.3", + "songPack": "World Extend" + }, + "id": 310, + "searchTerms": [ + "れっつろっく", + "렛츠 락" + ], + "title": "Let's Rock (Arcaea mix)" + }, + { + "altTitles": [], + "artist": "Masayoshi Minoshima feat. 綾倉盟", + "data": { + "displayVersion": "4.3", + "songPack": "Collaboration Chapter 2 (maimai)" + }, + "id": 311, + "searchTerms": [ + "さいくるす", + "さいくるず", + "사이클즈", + "사이클", + "사이클스" + ], + "title": "CYCLES" + }, + { + "altTitles": [], + "artist": "EBIMAYO", + "data": { + "displayVersion": "4.3", + "songPack": "Collaboration Chapter 2 (maimai)" + }, + "id": 312, + "searchTerms": [ + "まっくすれいじ", + "まっくすれーじ", + "맥스레이지" + ], + "title": "MAXRAGE" + }, + { + "altTitles": [], + "artist": "Blacklolita", + "data": { + "displayVersion": "4.3", + "songPack": "Collaboration Chapter 2 (maimai)" + }, + "id": 313, + "searchTerms": [ + "いんふぃにてぃ", + "인피니티" + ], + "title": "[X]" + }, + { + "altTitles": [], + "artist": "かねこちはる", + "data": { + "displayVersion": "4.3", + "songPack": "Collaboration Chapter 2 (maimai)" + }, + "id": 314, + "searchTerms": [ + "てんぷてーしょん", + "템테이션" + ], + "title": "TEmPTaTiON" + }, + { + "altTitles": [], + "artist": "TAG", + "data": { + "displayVersion": "4.3", + "songPack": "Memory Archive" + }, + "id": 315, + "searchTerms": [ + "ぷりみてぃぶらいつ", + "프리미티브 라이츠", + "프리미티브 라이트" + ], + "title": "PRIMITIVE LIGHTS" + }, + { + "altTitles": [ + "コスモポップファンクラブ" + ], + "artist": "ナユタン星人", + "data": { + "displayVersion": "4.4", + "songPack": "Collaboration Chapter 3 (CHUNITHM)" + }, + "id": 316, + "searchTerms": [ + "코스모 팝 펀클럽" + ], + "title": "Cosmo Pop Funclub" + }, + { + "altTitles": [], + "artist": "USAO feat. 光吉猛修", + "data": { + "displayVersion": "4.4", + "songPack": "Collaboration Chapter 3 (CHUNITHM)" + }, + "id": 317, + "searchTerms": [ + "いんぱくと", + "임팩트" + ], + "title": "IMPACT" + }, + { + "altTitles": [], + "artist": "Morrigan feat.Lily", + "data": { + "displayVersion": "4.4", + "songPack": "Collaboration Chapter 3 (CHUNITHM)" + }, + "id": 318, + "searchTerms": [ + "じぇねしす", + "제네시스" + ], + "title": "Genesis" + }, + { + "altTitles": [], + "artist": "s-don vs. 翡乃イスカ", + "data": { + "displayVersion": "4.4", + "songPack": "Collaboration Chapter 3 (CHUNITHM)" + }, + "id": 319, + "searchTerms": [ + "とりっくすたーず", + "트릭스터즈", + "트릭스터스" + ], + "title": "Trrricksters!!" + }, + { + "altTitles": [ + "蜘蛛の糸" + ], + "artist": "きくお×cosMo@暴走P feat.影縫英", + "data": { + "displayVersion": "4.4", + "songPack": "Collaboration Chapter 3 (CHUNITHM)" + }, + "id": 320, + "searchTerms": [ + "くものいと", + "스파이더스 스레드", + "스파이더즈 스레드", + "스파이더스 쓰레드", + "스파이더즈 쓰레드", + "쿠모노 이토", + "거미줄" + ], + "title": "Spider's Thread" + }, + { + "altTitles": [], + "artist": "Masayoshi Minoshima(ALR)", + "data": { + "displayVersion": "4.4", + "songPack": "World Extend" + }, + "id": 321, + "searchTerms": [ + "ろすとえもーしょん", + "로스트 이모션" + ], + "title": "Lost Emotion feat. nomico" + }, + { + "altTitles": [], + "artist": "Ms.Sill", + "data": { + "displayVersion": "4.4", + "songPack": "World Extend" + }, + "id": 322, + "searchTerms": [ + "ぎみっく", + "기믹" + ], + "title": "GIMMICK" + }, + { + "altTitles": [], + "artist": "Taishi", + "data": { + "displayVersion": "4.4", + "songPack": "Memory Archive" + }, + "id": 323, + "searchTerms": [ + "ざさばいばー", + "더 서바이버" + ], + "title": "The Survivor (Game Edit)" + }, + { + "altTitles": [], + "artist": "saaa + kei_iwata + stuv + わかどり", + "data": { + "displayVersion": "4.4", + "songPack": "Memory Archive" + }, + "id": 324, + "searchTerms": [ + "にゅーよーくばっくれいず", + "뉴욕 백 레이즈" + ], + "title": "New York Back Raise" + }, + { + "altTitles": [], + "artist": "La prière", + "data": { + "displayVersion": "4.4", + "songPack": "Memory Archive" + }, + "id": 325, + "searchTerms": [ + "ぎゃらくてぃっくらぶ", + "갤럭틱 러브" + ], + "title": "Galactic Love" + }, + { + "altTitles": [ + "無法地点" + ], + "artist": "La prière", + "data": { + "displayVersion": "4.4", + "songPack": "World Extend" + }, + "id": 326, + "searchTerms": [ + "むほうちてん", + "로우리스 포인트", + "로리스 포인트" + ], + "title": "Lawless Point" + }, + { + "altTitles": [], + "artist": "FELT", + "data": { + "displayVersion": "4.4", + "songPack": "Memory Archive" + }, + "id": 327, + "searchTerms": [ + "ろすといんじあびす", + "로스트 인 디 어비스" + ], + "title": "Lost in the Abyss" + }, + { + "altTitles": [ + "ヒュブリスの頂に聳えるのは" + ], + "artist": "qfeileadh feat.のあ", + "data": { + "displayVersion": "4.4", + "songPack": "World Extend" + }, + "id": 328, + "searchTerms": [ + "ひゅぶりすのいただきにそびえるのは", + "휴브리스의 끝에 솟아오른 것은", + "휴브리스노 이타다키니 소비에루노와" + ], + "title": "Hybris (The one who shattered)" + }, + { + "altTitles": [], + "artist": "黒魔", + "data": { + "displayVersion": "4.4", + "songPack": "Memory Archive" + }, + "id": 329, + "searchTerms": [ + "とぅーざみるきーうぇい", + "투 더 밀키 웨이" + ], + "title": "To the Milky Way" + }, + { + "altTitles": [], + "artist": "Aiobahn feat. KOTOKO", + "data": { + "displayVersion": "4.5", + "songPack": "Memory Archive" + }, + "id": 330, + "searchTerms": [ + "いんたーねっとやめろ", + "인터넷 야메로", + "인터넷 그만둬", + "인터넷 그만해", + "인터넷 하지마", + "인타넷또 야메로" + ], + "title": "INTERNET YAMERO" + }, + { + "altTitles": [], + "artist": "Nikki Simmons", + "data": { + "displayVersion": "4.5", + "songPack": "CYTUS II" + }, + "id": 331, + "searchTerms": [ + "ばれっとうぇいてぃんぐふぉーみーじぇーむずらんでぃーのりみっくす", + "불렛 웨이팅 포 미 제임스 란디노 리믹스" + ], + "title": "Bullet Waiting for Me (James Landino remix)" + }, + { + "altTitles": [], + "artist": "3R2", + "data": { + "displayVersion": "4.5", + "songPack": "CYTUS II" + }, + "id": 332, + "searchTerms": [ + "でびりっくすふぃあ", + "데빌릭 스피어" + ], + "title": "Devillic Sphere" + }, + { + "altTitles": [], + "artist": "Akira Complex vs 3R2", + "data": { + "displayVersion": "4.5", + "songPack": "CYTUS II" + }, + "id": 333, + "searchTerms": [ + "るーしっどとらべらー", + "るしっどとらべらー", + "루시드 트래블러" + ], + "title": "Lucid Traveler" + }, + { + "altTitles": [], + "artist": "Æsir", + "data": { + "displayVersion": "4.5", + "songPack": "CYTUS II" + }, + "id": 334, + "searchTerms": [ + "かおす", + "けいおす", + "카오스" + ], + "title": "CHAOS" + }, + { + "altTitles": [], + "artist": "KIVΛ", + "data": { + "displayVersion": "4.5", + "songPack": "CYTUS II" + }, + "id": 335, + "searchTerms": [ + "ゆーすどとぅーびー", + "ゆーすどとぅびー", + "유즈 투 비", + "유즈드 투 비" + ], + "title": "Used to be" + }, + { + "altTitles": [], + "artist": "ぱらどっと", + "data": { + "displayVersion": "4.6", + "songPack": "World Extend" + }, + "id": 336, + "searchTerms": [ + "あるてぃめっとていすと", + "언리미티드 테이스트" + ], + "title": "Ultimate taste" + }, + { + "altTitles": [], + "artist": "Apo11o\"COLLAPSAR\"program ft. 大瀬良あい", + "data": { + "displayVersion": "4.6", + "songPack": "Collaboration Chapter 2 (CYTUS II)" + }, + "id": 337, + "searchTerms": [ + "syuten", + "しゅうてん", + "슈텐" + ], + "title": "syūten" + }, + { + "altTitles": [], + "artist": "onoken", + "data": { + "displayVersion": "4.6", + "songPack": "Collaboration Chapter 2 (CYTUS II)" + }, + "id": 338, + "searchTerms": [ + "でぃーあーるじー", + "디알지" + ], + "title": "DRG" + }, + { + "altTitles": [], + "artist": "Sta", + "data": { + "displayVersion": "4.6", + "songPack": "Collaboration Chapter 2 (CYTUS II)" + }, + "id": 339, + "searchTerms": [ + "ninetynine glooms", + "ないんてぃないんぐるーむ", + "ないんてぃーないんぐるーむ", + "나인티나인 글룸즈", + "나인티나인 글룸스" + ], + "title": "99 Glooms" + }, + { + "altTitles": [ + "II" + ], + "artist": "Cytus", + "data": { + "displayVersion": "4.6", + "songPack": "Collaboration Chapter 2 (CYTUS II)" + }, + "id": 340, + "searchTerms": [ + "ii", + "つー", + "とぅー", + "투" + ], + "title": " ͟͝͞Ⅱ́̕ " + }, + { + "altTitles": [], + "artist": "M2U Vocal by Guriri", + "data": { + "displayVersion": "4.6", + "songPack": "Collaboration Chapter 2 (CYTUS II)" + }, + "id": 341, + "searchTerms": [ + "まぐのりあ", + "매그놀리아" + ], + "title": "Magnolia" + }, + { + "altTitles": [], + "artist": "Masayoshi Minoshima(ALR)", + "data": { + "displayVersion": "4.7", + "songPack": "Memory Archive" + }, + "id": 342, + "searchTerms": [ + "さくりふぁいす", + "새크리파이스" + ], + "title": "SACRIFICE feat. ayame" + }, + { + "altTitles": [], + "artist": "MEMODEMO X AQUASINE", + "data": { + "displayVersion": "4.7", + "songPack": "World Extend" + }, + "id": 343, + "searchTerms": [ + "あーるじーびー", + "알지비" + ], + "title": "RGB" + }, + { + "altTitles": [], + "artist": "U-ske feat. 棗いつき", + "data": { + "displayVersion": "4.7", + "songPack": "Lasting Eden" + }, + "id": 344, + "searchTerms": [ + "うぇいとふぉーどーん", + "웨잇 포 던", + "웨잇 폴 던" + ], + "title": "WAIT FOR DAWN" + }, + { + "altTitles": [ + "レイヴンズ・プライド" + ], + "artist": "みーに feat. はらもりよしな", + "data": { + "displayVersion": "4.7", + "songPack": "Lasting Eden" + }, + "id": 345, + "searchTerms": [ + "레이븐즈 프라이드", + "레이븐스 프라이드" + ], + "title": "Raven's Pride" + }, + { + "altTitles": [], + "artist": "cosMo@暴走P", + "data": { + "displayVersion": "4.7", + "songPack": "Lasting Eden" + }, + "id": 346, + "searchTerms": [ + "らいずおぶざわーるど", + "라이즈 오브 더 월드" + ], + "title": "Rise of the World" + }, + { + "altTitles": [], + "artist": "Yuta Imai", + "data": { + "displayVersion": "4.7", + "songPack": "Lasting Eden" + }, + "id": 347, + "searchTerms": [ + "あんのうんれべるす", + "あんのうんれべるず", + "언노운 레벨즈", + "언노운 레벨스" + ], + "title": "UNKNOWN LEVELS" + }, + { + "altTitles": [], + "artist": "Ashrount vs. 打打だいず", + "data": { + "displayVersion": "4.7", + "songPack": "Lasting Eden" + }, + "id": 348, + "searchTerms": [ + "あぶすとぅるすじれんま", + "あぶすとぅるーすじれんま", + "업스트루스 딜레마", + "앱스트루스 딜레마" + ], + "title": "Abstruse Dilemma" + }, + { + "altTitles": [ + "感情の摩天楼 ~Arr.Demetori" + ], + "artist": "Demetori", + "data": { + "displayVersion": "4.7", + "songPack": "World Extend" + }, + "id": 349, + "searchTerms": [ + "kanjou no matenrou", + "かんじょうのまてんろうあれんじ", + "감정의 마천루", + "칸죠노 마텐로우" + ], + "title": "Kanjou no Matenrou ~Arr.Demetori" + }, + { + "altTitles": [ + "彼方の夢へと" + ], + "artist": "ii/night feat. 綺良雪", + "data": { + "displayVersion": "4.7", + "songPack": "Memory Archive" + }, + "id": 350, + "searchTerms": [ + "かなたのゆめへと", + "저 편의 꿈으로", + "투 더 퍼디스트 드림" + ], + "title": "To the Furthest Dream" + }, + { + "altTitles": [], + "artist": "Nhato", + "data": { + "displayVersion": "5.0", + "songPack": "Arcaea" + }, + "id": 351, + "searchTerms": [ + "りまいんどざそうるす", + "리마인드 더 소울즈" + ], + "title": "Remind the Souls (Short Version)" + }, + { + "altTitles": [], + "artist": "Prower", + "data": { + "displayVersion": "5.0", + "songPack": "World Extend" + }, + "id": 352, + "searchTerms": [ + "dynitikos", + "でぃにてぃこす", + "でぃにてぃこーす", + "디니티코스" + ], + "title": "Dynitikós" + }, + { + "altTitles": [ + "雨神楽" + ], + "artist": "荒谷サトル", + "data": { + "displayVersion": "5.0", + "songPack": "World Extend" + }, + "id": 353, + "searchTerms": [ + "あめかぐら", + "아메카구라", + "우신락", + "우신낙" + ], + "title": "Amekagura" + }, + { + "altTitles": [], + "artist": "nora2r", + "data": { + "displayVersion": "5.0", + "songPack": "Memory Archive" + }, + "id": 354, + "searchTerms": [ + "bbkkbkk", + "びーびーけーけーびーけーけー", + "비비케이케이비비케이케이" + ], + "title": "B.B.K.K.B.K.K." + }, + { + "altTitles": [], + "artist": "くるぶっこちゃん", + "data": { + "displayVersion": "5.0", + "songPack": "Lasting Eden Chapter 2 (Lasting Eden)" + }, + "id": 355, + "searchTerms": [ + "ぷらいみーばるてくすちゃ", + "ぷらいみーゔぁるてくすちゃ", + "ぷらいみばるてくすちゃ", + "ぷらいみゔぁるてくすちゃ", + "프라이미벌 텍스쳐" + ], + "title": "Primeval Texture" + }, + { + "altTitles": [], + "artist": "Maozon", + "data": { + "displayVersion": "5.0", + "songPack": "Lasting Eden Chapter 2 (Lasting Eden)" + }, + "id": 356, + "searchTerms": [ + "てくにからー", + "테크니컬러" + ], + "title": "Technicolour" + }, + { + "altTitles": [], + "artist": "polysha feat. 高城みよ", + "data": { + "displayVersion": "5.0", + "songPack": "Lasting Eden Chapter 2 (Lasting Eden)" + }, + "id": 357, + "searchTerms": [ + "ろごす", + "로고스" + ], + "title": "Logos" + }, + { + "altTitles": [], + "artist": "BlackY feat. Risa Yuzuki", + "data": { + "displayVersion": "5.0", + "songPack": "Lasting Eden Chapter 2 (Lasting Eden)" + }, + "id": 358, + "searchTerms": [ + "えごえいみ", + "えごーえいみ", + "에고 에이미" + ], + "title": "Ego Eimi" + }, + { + "altTitles": [], + "artist": "Feryquitous vs Laur", + "data": { + "displayVersion": "5.0", + "songPack": "Lasting Eden Chapter 2 (Lasting Eden)" + }, + "id": 359, + "searchTerms": [ + "あーげな", + "あげな", + "아르게나", + "아게나" + ], + "title": "Arghena" + } +] \ No newline at end of file diff --git a/database-seeds/collections/tables.json b/database-seeds/collections/tables.json index 47ad37d6f..6cc3c2d03 100644 --- a/database-seeds/collections/tables.json +++ b/database-seeds/collections/tables.json @@ -1,4 +1,27 @@ [ + { + "default": true, + "description": "Levels for the mobile version of Arcaea.", + "folders": [ + "Fbe24c81ba6102221920a15d43e6cf41acea82857b23c359138a78664b1e61727", + "F8076adf186b084c678707526d865783057bedea0b7458ed8441cb4c856d67b26", + "F8d35343478dace4e952d797bf711677d88127929e2768070292d48a630059aa0", + "F46f600f7e276daa5cedf27b364e82c2e6c6a68e96154e6023883f8f030b6a386", + "Fc5004fde5d91cf9f679cf0280909aef0512032d3d00f676d6fbdc924570e74e4", + "Fd39ebc8f92dc2725d1c584eaa51cc3e53d66714837499f1ae1e330a64b2fdda8", + "F506462b3e11cf7926aa951284f63721c97a523ee4ba8fe0c8fea2fbec47171b5", + "F4cb43c30b535a3d55643a92c7ab622b9c354781dcc5d3b8c17e0f8aa63debdaf", + "F22a38f5c458fb0be22bc078864bbabc0522589a95930799b5e3409b1666ba33d", + "Fe96acf41f6bad54ee6aca61cfa61b4f85b98f274e5df342f49fa25521fffd3da", + "F23797fd78b2145ae24906c48b4b2e03c7ce37576e52ccc5c65f5b8c401ed509b", + "F42f0a164213224606916df3c10e852f4f33e51d0ac1552fe778e534acd3d6bde" + ], + "game": "arcaea", + "inactive": false, + "playtype": "Touch", + "tableID": "arcaea-Touch-mobile-levels", + "title": "Arcaea (Mobile)" + }, { "default": true, "description": "The 14K Insane table.", diff --git a/database-seeds/scripts/rerunners/arcaea/merge-songlist.ts b/database-seeds/scripts/rerunners/arcaea/merge-songlist.ts new file mode 100644 index 000000000..e18350248 --- /dev/null +++ b/database-seeds/scripts/rerunners/arcaea/merge-songlist.ts @@ -0,0 +1,287 @@ +import fs from "fs"; +import { ChartDocument, Difficulties, SongDocument, integer } from "tachi-common"; +import { + CreateChartID, + GetFreshSongIDGenerator, + ReadCollection, + WriteCollection, +} from "../../util"; +import { Command } from "commander"; +import fjsh from "fast-json-stable-hash"; + +type LocalizedText = { en: string } & Record; +type LocalizedSearchTerms = Record>; + +interface SonglistChart { + ratingClass: integer; + title_localized?: LocalizedText; + artist?: string; + audioOverride?: boolean; + rating: number; + ratingPlus?: boolean; + version?: string; + hidden_until_unlocked?: boolean; + hidden_until?: "always" | "difficulty" | "none" | "song"; +} + +interface SonglistEntry { + idx: integer; + id: string; + title_localized: LocalizedText; + artist: string; + set: string; + search_title?: LocalizedSearchTerms; + search_artist?: LocalizedSearchTerms; + version: string; + difficulties: Array; +} + +interface PacklistEntry { + id: string; + pack_parent?: string; + name_localized: LocalizedText; + description_localized: LocalizedText; +} + +class MultiMapUniqueValues { + private map: Map>; + private hashMap: Map>; + + constructor(iterable?: Iterable | null | undefined) { + this.map = new Map(); + this.hashMap = new Map(); + if (iterable) { + for (const pair of iterable) { + this.set(pair[0], pair[1]); + } + } + } + + get(key: K) { + return this.map.get(key); + } + + set(key: K, value: V) { + const valueHash = fjsh.hash(value, "SHA256"); + const existingHashes = this.hashMap.get(key); + if (!existingHashes) { + this.map.set(key, [value]); + this.hashMap.set(key, [valueHash]); + return this; + } + + if (existingHashes.includes(valueHash)) { + return this; + } + + const existingEntries = this.get(key) ?? []; + existingEntries.push(value); + existingHashes.push(valueHash); + this.map.set(key, existingEntries); + this.hashMap.set(key, existingHashes); + + return this; + } +} + +function convertDifficulty(input: integer): Difficulties["arcaea:Touch"] { + switch (input) { + case 0: + return "Past"; + case 1: + return "Present"; + case 2: + return "Future"; + case 3: + return "Beyond"; + } + + throw new Error( + `Unknown difficulty ${input}, can't convert this into one of Tachi's Arcaea difficulties. Consider updating the merge-songlist.ts script.` + ); +} + +function convertPackName(packsByID: Record, packID: string) { + if (packID === "single") { + return "Memory Archive"; + } + + const pack = packsByID[packID]; + + if (!pack) { + throw new Error( + `Unknown pack ${packID}, can't convert this into a pack name. Check your "packlist".` + ); + } + + if (pack.pack_parent) { + const parentPack = packsByID[pack.pack_parent]; + if (!parentPack) { + throw new Error( + `${packID} declares parent ${pack.pack_parent}, but no packs with such ID exists. Check your "packlist".` + ); + } + return `${pack.name_localized.en} (${parentPack.name_localized.en})`; + } + + return pack.name_localized.en; +} + +const program = new Command(); +program.requiredOption("-i, --input "); +program.requiredOption("-p, --packlist "); + +program.parse(process.argv); +const options = program.opts(); + +const content = fs.readFileSync(options.input, { encoding: "utf-8" }); +const data: { songs: Array } = JSON.parse(content); + +const packlistContent = fs.readFileSync(options.packlist, { encoding: "utf-8" }); +const packlistData: { packs: Array } = JSON.parse(packlistContent); +const packsByID = Object.fromEntries(packlistData.packs.map((p) => [p.id, p])); + +const existingSongDocsById: Map> = new Map( + ReadCollection("songs-arcaea.json").map((e: SongDocument<"arcaea">) => [e.id, e]) +); +const existingChartDocs: Array> = + ReadCollection("charts-arcaea.json"); +const inGameIDToSongsMap: MultiMapUniqueValues< + string, + SongDocument<"arcaea"> +> = new MultiMapUniqueValues(); +const existingCharts: Map> = new Map(); + +for (const chart of existingChartDocs) { + const song = existingSongDocsById.get(chart.songID); + if (!song) { + console.warn(`Chart ${chart.songID} does not belong to any song?`); + continue; + } + inGameIDToSongsMap.set(chart.data.inGameID, song); + existingCharts.set(`${chart.data.inGameID}-${chart.difficulty}`, chart); +} + +const getNewSongID = GetFreshSongIDGenerator("arcaea"); + +const newSongs: Array> = []; +const newCharts: Array> = []; + +for (const entry of data.songs) { + const inGameID = entry.id; + let possibleSongs = inGameIDToSongsMap.get(inGameID); + + const searchTerms = Object.values(entry.search_title ?? {}) + .flatMap((t) => t) + // Necessary because some songs have blank search terms + // e.g. qualia -ideaesthesia- + .filter((t) => t); + + if (!possibleSongs) { + const title = entry.title_localized.en; + + // Deduplicated because multiple languages might have the same alt titles + const altTitles = [ + ...new Set(Object.values(entry.title_localized).filter((t) => t !== title)), + ]; + + const songDoc: SongDocument<"arcaea"> = { + title, + artist: entry.artist, + altTitles, + searchTerms, + id: getNewSongID(), + data: { + displayVersion: entry.version, + songPack: convertPackName(packsByID, entry.set), + }, + }; + + possibleSongs = [songDoc]; + newSongs.push(songDoc); + inGameIDToSongsMap.set(inGameID, songDoc); + } + + for (const chart of entry.difficulties) { + let song: SongDocument<"arcaea">; + + if (chart.hidden_until_unlocked && chart.hidden_until === "always") { + // Deactivated difficulty + continue; + } + + if (chart.rating === 0) { + continue; + } + + const difficulty = convertDifficulty(chart.ratingClass); + const exists = existingCharts.get(`${inGameID}-${difficulty}`); + + if (exists) { + // update chart levels + exists.level = `${chart.rating}${chart.ratingPlus ? "+" : ""}`; + exists.levelNum = chart.rating + (chart.ratingPlus ? 0.7 : 0); + continue; + } + + if ( + chart.audioOverride && + chart.title_localized && + !possibleSongs.some((t) => t.title === chart.title_localized?.en) + ) { + // There are some songs (all BYD) that share the same set + // with other songs. + + const title = chart.title_localized.en; + const altTitles = [ + ...new Set(Object.values(chart.title_localized).filter((t) => t !== title)), + ]; + + const songDoc: SongDocument<"arcaea"> = { + title, + artist: chart.artist ?? entry.artist, + altTitles, + searchTerms, + id: getNewSongID(), + data: { + displayVersion: chart.version ?? entry.version, + songPack: convertPackName(packsByID, entry.set), + }, + }; + + song = songDoc; + newSongs.push(songDoc); + inGameIDToSongsMap.set(inGameID, songDoc); + } else { + const title = chart.title_localized?.en ?? entry.title_localized.en; + const possibleSong = possibleSongs.find((e) => e.title === title); + + if (!possibleSong) { + console.error(`No song with inGameID ${inGameID} matches title ${title}?`); + continue; + } + + song = possibleSong; + } + + const chartDoc: ChartDocument<"arcaea:Touch"> = { + chartID: CreateChartID(), + songID: song.id, + difficulty, + isPrimary: true, + level: `${chart.rating}${chart.ratingPlus ? "+" : ""}`, + levelNum: chart.rating + (chart.ratingPlus ? 0.7 : 0), + versions: ["mobile"], + playtype: "Touch", + data: { + inGameID, + // Filled in later, but not by this script + notecount: 0, + }, + }; + newCharts.push(chartDoc); + } +} + +WriteCollection("songs-arcaea.json", [...existingSongDocsById.values(), ...newSongs]); +WriteCollection("charts-arcaea.json", [...existingChartDocs, ...newCharts]); diff --git a/database-seeds/scripts/rerunners/arcaea/wikiwiki-arcaea/_README.md b/database-seeds/scripts/rerunners/arcaea/wikiwiki-arcaea/_README.md new file mode 100644 index 000000000..8378f14e6 --- /dev/null +++ b/database-seeds/scripts/rerunners/arcaea/wikiwiki-arcaea/_README.md @@ -0,0 +1,159 @@ +## Chart constants +Get the data by going to [譜面定数表](https://wikiwiki.jp/arcaea/%E8%AD%9C%E9%9D%A2%E5%AE%9A%E6%95%B0%E8%A1%A8) +or [譜面定数表 (Level 7以下)](https://wikiwiki.jp/arcaea/譜面定数表/譜面定数表 (Level 7以下)) and paste in the contents +of this script in the browser console: + +```js +(() => { + function convertDifficulty(cssColor) { + switch (cssColor) { + case "deepskyblue": + return "Past"; + case "mediumseagreen": + return "Present"; + case "mediumvioletred": + return "Future"; + case "firebrick": + return "Beyond"; + default: + throw new Error( + `Unknown difficulty color ${cssColor}. Update the script and try again.` + ); + } + } + + function parseTables(tables, expectedHeaderCells, offsets) { + const results = []; + + const minimumRowSize = Math.max(...Object.values(offsets)) + 1; + + for (const table of tables) { + const header = [...table.querySelectorAll("thead th")].map((th) => th.textContent); + + if (header.length !== expectedHeaderCells.length) { + console.log(`Ignoring table with different header cell count: ${table}`); + continue; + } + + if (header.some((i) => !expectedHeaderCells.includes(i))) { + throw new Error( + `Unknown table format. Expected ${expectedHeaderCells}, but found ${header}. You might need to update the script.` + ); + } + + for (const row of table.querySelectorAll("tbody tr")) { + const cells = row.querySelectorAll("td"); + if (cells.length < minimumRowSize) { + // Separator row + continue; + } + + const title = cells[offsets.title].querySelector("a.rel-wiki-page").textContent; + const artist = cells[offsets.artist].textContent; + const level = cells[offsets.level].textContent; + const difficulty = convertDifficulty(cells[offsets.level].style.backgroundColor); + const levelNum = Number(cells[offsets.chartConstant].textContent); + + if (Number.isNaN(levelNum)) { + console.error( + `Could not parse chart constant ${ + cells[offsets.chartConstant].textContent + } of song ${title} to a number.` + ); + continue; + } + + results.push({ title, artist, difficulty, level, levelNum }); + } + } + + return JSON.stringify(results, null, 4); + } + + const tables = document.querySelectorAll("table"); + + switch (location.pathname) { + case "/arcaea/%E8%AD%9C%E9%9D%A2%E5%AE%9A%E6%95%B0%E8%A1%A8": // 譜面定数表, table for lv8-12 + copy( + parseTables(tables, ["Artwork", "Song", "Composer", "Pack", "Lv.", "定数"], { + title: 2, + artist: 3, + level: 5, + chartConstant: 6, + }) + ); + break; + case "/arcaea/%E8%AD%9C%E9%9D%A2%E5%AE%9A%E6%95%B0%E8%A1%A8/%E8%AD%9C%E9%9D%A2%E5%AE%9A%E6%95%B0%E8%A1%A8%20%28Level%207%E4%BB%A5%E4%B8%8B%29": + // 譜面定数表 (Level 7以下), table for lv1-7 + copy( + parseTables(tables, ["Song", "Composer", "Lv.", "定数"], { + title: 0, + artist: 2, + level: 3, + chartConstant: 4, + }) + ); + break; + default: + throw new Error(`Unknown path ${location.pathname}. If you're sure you're on the correct page, please update the script.`) + } +})(); +``` + +Chart constant data will now be copied into your clipboard. Paste them into `upper.json` and `lower.json` respectively. + +Run `node parse-scraped-data.js` + +## Note counts +Go to [ノーツ数順](https://wikiwiki.jp/arcaea/%E3%83%8E%E3%83%BC%E3%83%84%E6%95%B0%E9%A0%86) and paste this script +into the browser console: + +```js +(() => { + const EXPECTED_HEADER_CELLS = ["Notes", "Song", "Composer", "Diff.", "Lv.", "F", "L", "A", "S"]; + + const results = []; + + const tables = document.querySelectorAll("table"); + + for (const table of tables) { + const header = [...table.querySelectorAll("thead th")].map((th) => th.textContent); + + if (header.length !== EXPECTED_HEADER_CELLS.length) { + console.log(`Ignoring table with different header cell count: ${table}`); + continue; + } + + if (header.some((i) => !EXPECTED_HEADER_CELLS.includes(i))) { + throw new Error( + `Unknown table format. Expected ${EXPECTED_HEADER_CELLS}, but found ${header}. You might need to update the script.` + ); + } + + for (const row of table.querySelectorAll("tbody tr")) { + const cells = row.querySelectorAll("td"); + + const title = cells[1].querySelector("a.rel-wiki-page").textContent; + const artist = cells[2].textContent; + const difficulty = cells[3].textContent; + const level = cells[4].textContent; + const notecount = Number(cells[0].textContent); + + if (Number.isNaN(notecount)) { + console.error(`Could not parse notecount ${ + cells[0].textContent + } of song ${title}, difficulty ${difficulty} to a number.`); + continue; + } + + results.push({ title, artist, difficulty, level, notecount }); + } + } + + copy(JSON.stringify(results, null, 4)); +})(); +``` + +Notecount data will be copied to your clipboard. Paste the contents into `notecount.json`. + +Run `node parse-scraped-data.js`. diff --git a/database-seeds/scripts/rerunners/arcaea/wikiwiki-arcaea/parse-scraped-data.js b/database-seeds/scripts/rerunners/arcaea/wikiwiki-arcaea/parse-scraped-data.js new file mode 100644 index 000000000..deb357c4b --- /dev/null +++ b/database-seeds/scripts/rerunners/arcaea/wikiwiki-arcaea/parse-scraped-data.js @@ -0,0 +1,110 @@ +const fs = require("fs"); +const { ReadCollection } = require("../../../util"); +const path = require("path"); +const { ApplyMutations } = require("../../../mutations"); +const { FindChartWithPTDFVersion } = require("../../../finders"); + +const MANUAL_TITLE_MAP = { + "光速神授説- Divine Light of Myriad -": "Divine Light of Myriad", + "ouroboros-twin stroke of the end-": "ouroboros -twin stroke of the end-", + "Shades of Light ina Transcendent Realm": "Shades of Light in a Transcendent Realm", + "Shades of Lightin a Transcendent Realm": "Shades of Light in a Transcendent Realm", + "MANTIS(Arcaea Ultra-Bloodrush VIP)": "MANTIS (Arcaea Ultra-Bloodrush VIP)", + Ⅱ: " ͟͝͞Ⅱ́̕ ", + " ͟͝͞Ⅱ́̕": " ͟͝͞Ⅱ́̕ ", + "͟͝͞Ⅱ́̕": " ͟͝͞Ⅱ́̕ ", + "Bullet Waiting for Me(James Landino remix)": "Bullet Waiting for Me (James Landino remix)", + "妖艶魔女-trappola bewitching-": "trappola bewitching", + "緋色月下、狂咲ノ絶(nayuta 2017 ver.)": "Hiiro Gekka, Kyoushou no Zetsu (nayuta 2017 ver.)", + "Last|Eternity": "Last | Eternity", + "Last|Moment": "Last | Moment", + "ベースラインやってる?w": "Can I Friend You on Bassbook? Lol", + "ハルトピア~Utopia of Spring~": "Harutopia ~Utopia of Spring~", + "PRAGMATISM-RESURRECTION-": "PRAGMATISM -RESURRECTION-", + "Remind the Souls(Short Version)": "Remind the Souls (Short Version)", + + // Zero idea + "Alice à la mode": "Alice à la mode", +}; +// Multiple different songs with the same title, requiring artist search. +const NEEDS_ARTIST_SEARCH = ["Quon", "Genesis"]; + +const songs = ReadCollection("songs-arcaea.json"); + +function findSong(collection, ccEntry) { + const mappedTitle = MANUAL_TITLE_MAP[ccEntry.title] ?? ccEntry.title; + const needsArtistSearch = NEEDS_ARTIST_SEARCH.includes(ccEntry.title); + + return collection.find( + (e) => + (e.title === mappedTitle || e.altTitles.includes(mappedTitle)) && + (!needsArtistSearch || e.artist === ccEntry.artist) + ); +} + +function parseScrapedData(file, mutationCallback) { + const charts = ReadCollection("charts-arcaea.json"); + + const ccData = JSON.parse(fs.readFileSync(path.join(__dirname, file), "utf-8")); + const mutations = []; + + for (const entry of ccData) { + const song = findSong(songs, entry); + + if (!song) { + console.warn(`Could not find song with title ${entry.title}`); + continue; + } + + const chart = FindChartWithPTDFVersion( + charts, + song.id, + "Touch", + entry.difficulty, + "mobile" + ); + + if (!chart) { + console.warn(`${song.title} [${entry.difficulty}] - Couldn't find chart?`); + continue; + } + + mutations.push(mutationCallback(chart, entry)); + } + + console.info(`Finished parsing ${file}`); + ApplyMutations("charts-arcaea.json", mutations); +} + +function chartConstantMutationCallback(chart, entry) { + return { + match: { + chartID: chart.chartID, + }, + data: { + level: entry.level, + levelNum: entry.levelNum, + }, + }; +} + +if (fs.existsSync(path.join(__dirname, "lower.json"))) { + parseScrapedData("lower.json", chartConstantMutationCallback); +} + +if (fs.existsSync(path.join(__dirname, "upper.json"))) { + parseScrapedData("upper.json", chartConstantMutationCallback); +} + +if (fs.existsSync(path.join(__dirname, "notecount.json"))) { + parseScrapedData("notecount.json", (chart, entry) => ({ + match: { + chartID: chart.chartID, + }, + data: { + data: { + notecount: entry.notecount, + }, + }, + })); +} diff --git a/docs/docs/game-support/games/arcaea-Touch.md b/docs/docs/game-support/games/arcaea-Touch.md new file mode 100644 index 000000000..77b1edfb6 --- /dev/null +++ b/docs/docs/game-support/games/arcaea-Touch.md @@ -0,0 +1,86 @@ +# Arcaea support + +This game has the internal GPTString of `arcaea:Touch`. + +!!! note + For information on what each section means, please see [Common Config](../common-config/index.md). + +## Metrics + +For more information on what metrics are and how they work, see [TODO]! + +### Provided Metrics + +| Metric Name | Type | Description | +| :: | :: | :: | +| `score` | Integer | The score value. This is between 0 and 10 million, plus one point for each note. | +| `lamp` | "LOST", "EASY CLEAR", "CLEAR", "HARD CLEAR", "FULL RECALL", "PURE MEMORY" | The type of clear this was. | + +### Derived Metrics + +| Metric Name | Type | Description | +| :: | :: | :: | +| `grade` | "D", "C", "B", "A", "AA", "EX", "EX+" | The grade this score was. | + +### Optional Metrics + +| Metric Name | Type | Description | +| :: | :: | :: | +| `fast` | Integer | The amount of mistakes in this score that were a result of hitting early. | +| `slow` | Integer | The amount of mistakes in this score that were a result of hitting late. | +| `maxCombo` | Integer | The largest combo in this score. | + +## Judgements + +The folowing judgements are defined: + +- `pure` +- `far` +- `lost` + +## Rating Algorithms + +### Score Rating Algorithms + +| Name | Description | +| :: | :: | +| `potential` | The potential value of this score. The same as the system used in game. | + +### Session Rating Algorithms + +| Name | Description | +| :: | :: | +| `naivePotential` | The average of your best 10 potentials this session. | + +### Profile Rating Algorithms + +| Name | Description | +| :: | :: | +| `naivePotential` | The average of your best 30 potentials. This is different to in-game, as it does not take into account your recent scores in any way. | + +## Difficulties + +- `Past` +- `Present` +- `Future` +- `Beyond` + +## Classes + +| Name | Type | Values | +| :: | :: | :: | +| `badge` | DERIVED | BLUE, GREEN, ASH_PURPLE, PURPLE, RED, ONE_STAR, TWO_STARS, THREE_STARS | +| `courseBanner` | PROVIDED | PHASE_1, PHASE_2, PHASE_3, PHASE_4, PHASE_5, PHASE_6, PHASE_7, PHASE_8, PHASE_9, PHASE_10, PHASE_11 | + +## Versions + +| ID | Pretty Name | +| :: | :: | +| `mobile` | Mobile | +| `switch` | Nintendo Switch | + +## Supported Match Types + +- `inGameID` +- `songTitle` +- `tachiSongID` diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 435380511..6c1d1319b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -164,7 +164,7 @@ importers: react-router-bootstrap: ^0.25.0 react-router-dom: 5.1.2 react-select: ^5.6.1 - rg-stats: 0.5.2 + rg-stats: 0.5.4 sass: 1.64.1 sync-fetch: ^0.3.1 tachi-common: workspace:../common @@ -216,7 +216,7 @@ importers: react-router-bootstrap: 0.25.0_ojxjs55rmvr7fxvfrkhc3ong3q react-router-dom: 5.1.2_react@17.0.2 react-select: 5.6.1_yiqn7u2tkfehrr3elhe5qwqfqy - rg-stats: 0.5.2 + rg-stats: 0.5.4 sync-fetch: 0.3.1 tachi-common: link:../common vite-plugin-html: 3.2.0_vite@3.2.7 @@ -392,7 +392,7 @@ importers: prudence: 0.10.0 rate-limit-redis: 2.1.0 redis: 3.1.2 - rg-stats: 0.5.2 + rg-stats: 0.5.4 rimraf: 3.0.2 safe-json-stringify: 1.2.0 semver: ^7.3.7 @@ -461,7 +461,7 @@ importers: prudence: 0.10.0 rate-limit-redis: 2.1.0 redis: 3.1.2 - rg-stats: 0.5.2 + rg-stats: 0.5.4 rimraf: 3.0.2 safe-json-stringify: 1.2.0 semver: 7.3.7 @@ -9306,8 +9306,8 @@ packages: resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} dev: false - /rg-stats/0.5.2: - resolution: {integrity: sha512-X2qSAFUaNGqu87J52KWGsrTbRDYO9k9YqJkd4g/LgOax00sFn8rUueadUkX1wUH7918SSmBeF4IcL+qqfgD/AA==} + /rg-stats/0.5.4: + resolution: {integrity: sha512-eatjAvoh7sXH1lvRhUlPLmSMkr1qUwHmZKroZp3HsLDafgxyqQB/UklkXWp7/+7X35CB/tPr/psMDuiT1ybZ6w==} dev: false /rimraf/2.4.5: diff --git a/server/package.json b/server/package.json index 3818cf8c0..6364f496c 100644 --- a/server/package.json +++ b/server/package.json @@ -92,7 +92,7 @@ "prudence": "0.10.0", "rate-limit-redis": "2.1.0", "redis": "3.1.2", - "rg-stats": "0.5.2", + "rg-stats": "0.5.4", "rimraf": "3.0.2", "safe-json-stringify": "1.2.0", "semver": "^7.3.7", @@ -118,4 +118,4 @@ "src/external/mongo/schemas.ts" ] } -} \ No newline at end of file +} diff --git a/server/src/game-implementations/game-implementations.ts b/server/src/game-implementations/game-implementations.ts index 10b91da65..c4f4e7659 100644 --- a/server/src/game-implementations/game-implementations.ts +++ b/server/src/game-implementations/game-implementations.ts @@ -1,3 +1,4 @@ +import { ARCAEA_IMPL } from "./games/arcaea"; import { BMS_14K_IMPL, BMS_7K_IMPL, PMS_CONTROLLER_IMPL, PMS_KEYBOARD_IMPL } from "./games/bms-pms"; import { CHUNITHM_IMPL } from "./games/chunithm"; import { GITADORA_DORA_IMPL, GITADORA_GITA_IMPL } from "./games/gitadora"; @@ -41,4 +42,5 @@ export const GPT_SERVER_IMPLEMENTATIONS: GPTImplementations = { "usc:Controller": USC_CONTROLLER_IMPL, "usc:Keyboard": USC_KEYBOARD_IMPL, "sdvx:Single": SDVX_IMPL, + "arcaea:Touch": ARCAEA_IMPL, }; diff --git a/server/src/game-implementations/games/arcaea.test.ts b/server/src/game-implementations/games/arcaea.test.ts new file mode 100644 index 000000000..10654ce0d --- /dev/null +++ b/server/src/game-implementations/games/arcaea.test.ts @@ -0,0 +1,240 @@ +import { RunValidators } from "./_common"; +import { ARCAEA_IMPL } from "./arcaea"; +import db from "external/mongo/db"; +import CreateLogCtx from "lib/logger/logger"; +import { CreatePBDoc } from "lib/score-import/framework/pb/create-pb-doc"; +import { ARCAEA_GRADES, ARCAEA_LAMPS } from "tachi-common"; +import t from "tap"; +import { dmf, mkMockPB, mkMockScore } from "test-utils/misc"; +import ResetDBState from "test-utils/resets"; +import { TestSnapshot } from "test-utils/single-process-snapshot"; +import { TestingArcaeaSheriruthFTR } from "test-utils/test-data"; +import type { ProvidedMetrics, ScoreData, ScoreDocument } from "tachi-common"; +import type { DeepPartial } from "utils/types"; + +const baseMetrics: ProvidedMetrics["arcaea:Touch"] = { + lamp: "CLEAR", + score: 9_979_366, +}; + +const scoreData: ScoreData<"arcaea:Touch"> = { + lamp: "CLEAR", + score: 9_979_366, + grade: "EX+", + judgements: { + pure: 1148, + far: 1, + lost: 2, + }, + optional: { enumIndexes: {} }, + enumIndexes: { + grade: ARCAEA_GRADES.EX_PLUS, + lamp: ARCAEA_LAMPS.CLEAR, + }, +}; + +const mockScore = mkMockScore("arcaea", "Touch", TestingArcaeaSheriruthFTR, scoreData); +const mockPB = mkMockPB("arcaea", "Touch", TestingArcaeaSheriruthFTR, scoreData); + +const logger = CreateLogCtx(__filename); + +t.test("Arcaea Implementation", (t) => { + t.test("Grade Deriver", (t) => { + const f = (score: number, expected: string) => + t.equal( + ARCAEA_IMPL.derivers.grade(dmf(baseMetrics, { score }), TestingArcaeaSheriruthFTR), + expected, + `A score of ${score.toLocaleString()} should result in grade=${expected}.` + ); + + f(0, "D"); + f(8_600_000, "C"); + f(8_900_000, "B"); + f(9_200_000, "A"); + f(9_500_000, "AA"); + f(9_800_000, "EX"); + f(9_900_000, "EX+"); + + t.end(); + }); + + t.test("Rating Calc", (t) => { + t.equal( + ARCAEA_IMPL.scoreCalcs.potential(scoreData, TestingArcaeaSheriruthFTR), + 11.99, + "Basic potential check" + ); + + t.end(); + }); + + t.todo("Session Calcs"); + t.todo("Profile Calcs"); + + t.test("Colour Deriver", (t) => { + const f = (v: number | null, expected: any) => + t.equal( + ARCAEA_IMPL.classDerivers.badge({ naivePotential: v }), + expected, + `A naivePotential of ${v} should result in ${expected}.` + ); + + f(null, null); + f(0, "BLUE"); + f(3.5, "GREEN"); + f(7, "ASH_PURPLE"); + f(10, "PURPLE"); + f(11, "RED"); + f(12, "ONE_STAR"); + f(12.5, "TWO_STARS"); + f(13, "THREE_STARS"); + + t.end(); + }); + + t.test("Goal Formatters", (t) => { + t.test("Criteria", (t) => { + t.equal( + ARCAEA_IMPL.goalCriteriaFormatters.score(10_002_221), + "Get a score of 10,002,221 on" + ); + + t.end(); + }); + + t.test("Progress", (t) => { + const f = ( + k: keyof typeof ARCAEA_IMPL.goalProgressFormatters, + modifant: Partial>, + goalValue: any, + expected: any + ) => + t.equal( + ARCAEA_IMPL.goalProgressFormatters[k]( + dmf(mockPB, { + scoreData: modifant, + }), + goalValue + ), + expected + ); + + f("grade", { grade: "EX", score: 9_897_342 }, ARCAEA_GRADES.EX_PLUS, "(EX+)-2.7K"); + f("score", { score: 9_982_123 }, 10_000_000, "9,982,123"); + f("lamp", { lamp: "CLEAR" }, ARCAEA_LAMPS.CLEAR, "CLEAR"); + + t.end(); + }); + + t.test("Out Of", (t) => { + t.equal(ARCAEA_IMPL.goalOutOfFormatters.score(10_001_003), "10,001,003"); + t.equal(ARCAEA_IMPL.goalOutOfFormatters.score(9_983_132), "9,983,132"); + + t.end(); + }); + + t.end(); + }); + + t.test("PB Merging", (t) => { + t.beforeEach(ResetDBState); + + t.test("Should join best lamp", async (t) => { + await db.scores.insert(mockScore); + await db.scores.insert( + dmf(mockScore, { + scoreID: "bestLamp", + scoreData: { + score: 0, + lamp: "FULL RECALL", + enumIndexes: { lamp: ARCAEA_LAMPS.FULL_RECALL }, + }, + }) + ); + + t.hasStrict(await CreatePBDoc("arcaea:Touch", 1, TestingArcaeaSheriruthFTR, logger), { + composedFrom: [{ name: "Best Score" }, { name: "Best Lamp", scoreID: "bestLamp" }], + scoreData: { + score: mockScore.scoreData.score, + lamp: "FULL RECALL", + enumIndexes: { lamp: ARCAEA_LAMPS.FULL_RECALL }, + }, + }); + + t.end(); + }); + + t.end(); + }); + + t.test("Score Validations", (t) => { + const f = (s: DeepPartial>) => + RunValidators(ARCAEA_IMPL.scoreValidators, dmf(mockScore, s)); + + t.strictSame( + f({ + scoreData: { + lamp: "PURE MEMORY", + score: 10_001_151, + judgements: { + pure: 1151, + far: 0, + lost: 0, + }, + }, + }), + undefined + ); + t.strictSame(f({ scoreData: { lamp: "FULL RECALL", judgements: { lost: 0 } } }), undefined); + t.strictSame( + ARCAEA_IMPL.chartSpecificValidators.score( + mockScore.scoreData.score, + TestingArcaeaSheriruthFTR + ), + true + ); + + TestSnapshot( + t, + f({ scoreData: { lamp: "PURE MEMORY", score: 9_999_999 } }), + "Arcaea IMPL Validators: Should disallow PURE MEMORY with non-perfect score" + ); + + TestSnapshot( + t, + f({ scoreData: { lamp: "FULL RECALL", score: 4_999_999 } }), + "Arcaea IMPL Validators: Should disallow FULL RECALL scores smaller than the minimum possible score" + ); + + TestSnapshot( + t, + f({ scoreData: { lamp: "FULL RECALL", judgements: { lost: 1 } } }), + `Arcaea IMPL Validators: Should disallow FR with lost` + ); + TestSnapshot( + t, + f({ scoreData: { lamp: "PURE MEMORY", judgements: { far: 1 } } }), + "Arcaea IMPL Validators: Should disallow PURE MEMORY with non-perfect Far judgements." + ); + TestSnapshot( + t, + f({ scoreData: { lamp: "PURE MEMORY", judgements: { lost: 1 } } }), + "Arcaea IMPL Validators: Should disallow PURE MEMORY with non-perfect Lost judgements." + ); + + TestSnapshot( + t, + ARCAEA_IMPL.chartSpecificValidators.score(-1, TestingArcaeaSheriruthFTR), + "Arcaea IMPL Validators: Should disallow negative scores." + ); + TestSnapshot( + t, + ARCAEA_IMPL.chartSpecificValidators.score(10_001_152, TestingArcaeaSheriruthFTR), + "Arcaea IMPL Validators: Should disallow scores that exceed 10 million + notecount." + ); + + t.end(); + }); + + t.end(); +}); diff --git a/server/src/game-implementations/games/arcaea.ts b/server/src/game-implementations/games/arcaea.ts new file mode 100644 index 000000000..6124ccc4b --- /dev/null +++ b/server/src/game-implementations/games/arcaea.ts @@ -0,0 +1,117 @@ +import { GoalFmtScore, GoalOutOfFmtScore, GradeGoalFormatter } from "./_common"; +import { CreatePBMergeFor } from "game-implementations/utils/pb-merge"; +import { ProfileAvgBestN } from "game-implementations/utils/profile-calc"; +import { SessionAvgBest10For } from "game-implementations/utils/session-calc"; +import { Potential } from "rg-stats"; +import { ARCAEA_GBOUNDARIES, FmtNum, GetGrade } from "tachi-common"; +import { IsNullish } from "utils/misc"; +import type { GPTServerImplementation } from "game-implementations/types"; +import type { GPTStrings } from "tachi-common"; + +export const ARCAEA_IMPL: GPTServerImplementation = { + chartSpecificValidators: { + score: (score, chart) => { + if (score < 0) { + return `Score must be non-negative. Got ${score}`; + } + + if (score > 10_000_000 + chart.data.notecount) { + return `Score cannot exceed ${10_000_000 + chart.data.notecount} for this chart.`; + } + + return true; + }, + }, + derivers: { + grade: ({ score }) => GetGrade(ARCAEA_GBOUNDARIES, score), + }, + scoreCalcs: { + potential: (scoreData, chart) => Potential.calculate(scoreData.score, chart.levelNum), + }, + sessionCalcs: { + naivePotential: SessionAvgBest10For("potential"), + }, + profileCalcs: { + naivePotential: ProfileAvgBestN("potential", 50), + }, + classDerivers: { + badge: (ratings) => { + const potential = ratings.naivePotential; + + if (IsNullish(potential)) { + return null; + } + + if (potential >= 13.0) { + return "THREE_STARS"; + } else if (potential >= 12.5) { + return "TWO_STARS"; + } else if (potential >= 12.0) { + return "ONE_STAR"; + } else if (potential >= 11.0) { + return "RED"; + } else if (potential >= 10.0) { + return "PURPLE"; + } else if (potential >= 7.0) { + return "ASH_PURPLE"; + } else if (potential >= 3.5) { + return "GREEN"; + } + + return "BLUE"; + }, + }, + goalCriteriaFormatters: { + score: GoalFmtScore, + }, + goalProgressFormatters: { + score: (pb) => FmtNum(pb.scoreData.score), + lamp: (pb) => pb.scoreData.lamp, + grade: (pb, gradeIndex) => + GradeGoalFormatter( + ARCAEA_GBOUNDARIES, + pb.scoreData.grade, + pb.scoreData.score, + ARCAEA_GBOUNDARIES[gradeIndex]!.name + ), + }, + goalOutOfFormatters: { + score: GoalOutOfFmtScore, + }, + pbMergeFunctions: [ + CreatePBMergeFor("largest", "enumIndexes.lamp", "Best Lamp", (base, score) => { + base.scoreData.lamp = score.scoreData.lamp; + }), + ], + defaultMergeRefName: "Best Score", + scoreValidators: [ + (s) => { + if (s.scoreData.lamp === "PURE MEMORY" && s.scoreData.score < 10_000_000) { + return `PURE MEMORY scores must have a score larger than 10 million. Got ${s.scoreData.score} instead.`; + } + + // This doesn't go both ways. Due to how Arcaea scoring works, you can technically + // achieve a score of 10 million without a PM, if the chart's notecount is high enough. + // + // For example, if a chart has 2237 notes, 2236 shiny PUREs + 1 FAR gives a score of + // exactly 10 million (2236.5 * 10_000_000 / 2237 + 2236 = 10_000_000). + }, + (s) => { + // 1 FAR is half the value of 1 PURE. + // The minimum score for a FULL RECALL is an all-FAR FULL RECALL, or + // 10_000_000 / 2 = 5_000_000. + if (s.scoreData.lamp === "FULL RECALL" && s.scoreData.score < 5_000_000) { + return `FULL RECALL scores must have a score larger than 5 million. Got ${s.scoreData.score} instead.`; + } + }, + (s) => { + const { far, lost } = s.scoreData.judgements; + + if (s.scoreData.lamp === "PURE MEMORY" && (lost ?? 0) + (far ?? 0) > 0) { + return "Cannot have a PURE MEMORY with any fars or losts."; + } else if (s.scoreData.lamp === "FULL RECALL" && (lost ?? 0) > 0) { + return "Cannot have a FULL RECALL with non-zero lost count."; + } + }, + ], +}; diff --git a/server/src/lib/migration/migrations/v3-props.ts b/server/src/lib/migration/migrations/v3-props.ts index f36f47bf7..50e28addf 100644 --- a/server/src/lib/migration/migrations/v3-props.ts +++ b/server/src/lib/migration/migrations/v3-props.ts @@ -47,6 +47,7 @@ function perToScore(goal: GoalDocument) { case "maimaidx": case "pms": case "itg": + case "arcaea": throw new Error(`Cannot convert this percent to score for game ${goal.game}`); } } diff --git a/server/src/lib/migration/migrations/v3-scores.ts b/server/src/lib/migration/migrations/v3-scores.ts index 08a10dac5..c4d82d07e 100644 --- a/server/src/lib/migration/migrations/v3-scores.ts +++ b/server/src/lib/migration/migrations/v3-scores.ts @@ -132,6 +132,12 @@ const scoreMovers: ScoreMovers = { }, "gitadora:Dora": GITADORA_MV, "gitadora:Gita": GITADORA_MV, + "arcaea:Touch": (old) => ({ + score: old.score, + judgements: old.judgements, + lamp: old.lamp as any, + optional: old.hitMeta, + }), }; const logger = CreateLogCtx(__filename); diff --git a/server/src/test-utils/mock-db/charts-arcaea.json b/server/src/test-utils/mock-db/charts-arcaea.json new file mode 100644 index 000000000..1d59db889 --- /dev/null +++ b/server/src/test-utils/mock-db/charts-arcaea.json @@ -0,0 +1,16 @@ +[ + { + "chartID": "48de13e0be17a282eed6ef97e6e1478eb59bc55e", + "data": { + "inGameID": "sheriruth", + "notecount": 1151 + }, + "difficulty": "Future", + "isPrimary": true, + "level": "10", + "levelNum": 10.1, + "playtype": "Touch", + "songID": 19, + "versions": ["mobile"] + } +] diff --git a/server/src/test-utils/mock-db/songs-arcaea.json b/server/src/test-utils/mock-db/songs-arcaea.json new file mode 100644 index 000000000..c38fdeeac --- /dev/null +++ b/server/src/test-utils/mock-db/songs-arcaea.json @@ -0,0 +1,22 @@ +[ + { + "altTitles": [], + "artist": "Team Grimoire", + "data": { + "displayVersion": "1.0", + "songPack": "Eternal Core" + }, + "id": 19, + "searchTerms": [ + "しぇりだー", + "しぇりるす", + "셰리다", + "셰리루스", + "셰리루트", + "셰루트", + "셰루스", + "셰리더" + ], + "title": "Sheriruth" + } +] diff --git a/server/src/test-utils/snapshots/snapshot-data.json b/server/src/test-utils/snapshots/snapshot-data.json index 883b4db2d..5d220ec29 100644 --- a/server/src/test-utils/snapshots/snapshot-data.json +++ b/server/src/test-utils/snapshots/snapshot-data.json @@ -59,5 +59,26 @@ "WACCA IMPL Validators: Should disallow ALL MARVELOUS with non-perfect good judgements.": [ "ALL MARVELOUS scores must have a perfect score. Got 953000 instead.", "Cannot have an ALL MARVELOUS if all judgements were not marvelous." - ] + ], + "Arcaea IMPL Validators: Should disallow PURE MEMORY with non-perfect score": [ + "PURE MEMORY scores must have a score larger than 10 million. Got 9999999 instead.", + "Cannot have a PURE MEMORY with any fars or losts." + ], + "Arcaea IMPL Validators: Should disallow FR with lost": [ + "Cannot have a FULL RECALL with non-zero lost count." + ], + "Arcaea IMPL Validators: Should disallow PURE MEMORY with non-perfect Far judgements.": [ + "PURE MEMORY scores must have a score larger than 10 million. Got 9979366 instead.", + "Cannot have a PURE MEMORY with any fars or losts." + ], + "Arcaea IMPL Validators: Should disallow PURE MEMORY with non-perfect Lost judgements.": [ + "PURE MEMORY scores must have a score larger than 10 million. Got 9979366 instead.", + "Cannot have a PURE MEMORY with any fars or losts." + ], + "Arcaea IMPL Validators: Should disallow FULL RECALL scores smaller than the minimum possible score": [ + "FULL RECALL scores must have a score larger than 5 million. Got 4999999 instead.", + "Cannot have a FULL RECALL with non-zero lost count." + ], + "Arcaea IMPL Validators: Should disallow negative scores.": "Score must be non-negative. Got -1", + "Arcaea IMPL Validators: Should disallow scores that exceed 10 million + notecount.": "Score cannot exceed 10001151 for this chart." } \ No newline at end of file diff --git a/server/src/test-utils/test-data.ts b/server/src/test-utils/test-data.ts index dbb644282..24f67b1f4 100644 --- a/server/src/test-utils/test-data.ts +++ b/server/src/test-utils/test-data.ts @@ -1232,3 +1232,39 @@ export const FakeChunitachiBatchManual = { }, ], }; + +export const TestingArcaeaSheriruthSong: SongDocument<"arcaea"> = { + altTitles: [], + artist: "Team Grimoire", + data: { + displayVersion: "1.0", + songPack: "Eternal Core", + }, + id: 19, + searchTerms: [ + "しぇりだー", + "しぇりるす", + "셰리다", + "셰리루스", + "셰리루트", + "셰루트", + "셰루스", + "셰리더", + ], + title: "Sheriruth", +}; + +export const TestingArcaeaSheriruthFTR: ChartDocument<"arcaea:Touch"> = { + chartID: "48de13e0be17a282eed6ef97e6e1478eb59bc55e", + data: { + inGameID: "sheriruth", + notecount: 1151, + }, + difficulty: "Future", + isPrimary: true, + level: "10", + levelNum: 10.1, + playtype: "Touch", + songID: 19, + versions: ["mobile"], +}; diff --git a/server/test.conf.json5 b/server/test.conf.json5 index d21992cfb..856fd723e 100644 --- a/server/test.conf.json5 +++ b/server/test.conf.json5 @@ -49,6 +49,7 @@ "pms", "maimai", "maimaidx", + "arcaea" ], IMPORT_TYPES: [ "file/eamusement-iidx-csv",